/* =========================================================
   OLIVEN KIDS — Design System
   Çocuk kıyafeti / tekstil markası için premium web sitesi
   ========================================================= */

:root {
  /* Renk paleti — Oliven The Kid marka stil rehberinden: topraksı, zeytin
     yeşili, adaçayı, krem, kakao. Terracotta ismi korundu (kod genelinde
     kullanılıyor) ama değeri artık daha sakin, tozlu bir gül-kilkırmızısı. */
  --cream:        #FBF7F0;
  --cream-dark:   #F2E9DC;
  --ink:          #3B2E26;
  --ink-soft:     #7C6B5D;
  --terracotta:   #C97B6D;
  --terracotta-d: #A85F52;
  --terracotta-l: #F0DAD3;
  --sage:         #7C8A63;
  --sage-d:       #5F6B4A;
  --sage-l:       #E7EAD9;
  --mustard:      #C9A063;
  --mustard-d:    #A9813F;
  --sky:          #3E4A63;
  --white:        #FFFFFF;
  --border:       #E5DCCC;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Plus Jakarta Sans", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(46, 42, 38, 0.06);
  --shadow-md: 0 12px 30px rgba(46, 42, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(46, 42, 38, 0.16);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

:focus-visible { outline: 2.5px solid var(--terracotta); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -999px; top: auto;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--radius-full);
  z-index: 999;
  font-weight: 700;
  font-size: 0.9rem;
}
.skip-link:focus { left: 16px; top: 16px; }

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

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section--tight { padding: 70px 0; }
.section--cream-dark { background: var(--cream-dark); }
.section--ink {
  background: var(--ink);
  color: var(--cream);
}
.section--sage { background: var(--sage-l); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.section-head.left {
  text-align: left;
  margin: 0 0 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(224, 120, 90, 0.35);
}
.btn--primary:hover {
  background: var(--terracotta-d);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(224, 120, 90, 0.42);
}

.btn--dark {
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover { transform: translateY(-3px); background: #423c34; }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(253, 251, 246, 0.4);
}
.btn--outline-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn--sm { padding: 11px 22px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 9px 0;
}
.announce__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  gap: 60px;
}
.announce__track span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253, 251, 246, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, padding 0.3s;
}
.header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(46, 42, 38, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  transition: padding 0.3s;
}
.header.is-scrolled .header__inner { padding: 14px 24px; }

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.logo__img { height: 54px; width: auto; display: block; }
.logo span { color: var(--terracotta); font-style: italic; font-weight: 500; }
.logo small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--terracotta);
  transition: right 0.3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--terracotta-d); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background 0.3s;
  color: var(--ink);
}
.icon-btn:hover { background: var(--cream-dark); }
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn .badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
}

/* The header row (logo + search/cart icons + "Alışverişe Başla") has no
   wrap; on narrow phones its min-content width exceeds the viewport and
   forces page-wide horizontal scroll. Drop the text button first, then
   tighten spacing, well before that happens. */
@media (max-width: 560px) {
  .header__actions .btn { display: none; }
  .header__actions { gap: 8px; }
  .header__inner { padding-left: 16px; padding-right: 16px; }
}

