/* ===================== TOKENS ===================== */
:root {
  --bg:        #faf7f2;   /* warm cream */
  --bg-2:      #f3eee5;
  --surface:   #ffffff;
  --surface-2: #fbf8f3;
  --line:      rgba(40,30,15,.12);
  --text:      #20242c;
  --muted:     #5d6470;
  --faint:     #8a909c;

  --accent:    #b07d2b;   /* deep warm gold */
  --accent-2:  #c89a45;
  --accent-soft: rgba(176,125,43,.12);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;
  --shadow:    0 24px 60px -22px rgba(60,45,20,.22);
  --ease:      cubic-bezier(.2,.7,.2,1);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ===================== RESET ===================== */
*,*::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);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { width: 100%; height: 100%; }

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

/* ===================== BUTTONS ===================== */
.btn {
  --pad: 12px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad);
  border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #221a08;
  box-shadow: 0 10px 28px -10px rgba(212,162,78,.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(212,162,78,.7); }
.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { background: rgba(255,255,255,.05); transform: translateY(-2px); border-color: rgba(255,255,255,.2); }
.btn--lg { --pad: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250,247,242,.75);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled { background: rgba(250,247,242,.92); border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(60,45,20,.4); }
.nav__inner { position: relative; display: flex; align-items: center; height: 96px; gap: 22px; padding-inline: 18px; }
.nav__links { position: absolute; left: 50%; transform: translateX(-50%); }   /* truly centered in the bar */

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand__mark {
  width: 84px; height: 84px; border-radius: 50%;
  object-fit: cover; display: block;
}
.brand__name { display: none; }

.nav__links { display: flex; align-items: center; gap: 40px; }
.nav__links a {
  color: var(--text); font-weight: 500; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .2em;
  position: relative; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: inline-flex; margin-left: auto; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 6px;
  padding: 8px 24px 22px;
  background: rgba(250,247,242,.98); border-bottom: 1px solid var(--line);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a { padding: 12px 4px; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile a.btn { color: #221a08; border: 0; margin-top: 10px; }

/* ===================== HERO ===================== */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 clamp(60px, 7vw, 90px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(212,162,78,.16), transparent 60%),
    radial-gradient(50% 50% at 0% 80%, rgba(80,110,200,.10), transparent 60%);
  pointer-events: none;
  will-change: transform, opacity;
  animation: hero-glow 20s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  0%   { transform: translate(0, 0) scale(1);        opacity: 1; }
  50%  { transform: translate(-3%, 2%) scale(1.08);  opacity: .85; }
  100% { transform: translate(2.5%, -2%) scale(1.04); opacity: 1; }
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .85rem; font-weight: 600; color: var(--muted);
  letter-spacing: .02em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.02);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #46d27e; box-shadow: 0 0 0 4px rgba(70,210,126,.18); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  line-height: 1.05; letter-spacing: -.02em;
  margin: 22px 0 18px;
}
.accent {
  color: var(--accent);
  font-style: italic;
}
.hero__lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 30em; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero__stats { display: flex; gap: clamp(20px, 4vw, 44px); margin-top: 42px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; color: var(--text); }
.stat__label { font-size: .82rem; color: var(--faint); letter-spacing: .02em; }

/* Hero media — full cutout, floats directly on the cream background */
.hero__media {
  position: relative; justify-self: center;
  width: 100%; max-width: 380px; margin-inline: auto;
}
/* soft warm halo behind the framed photo */
.hero__glow {
  position: absolute; inset: -6% -4%; z-index: 0; border-radius: 30px;
  background: radial-gradient(60% 55% at 60% 30%, rgba(176,125,43,.18), transparent 70%);
  filter: blur(24px);
}
.hero__photo-wrap {
  position: relative; z-index: 1;
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.hero__photo {
  width: 100%; height: auto; display: block;   /* full photo, nothing cropped */
  transition: transform .6s var(--ease);
}
/* warm sheen that sweeps in on hover */
.hero__photo-wrap::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(120deg, transparent 40%, rgba(212,162,78,.22) 55%, transparent 70%);
  opacity: 0; transform: translateX(-30%); transition: opacity .5s var(--ease), transform .7s var(--ease);
}
.hero__photo-wrap:hover { transform: translateY(-4px); box-shadow: 0 32px 64px -22px rgba(60,45,20,.32); }
.hero__photo-wrap:hover .hero__photo { transform: scale(1.06); }
.hero__photo-wrap:hover::after { opacity: 1; transform: translateX(30%); }
.hero__badge { display: none; }
.hero__badge-title { font-weight: 600; font-size: .95rem; }
.hero__badge-sub { font-size: .78rem; color: var(--accent-2); letter-spacing: .03em; }

/* ===================== MARQUEE ===================== */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden; padding: 18px 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 28px; white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display); font-size: 1.25rem; color: var(--muted);
}
.marquee__item { display: inline-flex; align-items: center; gap: 11px; }
.marquee__icon { width: 1.05em; height: 1.05em; color: var(--accent); flex-shrink: 0; }
.marquee__sep { color: var(--accent); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===================== SECTIONS ===================== */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section__head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent); margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.75rem); line-height: 1.12; letter-spacing: -.02em;
}
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ===================== ABOUT ===================== */
.about__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.about__media { position: relative; }
.about__photo {
  width: 100%; height: 100%; display: block; object-fit: contain;  /* match content height, whole graphic visible */
}
.about__card {
  position: absolute; right: -14px; bottom: 24px;
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow);
}
.about__card strong { font-size: .95rem; }
.about__card span { font-size: .8rem; color: var(--faint); }

