/* ==========================================================================
   Sushma Beauty Parlour — website theme
   Palette, type and component styling lifted 1:1 from the Flutter app
   (lib/core/constants/app_colors.dart + lib/theme/app_theme.dart)
   ========================================================================== */

/* ---- Bundled brand fonts (same TTFs the app ships) ---- */
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../fonts/PlayfairDisplay.ttf') format('truetype');
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Parisienne';
  src: url('../fonts/Parisienne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

:root {
  /* Brand */
  --primary: #A4633F;
  --primary-dark: #6E3B26;
  --secondary: #E9CFBE;
  --gold: #C08D5F;
  --gold-light: #E6C9A6;
  --blush: #F7EBE0;
  --cocoa: #2C1A12;
  --clay: #9A7461;
  --cream: #FAF1E8;
  --cream-deep: #F1DECF;

  /* Category tints */
  --tint-rose: #F2DCD0;
  --tint-sand: #F3E4D2;
  --tint-clay: #EBD5C6;
  --tint-mocha: #E4D0C2;
  --tint-pearl: #F4E7DE;
  --tint-blush: #F6DDD1;
  --tint-honey: #F2E1C8;
  --tint-taupe: #E7D8CB;

  /* Neutrals */
  --bg: #FDF8F3;
  --surface: #FFFCF9;
  --ink: #2C1A12;
  --muted: #917A6C;

  /* Status */
  --success: #6E9C6F;
  --warning: #C98F44;
  --danger: #B35C4E;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #B0714B, #8E5133 55%, #6E3B26);
  --grad-gold: linear-gradient(135deg, #E6C9A6, #C08D5F 55%, #A4633F);
  --grad-blush: linear-gradient(90deg, #E9CFBE, #F7EBE0);
  --grad-splash: linear-gradient(180deg, #FDF8F3, #F5E5D8 55%, #E9CFBE);
  --grad-cocoa: linear-gradient(90deg, #8A5439, #6E3B26);

  /* Shape */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* Warm shadows — never grey, always cocoa-tinted */
  --sh-sm: 0 2px 10px rgba(110, 59, 38, .06);
  --sh: 0 10px 30px rgba(110, 59, 38, .09);
  --sh-lg: 0 24px 60px rgba(110, 59, 38, .14);

  --nav-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: 'PlayfairDisplay', Georgia, serif; font-weight: 700; line-height: 1.08; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---- Layout ---- */
.wrap { width: min(1200px, 100% - 44px); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section--tight { padding: 64px 0; }

/* ---- Type helpers ---- */
.script { font-family: 'Parisienne', cursive; font-weight: 400; color: var(--primary); }
.caps {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--clay);
}
.muted { color: var(--muted); }

/* ==========================================================================
   Lotus mark + ornamental rules
   ========================================================================== */
.lotus { display: inline-block; vertical-align: middle; fill: var(--primary); }

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
  border: 0;
}

.lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 640px;
}
.lotus-divider::before,
.lotus-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold));
}
.lotus-divider::after { background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent); }

/* Section heading — "Our <script>Services</script>" + caps strapline */
.sec-head { text-align: center; margin-bottom: 46px; }
.sec-head .eyebrow { display: block; margin-bottom: 14px; }
.sec-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  letter-spacing: -.4px;
}
.sec-head h2 .script { font-size: 1.12em; margin-left: .12em; }
.sec-head .sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin-inline: auto;
}
.sec-head .strap { margin-top: 16px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .6px;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(110, 59, 38, .26);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(110, 59, 38, .34); }

.btn--ghost {
  border: 1px solid rgba(164, 99, 63, .5);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, .55);
}
.btn--ghost:hover { background: var(--secondary); border-color: var(--primary); transform: translateY(-2px); }

