:root {
  --paper: #f7f2e8;
  --paper-strong: #efe4d5;
  --paper-deep: #e4d3bf;
  --ink: #2f2130;
  --ink-soft: #5f5160;
  --peach: #ffb190;
  --pink: #ff4fa2;
  --pink-deep: #db2e80;
  --yellow: #ffd957;
  --green: #3ec35f;
  --cyan: #22b3d8;
  --plum: #4f243d;
  --white: #fffdf9;
  --line: rgba(47, 33, 48, 0.12);
  --line-strong: rgba(47, 33, 48, 0.2);
  --shadow: 0 24px 70px rgba(61, 35, 49, 0.12);
  --shadow-soft: 0 16px 40px rgba(61, 35, 49, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --text: var(--ink-soft);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 162, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 217, 87, 0.18), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f7efe4 50%, #f2e6d7 100%);
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(-2deg) translateY(-6px);
  }
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
}

body::before {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 20vh;
  background: rgba(34, 179, 216, 0.1);
}

body::after {
  width: 420px;
  height: 420px;
  right: -180px;
  top: 12vh;
  background: rgba(255, 79, 162, 0.08);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: relative;
  z-index: 100;
  padding: 12px 0;
  background: rgba(255, 252, 247, 0.95);
  border-bottom: 1px solid rgba(47, 33, 48, 0.08);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.nav-brand img {
  width: 150px;
  height: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--ink);
  width: 44px;
  height: 44px;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

.nav-toggle span {
  display: none;
}

.nav-toggle::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f2130' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='12' x2='21' y2='12'%3E%3C/line%3E%3Cline x1='3' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='18' x2='21' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 12px 16px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--pink) 0%, #ff6ca0 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 79, 162, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink) 100%);
}

.hero {
  padding: 52px 0 24px;
}

.hero-grid,
.page-grid,
.story-split,
.faq-grid,
.cta-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.story-note-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(47, 33, 48, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.hero-copy h1,
.page-copy h1,
.section-title,
.cta-copy h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 16px 0 18px;
  color: var(--ink);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  max-width: 11ch;
}

.page-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-copy p,
.page-copy p,
.section-text,
.cta-copy p,
.story-copy p,
.faq-intro p {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.hero-actions,
.cta-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
  flex-direction: row;
  align-items: center;
}

.mobile-line-break {
  display: inline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, #ff6a9b 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(255, 79, 162, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  border: 1px solid rgba(47, 33, 48, 0.1);
}

.hero-badges,
.mini-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.badge-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(47, 33, 48, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

@media (min-width: 769px) {
  .hero-badges {
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero-badges .badge-pill {
    white-space: nowrap;
  }

  .desktop-nowrap {
    white-space: nowrap;
  }

  .social-links {
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .social-link {
    width: auto;
    min-width: 0;
    padding: 0 26px;
  }

  .hero-main-card {
    border-radius: 0;
  }

  .hero-main-card img {
    border-radius: 0;
    clip-path: none;
    -webkit-clip-path: none;
  }
}

.hero-art {
  display: block;
  min-height: 570px;
  width: min(100%, 415px);
  justify-self: end;
}

.hero-main-card,
.floating-card,
.note-card,
.sticky-card,
.process-card,
.value-card,
.story-tile,
.gallery-card,
.size-card,
.faq-card,
.cta-copy,
.cta-visual,
.social-strip,
.footer-card {
  background: rgba(255, 255, 255, 0.8);
  border: 0;
  box-shadow: var(--shadow);
}

.hero-main-card {
  position: relative;
  border-radius: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: rotate(-2deg);
  animation: cardDrift 7s ease-in-out infinite;
  z-index: 1;
  min-height: 570px;
}

.hero-main-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 46%;
  transform: scale(1.22);
  border-radius: 0;
  clip-path: none;
  -webkit-clip-path: none;
}

.floating-card {
  position: relative;
  width: auto;
  border-radius: 24px;
  padding: 12px;
  animation: gentleFloat 6s ease-in-out infinite;
  z-index: 2;
}

.floating-card img {
  width: 100%;
  height: 162px;
  object-fit: cover;
  border-radius: 18px;
}

.floating-card p {
  margin: 10px 4px 0;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink);
}

.hero-stats {
  margin-top: 22px;
  display: flex;
  gap: 14px;
}

.stat-card {
  flex: 1;
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 33, 48, 0.08);
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.3rem;
  color: var(--plum);
}

