/* ================================================================
   THE MOMENT HAIR STUDIO — warm ivory & bronze theme
   ================================================================ */

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

:root {
  --bg: #f6f1ea;
  --bg-2: #efe7dc;
  --card: #fffdfa;
  --ink: #26211b;
  --ink-2: #4a4238;
  --muted: #857a6c;
  --bronze: #b08347;
  --bronze-2: #93682f;
  --dark: #211c16;
  --line: rgba(38, 33, 27, .12);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --wrap: 1240px;
  --r-lg: 28px;
  --r-md: 18px;
}

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

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

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

::selection { background: var(--bronze); color: #fff; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.section { padding-block: clamp(84px, 11vw, 150px); }

.skip-link {
  position: fixed; top: -100px; left: 20px; z-index: 999;
  background: var(--dark); color: #fff; padding: 10px 18px; border-radius: 8px;
  transition: top .3s;
}
.skip-link:focus { top: 16px; }

/* ---------------- typography ---------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--bronze); }
.eyebrow--light { color: #d9b073; }
.eyebrow--light::before { background: #d9b073; }

.title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.06; letter-spacing: -.015em;
  margin-bottom: 22px;
}
.title em { font-style: italic; color: var(--bronze); font-weight: 300; }
.title--light { color: #f5efe6; }
.title--light em { color: #d9b073; }
.lede { color: var(--muted); max-width: 500px; font-size: 1.04rem; }

.section-head { margin-bottom: clamp(44px, 6vw, 72px); }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 17px 36px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  transition: all .45s var(--ease); white-space: nowrap;
}
.btn--sm { padding: 12px 26px; font-size: .72rem; }
.btn--dark { background: var(--dark); color: #f5efe6; }
.btn--dark:hover { background: var(--bronze-2); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(147, 104, 47, .25); }
.btn--line { border: 1.5px solid var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--bg); transform: translateY(-3px); }

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  transition: background .45s, box-shadow .45s;
}
.header.scrolled {
  background: rgba(246, 241, 234, .85);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: 16px clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; letter-spacing: -.01em; }
.brand__tag { font-size: .58rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--bronze); }

.nav { display: flex; gap: 34px; }
.nav a {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2); position: relative; padding-block: 6px;
  transition: color .3s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--bronze); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header__right { display: flex; align-items: center; gap: 18px; }

.menu-btn { display: none; flex-direction: column; gap: 7px; width: 30px; padding: 4px 0; }
.menu-btn i { height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), width .4s; }
.menu-btn i:last-child { width: 60%; align-self: flex-end; }
.menu-btn.open i:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-btn.open i:last-child { width: 100%; transform: translateY(-4.5px) rotate(-45deg); }

/* ---------------- fullscreen menu ---------------- */
.menu {
  position: fixed; inset: 0; z-index: 900;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px clamp(24px, 8vw, 80px) 48px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease);
}
.menu.open { clip-path: inset(0); }
.menu__link {
  display: block;
  font-family: var(--serif); font-size: clamp(2.4rem, 9vw, 4.5rem); font-weight: 400;
  padding-block: 8px; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), color .3s, padding-left .3s;
}
.menu.open .menu__link { opacity: 1; transform: none; transition-delay: calc(.12s + var(--i) * .06s); }
.menu__link:hover { color: var(--bronze); padding-left: 14px; }
.menu__footer { margin-top: 42px; display: flex; gap: 30px; flex-wrap: wrap; font-size: .9rem; color: var(--muted); }
.menu__footer a:hover { color: var(--bronze); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  padding-top: clamp(120px, 16vh, 170px);
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -220px; right: -180px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 131, 71, .16), transparent 65%);
  pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}

.hero__rating { display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 26px; }
.hero__rating .stars { color: var(--bronze); letter-spacing: .12em; }

.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3.2rem, 8.4vw, 6.4rem);
  line-height: .98; letter-spacing: -.025em;
  margin-bottom: 26px;
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: var(--bronze); font-weight: 300; }

