/* =====================================================
   Vitamin Evde Sağlık — Luminary Clinical Premium
   Cormorant Garamond + Manrope · Forest · Gold
   ===================================================== */

:root {
  --cream: #FAF6EF;
  --sand: #F0E9DC;
  --linen: #E8DFD0;
  --forest: #0A2E32;
  --forest-2: #0F3D42;
  --teal: #156569;
  --teal-light: #1E7A7F;
  --sage: #3D7A72;
  --gold: #B8956B;
  --gold-light: #D4B88A;
  --gold-pale: #EDE0C8;

  --ink: #0E2428;
  --ink-2: #2A4549;
  --ink-3: #5C7378;
  --white: #FFFFFF;

  --line: rgba(10, 46, 50, .08);
  --line-strong: rgba(10, 46, 50, .14);
  --glass: rgba(255, 255, 255, .62);
  --glass-strong: rgba(255, 255, 255, .82);
  --glass-line: rgba(255, 255, 255, .75);

  --shadow-xs: 0 2px 8px rgba(10, 46, 50, .05);
  --shadow-sm: 0 8px 24px -8px rgba(10, 46, 50, .12);
  --shadow: 0 24px 64px -20px rgba(10, 46, 50, .22);
  --shadow-lg: 0 40px 100px -28px rgba(10, 46, 50, .32);
  --glow: 0 12px 40px rgba(21, 101, 105, .28);
  --glow-gold: 0 8px 32px rgba(184, 149, 107, .25);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --container: 1200px;
  --container-narrow: 760px;
  --header-h: 80px;

  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --t: .34s cubic-bezier(.4, 0, .2, 1);
  --t-slow: .65s cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 55% 45% at 92% 0%, rgba(184, 149, 107, .12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(21, 101, 105, .1) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: var(--container-narrow); }

/* ============ Grain ============ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}

.site-header.is-scrolled {
  background: rgba(250, 246, 239, .88);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), var(--shadow-xs);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--forest);
}

.logo-badge {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10, 46, 50, .14);
}

.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-mark__cap {
  font-family: var(--font-serif);
  font-size: .42rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1;
  padding: 2px 0;
}

.logo-mark__rule {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--forest);
}

.logo-mark__hero {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  padding: 3px 0 4px;
}

.logo-mark__d {
  position: relative;
  display: inline-block;
}

.logo-mark__drop {
  position: absolute;
  left: 52%;
  top: 54%;
  width: .36em;
  height: .48em;
  transform: translate(-50%, -50%);
  fill: #97A894;
  pointer-events: none;
}

.logo--footer {
  color: var(--white);
}

.logo--footer .logo-badge {
  background: rgba(255, 255, 255, .1);
  box-shadow: none;
}

.logo--footer .logo-mark__rule {
  background: rgba(255, 255, 255, .7);
}

.logo--footer .logo-mark__drop {
  fill: #A8BBA4;
}

.site-nav { display: flex; gap: 32px; }

.site-nav a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: color var(--t);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width var(--t);
}

.site-nav a:hover { color: var(--teal); }
.site-nav a:hover::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: 10px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform var(--t), background var(--t), box-shadow var(--t), color var(--t), border-color var(--t);
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--forest) 100%);
  color: var(--white);
  box-shadow: var(--glow);
  border: 1px solid rgba(255, 255, 255, .12);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(21, 101, 105, .38);
}

.btn--outline {
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  background: var(--glass-strong);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  color: var(--forest);
  background: var(--glass-strong);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  font-size: .82rem;
  box-shadow: var(--shadow-xs);
}

.btn--ghost:hover { background: var(--white); border-color: var(--gold-pale); }

.btn--sm { padding: 10px 15px; font-size: .8rem; }

.btn--wa {
  background: #25D366;
  color: #fff;
  justify-content: center;
  width: 100%;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .28);
}

.btn--wa:hover { background: #1fb855; transform: translateY(-2px); }

.btn--menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--glass-strong);
  border: 1px solid var(--line);
}

.btn--menu span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.btn--menu.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn--menu.is-open span:nth-child(2) { opacity: 0; }

/* ============ Drawer ============ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 46, 50, .42);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}

.drawer.is-open { opacity: 1; visibility: visible; }

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 90vw);
  height: 100%;
  background: rgba(250, 246, 239, .94);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  box-shadow: var(--shadow-lg);
}

.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.drawer__label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.drawer__close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--forest);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.drawer__nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color var(--t), padding-left var(--t);
}

.drawer__nav a span {
  font-size: .7rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 22px;
}

.drawer__nav a:hover { color: var(--teal); padding-left: 6px; }

.drawer__cta {
  margin-top: auto;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal) 0%, var(--forest) 100%);
  color: var(--white);
  text-align: center;
  box-shadow: var(--glow);
}

.drawer__cta small { display: block; font-size: .72rem; opacity: .85; margin-bottom: 4px; }
.drawer__cta strong { font-size: 1.28rem; font-weight: 800; letter-spacing: -.01em; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 56px) 28px 88px;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 40% at 85% 15%, rgba(184, 149, 107, .14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 5% 85%, rgba(21, 101, 105, .12) 0%, transparent 60%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 380px;
  height: 380px;
  top: -5%;
  right: 8%;
  background: rgba(184, 149, 107, .18);
  animation: float 16s ease-in-out infinite;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  bottom: 8%;
  left: -5%;
  background: rgba(21, 101, 105, .15);
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(18px, -20px); }
}

.hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--glass-strong);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.badge__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184, 149, 107, .55);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 149, 107, .5); }
  70% { box-shadow: 0 0 0 10px rgba(184, 149, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 149, 107, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.2vw, 4.1rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero__title-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.06em;
  color: var(--teal);
  -webkit-text-fill-color: unset;
  background: none;
}

.hero__lede {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__aside { display: flex; flex-direction: column; gap: 18px; }

.hero__visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .65);
  aspect-ratio: 16 / 10;
}

.hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.4, 0, .2, 1);
}

.hero__visual-frame:hover img { transform: scale(1.06); }

.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 46, 50, .45) 100%);
  pointer-events: none;
}

.hero__visual-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-sm);
}

.hero__visual-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  color: var(--forest);
}

.hero__visual-badge strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--ink);
}

.hero__visual-badge span {
  font-size: .76rem;
  color: var(--ink-3);
}

.hero__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--glass-strong);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}

.metric-card--lead {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 100%);
  color: var(--white);
  border: none;
}

.metric-card--lead .metric-card__label { color: rgba(255, 255, 255, .7); }
.metric-card--lead .metric-card__value { color: var(--gold-light); }
.metric-card--lead .metric-card__unit { color: rgba(255, 255, 255, .65); }

.metric-card--wide { grid-column: span 2; }

.metric-card__label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}

.metric-card__value {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--teal);
}

.metric-card__unit { font-size: .88rem; color: var(--ink-3); margin-left: 4px; font-weight: 600; }

.metric-card__row { display: flex; align-items: center; gap: 14px; }
.metric-card__row svg { color: var(--gold); flex-shrink: 0; }
.metric-card__row strong { display: block; font-size: .92rem; margin-bottom: 2px; }
.metric-card__row span { font-size: .78rem; color: var(--ink-3); }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  animation: bob 2.5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============ Trust Band ============ */
.trust-band {
  background: var(--forest);
  color: var(--white);
  padding: 20px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(184, 149, 107, .25);
  border-bottom: 1px solid rgba(184, 149, 107, .25);
}

.trust-band__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 40px;
}

