/* ==========================================================================
   Faisal Guru — Spiritual Guidance
   Shared stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces — deep wine / burgundy */
  --bg:          #170509;
  --bg-2:        #210810;
  --surface:     #2a0b13;
  --surface-2:   #350f1c;
  --surface-3:   #401324;

  /* Gold */
  --gold:        #e6b866;
  --gold-light:  #f6e0af;
  --gold-deep:   #c1913f;
  --gold-line:   rgba(214, 166, 88, 0.26);
  --gold-line-2: rgba(214, 166, 88, 0.45);

  /* Magenta — primary action */
  --pink:        #e02b7d;
  --pink-light:  #ff5da8;
  --pink-deep:   #a81558;

  /* WhatsApp green */
  --green:       #3ddc84;
  --green-deep:  #1faa5c;

  /* Text */
  --text:        #f5eae4;
  --text-soft:   #ddc7be;
  --text-muted:  #b3968f;

  /* Type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-script:  "Great Vibes", "Snell Roundhand", cursive;
  --font-body:    "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  /* Space */
  --shell:   1240px;
  --gutter:  clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 7.5rem);

  /* Shape */
  --r-sm:  10px;
  --r:     16px;
  --r-lg:  22px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  /* Sticky header clearance for in-page anchors */
  scroll-padding-top: 6.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; text-decoration: none; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

/* overflow:hidden keeps the decorative .glow washes from widening the page —
   without it they push scrollWidth past the viewport on narrow screens. */
.section { padding-block: var(--section); position: relative; overflow: hidden; }

.section--tint { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--gold);
  color: #2a0b13;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Ambient glow washes ------------------------------------------------------ */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 0;
}
.glow--gold { background: radial-gradient(circle, rgba(230, 184, 102, 0.3), transparent 70%); }
.glow--pink { background: radial-gradient(circle, rgba(224, 43, 125, 0.26), transparent 70%); }

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink-light);
  line-height: 1.35;
  /* Great Vibes sits high in its em box */
  padding-block: 0.12em;
}

.title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.005em;
  background: linear-gradient(180deg, var(--gold-light) 8%, var(--gold) 52%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title--xl { font-size: clamp(3.25rem, 11vw, 6.5rem); }
.title--lg { font-size: clamp(2.25rem, 5.2vw, 3.75rem); }
.title--md { font-size: clamp(1.6rem, 2.6vw, 2.15rem); }

.lede {
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1rem + 0.25vw, 1.15rem);
  max-width: 62ch;
}

.strong-gold { color: var(--gold); font-weight: 400; }

/* Section heading block ---------------------------------------------------- */
.head {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
  position: relative;
  z-index: 1;
}
.head .lede { text-align: center; }

/* Crescent divider --------------------------------------------------------- */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  width: min(100%, 15rem);
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-line-2), transparent);
}
.divider svg { width: 1.1rem; height: 1.1rem; opacity: 0.85; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.85rem;
  border: 0;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--call {
  background: linear-gradient(135deg, var(--pink-light), var(--pink) 55%, var(--pink-deep));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 141, 196, 0.35) inset,
              0 8px 30px -6px rgba(224, 43, 125, 0.6);
}
.btn--call:hover { box-shadow: 0 0 0 1px rgba(255, 141, 196, 0.5) inset,
                               0 14px 40px -6px rgba(224, 43, 125, 0.75); }

.btn--wa {
  background: linear-gradient(135deg, #57e89a, var(--green) 55%, var(--green-deep));
  color: #06301b;
  font-weight: 500;
  box-shadow: 0 0 0 1px rgba(140, 255, 195, 0.4) inset,
              0 8px 30px -6px rgba(61, 220, 132, 0.5);
}
.btn--wa:hover { box-shadow: 0 0 0 1px rgba(140, 255, 195, 0.55) inset,
                             0 14px 40px -6px rgba(61, 220, 132, 0.65); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: #2a0b13;
  font-weight: 500;
  box-shadow: 0 8px 30px -8px rgba(230, 184, 102, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-line-2);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(230, 184, 102, 0.08); }

.btn--sm { padding: 0.68rem 1.25rem; font-size: 0.94rem; }
.btn--block { width: 100%; }

/* Pulse ring on the primary call button ------------------------------------ */
.btn--call.is-pulsing { position: relative; }
.btn--call.is-pulsing::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1.5px solid var(--pink-light);
  animation: ring 2.8s var(--ease) infinite;
  pointer-events: none;
}
@keyframes ring {
  0%        { opacity: 0.75; transform: scale(1); }
  60%, 100% { opacity: 0; transform: scale(1.14); }
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(23, 5, 9, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-line);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.hdr.is-stuck { box-shadow: 0 12px 40px -18px rgba(0, 0, 0, 0.9); }

.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
}

