/* =====================================================================
   MARVELIA DIGITAL WORLD — Design System
   Bold editorial minimalism · concentric "target" motif · cinematic dark
   Fonts: Fraunces (display) + Hanken Grotesk (body)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --ink:        #0A0A0A;
  --ink-soft:   #181016;
  --white:      #FFFFFF;
  --surface:    #FAF4F9;        /* faint pink-tinted off-white */
  --surface-2:  #F3E7F0;
  --muted:      #6E6570;        /* purple-grey */
  --muted-d:    #B3A7B2;        /* secondary text on dark */
  --border:     #ECE1EA;
  --border-d:   rgba(255,255,255,.14);

  --brand-from: #E24BBD;        /* bright orchid pink */
  --brand-to:   #A8328C;        /* deep magenta */
  --brand:      linear-gradient(120deg, var(--brand-from), var(--brand-to));
  --brand-btn:  linear-gradient(120deg, #F4C84E, #E24BBD);  /* gold -> pink (buttons) */
  --brand-soft: linear-gradient(120deg, #E24BBD22, #A8328C22);
  --gold:       #F4C84E;        /* golden yellow */
  --amber:      #E24BBD;        /* bright pink accent (token name kept) */
  --amber-ink:  #B5278F;        /* AA-safe magenta-pink text on white */

  --ok:    #1F9D55;
  --err:   #D64545;

  /* type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;

  /* spacing scale (8pt) */
  --s1: .5rem;  --s2: 1rem;  --s3: 1.5rem; --s4: 2rem;
  --s5: 3rem;   --s6: 4rem;  --s7: 6rem;   --s8: 8rem;

  --container: 1240px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(20,16,8,.06);
  --shadow:    0 18px 50px -22px rgba(20,16,8,.28);
  --shadow-lg: 0 40px 90px -40px rgba(20,16,8,.40);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--brand-to); color: #fff; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 1000; background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Grain / atmosphere ---------- */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -.018em; font-optical-sizing: auto; }
.display-1 { font-size: clamp(2.7rem, 7.2vw, 5.6rem); font-weight: 600; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: -.01em; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; color: #2a2724; }
em, .ital { font-style: italic; }
.text-gradient {
  background: var(--brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(2rem, 4.5vw, 4rem); position: relative; }
.section--tight { padding-block: clamp(1.5rem, 3vw, 2.75rem); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--ink); color: #F4F1EC; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: #cfc9c0; }
.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 2rem); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s3); }

/* ---------- Eyebrow label (ring bullet) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body); font-weight: 600; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--amber-ink);
}
.section--dark .eyebrow { color: #F2A8DD; }
.eyebrow::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle, var(--brand-to) 0 3px, transparent 3px 5px, var(--brand-from) 5px 6px, transparent 6px);
  box-shadow: 0 0 0 1px rgba(226,75,189,.35);
}

/* ---------- Section head ---------- */
.section-head { max-width: 60ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: var(--s2); }
.section-head h2 { margin-top: var(--s2); }