.hero__sub { max-width: 440px; color: var(--muted); font-size: 1.08rem; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero__facts { display: flex; align-items: center; gap: clamp(18px, 3vw, 34px); }
.hero__facts i { width: 1px; height: 40px; background: var(--line); }
.hero__facts div { display: flex; flex-direction: column; }
.hero__facts strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: var(--ink); line-height: 1.2; }
.hero__facts span { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* hero images */
.hero__media { position: relative; min-height: clamp(420px, 52vw, 640px); }
.hero__img { position: absolute; overflow: hidden; box-shadow: 0 34px 80px rgba(38, 33, 27, .22); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--main {
  width: 74%; height: 100%; right: 0; top: 0;
  border-radius: 220px 220px var(--r-lg) var(--r-lg);
}
.hero__img--main img { object-position: 50% 15%; }
.hero__img--float {
  width: 38%; height: 46%; left: 0; bottom: 4%;
  border-radius: var(--r-md);
  border: 6px solid var(--bg);
}
.hero__stamp {
  position: absolute; top: 4%; left: 8%;
  width: 118px; height: 118px;
  background: var(--dark); border-radius: 50%;
  display: grid; place-items: center;
  animation: spinFloat 14s linear infinite;
}
.hero__stamp svg { position: absolute; inset: 8px; fill: #e8dcc8; }
.hero__stamp svg text { font-size: 11.5px; letter-spacing: .22em; font-family: var(--sans); font-weight: 600; }
.hero__stamp span { color: var(--bronze); font-size: 1.15rem; animation: spinReverse 14s linear infinite; }
@keyframes spinFloat { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

/* entrance animations */
.anim { opacity: 0; transform: translateY(34px); animation: rise 1s var(--ease) forwards; animation-delay: var(--d, 0s); }
.anim-img { opacity: 0; transform: translateY(50px) scale(.96); animation: riseImg 1.2s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes riseImg { to { opacity: 1; transform: none; } }

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee {
  background: var(--dark); color: #ded2bd;
  padding-block: 18px; overflow: hidden;
}
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track span {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem); white-space: nowrap;
}
.marquee__track i { color: var(--bronze); font-style: normal; margin-inline: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ================================================================
   SERVICES — photo cards
   ================================================================ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.svc-card {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: var(--card);
  box-shadow: 0 6px 28px rgba(38, 33, 27, .07);
  transition: transform .5s var(--ease), box-shadow .5s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(38, 33, 27, .16); }
.svc-card figure { aspect-ratio: 4/4.4; overflow: hidden; }
.svc-card--lg figure { aspect-ratio: 4/5.4; }
.svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-card:hover img { transform: scale(1.07); }
.svc-card__body { padding: 22px 24px 26px; position: relative; }
.svc-card__no {
  position: absolute; top: -22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bronze); color: #fff;
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  box-shadow: 0 8px 20px rgba(176, 131, 71, .4);
}
.svc-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ================================================================
   ABOUT
   ================================================================ */
.about { background: var(--bg-2); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 7vw, 100px); align-items: center;
}
.about__media { position: relative; }
.about__arch {
  width: 78%; border-radius: 200px 200px var(--r-md) var(--r-md); overflow: hidden;
  box-shadow: 0 30px 70px rgba(38, 33, 27, .2);
}
.about__arch img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.about__small {
  position: absolute; right: 0; bottom: -8%;
  width: 44%; border-radius: var(--r-md); overflow: hidden;
  border: 8px solid var(--bg-2);
  box-shadow: 0 24px 50px rgba(38, 33, 27, .2);
}
.about__small img { aspect-ratio: 3/3.6; object-fit: cover; width: 100%; }
.about__body p { color: var(--ink-2); margin-bottom: 16px; max-width: 54ch; }
.about__list { margin: 28px 0 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about__list li { padding-left: 26px; position: relative; font-size: .93rem; font-weight: 500; }
.about__list li::before { content: '✦'; position: absolute; left: 0; top: 0; color: var(--bronze); font-size: .75rem; }

/* ================================================================
   QUOTE BAND
   ================================================================ */
.band { padding-block: clamp(76px, 10vw, 120px); text-align: center; }
.band__stars { color: var(--bronze); letter-spacing: .5em; margin-bottom: 24px; }
.band__quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.7rem, 4.4vw, 3.1rem); line-height: 1.24;
  max-width: 880px; margin: 0 auto 22px;
}
.band__meta { font-size: .74rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery { background: var(--bg); padding-top: 0; }
.masonry { columns: 3; column-gap: 16px; }
.masonry__item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--r-md); overflow: hidden; cursor: zoom-in; position: relative;
  box-shadow: 0 6px 24px rgba(38, 33, 27, .08);
}
.masonry__item::after {
  content: '⤢'; position: absolute; right: 14px; bottom: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(246, 241, 234, .92); color: var(--ink);
  display: grid; place-items: center; font-size: 1rem;
  opacity: 0; transform: scale(.6); transition: opacity .35s, transform .35s var(--ease);
}
.masonry__item:hover::after { opacity: 1; transform: scale(1); }
.masonry__item img { width: 100%; transition: transform .7s var(--ease); }
.masonry__item:hover img { transform: scale(1.05); }
.masonry__item.is-extra { display: none; }
.masonry.expanded .masonry__item.is-extra { display: block; animation: fadeUp .6s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.gallery__more { text-align: center; margin-top: 44px; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact { padding-top: 0; }
.contact__card {
  background: var(--dark); color: #cfc4b2;
  border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr;
}
.contact__left { padding: clamp(40px, 6vw, 72px); }
.contact__phone {
  display: inline-block;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
  color: #f5efe6; margin: 6px 0 40px;
  border-bottom: 2px solid var(--bronze); padding-bottom: 8px;
  transition: color .35s, border-color .35s;
}
.contact__phone:hover { color: #d9b073; }

.contact__rows { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); }
.contact__row h3 {
  font-size: .68rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: #d9b073; margin-bottom: 10px;
}
.contact__row p { font-size: .95rem; margin-bottom: 8px; }
.contact__row a { font-size: .88rem; font-weight: 600; color: #f5efe6; border-bottom: 1px solid rgba(245, 239, 230, .3); transition: color .3s, border-color .3s; }
.contact__row a:hover { color: #d9b073; border-color: #d9b073; }

.contact__map { min-height: 420px; }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.4) sepia(.12); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { padding-block: 44px; border-top: 1px solid var(--line); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer__logo { font-family: var(--serif); font-size: 1.25rem; }
.footer__logo em { color: var(--bronze); }
.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__nav a { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.footer__nav a:hover { color: var(--bronze); }
.footer__copy { font-size: .78rem; color: var(--muted); }

/* ================================================================
   FAB / LIGHTBOX
   ================================================================ */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--dark); color: #f5efe6;
  display: grid; place-items: center;
  box-shadow: 0 16px 38px rgba(38, 33, 27, .35);
  transition: transform .4s var(--ease), background .3s;
}
.fab:hover { transform: scale(1.1) rotate(8deg); background: var(--bronze-2); }

.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(24, 20, 15, .95);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 10px; animation: lbIn .35s var(--ease); }
@keyframes lbIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }
.lightbox__btn {
  position: absolute; z-index: 10;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, .25); color: #f5efe6;
  display: grid; place-items: center; font-size: 1.05rem;
  transition: background .3s, border-color .3s;
}
.lightbox__btn:hover { background: rgba(176, 131, 71, .3); border-color: var(--bronze); }
.lightbox__btn--close { top: 20px; right: 20px; }
.lightbox__btn--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ================================================================
   REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__media { max-width: 560px; margin-inline: auto; width: 100%; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; margin-inline: auto; margin-bottom: 40px; width: 100%; }
  .contact__card { grid-template-columns: 1fr; }
  .contact__map { min-height: 340px; }
  .masonry { columns: 2; }
}