/* ---------- Breadcrumb / Page banner ---------- */
.page-banner {
  position: relative;
  padding: 210px 0 90px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-dark), var(--cream));
  overflow: hidden;
}
.page-banner h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}
.page-banner .crumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.page-banner .crumbs a:hover { color: var(--terracotta-d); }
.page-banner .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 76px 0 40px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}
.hero__blob--1 {
  width: 420px; height: 420px;
  background: var(--terracotta-l);
  top: -140px; right: 10%;
  opacity: 0.7;
}
.hero__blob--2 {
  width: 320px; height: 320px;
  background: var(--sage-l);
  bottom: -100px; left: -60px;
  opacity: 0.8;
}
.hero__copy { position: relative; z-index: 2; }
.hero__copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 22px;
}
.hero__copy h1 em {
  font-style: italic;
  color: var(--terracotta);
  position: relative;
}
.hero__copy p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__trust .avatars { display: flex; }
.hero__trust .avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid var(--cream);
  margin-left: -12px;
  object-fit: cover;
}
.hero__trust .avatars img:first-child { margin-left: 0; }
.hero__trust .stars { color: var(--mustard-d); font-size: 0.9rem; letter-spacing: 2px; }
.hero__trust small { display: block; color: var(--ink-soft); font-size: 0.82rem; font-weight: 600; }

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}
.hero__stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
}
.hero__stats div span {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero__visual {
  position: relative;
  z-index: 1;
}
.hero__visual .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero__visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual .float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.hero__visual .float-card--1 { top: 10%; left: -12%; }
.hero__visual .float-card--2 { bottom: 8%; right: -10%; animation-delay: -2.5s; }
.hero__visual .float-card .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__visual .float-card strong { display: block; font-size: 0.95rem; }
.hero__visual .float-card span { font-size: 0.78rem; color: var(--ink-soft); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy p { max-width: none; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
}

/* ---------- Marquee brand strip ---------- */
.brandstrip {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.brandstrip__track {
  display: flex;
  width: max-content;
  gap: 90px;
  animation: marquee 22s linear infinite;
  align-items: center;
}
.brandstrip__track span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink-soft);
  opacity: 0.55;
  white-space: nowrap;
  font-style: italic;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(46,42,38,0.75) 0%, rgba(46,42,38,0.05) 55%);
}
.cat-card__label {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index: 2;
  color: var(--white);
}
.cat-card__label h3 { font-size: 1.25rem; margin-bottom: 4px; }
.cat-card__label span {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-card__label span svg {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease);
}
.cat-card:hover .cat-card__label span svg { transform: translateX(4px); }

@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Product grid & cards ---------- */
.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.product-toolbar .count { color: var(--ink-soft); font-size: 0.92rem; }
.product-toolbar select {
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-grid--large { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.product-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.08); }
.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 13px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}
.product-card__badge--new { background: var(--sage-d); }
.product-card__badge--sale { background: var(--terracotta-d); }
.product-card__quick {
  position: absolute;
  right: 14px; bottom: -50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: bottom 0.4s var(--ease);
  z-index: 2;
}
.product-card:hover .product-card__quick { bottom: 14px; }
.product-card__quick button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.product-card__quick button:hover { background: var(--terracotta); color: var(--white); transform: scale(1.08); }
.product-card__quick svg { width: 16px; height: 16px; }

.product-card__body { padding: 18px 18px 22px; }
.product-card__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage-d); }
.product-card__body h3 { font-size: 1.05rem; margin: 6px 0 8px; font-weight: 600; font-family: var(--font-body); }
.product-card__price { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.product-card__price .now { font-weight: 800; font-size: 1.05rem; }
.product-card__price .old { text-decoration: line-through; color: var(--ink-soft); font-size: 0.88rem; }
.product-card__swatches { display: flex; gap: 6px; }
.product-card__swatches span {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-bar button {
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--white);
  transition: all 0.3s;
}
.filter-bar button:hover { border-color: var(--terracotta); color: var(--terracotta-d); }
.filter-bar button.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 54px;
}
.pagination a, .pagination span {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.pagination a:hover { border-color: var(--terracotta); color: var(--terracotta-d); }
.pagination .active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; } .product-card__body { padding: 12px; } }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature .icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.feature .icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; }
.feature p { color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Split / story ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split.reverse .split__visual { order: 2; }
.split__visual { position: relative; }
.split__visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4;
}
.split__visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.split__visual .frame--contain { background: var(--cream-dark); }
.split__visual .frame--contain img { object-fit: contain; }
.split__visual .stat-chip {
  position: absolute;
  bottom: -28px; left: 30px;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.split__visual .stat-chip strong { display: block; font-family: var(--font-display); font-size: 2rem; }
.split__visual .stat-chip span { font-size: 0.78rem; color: var(--sage-l); font-weight: 600; }

.split__copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.02rem; }
.split__list { margin: 26px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.split__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.96rem;
}
.split__list li .tick {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage-l);
  color: var(--sage-d);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.split__list li .tick svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse .split__visual { order: 0; }
}