/* ---------- Buttons ---------- */
.btn {
  --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  font-family: var(--body); font-weight: 600; font-size: 1rem; letter-spacing: .005em;
  border: 1.5px solid var(--bd); cursor: pointer; position: relative; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 1.1em; height: 1.1em; transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

.btn--primary { background: var(--brand-btn); color: #1a1205; box-shadow: 0 12px 30px -12px rgba(226,75,189,.7); }
.btn--primary:hover { box-shadow: 0 18px 40px -12px rgba(226,75,189,.85); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; --bd: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.section--dark .btn--ghost { --bd: rgba(255,255,255,.4); color: #fff; }
.section--dark .btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--lg { min-height: 58px; padding: 1rem 2rem; font-size: 1.05rem; }

/* ---------- Target / rings motif ---------- */
.rings { position: absolute; border-radius: 50%; pointer-events: none; aspect-ratio: 1;
  background: repeating-radial-gradient(circle at center, currentColor 0 1.5px, transparent 1.5px 30px);
  -webkit-mask: radial-gradient(circle at center, #000 38%, transparent 72%);
          mask: radial-gradient(circle at center, #000 38%, transparent 72%);
  opacity: .5;
}
.target-dot {
  position: relative; width: var(--dot, 76px); aspect-ratio: 1; border-radius: 50%; flex: none;
  background:
    radial-gradient(circle, var(--brand-to) 0 18%, transparent 18% 34%,
      var(--brand-from) 34% 46%, transparent 46% 62%,
      var(--brand-to) 62% 74%, transparent 74% 100%);
}

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78); backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.site-header.is-stuck { border-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--display); font-weight: 600; font-size: 1.28rem; letter-spacing: -.02em; }
.brand img { width: 54px; height: auto; }
.brand b { font-weight: 600; }
.brand .dim { color: var(--muted); font-weight: 500; }
.nav__list { display: flex; align-items: center; gap: clamp(.4rem, 2vw, 1.6rem); }
.nav__link { position: relative; padding: .5rem .25rem; font-weight: 500; font-size: 1rem; color: #2a2724; }
.nav__link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .15rem; height: 2px; background: var(--brand); transition: right .3s var(--ease); }
.nav__link:hover::after, .nav__link.is-active::after { right: 0; }
.nav__link.is-active { color: var(--ink); }
.nav__cta { margin-left: .4rem; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 12px; background: #fff; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); margin-inline: auto; position: relative; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span::before { position: absolute; top: -6px; } .nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding-top: clamp(1.75rem, 4vw, 3rem); padding-bottom: clamp(2rem, 4.5vw, 3.75rem); overflow: clip; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero__eyebrow { margin-bottom: var(--s3); }
.hero__title { font-size: clamp(2.6rem, 6.6vw, 5.3rem); }
.hero__lead { margin-top: var(--s3); max-width: 54ch; }
.hero__actions { margin-top: var(--s4); display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__rings { color: var(--amber); width: 620px; right: -180px; top: -120px; opacity: .28; }
.hero__media { position: relative; }
.hero__media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--surface-2); }
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: -22px; bottom: 26px; z-index: 3;
  background: #fff; border-radius: var(--radius); padding: .9rem 1.1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .8rem; max-width: 240px;
}
.hero__badge .target-dot { --dot: 42px; }
.hero__badge b { font-family: var(--display); font-size: 1.5rem; display: block; line-height: 1; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

/* trust strip */
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1rem,3vw,2.4rem); padding-block: var(--s4); border-top: 1px solid var(--border); margin-top: clamp(2rem,5vw,4rem); }
.trust span { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.trust strong { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2.5vw,2rem); }
.stat { position: relative; padding: var(--s2) var(--s1); }
.stat__num { font-family: var(--display); font-weight: 600; font-size: clamp(2.4rem,5vw,3.6rem); line-height: 1; letter-spacing: -.02em; }
.stat__num .text-gradient { display: inline; }
.stat__label { margin-top: .5rem; font-size: .92rem; color: var(--muted); letter-spacing: .02em; }
.section--dark .stat__label { color: var(--muted-d); }
.stat + .stat { border-left: 1px solid var(--border); padding-left: var(--s3); }
.section--dark .stat + .stat { border-color: var(--border-d); }

/* =====================================================================
   SERVICE CARDS
   ===================================================================== */
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.4vw, 2.2rem); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card::after { content: ""; position: absolute; inset: auto -40% -60% auto; width: 70%; aspect-ratio: 1; border-radius: 50%; background: var(--brand-soft); opacity: 0; transition: opacity .4s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #ded9cf; }
.service-card:hover::after { opacity: 1; }
.service-card__ico { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--ink); color: #fff; margin-bottom: var(--s3); }
.service-card__ico svg { width: 26px; height: 26px; }
.service-card h3 { position: relative; z-index: 1; }
.service-card p { position: relative; z-index: 1; margin-top: .7rem; color: #44403b; }
.service-card__more { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: .4rem; margin-top: var(--s3); font-weight: 600; color: var(--amber-ink); }
.service-card__more svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.service-card:hover .service-card__more svg { transform: translateX(4px); }

/* numbered variant for dark services list */
.feature-row { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1rem,2.4vw,1.6rem); }
.feature {
  display: flex; gap: var(--s3); padding: var(--s4) var(--s3); border-radius: var(--radius);
  border: 1px solid var(--border); background: #fff; transition: border-color .3s, transform .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); border-color: #ded9cf; }
.feature__ico { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--brand); color: #1a1205; }
.feature__ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.2rem; }
.feature p { margin-top: .4rem; color: #44403b; font-size: .98rem; }

/* =====================================================================
   PROCESS (timeline of rings)
   ===================================================================== */
.process { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,2.4vw,1.8rem); }
.step { position: relative; padding-top: var(--s5); }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--amber-ink);
  position: absolute; top: 0; left: 0;
}
.step::after { content: ""; position: absolute; top: 6px; left: 46px; right: -10px; height: 1px; background: repeating-linear-gradient(90deg, var(--border-d) 0 6px, transparent 6px 12px); }
.step:last-child::after { display: none; }
.step__dot { width: 18px; height: 18px; border-radius: 50%; background: var(--brand); margin-bottom: var(--s2); box-shadow: 0 0 0 6px rgba(226,75,189,.12); }
.step h3 { font-size: 1.18rem; color: #fff; }
.step p { margin-top: .5rem; color: #b9b3a9; font-size: .95rem; }

/* =====================================================================
   SPLIT / WHY
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: center; }
.media-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; background: var(--surface-2); }
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; gap: var(--s2); margin-top: var(--s3); }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; }
.check-list .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--brand); display: grid; place-items: center; margin-top: 2px; }
.check-list .ck svg { width: 14px; height: 14px; color: #1a1205; }
.check-list b { font-weight: 600; }
.check-list span { color: #d8d2c8; }
.section:not(.section--dark) .check-list span { color: #44403b; }

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing-grid { grid-template-columns: repeat(3,1fr); align-items: stretch; }
.price {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(1.6rem,2.6vw,2.4rem); position: relative; overflow: hidden;
}
.price--featured { background: var(--ink); color: #ece8e1; border-color: var(--ink); box-shadow: var(--shadow-lg); }
.price--featured h3 { color: #fff; }
.price__tag { position: absolute; top: 1.3rem; right: 1.3rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: #1a1205; background: var(--brand-btn); padding: .3rem .7rem; border-radius: var(--radius-pill); }
.price__name { font-family: var(--display); font-size: 1.5rem; font-weight: 600; }
.price__price { display: flex; align-items: baseline; gap: .3rem; margin: var(--s2) 0 var(--s1); }
.price__price b { font-family: var(--display); font-size: clamp(2.4rem,5vw,3.2rem); font-weight: 600; line-height: 1; }
.price__price .per { color: var(--muted); font-size: .95rem; }
.price--featured .price__price .per { color: var(--muted-d); }
.price__list { display: grid; gap: .7rem; margin: var(--s3) 0; padding-top: var(--s3); border-top: 1px solid var(--border); }
.price--featured .price__list { border-color: var(--border-d); }
.price__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .96rem; }
.price__list svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--amber); }
.price .btn { margin-top: auto; width: 100%; }

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.quote { max-width: 60ch; }
.quote__mark { font-family: var(--display); font-size: 4rem; line-height: .4; color: var(--amber); height: 2rem; display: block; }
.quote__text { font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem,2.8vw,2.1rem); line-height: 1.32; letter-spacing: -.01em; }
.quote__author { display: flex; align-items: center; gap: .9rem; margin-top: var(--s4); }
.quote__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote__author b { display: block; font-weight: 600; }
.quote__author span { font-size: .9rem; color: var(--muted); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta { position: relative; overflow: clip; }
.cta__inner { position: relative; z-index: 1; background: var(--ink); border-radius: var(--radius-lg); padding: clamp(2.2rem,6vw,5rem); color: #fff; overflow: hidden; }
.cta__rings { color: var(--amber); width: 560px; right: -160px; bottom: -260px; opacity: .35; }
.cta__inner h2 { color: #fff; max-width: 18ch; }
.cta__inner .lead { color: #cfc9c0; margin-top: var(--s2); max-width: 50ch; }
.cta__actions { margin-top: var(--s4); display: flex; flex-wrap: wrap; gap: .85rem; }

/* =====================================================================
   FORMS
   ===================================================================== */
.form { display: grid; gap: var(--s3); }
.field { display: grid; gap: .45rem; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.field label { font-weight: 600; font-size: .92rem; }
.field label .req { color: var(--amber-ink); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 54px; padding: .85rem 1rem; background: #fff;
  border: 1.5px solid var(--border); border-radius: 14px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 150px; resize: vertical; padding-top: .9rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(226,75,189,.14); }
.field__hint { font-size: .82rem; color: var(--muted); }
.form__note { font-size: .85rem; color: var(--muted); }
.form-success { display: none; padding: var(--s3); border-radius: 14px; background: #ecf8f0; border: 1px solid #bfe6cd; color: #176b3c; font-weight: 500; }

/* contact info list */
.contact-list { display: grid; gap: var(--s2); }
.contact-item { display: flex; gap: var(--s2); align-items: flex-start; padding: var(--s3); border: 1px solid var(--border); border-radius: var(--radius); background: #fff; transition: border-color .3s, transform .3s var(--ease); }
.contact-item:hover { transform: translateY(-3px); border-color: #ded9cf; }
.contact-item .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--ink); color: #fff; }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item .k { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-item .v { font-weight: 600; font-size: 1.05rem; }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero { position: relative; padding-top: clamp(2.5rem,5vw,4rem); padding-bottom: clamp(2rem,4vw,3rem); overflow: clip; }
.page-hero__rings { color: var(--amber); width: 520px; right: -200px; top: -180px; opacity: .22; }
.page-hero h1 { font-size: clamp(2.4rem,6vw,4.4rem); max-width: 16ch; margin-top: var(--s3); }
.page-hero .lead { margin-top: var(--s3); max-width: 56ch; }
.breadcrumbs { font-size: .88rem; color: var(--muted); }
.breadcrumbs a:hover { color: var(--amber-ink); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: #cbc6bd; padding-block: clamp(3rem,6vw,5rem) var(--s4); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(1.5rem,3vw,2.5rem); }
.footer__brand .brand { color: #fff; }
.footer__brand p { margin-top: var(--s2); max-width: 32ch; color: #a59f95; font-size: .95rem; }
.footer__social { display: flex; gap: .6rem; margin-top: var(--s3); }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.07); transition: background .25s, transform .25s var(--ease); }
.footer__social a:hover { background: var(--brand); color: #1a1205; transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__col h4 { font-family: var(--body); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: var(--s2); }
.footer__col li { margin-bottom: .55rem; }
.footer__col a { color: #b3ada3; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: space-between; align-items: center; margin-top: clamp(2rem,4vw,3.5rem); padding-top: var(--s4); border-top: 1px solid var(--border-d); font-size: .86rem; color: #8d877d; }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 440px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--s5) var(--s4); }
}
@media (max-width: 860px) {
  .nav__list {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border); padding: var(--s2) clamp(1.1rem,4vw,2.5rem) var(--s4);
    transform: translateY(-130%); transition: transform .4s var(--ease); box-shadow: var(--shadow);
  }
  .nav__list.is-open { transform: none; }
  .nav__link { padding: .9rem .25rem; border-bottom: 1px solid var(--border); font-size: 1.1rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin: var(--s2) 0 0; }
  .nav__cta .btn { width: 100%; }
  .nav-toggle { display: block; }
  .cards-3, .pricing-grid, .process, .feature-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: var(--s4) var(--s2); }
  .stat + .stat { border-left: 0; padding-left: var(--s1); }
  .split { grid-template-columns: 1fr; }
  .split--rev .media-card { order: -1; }
  .field__row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: var(--s4); }
  .footer__brand p { max-width: none; }
}
@media (max-width: 480px) {
  .hero__badge { left: 0; }
  .stats { gap: var(--s3) var(--s1); }
}

/* =====================================================================
   Embedded form plugins (Contact Form 7 / WPForms) — on-brand styling
   ===================================================================== */
.mv-embed-form label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .3rem; }
.mv-embed-form input:not([type=submit]):not([type=button]):not([type=checkbox]):not([type=radio]),
.mv-embed-form textarea,
.mv-embed-form select {
  width: 100%; min-height: 54px; padding: .85rem 1rem; margin-bottom: var(--s2);
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.mv-embed-form textarea { min-height: 150px; resize: vertical; }
.mv-embed-form input:focus, .mv-embed-form textarea:focus, .mv-embed-form select:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(226,75,189,.14);
}
.mv-embed-form input[type=submit],
.mv-embed-form button[type=submit],
.mv-embed-form .wpforms-submit {
  min-height: 56px; padding: 1rem 2rem; border: 0; border-radius: var(--radius-pill);
  font-family: var(--body); font-weight: 600; font-size: 1.05rem; color: #1a1205; cursor: pointer;
  background: var(--brand-btn); box-shadow: 0 12px 30px -12px rgba(226,75,189,.7);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.mv-embed-form input[type=submit]:hover,
.mv-embed-form button[type=submit]:hover,
.mv-embed-form .wpforms-submit:hover { transform: translateY(-2px); }
.mv-embed-form .wpcf7-not-valid-tip { color: var(--err); font-size: .85rem; }
.mv-embed-form .wpcf7-response-output { border-radius: 12px; padding: .8rem 1rem !important; margin: var(--s2) 0 0 !important; }