@media (max-width: 640px) {
  .header__right .btn { display: none; }
  .hero { padding-top: 110px; }
  .hero__media { min-height: 400px; }
  .hero__stamp { width: 92px; height: 92px; top: 0; left: 2%; }
  .hero__stamp svg text { font-size: 13.5px; }
  .hero__facts { flex-wrap: wrap; row-gap: 14px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card figure, .svc-card--lg figure { aspect-ratio: 4/3.4; }
  .about__list { grid-template-columns: 1fr; }
  .contact__rows { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .masonry { column-gap: 10px; }
  .masonry__item { margin-bottom: 10px; }
}

@media (max-width: 420px) {
  .hero__cta .btn { flex: 1 1 100%; }
  .masonry { columns: 1; }
}

/* ================================================================
   SERVICE DETAIL PAGES
   ================================================================ */
a.svc-card { display: block; color: inherit; }
.svc-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--bronze);
  transition: gap .3s var(--ease);
}
.svc-card:hover .svc-card__more { gap: 12px; }

.crumbs {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: .76rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 22px;
}
.crumbs a { transition: color .3s; }
.crumbs a:hover { color: var(--bronze); }
.crumbs i { font-style: normal; color: var(--bronze); }

.shero {
  padding-top: clamp(120px, 16vh, 170px);
  padding-bottom: clamp(48px, 7vw, 90px);
  position: relative; overflow: hidden;
}
.shero::before {
  content: ''; position: absolute; top: -220px; right: -180px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 131, 71, .15), transparent 65%);
  pointer-events: none;
}
.shero__grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.shero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1; letter-spacing: -.02em; margin-bottom: 22px;
}
.shero__title em { font-style: italic; color: var(--bronze); font-weight: 300; }
.shero__lede { max-width: 480px; color: var(--muted); font-size: 1.08rem; margin-bottom: 34px; }
.shero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.shero__media { position: relative; }
.shero__img {
  border-radius: 200px 200px var(--r-md) var(--r-md); overflow: hidden;
  box-shadow: 0 34px 80px rgba(38, 33, 27, .22);
  max-width: 440px; margin-left: auto;
}
.shero__img img { aspect-ratio: 3/3.7; object-fit: cover; width: 100%; }