.about__content .section__title { margin-bottom: 20px; }
.about__text { color: var(--muted); margin-bottom: 16px; max-width: 38em; }
.about__list {
  display: grid; grid-template-columns: 1fr; gap: 12px 20px;
  margin: 26px 0 30px;
}
.about__list li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .96rem; }
.about__content > .btn { display: flex; width: fit-content; margin-inline: auto; }
.check { width: 22px; height: 22px; flex: 0 0 22px; fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ===================== CARDS ===================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(212,162,78,.4); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; padding: 13px;
  background: var(--accent-soft); color: var(--accent-2);
  margin-bottom: 20px;
}
.card__icon svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ===================== PRICING ===================== */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(212,162,78,.4); box-shadow: var(--shadow); }
.price-card--featured {
  border-color: var(--accent);
  box-shadow: 0 24px 50px -24px rgba(176,125,43,.55);
}
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #221a08; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.price-card__head h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin-bottom: 8px; }
.price-card__desc { color: var(--muted); font-size: .92rem; min-height: 2.8em; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin: 22px 0; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.price-card__amount { font-family: var(--font-display); font-weight: 600; font-size: 2.4rem; color: var(--text); }
.price-card__unit { color: var(--muted); font-size: .92rem; }
.price-card__list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.price-card__list li { display: flex; align-items: center; gap: 11px; font-size: .94rem; color: var(--text); }
.price-card__list .check { width: 19px; height: 19px; flex: 0 0 19px; }
.price-card .btn { margin-top: auto; }

/* ===================== WORK / STEPS ===================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  position: relative; padding: 28px 24px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2);
}
.step__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--accent); opacity: .55; }
.step h3 { font-size: 1.18rem; margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ===================== CONTACT ===================== */
.contact__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line); border-radius: 26px;
  padding: clamp(32px, 5vw, 60px);
  box-shadow: var(--shadow);
}
.contact__copy .section__title { margin-bottom: 14px; }
.contact__meta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact__line { display: inline-flex; align-items: center; gap: 12px; color: var(--muted); font-weight: 500; }
.contact__line svg { width: 22px; height: 22px; flex: 0 0 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__line:hover { color: var(--text); }

.contact__form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--muted); }
.field input, .field textarea {
  font-family: inherit; font-size: .96rem; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; resize: vertical; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.form__note { font-size: .88rem; color: #46d27e; text-align: center; }

/* ===================== FOOTER ===================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 72px); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: clamp(32px, 5vw, 64px); padding-bottom: 48px; }
.footer__brand p { color: var(--muted); margin: 16px 0 22px; max-width: 30em; font-size: .95rem; }

.socials { display: flex; gap: 12px; }
.social {
  width: 42px; height: 42px; border-radius: 12px; padding: 11px;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); color: var(--muted);
  transition: transform .25s var(--ease), color .25s, border-color .25s, background .25s;
}
.social svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.social:hover { transform: translateY(-3px); color: var(--accent-2); border-color: rgba(212,162,78,.5); background: var(--accent-soft); }

.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__nav h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin-bottom: 14px; }
.footer__nav a, .footer__nav span { display: block; color: var(--muted); font-size: .92rem; padding: 5px 0; transition: color .2s; }
.footer__nav a:hover { color: var(--accent-2); }

.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.footer__bottom p { color: var(--faint); font-size: .85rem; }
.footer__legal a { color: var(--faint); transition: color .2s; }
.footer__legal a:hover { color: var(--accent); }

/* ===================== LEGAL / TERMS ===================== */
.legal { max-width: 820px; margin: 0 auto; }
.legal__meta { color: var(--faint); font-size: .9rem; margin-bottom: 36px; }
.legal h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 1.1em; display: flex; flex-direction: column; gap: 8px; list-style: disc; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }
.legal__note {
  margin-top: 40px; padding: 18px 22px;
  background: var(--accent-soft); border: 1px solid var(--line); border-radius: 14px;
  font-size: .9rem; color: var(--muted);
}

/* ===================== BLOG PAGE ===================== */
.blog-hero { padding-bottom: 40px; }
.blog-hero__inner { max-width: 720px; text-align: center; margin: 0 auto; padding-top: 24px; }
.blog-hero .section__title { margin-top: 12px; }

.post__meta { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.post__more { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--accent); font-size: .92rem; }

/* Featured */
.post-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-feature:hover { transform: translateY(-4px); }
.post-feature__media {
  position: relative; min-height: 300px; overflow: hidden;
  background: linear-gradient(150deg, #2a2f3a, #b07d2b);
}
.post-feature__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.18), transparent 60%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.post-feature:hover .post-feature__media::after { opacity: 1; }
.post-feature__tag {
  position: absolute; left: 20px; top: 20px;
  background: rgba(255,255,255,.92); color: var(--text);
  padding: 7px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600;
}
.post-feature__body { padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.post-feature__body h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.15; margin-bottom: 12px; }
.post-feature__body p { color: var(--muted); }

/* Grid */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(176,125,43,.4); }
.post-card__media {
  position: relative; height: 168px; display: flex; align-items: flex-end; padding: 16px;
  overflow: hidden;
}
.post-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,.22), transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.post-card:hover .post-card__media::after { opacity: 1; }
.post-card__media span {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.9); color: var(--text);
  padding: 6px 12px; border-radius: 999px; font-size: .76rem; font-weight: 600;
  transition: transform .4s var(--ease);
}
.post-card:hover .post-card__media span { transform: translateY(-3px); }
.post-card__media--1 { background: linear-gradient(150deg, #3a4150, #6c7585); }
.post-card__media--2 { background: linear-gradient(150deg, #b07d2b, #e0b86b); }
.post-card__media--3 { background: linear-gradient(150deg, #2f5d50, #6ba58c); }
.post-card__media--4 { background: linear-gradient(150deg, #5a3d6b, #b08cc8); }
.post-card__media--5 { background: linear-gradient(150deg, #2a4a6b, #6b9ac8); }
.post-card__media--6 { background: linear-gradient(150deg, #6b3a2a, #c8906b); }
.post-card__body { padding: 22px; }
.post-card__body h3 { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.2; margin-bottom: 10px; }
.post-card__body p { color: var(--muted); font-size: .94rem; }

/* Newsletter */
.newsletter { display: flex; gap: 12px; max-width: 440px; margin: 24px auto 0; }
.newsletter input {
  flex: 1; font-family: inherit; font-size: .96rem; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 13px 18px;
}
.newsletter input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

@media (max-width: 900px) {
  .post-feature { grid-template-columns: 1fr; }
  .posts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .posts { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; }
  .newsletter input { border-radius: var(--radius-sm); }
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__media { order: 1; }
  .eyebrow, .hero__actions, .hero__stats { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact__card { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cards, .steps, .about__list, .footer__nav, .price-cards { grid-template-columns: 1fr; }
  .hero__stats { gap: 18px; flex-wrap: wrap; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .about__card { right: 10px; }
}

/* ===================== BOOKING PAGE ===================== */
.book-hero { padding-bottom: 36px; }
.book-hero__inner { max-width: 720px; text-align: center; margin: 0 auto; padding-top: 24px; }
.book-hero .section__title { margin-top: 12px; }

.book__grid { display: grid; grid-template-columns: .85fr 1.4fr; gap: 28px; align-items: start; }
.book__card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow);
}
.book__aside { position: sticky; top: 96px; }
.book__summary h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 16px; }
.book__perks { display: flex; flex-direction: column; gap: 12px; }
.book__perks li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--text); }
.book__divider { height: 1px; background: var(--line); margin: 22px 0; }
.book__meta { display: flex; flex-direction: column; gap: 12px; }
.book__meta p { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: .92rem; }
.book__meta a { display: inline-flex; align-items: center; gap: 11px; color: var(--muted); transition: color .2s; }
.book__meta a:hover { color: var(--text); }
.book__meta svg { width: 20px; height: 20px; flex: 0 0 20px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Form groups */
.book__form { display: flex; flex-direction: column; gap: 26px; }
.bform__group { border: 0; padding: 0; margin: 0; }
.bform__group legend {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
  margin-bottom: 14px; padding: 0;
}
.legend__hint { font-family: var(--font-body); font-size: .8rem; font-weight: 500; color: var(--faint); }
.bform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Service chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-block; padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg-2);
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: all .2s var(--ease);
}
.chip:hover span { border-color: rgba(176,125,43,.5); color: var(--text); }
.chip input:checked + span {
  background: var(--accent-soft); border-color: var(--accent);
  color: var(--accent); font-weight: 600;
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px var(--accent-soft); }

/* Select reuse field styles */
.field select {
  font-family: inherit; font-size: .96rem; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; cursor: pointer;
}
.field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field input[type="date"] { cursor: pointer; }

/* Time slots */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.slot {
  padding: 11px 8px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--bg-2);
  font-family: inherit; font-size: .9rem; font-weight: 500; color: var(--text);
  cursor: pointer; transition: all .18s var(--ease);
}
.slot:hover { border-color: var(--accent); transform: translateY(-2px); }
.slot.is-active {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #221a08; border-color: transparent; font-weight: 600;
}
.slots__empty { color: var(--faint); font-size: .92rem; padding: 6px 0; }

.form__note--error { color: #c0392b; }

@media (max-width: 900px) {
  .book__grid { grid-template-columns: 1fr; }
  .book__aside { position: static; }
}
@media (max-width: 560px) {
  .bform__row { grid-template-columns: 1fr; }
}

/* ===================== OFFER POPUP ===================== */
.popup { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.popup[hidden] { display: none; }
.popup__overlay {
  position: absolute; inset: 0;
  background: rgba(20, 15, 6, .55); backdrop-filter: blur(3px);
  opacity: 0; animation: popup-fade .35s var(--ease) forwards;
}
.popup__card {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px; text-align: center;
  background: linear-gradient(160deg, var(--surface, #fff), var(--bg-2));
  border: 1px solid var(--line); border-radius: 22px;
  padding: 40px 34px 36px;
  box-shadow: 0 40px 90px -30px rgba(40, 30, 15, .55);
  transform: translateY(14px) scale(.98); opacity: 0;
  animation: popup-rise .4s var(--ease) .05s forwards;
}
.popup__close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: 0; cursor: pointer;
  font-size: 1.8rem; line-height: 1; color: var(--muted);
  transition: color .2s;
}
.popup__close:hover { color: var(--text); }
.popup__logo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; display: block; }
.popup__title { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; margin-bottom: 12px; }
.popup__text { color: var(--muted); font-size: .98rem; margin-bottom: 24px; }
@keyframes popup-fade { to { opacity: 1; } }
@keyframes popup-rise { to { transform: translateY(0) scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .popup__overlay, .popup__card { animation: none; opacity: 1; transform: none; }
}