/* Brand -------------------------------------------------------------------- */
.brand { display: flex; align-items: center; gap: 0.9rem; }

.brand__mark {
  width: 3.1rem;
  height: 3.1rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--gold-light), var(--gold) 48%, var(--gold-deep));
  color: #4a1020;
  box-shadow: 0 0 26px -2px rgba(230, 184, 102, 0.65);
}
.brand__mark svg { width: 1.5rem; height: 1.5rem; }

.brand__name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__tag {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 0.25rem;
}

/* Nav ---------------------------------------------------------------------- */
.nav { display: flex; align-items: center; gap: 0.35rem; }

.nav a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-pill);
  font-size: 0.97rem;
  color: var(--text-soft);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav a:hover { color: var(--gold-light); background: rgba(230, 184, 102, 0.08); }
.nav a[aria-current="page"] {
  color: var(--gold-light);
  background: rgba(230, 184, 102, 0.13);
  box-shadow: 0 0 0 1px var(--gold-line) inset;
}

.hdr__actions { display: flex; align-items: center; gap: 0.7rem; }

/* Round WhatsApp chip in the header */
.chip-wa {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #57e89a, var(--green-deep));
  color: #06301b;
  box-shadow: 0 0 20px -2px rgba(61, 220, 132, 0.6);
  transition: transform 0.25s var(--ease);
}
.chip-wa:hover { transform: translateY(-2px) scale(1.05); }
.chip-wa svg { width: 1.3rem; height: 1.3rem; }

/* Burger ------------------------------------------------------------------- */
.burger {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  background: transparent;
  border: 1px solid var(--gold-line-2);
  border-radius: var(--r-sm);
  color: var(--gold);
  cursor: pointer;
}
.burger svg { width: 1.3rem; height: 1.3rem; }
.burger .icon-x { display: none; }
.burger[aria-expanded="true"] .icon-x { display: block; }
.burger[aria-expanded="true"] .icon-menu { display: none; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse 70% 55% at 22% 30%, rgba(122, 32, 22, 0.5), transparent 70%),
    radial-gradient(ellipse 60% 50% at 82% 18%, rgba(224, 43, 125, 0.16), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

/* Lantern-glow bokeh, pure CSS — no image dependency */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.hero::before {
  width: 14rem; height: 14rem;
  top: 12%; left: -4rem;
  background: radial-gradient(circle, rgba(255, 176, 74, 0.5), rgba(255, 138, 40, 0.12) 45%, transparent 70%);
  animation: float 9s ease-in-out infinite;
}
.hero::after {
  width: 9rem; height: 9rem;
  bottom: 14%; right: 6%;
  background: radial-gradient(circle, rgba(255, 196, 110, 0.42), transparent 68%);
  animation: float 11s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
  50%      { transform: translateY(-22px) scale(1.06); opacity: 1; }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__salaam { font-size: clamp(2rem, 4vw, 2.85rem); }

.hero__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.9rem;
}

.hero__name { margin-top: 0.35rem; }

.hero__sub {
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  margin-top: 0.5rem;
  position: relative;
  padding-top: 1.25rem;
}
.hero__sub::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 8rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__copy { margin-top: 1.5rem; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__reassure {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Trust row ---------------------------------------------------------------- */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gold-line);
  list-style: none;
  padding-inline: 0;
}
.trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.trust svg { width: 1.05rem; height: 1.05rem; color: var(--gold); flex: none; }

/* Hero promise card -------------------------------------------------------- */
.promise {
  position: relative;
  padding: clamp(2.5rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 3vw, 2.75rem);
  border: 1px solid var(--gold-line-2);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(64, 19, 36, 0.85), rgba(35, 9, 18, 0.9));
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85);
  text-align: center;
}

.promise__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.45rem 1.35rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #3a0d1a;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.promise__line {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 600;
  line-height: 1.3;
}
.promise__line .w1 { color: var(--pink-light); }
.promise__line .w2 { color: var(--gold-light); }
.promise__line .w3 { color: var(--pink); }
.promise__line .amp { color: var(--gold); font-style: italic; }

.promise__in { color: var(--text-soft); margin-top: 0.4rem; font-size: 1.02rem; }

.promise .divider { margin: 1.75rem auto; }