.btn--wa { background: #1FA855; color: #fff; box-shadow: 0 8px 22px rgba(31, 168, 85, .28); }
.btn--wa:hover { background: #18904a; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(31, 168, 85, .36); }

.btn--sm { padding: 11px 18px; font-size: 13px; border-radius: 12px; }
.btn--block { width: 100%; }

/* Gold-outline text link with animated rule */
.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--primary);
}
.link-gold::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--primary);
  transition: width .3s var(--ease);
}
.link-gold:hover::after { width: 30px; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 90;
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.nav.is-stuck {
  background: rgba(253, 248, 243, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--cream-deep), var(--sh-sm);
  height: 66px;
}
.nav .wrap { display: flex; align-items: center; gap: 26px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand__badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid; place-items: center;
  padding: 2px;
  flex: none;
}
.brand__badge > span {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
}
.brand__name {
  display: block;
  font-family: 'PlayfairDisplay', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--cocoa);
}
.brand__sub {
  display: block;
  white-space: nowrap;
  font-size: 8px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--grad-gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { width: 100%; }

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

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--cream-deep);
  background: var(--surface);
  place-items: center;
}
.nav__burger span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--cocoa);
  position: relative;
  transition: background .2s;
}
.nav__burger span::before,
.nav__burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 17px; height: 1.5px;
  background: var(--cocoa);
  transition: transform .3s var(--ease);
}
.nav__burger span::before { top: -5.5px; }
.nav__burger span::after { top: 5.5px; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { transform: translateY(5.5px) rotate(45deg); }
.nav__burger.is-open span::after { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: var(--bg);
  padding: calc(var(--nav-h) + 20px) 26px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { transform: none; }
.drawer a {
  padding: 17px 4px;
  border-bottom: 1px solid var(--cream-deep);
  font-family: 'PlayfairDisplay', serif;
  font-size: 21px;
}
.drawer .drawer__cta { margin-top: 26px; display: grid; gap: 12px; }

/* ==========================================================================
   Hero — full-bleed cinematic. HD photograph, cocoa scrim, slow Ken Burns
   drift. The nav sits transparent over it and solidifies on scroll.
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--nav-h) + 40px) 0 120px;
  background: var(--cocoa);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  /* Ken Burns — the whole reason this reads as film rather than a banner. */
  animation: kenburns 26s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(0, -1.6%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(115% 80% at 22% 45%, rgba(44, 26, 18, .30), transparent 62%),
    linear-gradient(180deg, rgba(30, 17, 11, .80) 0%, rgba(38, 22, 15, .60) 34%, rgba(30, 17, 11, .88) 100%);
}
/* A crisp cocoa edge, not a wash — the cream page starts cleanly below it. */
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(24, 13, 8, .92));
  pointer-events: none;
  z-index: 0;
}

.hero .wrap { position: relative; z-index: 1; }
.hero__copy { max-width: 760px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px 9px 16px;
  border: 1px solid rgba(230, 201, 166, .40);
  border-radius: 999px;
  background: rgba(44, 26, 18, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero__eyebrow i { width: 30px; height: 1px; background: var(--grad-gold); flex: none; }

.hero h1 {
  font-family: 'PlayfairDisplay', serif;
  font-size: clamp(58px, 9.5vw, 132px);
  line-height: .94;
  letter-spacing: -.015em;
  color: #FFF9F3;
  margin-top: 26px;
  text-shadow: 0 2px 40px rgba(20, 11, 7, .45);
}
.hero__sub {
  font-size: 12px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(255, 249, 243, .72);
  margin-top: 14px;
}
.hero__script {
  font-family: 'Parisienne', cursive;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.1;
  color: var(--gold-light);
  margin-top: 16px;
  text-shadow: 0 2px 30px rgba(20, 11, 7, .5);
}
.hero__tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 9.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(255, 249, 243, .62);
}
.hero__tag .bar { width: 44px; height: 1px; background: var(--grad-gold); }
.hero__tag .lotus { fill: var(--gold-light); }

.hero__lede {
  max-width: 60ch;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 249, 243, .80);
}

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

/* Outline button that survives on a photograph. */
.btn--ondark {
  background: rgba(255, 249, 243, .07);
  border: 1px solid rgba(255, 249, 243, .45);
  color: #FFF9F3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ondark:hover {
  background: rgba(255, 249, 243, .16);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(230, 201, 166, .22);
}
.hero__stats b {
  font-family: 'PlayfairDisplay', serif;
  font-size: 34px;
  line-height: 1;
  color: var(--gold-light);
  display: block;
}
.hero__stats span {
  display: block;
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 249, 243, .58);
}