.trust-band__list li { font-size: .88rem; font-weight: 500; opacity: .92; }

.trust-band__list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-right: 6px;
}

/* ============ Sections ============ */
.section { padding: 108px 0; position: relative; z-index: 2; }
.section--bone { background: transparent; }

.section--dark {
  background: linear-gradient(165deg, var(--forest) 0%, #061E22 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  margin: 0 20px;
  overflow: hidden;
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 90% 5%, rgba(184, 149, 107, .12) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 5% 95%, rgba(21, 101, 105, .2) 0%, transparent 55%);
  pointer-events: none;
}

.section--flush { padding-bottom: 72px; }

.section--cta {
  background: linear-gradient(155deg, var(--forest) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 88px 0;
  border-radius: var(--radius-xl);
  margin: 0 20px 28px;
  overflow: hidden;
  position: relative;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 80% 15%, rgba(184, 149, 107, .18) 0%, transparent 60%);
  pointer-events: none;
}

.eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow--light { color: var(--gold-light); }

.section-head { margin-bottom: 52px; position: relative; z-index: 1; }
.section-head--center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.section-title--light { color: var(--white); }

.section-lede {
  font-size: 1.04rem;
  color: var(--ink-2);
  margin-top: 18px;
  max-width: 580px;
}

.section-head--center .section-lede { margin-left: auto; margin-right: auto; }