.promise__label {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.promise__stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  margin-top: 0.4rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promise__note { font-size: 0.9rem; color: var(--text-muted); }

.stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 1.1rem;
  color: var(--gold);
}
.stars svg { width: 1.05rem; height: 1.05rem; }
.stars--sm svg { width: 0.9rem; height: 0.9rem; }

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: linear-gradient(160deg, rgba(53, 15, 28, 0.75), rgba(32, 8, 16, 0.85));
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line-2);
  box-shadow: 0 26px 55px -28px rgba(0, 0, 0, 0.9);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.card__text { color: var(--text-soft); font-size: 0.98rem; }

/* Banner image on a service card — bleeds to the card's edges, so it cancels
   the card's own padding and re-rounds the top corners to match. */
.card__media {
  margin: -2rem -2rem 1.5rem;
  border-radius: calc(var(--r) - 1px) calc(var(--r) - 1px) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  border-bottom: 1px solid var(--gold-line);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
/* Fade the image into the card so the title never sits on a busy edge. */
.card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(32, 8, 16, 0.85));
}
/* The chip overlaps the banner's lower edge, tying the two together. */
.card__media + .icon-chip { margin-top: -3.6rem; position: relative; z-index: 1; }

.icon-chip {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, var(--pink-light), var(--pink) 60%, var(--pink-deep));
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(224, 43, 125, 0.7);
}
.icon-chip svg { width: 1.4rem; height: 1.4rem; }

.icon-chip--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #3a0d1a;
  box-shadow: 0 10px 28px -8px rgba(230, 184, 102, 0.6);
}

/* Feature list inside a card ----------------------------------------------- */
.ticks {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--text-soft);
}
.ticks svg {
  width: 1.05rem; height: 1.05rem;
  color: var(--gold);
  flex: none;
  margin-top: 0.36em;
}

/* "Learn more" affordance -------------------------------------------------- */
.more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.4rem;
  color: var(--pink-light);
  font-size: 0.95rem;
  font-weight: 400;
  align-self: flex-start;
}
.more svg { width: 1rem; height: 1rem; transition: transform 0.25s var(--ease); }
.card:hover .more svg,
.more:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   9. Meet / split section
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.frame {
  position: relative;
  border: 1px solid var(--gold-line-2);
  border-radius: var(--r-lg);
  padding: 0.65rem;
  background: linear-gradient(160deg, rgba(64, 19, 36, 0.6), rgba(28, 7, 14, 0.8));
}
.frame__inner {
  border-radius: calc(var(--r-lg) - 6px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* CSS-art stand-in shown until a real photo is dropped in ------------------- */
.art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 196, 92, 0.85), rgba(214, 92, 24, 0.32) 26%, transparent 58%),
    radial-gradient(ellipse at 50% 100%, rgba(224, 43, 125, 0.24), transparent 62%),
    linear-gradient(170deg, #58121f, #2a0b13 70%);
}
.art::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23e6b866' stroke-opacity='.34' stroke-width='1'%3E%3Cpath d='M30 2 44 16 30 30 16 16z'/%3E%3Cpath d='M30 30 44 44 30 58 16 44z'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  mix-blend-mode: soft-light;
}

.split__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.9rem; }

.split .lede + .lede { margin-top: 1.1rem; }

/* --------------------------------------------------------------------------
   10. Why-choose pills
   -------------------------------------------------------------------------- */
.pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  position: relative;
  z-index: 1;
}

.pill {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.5rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: linear-gradient(150deg, rgba(53, 15, 28, 0.6), rgba(30, 8, 15, 0.75));
  font-weight: 400;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pill:hover { border-color: var(--gold-line-2); transform: translateY(-3px); }

.pill__icon {
  width: 2.9rem;
  height: 2.9rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #3a0d1a;
}
.pill__icon svg { width: 1.2rem; height: 1.2rem; }

/* --------------------------------------------------------------------------
   11. Moments gallery
   -------------------------------------------------------------------------- */
.moments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }

.moment {
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(32, 8, 16, 0.7);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.moment:hover { transform: translateY(-4px); border-color: var(--gold-line-2); }

.moment__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.moment__media img { width: 100%; height: 100%; object-fit: cover; }

/* Variant tints so the CSS-art cards don't read as identical */
.art--dawn  { background: radial-gradient(circle at 50% 70%, rgba(255, 186, 84, 0.8), rgba(196, 62, 30, 0.35) 30%, transparent 62%), linear-gradient(170deg, #6a1a1f, #2a0b13 72%); }
.art--moon  { background: radial-gradient(circle at 50% 34%, rgba(255, 226, 150, 0.85), rgba(206, 104, 40, 0.28) 24%, transparent 58%), linear-gradient(170deg, #4c1424, #23080f 72%); }
.art--hands { background: radial-gradient(circle at 50% 78%, rgba(255, 206, 110, 0.78), rgba(224, 43, 125, 0.22) 34%, transparent 66%), linear-gradient(170deg, #5b1526, #24080f 72%); }
.art--rose  { background: radial-gradient(circle at 32% 60%, rgba(255, 160, 70, 0.72), rgba(224, 43, 125, 0.3) 36%, transparent 68%), linear-gradient(170deg, #62161f, #26090f 72%); }
.art--book  { background: radial-gradient(circle at 62% 50%, rgba(255, 214, 132, 0.8), rgba(150, 44, 96, 0.3) 32%, transparent 64%), linear-gradient(170deg, #451436, #22080f 72%); }

.moment__body { padding: 1.4rem 1.5rem 1.6rem; text-align: center; }

.moment__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
}
.moment__note {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   12. CTA band
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 4.75rem) clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--gold-line-2);
  border-radius: var(--r-lg);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(224, 43, 125, 0.18), transparent 70%),
    linear-gradient(165deg, rgba(64, 19, 36, 0.9), rgba(28, 7, 14, 0.95));
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9);
}

.band__script { font-size: clamp(1.55rem, 3vw, 2.15rem); }

.band__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 0.35rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.band__copy { margin: 1rem auto 0; color: var(--text-soft); max-width: 52ch; }

.band__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.1rem;
}
.band__cta .btn { font-size: 1.12rem; padding: 1.15rem 2.4rem; }

.band__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 1.9rem;
  list-style: none;
  padding: 0;
}
.band__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.94rem;
  color: var(--text-soft);
  transition: color 0.2s var(--ease);
}
.band__links a:hover { color: var(--gold-light); }
.band__links svg { width: 1.05rem; height: 1.05rem; color: var(--gold); }

/* --------------------------------------------------------------------------
   13. Testimonials
   -------------------------------------------------------------------------- */
.quote {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: linear-gradient(160deg, rgba(53, 15, 28, 0.7), rgba(32, 8, 16, 0.82));
}

.quote__text {
  font-style: italic;
  color: var(--text-soft);
  margin-top: 1.1rem;
  font-size: 1rem;
}

.quote__by {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gold-line);
}

.avatar {
  width: 2.6rem;
  height: 2.6rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-deep));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.quote__name { font-family: var(--font-display); font-size: 1.18rem; color: var(--gold-light); line-height: 1.2; }
.quote__where { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }

/* Placeholder state — remove .is-placeholder once real reviews are in */
.quote.is-placeholder { border-style: dashed; border-color: rgba(214, 166, 88, 0.35); }
.quote.is-placeholder .quote__text { opacity: 0.72; }

.notice {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  max-width: 62ch;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  padding: 1rem 1.25rem;
  border: 1px dashed var(--gold-line-2);
  border-radius: var(--r-sm);
  background: rgba(230, 184, 102, 0.06);
  font-size: 0.9rem;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}
.notice svg { width: 1.15rem; height: 1.15rem; color: var(--gold); flex: none; margin-top: 0.2em; }

/* --------------------------------------------------------------------------
   14. Locations
   -------------------------------------------------------------------------- */
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; position: relative; z-index: 1; }

.area {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: linear-gradient(150deg, rgba(53, 15, 28, 0.6), rgba(30, 8, 15, 0.75));
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.area:hover { border-color: var(--gold-line-2); transform: translateY(-3px); }

.area__pin {
  width: 2.6rem;
  height: 2.6rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-deep));
  color: #fff;
}
.area__pin svg { width: 1.1rem; height: 1.1rem; }

.area__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-light); line-height: 1.2; }
.area__note { font-size: 0.85rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   15. Contact
   -------------------------------------------------------------------------- */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  max-width: 46rem;
  margin: 2.25rem auto 0;
}

.fact {
  padding: 1.4rem 1rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  background: rgba(42, 11, 19, 0.6);
  text-align: center;
}
.fact svg { width: 1.3rem; height: 1.3rem; color: var(--gold); margin: 0 auto 0.6rem; }
.fact__k { font-weight: 400; color: var(--text); }
.fact__v { font-size: 0.85rem; color: var(--text-muted); }

.contact-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 60% 60% at 50% 20%, rgba(122, 32, 22, 0.45), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.contact-hero .btn { font-size: 1.15rem; padding: 1.2rem 2.6rem; }