.stat-card span {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.section {
  padding: 36px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head.compact {
  margin-bottom: 18px;
}

.section-head--stacked {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  margin: 10px 0 0;
}

.section-note {
  max-width: 580px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.feature-band {
  padding: 28px 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 177, 144, 0.34), rgba(255, 255, 255, 0.9));
  border: 0;
  box-shadow: var(--shadow-soft);
}

.feature-band p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--ink);
}

.process-grid,
.value-grid,
.size-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.process-grid,
.value-grid,
.size-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .process-grid,
  .value-grid,
  .size-grid {
    grid-template-columns: 1fr !important;
  }
}

.process-card,
.value-card,
.size-card,
.faq-card,
.story-tile,
.gallery-card,
.sticky-card,
.note-card {
  border-radius: 28px;
  padding: 24px;
}

.process-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 79, 162, 0.12), rgba(255, 255, 255, 0.9));
}

.process-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(62, 195, 95, 0.14), rgba(255, 255, 255, 0.9));
}

.process-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 217, 87, 0.18), rgba(255, 255, 255, 0.9));
}

.process-num {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: "Baloo 2", cursive;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.process-card h3,
.value-card h3,
.size-card h3,
.faq-card h3,
.story-copy h2 {
  margin: 0 0 10px;
  font-family: "Baloo 2", cursive;
  font-size: 1.72rem;
  line-height: 1.02;
}

.process-card p,
.value-card p,
.size-card p,
.faq-card p,
.story-caption p,
.story-copy p,
.story-note p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.story-note {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.story-copy {
  display: grid;
  gap: 16px;
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 20px;
  align-items: start;
}

.insight-card {
  border-radius: 32px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 236, 0.96)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.35) 0 12px, transparent 12px 24px);
  border: 1px solid rgba(47, 33, 48, 0.08);
  box-shadow: var(--shadow);
}

.insight-card p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.insight-card p:last-child {
  margin-bottom: 0;
}

.quote-card {
  border-radius: 32px;
  padding: 28px;
  background: linear-gradient(160deg, rgba(255, 79, 162, 0.12), rgba(255, 255, 255, 0.94));
  border: 0;
  box-shadow: var(--shadow-soft);
}

.quote-card blockquote {
  margin: 0;
}

.quote-mark {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.88);
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  color: var(--pink-deep);
}

.quote-card p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--ink);
}

.quote-card cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.story-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.story-poster {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 20px 0;
}

.story-poster .poster-main,
.story-poster .poster-side {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}

.story-poster .poster-main {
  width: 80%;
  max-width: 360px;
  transform: rotate(-2deg);
  animation: gentleFloat 6s ease-in-out infinite;
}

.story-poster .poster-side {
  display: none;
}

.story-poster img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.story-tile {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  cursor: zoom-in;
}

.story-caption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--ink);
}

.story-caption p {
  font-size: 0.92rem;
}

.size-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.size-card p {
  flex: 1;
}

.size-card.small {
  background: linear-gradient(180deg, rgba(255, 79, 162, 0.12), rgba(255, 255, 255, 0.94));
}

.size-card.medium {
  background: linear-gradient(180deg, rgba(62, 195, 95, 0.12), rgba(255, 255, 255, 0.94));
}

.size-card.large {
  background: linear-gradient(180deg, rgba(255, 217, 87, 0.18), rgba(255, 255, 255, 0.94));
}

.size-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
}

.size-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.size-pill,
.size-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.size-pill {
  left: 12px;
  bottom: 12px;
  min-height: 34px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.size-tag {
  top: 12px;
  right: 12px;
  min-height: 30px;
  padding: 0 12px;
  color: #fff;
  background: var(--green);
}

.size-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.size-card li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.size-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 14px;
}

.size-price {
  font-family: "Baloo 2", cursive;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--plum);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.size-buy-btn {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.95rem;
  justify-content: center;
}

.size-contact-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 10px;
  font-size: 0.82rem;
  min-height: 48px;
  padding: 8px 14px;
  white-space: normal;
  line-height: 1.3;
  border: none;
}