/* ============ Media Frame ============ */
.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: center;
}

.media-frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .7);
}

.media-frame--portrait { aspect-ratio: 4 / 5; max-height: 560px; }

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 46, 50, .82) 100%);
  color: var(--white);
}

.media-caption__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(184, 149, 107, .25);
  border: 1px solid rgba(184, 149, 107, .45);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.media-caption p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
  font-style: italic;
}

.split__text p { color: var(--ink-2); margin-bottom: 16px; }

.check-list { margin-top: 28px; display: grid; gap: 14px; }

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--ink);
}

.check-list li::before {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230A2E32'%3E%3Cpath d='M8 13.5l-3.5-3.5 1-1L8 11.5l6.5-6.5 1 1z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--glow-gold);
}

/* ============ Bento Grid ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bento__item {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}

.bento__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.bento__body { padding: 28px; }

.bento__item--featured {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest);
  color: var(--white);
  border: none;
}

.bento__item--featured .bento__media {
  height: 100%;
  min-height: 280px;
}

.bento__item--featured .bento__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento__item--featured .bento__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}

.bento__item--featured .bento__num { color: var(--gold-light); }
.bento__item--featured p { color: rgba(255, 255, 255, .82); }
.bento__item--featured ul { color: rgba(255, 255, 255, .78); }

.bento__item--has-media { padding: 0; }
.bento__item--has-media .bento__body { padding: 22px 24px 26px; }

.bento__media--compact {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.bento__media--compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.bento__item--has-media:hover .bento__media--compact img { transform: scale(1.05); }

.bento__item--accent {
  background: linear-gradient(145deg, var(--gold-pale) 0%, var(--sand) 100%);
  border-color: rgba(184, 149, 107, .25);
}

.bento__num {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.bento__item h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.bento__item--featured h3 { font-size: 1.75rem; }

.bento__item p { font-size: .92rem; color: var(--ink-3); line-height: 1.55; }

.bento__item ul { margin-top: 16px; font-size: .88rem; color: var(--ink-3); }

.bento__item ul li { padding: 4px 0; padding-left: 18px; position: relative; }

.bento__item ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.bento__item--featured ul li::before { background: var(--gold-light); }

.bento__link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  font-size: .88rem;
  color: var(--teal);
}

.bento__link:hover { color: var(--forest); }

/* ============ Team ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.team-tile {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  transition: border-color var(--t), background var(--t), transform var(--t);
}

.team-tile:hover {
  border-color: rgba(184, 149, 107, .45);
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
}

.team-tile--lead {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(184, 149, 107, .15) 0%, rgba(255, 255, 255, .05) 100%);
  border-color: rgba(184, 149, 107, .3);
}

.team-tile__avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: 18px;
  box-shadow: var(--glow-gold);
}

.team-tile__role {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.team-tile h3 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.team-tile p { font-size: .84rem; opacity: .78; line-height: 1.55; }

/* ============ Timeline ============ */
.timeline { position: relative; padding-left: 40px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--teal) 100%);
}

.timeline__item { position: relative; padding-bottom: 48px; }
.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--gold);
  box-shadow: var(--glow-gold);
}

.timeline__step {
  display: block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.timeline__body p { color: var(--ink-3); font-size: .96rem; }

/* ============ Reviews ============ */
.rating-strip { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.rating-strip__stars { display: flex; gap: 2px; color: var(--gold); }
.rating-strip strong { font-size: 1.18rem; font-weight: 800; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.quote-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold-pale);
  pointer-events: none;
}

.quote-card--accent {
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-2) 100%);
  color: var(--white);
  border: none;
}