/* ---------- Process strip ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 34px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process__step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.process__num {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--terracotta);
  color: var(--terracotta-d);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}
.process__step h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.process__step p { color: var(--ink-soft); font-size: 0.88rem; }

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; gap: 40px; }
  .process::before { display: none; }
}

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-band div strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--mustard);
}
.stats-band div span { font-size: 0.85rem; color: var(--sage-l); font-weight: 600; letter-spacing: 0.03em; }

@media (max-width: 700px) { .stats-band { grid-template-columns: 1fr 1fr; gap: 34px; } }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; max-width: 780px; margin: 0 auto; }
.testi-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testi-slide { min-width: 100%; padding: 4px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.testi-card .stars { color: var(--mustard-d); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 20px; }
.testi-card p { font-size: 1.2rem; font-family: var(--font-display); font-style: italic; color: var(--ink); margin-bottom: 26px; line-height: 1.55; }
.testi-card .person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-card .person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-card .person strong { display: block; font-size: 0.95rem; }
.testi-card .person span { font-size: 0.8rem; color: var(--ink-soft); }

.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testi-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
}
.testi-dots button.active { background: var(--terracotta); width: 28px; border-radius: 6px; }

.testi-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.testi-arrow:hover { background: var(--terracotta); color: var(--white); }
.testi-arrow--prev { left: -70px; }
.testi-arrow--next { right: -70px; }
.testi-arrow svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .testi-arrow { display: none; } }

/* ---------- Instagram gallery ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.insta-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(224, 120, 90, 0.0);
  transition: background 0.3s;
}
.insta-item::before {
  content: "";
  position: absolute; inset: 0;
  margin: auto;
  width: 26px; height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-item:hover::after { background: rgba(224, 120, 90, 0.55); }
.insta-item:hover::before { opacity: 1; }
.insta-item:hover img { transform: scale(1.1); }

@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.newsletter::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  right: -80px; top: -100px;
}
.newsletter h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.newsletter p { opacity: 0.92; max-width: 420px; }
.newsletter-form { display: flex; gap: 10px; position: relative; z-index: 1; }
.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: var(--radius-full);
  border: none;
  font-size: 0.95rem;
}
.newsletter-form input:focus { outline: 3px solid rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 16px 28px;
  border-radius: var(--radius-full);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transition: transform 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-3px); }
.newsletter small { display: block; margin-top: 12px; opacity: 0.8; font-size: 0.78rem; }
.form-msg { margin-top: 12px; font-size: 0.85rem; font-weight: 700; opacity: 0; transition: opacity 0.3s; }
.form-msg.show { opacity: 1; }

@media (max-width: 900px) {
  .newsletter { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .newsletter p { margin: 0 auto; }
  .newsletter-form { flex-direction: column; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream-dark);
  padding: 90px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(253,251,246,0.12);
}
.footer__brand .logo { color: var(--cream); }
.footer__brand .logo__img { height: 68px; }
.footer__brand p { color: rgba(253,251,246,0.6); margin: 18px 0 24px; font-size: 0.92rem; max-width: 300px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(253,251,246,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer__social a:hover { background: var(--terracotta); border-color: var(--terracotta); }
.footer__social svg { width: 17px; height: 17px; }

.footer h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px; color: var(--cream); }
.footer ul { display: flex; flex-direction: column; gap: 13px; }
.footer ul a { color: rgba(253,251,246,0.65); font-size: 0.92rem; transition: color 0.3s, padding 0.3s; }
.footer ul a:hover { color: var(--cream); padding-left: 4px; }

.footer__contact li { display: flex; gap: 10px; align-items: flex-start; color: rgba(253,251,246,0.65); font-size: 0.92rem; }
.footer__contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--terracotta); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 0.82rem;
  color: rgba(253,251,246,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__payments { display: flex; gap: 8px; }
.footer__payments span {
  padding: 5px 11px;
  border: 1px solid rgba(253,251,246,0.25);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
  z-index: 150;
  box-shadow: var(--shadow-md);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- About page extras ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-card {
  padding: 36px 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-card .icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; }
.value-card p { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.team-card { text-align: center; }
.team-card .frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/3.6;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.team-card .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-card:hover .frame img { transform: scale(1.06); }
.team-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
.team-card span { font-size: 0.82rem; color: var(--ink-soft); }

@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Contact page ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 90px;
}
@media (max-width: 1100px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.contact-card .icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--terracotta-l);
  color: var(--terracotta-d);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.contact-card .icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.contact-card p { color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 900px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
}
.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 700; }
.field input, .field textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); }
.field textarea { resize: vertical; min-height: 130px; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 24px 4px;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s;
  position: relative;
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s;
}
.faq-item summary .plus::before { width: 12px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 12px; }
.faq-item[open] summary .plus { background: var(--terracotta); border-color: var(--terracotta); }
.faq-item[open] summary .plus::before, .faq-item[open] summary .plus::after { background: var(--white); }
.faq-item[open] summary .plus::after { transform: scaleY(0); }
.faq-item p { padding: 0 4px 24px; color: var(--ink-soft); max-width: 640px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* =========================================================
   CINEMATIC HERO
   Video sürekli, kendiliğinden döngüde oynar — scroll'a bağlı değil.
   Gerçek video: assets/video/hero-scrub.mp4 (poster: hero-poster.jpg).
   ========================================================= */