/* Live open/closed pill, bottom-right of the frame. */
.hero__open {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 116px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px;
  border-radius: 999px;
  background: rgba(253, 248, 243, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--sh);
}
.hero__open b { font-family: 'PlayfairDisplay', serif; font-size: 15px; color: var(--ink); }
.hero__open small {
  font-size: 8.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--clay);
  padding-left: 11px;
  border-left: 1px solid var(--cream-deep);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px;
  height: 44px;
  border: 1px solid rgba(230, 201, 166, .5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 9px;
}
.hero__scroll span {
  width: 3px; height: 8px;
  border-radius: 2px;
  background: var(--gold-light);
  animation: scrollDot 1.9s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translateY(-4px); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}

/* Nav sits on the photograph until the page scrolls. */
.nav:not(.is-stuck) .nav__links a,
.nav:not(.is-stuck) .brand__name { color: #FFF9F3; }
.nav:not(.is-stuck) .brand__sub { color: rgba(255, 249, 243, .66); }
.nav:not(.is-stuck) .nav__links a:hover { color: var(--gold-light); }
.nav:not(.is-stuck) .nav__links a::after { background: var(--gold-light); }
.nav:not(.is-stuck) .nav__burger span,
.nav:not(.is-stuck) .nav__burger span::before,
.nav:not(.is-stuck) .nav__burger span::after { background: #FFF9F3; }

@media (max-width: 900px) {
  .hero { min-height: 92svh; padding-bottom: 96px; }
  .hero__bg img { object-position: center 22%; }
  .hero__stats { gap: 30px; margin-top: 38px; }
  .hero__stats b { font-size: 26px; }
  .hero__open { right: 22px; bottom: 96px; padding: 11px 16px; }
  .hero__lede { font-size: 15px; }
}
@media (max-width: 560px) {
  .hero__open { display: none; }
  .hero__scroll { display: none; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; transform: scale(1.06); }
}

.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }

.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(110, 156, 111, .6);
  animation: pulse 2.2s infinite;
  flex: none;
}
.dot-live.is-closed { background: var(--danger); animation: none; }
.dot-live.is-soon { background: var(--warning); animation: none; }
@keyframes pulse {
  70% { box-shadow: 0 0 0 11px rgba(110, 156, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 156, 111, 0); }
}

/* ==========================================================================
   Feature strip (Trusted / Hygienic / Skilled / Results)
   ========================================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream-deep);
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 30px 20px;
  text-align: center;
  transition: background .3s var(--ease);
}
.feature:hover { background: var(--blush); }
.feature .ic {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--grad-blush);
  display: grid; place-items: center;
  color: var(--primary-dark);
}
.feature .ic svg { width: 21px; height: 21px; }
.feature b { display: block; font-size: 13.5px; font-weight: 600; }
.feature small { display: block; margin-top: 5px; font-size: 11.5px; color: var(--muted); }

/* ==========================================================================
   Categories
   ========================================================================== */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat {
  border-radius: var(--r-lg);
  padding: 26px 22px 24px;
  border: 1px solid rgba(164, 99, 63, .14);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  text-align: left;
  width: 100%;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.cat .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .66);
  display: grid; place-items: center;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.cat .ic svg { width: 22px; height: 22px; }
.cat h3 { font-size: 20px; color: var(--cocoa); }
.cat .tag {
  margin-top: 8px;
  font-size: 8.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary-dark);
  opacity: .82;
}
.cat .count { margin-top: 16px; font-size: 12px; color: var(--primary-dark); font-weight: 600; }