.hours {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold-line);
  font-size: 0.96rem;
}
.hours span:first-child { color: var(--text-soft); }
.hours span:last-child { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.ftr {
  border-top: 1px solid var(--gold-line);
  background: linear-gradient(180deg, var(--bg-2), #120306);
  padding-block: clamp(3rem, 5vw, 4rem) 2rem;
}

.ftr__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.ftr__brand { display: flex; align-items: center; gap: 0.7rem; }
.ftr__brand .brand__mark { width: 2.4rem; height: 2.4rem; }
.ftr__brand .brand__mark svg { width: 1.15rem; height: 1.15rem; }
.ftr__brand span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
}

.ftr__copy { color: var(--text-soft); font-size: 0.95rem; margin-top: 1rem; max-width: 34ch; }

.ftr__meta { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.9rem; letter-spacing: 0.05em; }

.ftr__h {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}

.ftr__nav { list-style: none; padding: 0; display: grid; gap: 0.65rem; }
.ftr__nav a { color: var(--text-soft); font-size: 0.96rem; transition: color 0.2s var(--ease); }
.ftr__nav a:hover { color: var(--gold-light); }

.ftr__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.ftr__where {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.ftr__where svg { width: 1.05rem; height: 1.05rem; color: var(--pink); flex: none; margin-top: 0.25em; }

.ftr__base {
  margin-top: clamp(2.5rem, 4vw, 3.25rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--gold-line);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   17. Floating + mobile action bar
   -------------------------------------------------------------------------- */
.floats {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 55;
  display: grid;
  gap: 0.8rem;
}

.float {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.25s var(--ease);
}
.float:hover { transform: scale(1.08); }
.float svg { width: 1.5rem; height: 1.5rem; }

.float--wa {
  background: linear-gradient(135deg, #57e89a, var(--green-deep));
  color: #06301b;
  box-shadow: 0 6px 26px -4px rgba(61, 220, 132, 0.7);
}
.float--call {
  background: linear-gradient(135deg, var(--pink-light), var(--pink-deep));
  box-shadow: 0 6px 26px -4px rgba(224, 43, 125, 0.7);
}

/* Persistent thumb-reach CTA on phones */
.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 58;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(23, 5, 9, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-line);
}
.cta-bar .btn { flex: 1; padding: 0.95rem 0.5rem; font-size: 1rem; }

/* --------------------------------------------------------------------------
   18. Reveal on scroll
   -------------------------------------------------------------------------- */
/* Only hide when JS is confirmed running — otherwise a script failure would
   leave most of the page invisible. The `js` class is set in <head>. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--3,
  .pills,
  .moments,
  .areas { grid-template-columns: repeat(2, 1fr); }

  .ftr__grid { grid-template-columns: 1fr 1fr; }
  .ftr__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .promise { order: -1; }
  .split { grid-template-columns: 1fr; }
  /* width:100% is load-bearing — `margin-inline:auto` alone cancels the grid
     item's stretch, and .frame__inner has no intrinsic width, so the frame
     would collapse to its own padding and the artwork would vanish. */
  .frame { width: 100%; max-width: 26rem; margin-inline: auto; }

  /* Collapse desktop nav into the drawer */
  .nav {
    position: fixed;
    inset: 5.25rem 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.75rem;
    background: rgba(23, 5, 9, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-line);
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.9);
  }
  .nav.is-open { transform: none; }
  .nav a {
    padding: 0.95rem 1rem;
    border-radius: var(--r-sm);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--gold-line);
  }
  .nav a:last-child { border-bottom: 0; }

  .burger { display: grid; }

  /* The header phone pill is redundant next to the sticky bar */
  .hdr__actions .btn--call { display: none; }

  .cta-bar { display: flex; }

  /* Keep the floats clear of the sticky bar */
  .floats { bottom: 5.6rem; right: 1rem; }
  .float { width: 3rem; height: 3rem; }

  body { padding-bottom: 4.75rem; }
}

@media (max-width: 700px) {
  .grid--3,
  .grid--2,
  .pills,
  .moments,
  .areas { grid-template-columns: 1fr; }

  .facts { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; }

  .brand__name { font-size: 1.5rem; }
  .brand__mark { width: 2.6rem; height: 2.6rem; }
  .brand__mark svg { width: 1.25rem; height: 1.25rem; }

  .hero__cta .btn { flex: 1; min-width: 12rem; }
  .band__cta .btn { width: 100%; }
  .trust { gap: 1rem 1.25rem; }
}