/* ── 15 cm — pembe ───────────────────────────────────────────── */
.size-card.small .size-buy-btn {
  background: linear-gradient(135deg, #f472b6, #ec4899);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.28);
}
.size-card.small .size-buy-btn:hover {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: var(--ink);
}
.size-card.small .size-contact-btn {
  background: #fce7f3;
  color: #9d174d;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.14);
}
.size-card.small .size-contact-btn:hover {
  background: #fbcfe8;
  color: #9d174d;
  transform: translateY(-2px);
}

/* ── 18 cm — pembe ───────────────────────────────────────────── */
.size-card.medium .size-buy-btn {
  background: linear-gradient(135deg, #f472b6, #ec4899);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.28);
}
.size-card.medium .size-buy-btn:hover {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: var(--ink);
}
.size-card.medium .size-contact-btn {
  background: #fce7f3;
  color: #9d174d;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.14);
}
.size-card.medium .size-contact-btn:hover {
  background: #fbcfe8;
  color: #9d174d;
  transform: translateY(-2px);
}

/* ── 23 cm — pembe ───────────────────────────────────────────── */
.size-card.large .size-buy-btn {
  background: linear-gradient(135deg, #f472b6, #ec4899);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.28);
}
.size-card.large .size-buy-btn:hover {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: var(--ink);
}
.size-card.large .size-contact-btn {
  background: #fce7f3;
  color: #9d174d;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.14);
}
.size-card.large .size-contact-btn:hover {
  background: #fbcfe8;
  color: #9d174d;
  transform: translateY(-2px);
}

.compare-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.compare-item {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 33, 48, 0.08);
}

.compare-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
}

.compare-bar {
  width: 72px;
  border-radius: 16px 16px 8px 8px;
  margin-bottom: 12px;
}

.compare-item.small .compare-bar {
  height: 84px;
  background: rgba(255, 79, 162, 0.4);
}

.compare-item.medium .compare-bar {
  height: 120px;
  background: rgba(62, 195, 95, 0.42);
}

.compare-item.large .compare-bar {
  height: 156px;
  background: rgba(255, 217, 87, 0.55);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(47, 33, 48, 0.08);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  padding-right: 56px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--pink-deep);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 24px 22px;
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
}

.gallery-card {
  padding: 10px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  cursor: zoom-in;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.row-2 {
  grid-row: span 2;
}

.row-3 {
  grid-row: span 3;
}

.cta-panel {
  align-items: stretch;
}

.cta-copy,
.cta-visual {
  border-radius: 32px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 229, 0.96));
}

.cta-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

.social-strip {
  border-radius: 30px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  text-align: center;
}

.social-strip h3,
.footer-card h3 {
  margin: 0 0 8px;
  font-family: "Baloo 2", cursive;
  font-size: 1.8rem;
}

.social-strip p,
.footer-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.social-link {
  text-decoration: none;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  align-items: center;
  display: inline-flex;
  gap: 10px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--plum) 100%);
  color: #fff;
  border: 1px solid rgba(47, 33, 48, 0.04);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(47, 33, 48, 0.16);
  width: min(100%, 260px);
  justify-content: center;
}

.social-link:hover,
.social-link:focus-visible {
  background: linear-gradient(135deg, #201521 0%, #3a2031 100%);
  color: #fff;
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
}

.site-footer {
  padding: 18px 0 40px;
}

.footer-card {
  border-radius: 30px;
  padding: 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
}

.footer-contact {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.footer-contact-list a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--plum) 100%);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(47, 33, 48, 0.14);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  justify-content: center;
  width: 100%;
  max-width: 980px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 33, 48, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink-soft);
  text-align: center;
}

.footer-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(47, 33, 48, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.page-hero {
  padding: 40px 0 24px;
}

.legal-page {
  padding-bottom: 10px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
}

.legal-toc,
.legal-section,
.legal-summary-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(47, 33, 48, 0.08);
  box-shadow: var(--shadow-soft);
}

.legal-toc {
  padding: 22px;
}

.legal-toc h3 {
  margin: 0 0 12px;
  font-family: "Baloo 2", cursive;
  font-size: 1.7rem;
}

.legal-toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.legal-toc a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--pink-deep);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.legal-summary-card {
  padding: 22px;
}

.legal-summary-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Baloo 2", cursive;
  font-size: 1.55rem;
  line-height: 1;
}

.legal-summary-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink-soft);
}

.legal-summary-card.warning {
  background: linear-gradient(180deg, rgba(255, 79, 162, 0.12), rgba(255, 255, 255, 0.92));
}