/* ==========================================================================
   Filter chips
   ========================================================================== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-bottom: 38px;
}
.chip {
  padding: 9px 18px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(164, 99, 63, .22);
  background: var(--cream);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  transition: all .28s var(--ease);
}
.chip:hover { border-color: var(--primary); }
.chip.is-active {
  background: var(--secondary);
  border-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 600;
}

/* ==========================================================================
   Service cards
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.svc {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.svc:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: rgba(164, 99, 63, .34); }

.svc__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--blush); }
.svc__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.07); }
.svc__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(44, 26, 18, .5));
}

.badge {
  position: absolute;
  z-index: 2;
  top: 13px; left: 13px;
  padding: 6px 12px;
  border-radius: 30px;
  background: var(--grad-gold);
  color: #fff;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
}
.badge--rating {
  left: auto; right: 13px;
  background: rgba(255, 252, 249, .94);
  color: var(--primary-dark);
  letter-spacing: .4px;
  font-size: 11px;
  display: flex; align-items: center; gap: 4px;
}

.svc__media .cap {
  position: absolute;
  z-index: 2;
  left: 16px; right: 16px; bottom: 13px;
  color: #fff;
  font-size: 8.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  opacity: .92;
}

.svc__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { font-size: 20px; color: var(--cocoa); }
.svc__desc {
  margin-top: 9px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.62;
  flex: 1;
}
.svc__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--clay);
}
.svc__meta span { display: inline-flex; align-items: center; gap: 5px; }
.svc__meta svg { width: 13px; height: 13px; }

.svc__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-deep);
}
.price small {
  display: block;
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 3px;
}
.price b {
  font-family: 'PlayfairDisplay', serif;
  font-size: 24px;
  color: var(--primary-dark);
  line-height: 1;
}

/* ==========================================================================
   Packages
   ========================================================================== */
.pkgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pkg {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #fff;
  border: 1px solid rgba(164, 99, 63, .25);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pkg:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.pkg__bg { position: absolute; inset: 0; z-index: 0; }
.pkg__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.pkg:hover .pkg__bg img { transform: scale(1.06); }
.pkg__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44, 26, 18, .12) 12%, rgba(44, 26, 18, .68) 58%, rgba(44, 26, 18, .93));
}
.pkg__in { position: relative; z-index: 1; }
.pkg__in .cap { font-size: 8.5px; letter-spacing: 2px; text-transform: uppercase; opacity: .8; }
.pkg__in h3 { font-size: 27px; margin-top: 10px; color: #fff; }
.pkg__in .script { color: var(--gold-light); font-size: 21px; margin-top: 2px; display: block; }
.pkg__list { margin-top: 16px; display: grid; gap: 7px; }
.pkg__list li {
  font-size: 12.5px;
  opacity: .9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg__list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  flex: none;
}
.pkg__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pkg__foot b { font-family: 'PlayfairDisplay', serif; font-size: 26px; }
.pkg__foot .btn--ghost {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}
.pkg__foot .btn--ghost:hover { background: #fff; color: var(--primary-dark); border-color: #fff; }

/* ==========================================================================
   Offers
   ========================================================================== */
.offers-band { background: var(--cream); border-block: 1px solid var(--cream-deep); }
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer {
  position: relative;
  background: var(--surface);
  border: 1px dashed rgba(164, 99, 63, .38);
  border-radius: var(--r);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.offer:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.offer__pct {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'PlayfairDisplay', serif;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}
.offer h3 { font-size: 19px; padding-right: 58px; }
.offer p { font-size: 13px; color: var(--muted); }
.offer__code {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--cream-deep);
}
.offer__code code {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--primary-dark);
  background: var(--blush);
  padding: 6px 13px;
  border-radius: 8px;
}
.offer__code small { font-size: 10.5px; color: var(--clay); text-align: right; }

/* ==========================================================================
   Gallery
   ========================================================================== */
/* A grid mosaic rather than CSS multi-column: columns + aspect-ratio on the
   children makes Blink re-run layout hard enough to lock the renderer. */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 186px;
  gap: 16px;
}
.gal {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  border: 1px solid var(--cream-deep);
  background: var(--blush);
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
}
/* Every third tile runs tall, so the wall staggers without any measuring. */
.gal:nth-child(3n+1) { grid-row: span 2; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gal:hover img { transform: scale(1.06); }
.gal__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(44, 26, 18, .8));
  opacity: 0;
  transition: opacity .35s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gal:hover .gal__ov { opacity: 1; }