.quote-card--accent::before { color: rgba(184, 149, 107, .2); }

.quote-card p { font-size: .94rem; line-height: 1.65; margin-bottom: 18px; position: relative; z-index: 1; }

.quote-card footer { font-size: .82rem; color: var(--ink-3); }
.quote-card--accent footer { color: rgba(255, 255, 255, .72); }
.quote-card footer strong { color: var(--ink); font-weight: 800; }
.quote-card--accent footer strong { color: var(--gold-light); }

/* ============ Marquee ============ */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track { display: flex; gap: 14px; width: max-content; animation: marquee 40s linear infinite; }

.marquee__track span {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.districts-seo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.districts-seo li {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
}

/* ============ Accordion ============ */
.accordion { display: grid; gap: 12px; }

.accordion__item {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow var(--t);
}

.accordion__item[open] { box-shadow: var(--shadow-sm); }

.accordion__item summary {
  padding: 24px 28px;
  font-weight: 800;
  font-size: .96rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--t);
}

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

.accordion__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform var(--t);
  flex-shrink: 0;
}

.accordion__item[open] summary::after { transform: rotate(45deg); }
.accordion__item[open] summary { color: var(--teal); }

.accordion__item p { padding: 0 28px 24px; font-size: .92rem; color: var(--ink-3); line-height: 1.65; }

/* ============ CTA Panel ============ */
.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-panel__copy p { margin-top: 16px; opacity: .88; font-size: 1.04rem; }
.cta-panel__actions { display: flex; flex-direction: column; gap: 14px; }

.cta-phone {
  display: block;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(12px);
  color: var(--white);
  transition: background var(--t), transform var(--t);
}

.cta-phone:hover { background: rgba(255, 255, 255, .18); transform: translateY(-2px); }

.cta-phone small { display: block; font-size: .72rem; opacity: .8; margin-bottom: 4px; }
.cta-phone strong { font-size: 1.75rem; font-weight: 800; letter-spacing: -.02em; }

.cta-panel__meta { display: flex; gap: 28px; margin-top: 8px; }
.cta-panel__meta div strong { display: block; font-size: .74rem; opacity: .75; margin-bottom: 2px; }
.cta-panel__meta div span { font-size: .9rem; font-weight: 700; }

/* ============ Footer ============ */
.footer {
  background: var(--forest);
  color: rgba(255, 255, 255, .72);
  padding: 56px 0 36px;
  position: relative;
  z-index: 2;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.footer__nav a { font-size: .86rem; transition: color var(--t); }
.footer__nav a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: .8rem;
}

.footer__note strong { color: var(--gold-light); }

/* ============ Float CTA ============ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(250, 246, 239, .92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  gap: 10px;
}

.float-cta.is-visible { display: flex; }

.float-cta__call, .float-cta__wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: .9rem;
}

.float-cta__call {
  background: linear-gradient(135deg, var(--teal), var(--forest));
  color: var(--white);
  box-shadow: var(--glow);
}

.float-cta__wa { background: #25D366; color: #fff; }

/* ============ Reveal ============ */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.4, 0, .2, 1), transform .75s cubic-bezier(.4, 0, .2, 1);
}

.reveal-in { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__aside { max-width: 560px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .media-frame--portrait { aspect-ratio: 16 / 11; max-height: 380px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__item--featured { grid-column: span 2; grid-row: span 1; grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-tile--lead { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .btn--menu { display: flex; }
  .btn--ghost { display: none; }

  .section { padding: 80px 0; }
  .section--dark, .section--cta { margin: 0 12px; border-radius: var(--radius-lg); }

  .bento { grid-template-columns: 1fr; }
  .bento__item--featured { grid-column: span 1; }

  .team-grid { grid-template-columns: 1fr; }
  .team-tile--lead { grid-column: span 1; }

  .reviews-grid { grid-template-columns: 1fr; }
  .trust-band__list { gap: 8px 22px; }
  .hero__scroll { display: none; }
  .hero__panel { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .marquee__track { animation: none; }
  .reveal-init { opacity: 1; transform: none; }
}