:root {
  --tshadow: 0 1px 2px rgba(46,42,38,.92), 0 3px 14px rgba(46,42,38,.7), 0 10px 44px rgba(46,42,38,.6);
}

.cine-hero__stage {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.cine-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
}

.cine-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 46%, rgba(46,42,38,0) 30%, rgba(46,42,38,.58) 100%);
}

.cine-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Eyebrow + headline: sit in the empty headroom above the video's subjects,
   animate once on load. */
.cine-hero__intro {
  position: absolute;
  left: 0; right: 0;
  z-index: 4;
  top: 9%;
  padding: 0 24px;
  text-align: center;
  text-shadow: var(--tshadow);
}
.cine-hero__intro .eyebrow { justify-content: center; color: var(--cream); margin-bottom: 18px; }
.cine-hero__intro .eyebrow::before { background: var(--mustard); }

.cine-hero__headline {
  max-width: 900px;
  margin: 0 auto;
  color: var(--cream);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.1;
}
.cine-hero__headline .cine-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  animation: cine-word-in .85s var(--ease) forwards;
}
.cine-hero__headline .cine-word:nth-child(1) { animation-delay: .05s; }
.cine-hero__headline .cine-word:nth-child(2) { animation-delay: .14s; }
.cine-hero__headline .cine-word:nth-child(3) { animation-delay: .23s; }
.cine-hero__headline .cine-word:nth-child(4) { animation-delay: .32s; }
.cine-hero__headline .cine-word:nth-child(5) { animation-delay: .41s; }
.cine-hero__headline .cine-word:nth-child(6) { animation-delay: .5s; }
@keyframes cine-word-in {
  to { opacity: 1; transform: translateY(0); }
}
.cine-hero__headline em {
  font-style: italic;
  color: var(--mustard);
}

.cine-hero__settle {
  position: absolute;
  left: 0; right: 0;
  bottom: 7%;
  z-index: 4;
  padding: 0 24px;
  text-align: center;
  text-shadow: var(--tshadow);
  max-width: 640px;
  margin: 0 auto;
  color: var(--cream);
}
.cine-rise {
  opacity: 0;
  transform: translateY(20px);
  animation: cine-rise-in .8s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes cine-rise-in {
  to { opacity: 1; transform: translateY(0); }
}
.cine-hero__settle p {
  font-size: 1.1rem;
  margin-bottom: 26px;
  color: rgba(253,251,246,.92);
}
.cine-hero__settle .btn--primary { text-shadow: none; }
.cine-hero__chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.cine-hero__chips .chip {
  background: rgba(8,8,15,.4);
  border: 1px solid rgba(253,251,246,.28);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--cream);
  text-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cine-hero__chips .chip svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Reduced motion: swap the looping video for a still poster frame. */
@media (prefers-reduced-motion: reduce) {
  .cine-hero__video { display: none; }
  .cine-hero__stage {
    background-image: url("../video/hero-poster.jpg");
    background-size: cover;
    background-position: center;
  }
  .cine-hero__headline .cine-word,
  .cine-rise {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ---------- Lookbook (masonry image gallery) ----------
   Columns sized to each image's own aspect ratio — nothing cropped,
   no leftover empty space, unlike a fixed-row bento grid. */
.lookbook {
  columns: 3 260px;
  column-gap: 20px;
}
.lookbook__item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lookbook__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.lookbook__item:hover img { transform: scale(1.06); }

@media (max-width: 700px) {
  .lookbook { columns: 2 150px; column-gap: 14px; }
  .lookbook__item { margin-bottom: 14px; }
}