.gal__ov span {
  color: #fff;
  font-family: 'PlayfairDisplay', serif;
  font-size: 16px;
  text-align: left;
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(23, 16, 12, .93);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb img { max-height: 84vh; border-radius: var(--r); box-shadow: var(--sh-lg); }
.lb__cap {
  margin-top: 16px;
  text-align: center;
  color: var(--gold-light);
  font-family: 'PlayfairDisplay', serif;
  font-size: 19px;
}
.lb__x {
  position: absolute;
  top: 22px; right: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(230, 201, 166, .4);
  color: var(--gold-light);
  display: grid; place-items: center;
  font-size: 22px;
}
.lb__x:hover { background: rgba(230, 201, 166, .16); }
.lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(230, 201, 166, .4);
  color: var(--gold-light);
  display: grid; place-items: center;
  font-size: 22px;
}
.lb__nav:hover { background: rgba(230, 201, 166, .16); }
.lb__nav--prev { left: 26px; }
.lb__nav--next { right: 26px; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-band { background: var(--grad-splash); }
.rev-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 22px;
  scrollbar-width: none;
}
.rev-rail::-webkit-scrollbar { display: none; }
.rev {
  scroll-snap-align: start;
  flex: 0 0 clamp(280px, 33%, 380px);
  background: var(--surface);
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--sh-sm);
}
.rev__quote {
  font-family: 'PlayfairDisplay', serif;
  font-size: 40px;
  color: var(--gold-light);
  line-height: .6;
  height: 22px;
}
.rev p { font-size: 14px; line-height: 1.72; color: #5d483d; flex: 1; }
.rev__who { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--cream-deep); }
.rev__av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-blush);
  display: grid; place-items: center;
  font-family: 'PlayfairDisplay', serif;
  font-size: 17px;
  color: var(--primary-dark);
  flex: none;
}
.rev__who b { display: block; font-size: 13.5px; font-weight: 600; }
.rev__who small { display: block; font-size: 11px; color: var(--clay); margin-top: 2px; }

.rail-ctrl { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.rail-ctrl button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(164, 99, 63, .32);
  color: var(--primary-dark);
  display: grid; place-items: center;
  background: rgba(255, 252, 249, .7);
  transition: all .25s var(--ease);
}
.rail-ctrl button:hover { background: var(--secondary); border-color: var(--primary); }

/* ==========================================================================
   App promo (Launch app / download)
   ========================================================================== */
.appband {
  background: var(--grad-cocoa);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 54px 52px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.appband::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(230, 201, 166, .13);
  top: -220px; right: -120px;
}
.appband > * { position: relative; z-index: 1; }
.appband .cap { color: var(--gold-light); letter-spacing: 2.4px; font-size: 9.5px; text-transform: uppercase; }
.appband h2 { font-size: clamp(30px, 3.8vw, 44px); color: #fff; margin-top: 14px; }
.appband h2 .script { color: var(--gold-light); }
.appband p { margin-top: 16px; font-size: 14.5px; line-height: 1.75; color: rgba(244, 232, 222, .8); max-width: 480px; }
.appband__acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.appband .btn--gold { background: var(--grad-gold); color: var(--cocoa); box-shadow: 0 8px 22px rgba(0, 0, 0, .25); }
.appband .btn--gold:hover { transform: translateY(-2px); }
.appband .btn--outline {
  border: 1px solid rgba(230, 201, 166, .45);
  color: var(--gold-light);
}
.appband .btn--outline:hover { background: rgba(230, 201, 166, .14); }

.appband__list { display: grid; gap: 14px; }
.appband__list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 13.5px;
  color: rgba(244, 232, 222, .88);
}
.appband__list svg { width: 18px; height: 18px; flex: none; color: var(--gold-light); margin-top: 1px; }

/* ==========================================================================
   Booking form
   ========================================================================== */