.legal-summary-card.success {
  background: linear-gradient(180deg, rgba(62, 195, 95, 0.14), rgba(255, 255, 255, 0.92));
}

.legal-section {
  padding: 26px;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  line-height: 1;
}

.legal-section h3 {
  margin: 20px 0 8px;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  line-height: 1.1;
}

.legal-section p,
.legal-section li,
.legal-section td,
.legal-section th,
.legal-note,
.legal-callout p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-callout {
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 217, 87, 0.35), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 217, 87, 0.6);
  box-shadow: var(--shadow-soft);
}

.legal-callout strong {
  color: var(--ink);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 18px;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(47, 33, 48, 0.08);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: rgba(47, 33, 48, 0.92);
  color: #fff;
  font-weight: 800;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-mini-links a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 33, 48, 0.08);
  font-weight: 800;
  color: var(--ink);
}

.legal-contact {
  display: grid;
  gap: 10px;
}

.legal-contact p {
  margin: 0;
}

.legal-contact a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.note-card h3,
.sticky-card h3 {
  margin: 0 0 10px;
  font-family: "Baloo 2", cursive;
  font-size: 1.8rem;
}

.note-card ul,
.sticky-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.note-card li,
.sticky-card li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(22, 12, 18, 0.9);
  z-index: 999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .shell {
    width: 100%;
    padding: 0 36px;
  }

  .hero-grid,
  .page-grid,
  .story-split,
  .faq-grid,
  .cta-panel,
  .insight-layout {
    gap: 24px;
  }

  .hero-main-card {
    inset: 28px 42px 40px 8px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
  }

  .wall-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-grid,
  .story-split,
  .faq-grid,
  .cta-panel,
  .insight-layout,
  .legal-layout,
  .story-note-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .nav-brand {
    order: 0;
    margin: 0;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    left: auto;
    align-items: center;
    justify-content: center;
  }

  .nav-inner nav {
    position: absolute;
    right: 0;
    width: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 20px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.995);
    border: 1px solid rgba(47, 33, 48, 0.08);
    box-shadow: var(--shadow);
    z-index: 200;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-art {
    min-height: 415px;
  }

  .hero-copy,
  .page-copy,
  .faq-intro,
  .cta-copy,
  .story-copy {
    max-width: 100%;
  }

  .process-grid,
  .value-grid,
  .size-grid,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .wall-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-top {
    justify-items: center;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-summary-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 28px 0;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid,
  .page-grid,
  .story-split,
  .faq-grid,
  .cta-panel,
  .insight-layout {
    gap: 20px;
  }

  .hero-art {
    min-height: 495px;
  }

  .hero-main-card {
    min-height: 495px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-actions,
  .cta-actions {
    gap: 10px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-note {
    max-width: none;
  }

  .social-links {
    width: 100%;
  }

  .mini-list {
    justify-content: center;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .gallery-grid > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 32px);
    padding: 0 5px;
    margin: 0 auto;
  }

  .nav-brand img {
    width: 100px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .site-nav {
    padding: 8px 0;
  }

  .nav-inner {
    min-height: 46px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 0.98;
  }

  .page-copy h1,
  .section-title,
  .cta-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .hero-copy p,
  .page-copy p,
  .section-text,
  .cta-copy p,
  .story-copy p,
  .faq-intro p,
  .insight-card p,
  .quote-card p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy,
  .page-copy {
    text-align: left;
  }

  .hero-stats {
    width: 100%;
  }

  .stat-card {
    padding: 18px 16px;
    text-align: left;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .cta-copy .btn {
    width: 100%;
  }

  .mobile-line-break {
    display: block;
  }

  .hero-art {
    min-height: 345px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .badge-pill {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .social-link {
    width: min(100%, 260px);
    justify-content: center;
    text-align: center;
  }

  .hero-main-card {
    inset: 54px 4px 30px 0;
    padding: 10px;
  }

  .floating-card {
    width: 126px;
    padding: 8px;
    border-radius: 18px;
  }

  .floating-card img {
    height: 118px;
    border-radius: 14px;
  }

  .process-card,
  .value-card,
  .size-card,
  .faq-card,
  .story-tile,
  .gallery-card,
  .sticky-card,
  .note-card,
  .insight-card,
  .quote-card,
  .social-strip,
  .footer-card,
  .cta-copy,
  .cta-visual {
    padding: 18px;
    border-radius: 22px;
  }

  .feature-band {
    margin-top: 80px;
    padding-top: 33px;
    padding-bottom: 33px;
  }

  .wall-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links a {
    width: 100%;
    text-align: center;
  }

  .footer-card {
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-contact h3 {
    margin-bottom: 0;
  }

  .footer-meta {
    flex-direction: column;
  }

  .legal-toc,
  .legal-section,
  .legal-summary-card {
    padding: 18px;
    border-radius: 22px;
  }

  .legal-section h2 {
    font-size: 1.8rem;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table thead {
    display: none;
  }

  .legal-table td {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(var(--max-width), calc(100% - 16px));
  }

  .site-nav {
    padding: 10px 0;
  }

  .nav-links {
    width: calc(100vw - 16px);
    right: 0;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-art {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 12px;
    min-height: auto;
  }

  .hero-main-card {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 300px;
    padding: 0;
  }

  .hero-art {
    min-height: 370px;
  }

  .hero-main-card {
    min-height: 370px;
    padding: 0;
  }

  .process-num {
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
  }

  .quote-mark {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
    border-radius: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

@keyframes floatGallery {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  grid-auto-rows: 240px !important;
  gap: 16px;
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    grid-auto-rows: 160px !important;
  }
}

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: none !important;
  background: transparent !important;
}

.lightbox-content {
  position: relative;
  display: inline-flex;
  max-width: 92vw;
  max-height: 88vh;
}

/* ── Yukarı çık butonu ────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--plum) 0%, #7a3860 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(79, 36, 61, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-btn.is-visible {
  opacity: 0.5;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  opacity: 1;
  box-shadow: 0 10px 28px rgba(79, 36, 61, 0.45);
  transform: translateY(-2px);
}

/* ── Masonry galeri (index.html) ──────────────────────────────── */
.custom-masonry {
  column-count: 2;
  column-gap: 16px;
  display: block !important;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .custom-masonry {
    column-count: 3;
    column-gap: 20px;
  }
}

@media (min-width: 1024px) {
  .custom-masonry {
    column-count: 4;
    column-gap: 24px;
  }
}

.custom-masonry-card {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.custom-masonry-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  cursor: zoom-in;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.custom-masonry-card img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 640px) {
  .custom-masonry {
    column-count: auto;
    column-gap: normal;
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .custom-masonry::-webkit-scrollbar {
    display: none;
  }

  .custom-masonry-card {
    flex: 0 0 75vw;
    width: 75vw;
    margin-bottom: 0;
    display: flex;
  }
}

/* ── SSS sayfası (sss.html) ───────────────────────────────────── */
body.page-sss .faq-grid,
body.page-sss .cta-panel {
  grid-template-columns: 1fr !important;
}

.faq-list {
  gap: 8px !important;
}

.faq-item {
  background: linear-gradient(to right, rgba(255, 177, 144, 0.2) 0%, #ffffff 100%) !important;
  border: none !important;
}

/* ── SSS üretim adımları ──────────────────────────────────────── */
@media (min-width: 900px) {
  .step-row {
    display: grid;
    grid-template-columns: 1.5fr minmax(280px, 340px);
    gap: 40px;
    align-items: center;
  }
}

@media (max-width: 899px) {
  .step-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

.video-placeholder {
  background: var(--paper-strong);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(47, 33, 48, 0.2);
  aspect-ratio: 9 / 16;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.video-placeholder video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* ── Bizim Hikayemiz sayfası (bizim-hikayemiz.html) ──────────── */
body.page-hikaye .page-grid,
body.page-hikaye .story-split,
body.page-hikaye .value-grid,
body.page-hikaye .insight-layout,
body.page-hikaye .story-note-layout {
  grid-template-columns: 1fr !important;
}

.hero-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-gallery-grid {
    grid-template-columns: 40% 60%;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .main-img-container {
    display: none;
  }
}

.thumb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.thumb-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
}

.thumb-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
  z-index: 10;
  position: relative;
}

.main-img-container {
  display: flex;
}

.main-img-container img {
  width: 100%;
  min-height: 400px;
  max-height: 600px;
  object-fit: cover;
  object-position: right center;
  border-radius: 24px;
  box-shadow: var(--shadow);
  cursor: pointer;
  flex: 1;
}