.detail { background: var(--bg-2); }
.detail__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(44px, 6vw, 90px); align-items: center;
}
.detail__body h2 { margin-bottom: 20px; }
.detail__body p { color: var(--ink-2); margin-bottom: 16px; max-width: 56ch; }
.detail__img {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 28px 64px rgba(38, 33, 27, .18);
}
.detail__img img { aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }

.steps { padding-block: clamp(76px, 10vw, 130px); }
.steps__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.step {
  background: var(--card); border-radius: var(--r-md);
  padding: 30px 26px;
  box-shadow: 0 6px 24px rgba(38, 33, 27, .06);
  transition: transform .45s var(--ease), box-shadow .45s;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(38, 33, 27, .12); }
.step__no {
  font-family: var(--serif); font-style: italic;
  font-size: 2.4rem; color: var(--bronze); line-height: 1;
  display: block; margin-bottom: 14px;
}
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

.faq { background: var(--bg-2); }
.faq__list { max-width: 840px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.05rem, 2vw, 1.3rem);
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--sans); font-size: 1.1rem; font-weight: 400;
  transition: transform .4s var(--ease), background .3s, color .3s;
}
.faq__item[open] summary { color: var(--bronze-2); }
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--bronze); border-color: var(--bronze); color: #fff; }
.faq__item summary:hover { color: var(--bronze-2); }
.faq__item p { padding: 0 4px 26px; color: var(--muted); max-width: 64ch; }

.cta-band { padding-block: 0; }
.cta-band__card {
  background: var(--dark); border-radius: var(--r-lg);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px);
  text-align: center; color: #cfc4b2;
}
.cta-band__card .title { margin-bottom: 14px; }
.cta-band__card > p, .cta-band__card .cta-band__sub { max-width: 460px; margin: 0 auto 34px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn--bronze { background: var(--bronze); color: #fff; }
.btn--bronze:hover { background: var(--bronze-2); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(147, 104, 47, .35); }
.btn--ghostlight { border: 1.5px solid rgba(245, 239, 230, .35); color: #f5efe6; }
.btn--ghostlight:hover { border-color: var(--bronze); color: #d9b073; transform: translateY(-3px); }

@media (max-width: 1024px) {
  .shero__grid, .detail__grid { grid-template-columns: 1fr; gap: 48px; }
  .shero__img { margin-inline: auto; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .steps__grid { grid-template-columns: 1fr; }
}

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