.book {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--sh);
}
.book__aside {
  background: var(--grad-splash);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid var(--cream-deep);
}
.book__aside h3 { font-size: 28px; }
.book__aside .script { font-size: 30px; display: block; }
.book__aside > p { font-size: 14px; color: #6b5347; line-height: 1.72; }
.book__pt { display: flex; gap: 13px; align-items: flex-start; }
.book__pt .ic {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .7);
  display: grid; place-items: center;
  color: var(--primary-dark);
  flex: none;
}
.book__pt .ic svg { width: 17px; height: 17px; }
.book__pt b { display: block; font-size: 13.5px; font-weight: 600; }
.book__pt small { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.55; }

.book__form { padding: 44px 40px; }
.field { margin-bottom: 18px; }
.field > label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(164, 99, 63, .22);
  border-radius: 14px;
  padding: 15px 17px;
  font-size: 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  appearance: none;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A7461' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 17px;
  padding-right: 44px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(164, 99, 63, .1);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(44, 26, 18, .38); }
.field.is-bad input, .field.is-bad select { border-color: var(--danger); }
.field .err { display: none; margin-top: 6px; font-size: 11.5px; color: var(--danger); }
.field.is-bad .err { display: block; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Time slot pills */
.slots { display: flex; flex-wrap: wrap; gap: 8px; }
.slot {
  padding: 9px 15px;
  border-radius: 30px;
  border: 1px solid rgba(164, 99, 63, .22);
  background: var(--cream);
  font-size: 12.5px;
  transition: all .25s var(--ease);
}
.slot:hover:not(:disabled) { border-color: var(--primary); }
.slot.is-active { background: var(--secondary); border-color: var(--primary); color: var(--primary-dark); font-weight: 600; }
.slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

.form-note {
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.65;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.form-note svg { width: 15px; height: 15px; flex: none; color: var(--gold); margin-top: 1px; }

.form-msg {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 13px;
  display: none;
}
.form-msg.is-ok { display: block; background: rgba(110, 156, 111, .13); color: #3f6b40; border: 1px solid rgba(110, 156, 111, .3); }
.form-msg.is-bad { display: block; background: rgba(179, 92, 78, .1); color: var(--danger); border: 1px solid rgba(179, 92, 78, .28); }

/* ==========================================================================
   Contact / visit
   ========================================================================== */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.visit__card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info { display: flex; gap: 15px; align-items: flex-start; }
.info .ic {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--grad-blush);
  display: grid; place-items: center;
  color: var(--primary-dark);
  flex: none;
}
.info .ic svg { width: 19px; height: 19px; }
.info b { display: block; font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--clay); font-weight: 500; }
.info p { margin-top: 6px; font-size: 14.5px; line-height: 1.6; }
.info a:hover { color: var(--primary); }

.hours { display: grid; gap: 9px; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 13.5px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--cream-deep);
}
.hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours li.is-today { color: var(--primary-dark); font-weight: 600; }
.hours li.is-today::after { content: 'Today'; font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); }

.map-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-deep);
  min-height: 380px;
  position: relative;
  background: var(--blush);
}
.map-card iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(164, 99, 63, .3);
  display: grid; place-items: center;
  color: var(--primary-dark);
  transition: all .28s var(--ease);
}
.socials a:hover { background: var(--grad-primary); color: #fff; border-color: transparent; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.foot { background: var(--cocoa); color: rgba(244, 232, 222, .74); padding: 66px 0 0; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.foot h4 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 18px;
}
.foot__links { display: grid; gap: 11px; }
.foot__links a { font-size: 13.5px; transition: color .25s var(--ease); }
.foot__links a:hover { color: var(--gold-light); }
.foot .brand__name { color: #F4E8DE; }
.foot .brand__badge > span { background: var(--cocoa); }
.foot__about { font-size: 13.5px; line-height: 1.75; margin-top: 18px; max-width: 320px; }
.foot .script { color: var(--gold-light); font-size: 26px; }

.foot__bar {
  margin-top: 54px;
  border-top: 1px solid rgba(230, 201, 166, .16);
  padding: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.foot__bar .caps { color: rgba(230, 201, 166, .55); }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #1FA855;
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(31, 168, 85, .38);
  font-size: 13.5px;
  font-weight: 600;
  transform: translateY(90px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease), background .25s;
}
.fab.is-in { transform: none; opacity: 1; }
.fab:hover { background: #18904a; }
.fab svg { width: 22px; height: 22px; flex: none; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .pkgs, .offers { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero__art { max-width: 440px; margin-inline: auto; width: 100%; }
  .appband { grid-template-columns: 1fr; padding: 44px 36px; }
  .book { grid-template-columns: 1fr; }
  .book__aside { border-right: 0; border-bottom: 1px solid var(--cream-deep); }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: grid; }
}

@media (max-width: 860px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .visit { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}

@media (max-width: 640px) {
  .wrap { width: min(1200px, 100% - 32px); }
  .grid-3, .grid-2, .pkgs, .offers { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 12px; }
  .hero { padding-top: calc(var(--nav-h) + 32px); }
  .hero__chip--rating { left: -6px; }
  .hero__chip--open { right: -6px; }
  .hero__stats { gap: 24px; }
  .book__form, .book__aside { padding: 32px 24px; }
  .visit__card { padding: 30px 24px; }
  .appband { padding: 36px 26px; }
  .row-2 { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .fab span { display: none; }
  .fab { padding: 15px; border-radius: 50%; }
  .lb__nav--prev { left: 10px; }
  .lb__nav--next { right: 10px; }
}

/* ==========================================================================
   Moments strip — a full-bleed cocoa band of work, drifting sideways.
   Two copies of the same rail sit end to end so the loop never shows a seam.
   ========================================================================== */
.strip {
  position: relative;
  background: var(--cocoa);
  padding: 64px 0 68px;
  overflow: hidden;
}
.strip__head { text-align: center; margin-bottom: 34px; }
.strip__head .caps {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 3px;
}
.strip__rail {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: drift 64s linear infinite;
}
.strip__rail:hover { animation-play-state: paused; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.strip__img {
  width: 268px;
  height: 336px;
  flex: none;
  border-radius: var(--r);
  overflow: hidden;
  background: #3A241A;
}
.strip__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: opacity .4s var(--ease), transform .8s var(--ease);
}
.strip__img:hover img { opacity: 1; transform: scale(1.05); }
/* Every other tile drops a little, so the band has a rhythm. */
.strip__img:nth-child(even) { margin-top: 32px; }

.strip__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  pointer-events: none;
}
.strip__fade--l { left: 0;  background: linear-gradient(90deg, var(--cocoa), transparent); }
.strip__fade--r { right: 0; background: linear-gradient(270deg, var(--cocoa), transparent); }

@media (max-width: 700px) {
  .strip { padding: 48px 0 52px; }
  .strip__img { width: 190px; height: 244px; }
  .strip__fade { width: 70px; }
}
@media (prefers-reduced-motion: reduce) {
  .strip__rail { animation: none; }
}

/* ==========================================================================
   Process — four numbered steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  counter-reset: none;
}
.step {
  position: relative;
  padding: 34px 26px 30px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--cream-deep);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
  border-color: var(--secondary);
}
.step__n {
  font-family: 'PlayfairDisplay', serif;
  font-size: 42px;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.step b {
  display: block;
  margin-top: 16px;
  font-family: 'PlayfairDisplay', serif;
  font-size: 19px;
  color: var(--ink);
}
.step p {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
}
/* A hairline that carries the eye from one step to the next. */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  right: -12px;
  width: 24px;
  height: 1px;
  background: var(--cream-deep);
}
@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* Instagram companion to the WhatsApp button. */
.fab--ig {
  bottom: 88px;
  padding: 0;
  width: 52px;
  height: 52px;
  justify-content: center;
  background: linear-gradient(45deg, #F09433, #DC2743 45%, #BC1888);
  box-shadow: 0 12px 30px rgba(188, 24, 136, .34);
}
.fab--ig:hover {
  background: linear-gradient(45deg, #F09433, #DC2743 45%, #BC1888);
  filter: brightness(1.08);
}
.fab--ig svg { fill: #fff; }
