/* ==========================================================================
   Flare Fancy — Event Rentals, Nassau Bahamas
   Global stylesheet
   --------------------------------------------------------------------------
   1.  Tokens & reset
   2.  Typography
   3.  Buttons & links
   4.  Layout primitives
   5.  Grain / glow / decorative
   6.  Header & nav
   7.  Hero
   8.  Marquee strip
   9.  Services
   10. Gallery
   11. Process
   12. CTA band
   13. Footer
   14. Schedule page (calendar + form)
   15. Scroll reveal
   16. Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens & reset
   -------------------------------------------------------------------------- */

:root {
  /* Core palette */
  --ink:        #0a090e;
  --ink-2:      #100e16;
  --ink-3:      #17141f;
  --line:       rgba(255, 255, 255, 0.09);
  --line-soft:  rgba(255, 255, 255, 0.05);

  /* Brand — sampled directly from the Flare Fancy logo */
  --plum:       #8b0d72;
  --rose:       #b91255;
  --magenta:    #e8166a;
  --flame:      #ec5545;
  --orange:     #ec8845;
  --gold:       #f5c451;
  --gold-deep:  #d9a02f;
  --gold-soft:  rgba(245, 196, 81, 0.14);
  --blush:      #f0b7b0;

  /* The signature gradient, echoing the monogram's brushstrokes */
  --grad: linear-gradient(115deg,
    #8b0d72 0%,
    #b91255 22%,
    #e8166a 42%,
    #ec5545 62%,
    #ec8845 80%,
    #f5c451 100%);

  --grad-soft: linear-gradient(115deg,
    rgba(139, 13, 114, 0.18),
    rgba(232, 22, 106, 0.18),
    rgba(236, 136, 69, 0.18));

  /* Text */
  --cream:      #f6f2ea;
  --muted:      rgba(246, 242, 234, 0.62);
  --muted-2:    rgba(246, 242, 234, 0.42);

  /* Type */
  --font-display: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Space */
  --shell:      min(1180px, 100% - 3rem);
  --section-y:  clamp(5rem, 11vw, 9.5rem);
  --radius:     20px;
  --radius-lg:  28px;

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

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

* { margin: 0; }

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

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* Focus ring — visible, on-brand, keyboard only */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 999;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 12px;
  font-weight: 500;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(3rem, 8.2vw, 6.5rem); }
h2 { font-size: clamp(2.35rem, 5.2vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.1vw, 1.8rem); }

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow--center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.italic-accent {
  font-style: italic;
  background: linear-gradient(105deg, #e8166a 0%, #ec5545 32%, #ec8845 62%, #f5c451 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.08em;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  color: var(--muted);
  max-width: 54ch;
  font-weight: 300;
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   3. Buttons & links
   -------------------------------------------------------------------------- */

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

.btn {
  --btn-bg: var(--grad);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  border: 0;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn::after {
  /* sweep of light */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px -12px rgba(232, 22, 106, 0.6);
}
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  --btn-bg: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 196, 81, 0.5);
  box-shadow: none;
}
.btn--ghost::after { display: none; }

.btn--whatsapp {
  --btn-bg: #25d366;
  --btn-fg: #06280f;
}
.btn--whatsapp:hover { box-shadow: 0 14px 40px -12px rgba(37, 211, 102, 0.55); }

/* Full-width buttons may wrap — long labels must never force overflow. */
.btn--block {
  width: 100%;
  white-space: normal;
  text-align: center;
}

.btn--lg { padding: 1.15rem 2.25rem; font-size: 0.95rem; }

.btn:disabled,
.btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn:disabled:hover,
.btn.is-disabled:hover { transform: none; box-shadow: none; }
.btn:disabled::after { display: none; }

.btn svg { width: 18px; height: 18px; flex: none; }

.text-link {
  position: relative;
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.text-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.text-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: var(--shell);
  margin-inline: auto;
}

section { position: relative; }

.section { padding-block: var(--section-y); }

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

/* --------------------------------------------------------------------------
   5. Grain / glow / decorative
   -------------------------------------------------------------------------- */

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* Bulb divider — nods to the marquee letters */
.bulb-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding-block: 0.5rem;
}
.bulb-rule span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 1px rgba(245, 196, 81, 0.75);
  animation: bulbPulse 2.6s ease-in-out infinite;
}
.bulb-rule span:nth-child(2) { animation-delay: 0.32s; }
.bulb-rule span:nth-child(3) { animation-delay: 0.64s; }
.bulb-rule span:nth-child(4) { animation-delay: 0.96s; }
.bulb-rule span:nth-child(5) { animation-delay: 1.28s; }

@keyframes bulbPulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 10px 1px rgba(245, 196, 81, 0.75); }
  50%      { opacity: 0.35; box-shadow: 0 0 4px 0 rgba(245, 196, 81, 0.3); }
}

/* --------------------------------------------------------------------------
   6. Header & nav
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.35rem;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease),
              border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
  padding-block: 0.85rem;
  background: rgba(10, 9, 14, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: none;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(232, 22, 106, 0.45));
  transition: transform 0.5s var(--ease);
}
.brand:hover .brand__logo { transform: rotate(-6deg) scale(1.05); }

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.005em;
}
.brand__sub {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  padding: 0;
}

.nav__links a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover,
.nav__links a[aria-current='page'] { color: var(--cream); }
.nav__links a:hover::after,
.nav__links a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: flex; align-items: center; gap: 1rem; flex: none; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.35s var(--ease), opacity 0.2s linear;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 21.5px; }
.nav__toggle span:nth-child(3) { top: 27px; }

.nav__toggle[aria-expanded='true'] span:nth-child(1) { transform: translateX(-50%) translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded='true'] span:nth-child(3) { transform: translateX(-50%) translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 9, 14, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 6rem 2rem 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 2.75rem);
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu.is-open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 9rem 4rem;
  overflow: hidden;
  isolation: isolate;
}

/* Pure CSS backdrop — no image, so it stays crisp and light at any size. */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(42% 44% at 72% 14%, rgba(236, 136, 69, 0.20), transparent 66%),
    radial-gradient(46% 46% at 50% 26%, rgba(232, 22, 106, 0.20), transparent 68%),
    radial-gradient(54% 52% at 22% 80%, rgba(139, 13, 114, 0.30), transparent 70%),
    radial-gradient(70% 42% at 78% 92%, rgba(185, 18, 85, 0.16), transparent 72%),
    var(--ink);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(115% 85% at 50% 45%, transparent 38%, rgba(10, 9, 14, 0.9) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero__title {
  margin-bottom: 1.75rem;
}

.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: block;
  transform: translateY(110%);
  animation: heroRise 1.05s var(--ease) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: 0.1s; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.22s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.34s; }

@keyframes heroRise {
  to { transform: translateY(0); }
}

.hero__fade {
  opacity: 0;
  animation: heroFade 1s var(--ease) 0.6s forwards;
}
@keyframes heroFade {
  to { opacity: 1; }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.5rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* Hero visual — floating cards */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.06;
  opacity: 0;
  animation: heroFade 1.2s var(--ease) 0.45s forwards;
}

.float-card {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  text-align: center;
}

/* Two cards on a diagonal, overlapping just enough to feel stacked. */
.float-card--a {
  top: 3%; left: 1%;
  width: 60%; height: 55%;
  animation: floatY 7s ease-in-out infinite;
  z-index: 2;
}
.float-card--b {
  bottom: 4%; right: 0;
  width: 57%; height: 50%;
  animation: floatY 8.5s ease-in-out 0.8s infinite reverse;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(-0.8deg); }
}

.float-card__label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
}
.float-card__note {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 0.5rem;
}

/* Spinning 360 ring in card A */
.ring-360 {
  position: relative;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

/* Outer dashed track + inner counter-rotating ring. */
.ring-360::before,
.ring-360::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(245, 196, 81, 0.5);
  animation: spin 14s linear infinite;
}
.ring-360::after {
  inset: 15px;
  border-style: solid;
  border-color: rgba(232, 22, 106, 0.35);
  animation-duration: 9s;
  animation-direction: reverse;
}

/* The camera arm: a dot that orbits the ring, the way the booth actually moves. */
.ring-360__orbit {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  animation: spin 3.4s linear infinite;
}
.ring-360__orbit i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 13px;
  height: 13px;
  margin-left: -6.5px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 16px 3px rgba(232, 22, 106, 0.85);
}
/* A soft trail so the orbit reads as motion even in a still frame. */
.ring-360__orbit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(232, 22, 106, 0.55);
  border-right-color: rgba(236, 136, 69, 0.28);
}

.ring-360 b {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.01em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Marquee letters in card B */
.marquee-letters {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.marquee-letters i {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(245, 196, 81, 0.4);
  border-radius: 8px;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(245, 196, 81, 0.65);
  animation: bulbPulse 3s ease-in-out infinite;
}
.marquee-letters i:nth-child(2) { animation-delay: 0.5s; }
.marquee-letters i:nth-child(3) { animation-delay: 1s; }
.marquee-letters i:nth-child(4) { animation-delay: 1.5s; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  z-index: 3;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* --------------------------------------------------------------------------
   8. Marquee strip
   -------------------------------------------------------------------------- */

.strip {
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent);
  padding-block: 1.6rem;
  overflow: hidden;
}

.strip__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: scrollX 42s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }

.strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--muted);
  white-space: nowrap;
}
.strip__track span::after {
  content: '✦';
  font-size: 0.7em;
  color: var(--gold);
}

@keyframes scrollX {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. Services
   -------------------------------------------------------------------------- */

.services { background: var(--ink); }

.services__grid {
  display: grid;
  /* min() keeps the track from exceeding the container on narrow phones,
     which would otherwise force a horizontal scrollbar. */
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 2.4rem 2rem 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008));
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(232, 22, 106, 0.85), rgba(236, 136, 69, 0.5) 30%, transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.service-card::after {
  /* radial follow-glow, positioned by JS custom props */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 0%), rgba(232, 22, 106, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.service-card:hover { transform: translateY(-6px); border-color: rgba(245, 196, 81, 0.25); }
.service-card:hover::before,
.service-card:hover::after { opacity: 1; }

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.6rem;
  display: block;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--grad);
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 26px -12px rgba(232, 22, 106, 0.9);
}
.service-card__icon svg { width: 24px; height: 24px; }

.service-card h3 { margin-bottom: 0.75rem; }

.service-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.55rem;
}
.service-card__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}
.service-card__list li::before {
  content: '';
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: 0.6rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(245, 196, 81, 0.8);
}

/* --------------------------------------------------------------------------
   10. Gallery
   -------------------------------------------------------------------------- */

.gallery {
  background:
    radial-gradient(70% 50% at 100% 0%, rgba(232, 22, 106, 0.06), transparent 60%),
    var(--ink-2);
}

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.chip {
  padding: 0.6rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.chip:hover { color: var(--cream); border-color: rgba(245, 196, 81, 0.4); }
.chip.is-active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(232, 22, 106, 0.8);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /* A fixed row height (rather than per-tile aspect-ratio) is what keeps every
     row flush — aspect-ratio wins over grid stretch and staggers the bottoms. */
  grid-auto-rows: clamp(270px, 33vw, 470px);
  gap: 1rem;
}

.tile {
  position: relative;
  grid-column: span 4;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  cursor: default;
  transition: transform 0.55s var(--ease), border-color 0.4s var(--ease), opacity 0.4s var(--ease);
}

/* Only real media opens the lightbox, so only those tiles get the pointer. */
.tile:has(img),
.tile:has(video) { cursor: pointer; }

/* Feature sizing for a magazine-style rhythm */
.tile--wide  { grid-column: span 8; }
.tile--tall  { grid-column: span 4; grid-row: span 2; }
.tile--half  { grid-column: span 6; }

.tile:hover { transform: translateY(-4px); border-color: rgba(245, 196, 81, 0.35); }

.tile img,
.tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s var(--ease);
}
.tile:hover img,
.tile:hover video { transform: scale(1.05); }

/* Play badge, added automatically to any tile holding a video. */
.tile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 9, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.tile:hover .tile__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(232, 22, 106, 0.75);
}
.tile__play::after {
  content: '';
  width: 0; height: 0;
  margin-left: 4px;
  border-left: 15px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

/* Placeholder state — shown until a real photo is dropped in */
.tile__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  padding: 1.5rem;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.018) 0 12px,
      transparent 12px 24px
    );
}

.tile__placeholder svg {
  width: 34px;
  height: 34px;
  color: rgba(245, 196, 81, 0.55);
}

.tile__placeholder b {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(246, 242, 234, 0.8);
}

.tile__placeholder small {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.tile__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.35rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(6, 5, 9, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.tile:hover .tile__caption { transform: translateY(0); }

.tile__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}
.tile__caption span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.tile.is-hidden { display: none; }

.gallery__note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted-2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(6, 5, 9, 0.94);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox img,
.lightbox video {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.9);
}

/* Only one of the two is shown at a time — JS toggles this. */
.lightbox [hidden] { display: none; }

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.12); }

.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   11. Process
   -------------------------------------------------------------------------- */

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: 1.1rem;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.step::after {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 1.1s var(--ease) 0.15s;
}
.step.is-visible::after { width: 100%; }

.step h3 { margin-bottom: 0.6rem; font-size: 1.3rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* --------------------------------------------------------------------------
   12. CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(50% 80% at 38% 100%, rgba(232, 22, 106, 0.22), transparent 66%),
    radial-gradient(45% 75% at 66% 100%, rgba(236, 136, 69, 0.18), transparent 66%),
    var(--ink);
  border-top: 1px solid var(--line-soft);
}

.cta-band h2 { margin-bottom: 1.25rem; }
.cta-band p { color: var(--muted); max-width: 44ch; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: #060509;
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.35rem;
}

.footer__col ul { list-style: none; padding: 0; display: grid; gap: 0.75rem; }
.footer__col a, .footer__col li {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold); }

/* The stacked logo needs room, so it lives here rather than in the nav bar. */
.footer__wordmark {
  /* A definite width + aspect-ratio reserves the box before the lazy image
     loads, so the footer doesn't jump. */
  display: block;
  width: min(230px, 70%);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: drop-shadow(0 6px 26px rgba(232, 22, 106, 0.28));
}
.footer__wordmark img {
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 581;
}
.footer__wordmark:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 32px rgba(232, 22, 106, 0.45));
}

.footer__blurb {
  color: var(--muted);
  max-width: 34ch;
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.footer__socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  transition: all 0.35s var(--ease);
}
.footer__socials a:hover {
  color: var(--gold);
  border-color: rgba(245, 196, 81, 0.4);
  transform: translateY(-2px);
}
.footer__socials svg { width: 18px; height: 18px; }

.footer__base {
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #06280f;
  box-shadow: 0 12px 34px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.35s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPing 2.6s ease-out infinite;
}
@keyframes waPing {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --------------------------------------------------------------------------
   15. Schedule page
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding-block: clamp(9rem, 16vw, 12rem) clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(245, 196, 81, 0.14), transparent 65%),
    var(--ink);
}
.page-hero h1 { font-size: clamp(2.75rem, 7vw, 5rem); margin-bottom: 1.25rem; }
.page-hero p { color: var(--muted); max-width: 50ch; margin-inline: auto; }

.booking {
  padding-bottom: var(--section-y);
  background: var(--ink);
}

.booking__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: start;
}

.panel {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008));
}

.panel__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}
.panel__sub {
  font-size: 0.86rem;
  color: var(--muted-2);
  margin-bottom: 1.75rem;
}

.panel--sticky { position: sticky; top: 6rem; }

/* Calendar */
.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.cal__month {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

.cal__nav { display: flex; gap: 0.5rem; }

.cal__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.cal__btn:hover:not(:disabled) {
  border-color: rgba(245, 196, 81, 0.5);
  color: var(--gold);
}
.cal__btn:disabled { opacity: 0.25; cursor: not-allowed; }
.cal__btn svg { width: 16px; height: 16px; }

.cal__weekdays,
.cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal__weekdays {
  margin-bottom: 0.6rem;
}
.cal__weekdays span {
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-block: 0.4rem;
}

.cal__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  transition: all 0.25s var(--ease);
}
.cal__day:hover:not(:disabled) {
  background: rgba(245, 196, 81, 0.14);
  border-color: rgba(245, 196, 81, 0.45);
  transform: translateY(-2px);
}
.cal__day:disabled {
  color: rgba(246, 242, 234, 0.16);
  background: transparent;
  cursor: not-allowed;
}
.cal__day.is-empty {
  background: transparent;
  border: 0;
  cursor: default;
  pointer-events: none;
}
.cal__day.is-today::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--magenta);
}
.cal__day.is-selected {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 10px 24px -8px rgba(232, 22, 106, 0.85);
}
.cal__day.is-selected::after { background: #fff; }

.cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.75rem;
  color: var(--muted-2);
}
.cal__legend i {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.cal__legend .k-sel   { background: var(--gold); }
.cal__legend .k-today { background: var(--magenta); }

.cal__selected {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px dashed rgba(245, 196, 81, 0.35);
  background: var(--gold-soft);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.cal__selected svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.cal__selected strong { font-weight: 500; color: var(--gold); }

/* Form */
.field { margin-bottom: 1.15rem; }

.field label,
.fieldset__legend {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.6rem;
}

.field label .req { color: var(--gold); }

.input,
.select,
.textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.input::placeholder,
.textarea::placeholder { color: rgba(246, 242, 234, 0.28); }

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: rgba(245, 196, 81, 0.6);
  background: rgba(255, 255, 255, 0.055);
}

.textarea { resize: vertical; min-height: 110px; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e9c67e' 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 1.1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}
.select option { background: var(--ink-3); color: var(--cream); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 1.35rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 0.6rem;
}

.check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.88rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.check:hover { border-color: rgba(245, 196, 81, 0.4); }

.check input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.check__box {
  flex: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(246, 242, 234, 0.3);
  border-radius: 6px;
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
}
.check__box::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid #17130a;
  border-bottom: 2px solid #17130a;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.25s var(--ease);
  margin-top: -2px;
}

.check input:checked ~ .check__box {
  background: var(--gold);
  border-color: var(--gold);
}
.check input:checked ~ .check__box::after { transform: rotate(-45deg) scale(1); }

.check:has(input:checked) {
  border-color: rgba(245, 196, 81, 0.55);
  background: var(--gold-soft);
}

.check input:focus-visible ~ .check__box {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.form__error {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--blush);
}
.form__error.is-shown { display: block; }

.input.has-error,
.select.has-error { border-color: rgba(240, 183, 176, 0.7); }

.form__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
}

.form__status {
  display: none;
  margin-top: 0.35rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}
.form__status.is-shown { display: block; }

.form__status.is-ok {
  border: 1px solid rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.12);
  color: #9ff0bd;
}
.form__status.is-bad {
  border: 1px solid rgba(240, 183, 176, 0.45);
  background: rgba(240, 183, 176, 0.1);
  color: var(--blush);
}
.form__status.is-busy {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.form__hint {
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
  margin-top: 0.35rem;
  line-height: 1.55;
}

/* Live message preview */
.preview {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.preview__bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(37, 211, 102, 0.09);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(37, 211, 102, 0.9);
}
.preview__bar svg { width: 15px; height: 15px; }
.preview__body {
  padding: 1.1rem;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--muted);
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 260px;
  overflow-y: auto;
  font-family: var(--font-body);
}

/* Info list on schedule page */
.info-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}
.info-list svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex: none;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   15. Scroll reveal
   -------------------------------------------------------------------------- */

/* Scoped to .js so that if JavaScript fails to run, nothing is ever
   left stranded at opacity 0 — the page just renders statically. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
  .hero__fade, .hero__visual { opacity: 1; }
}

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */

/* ---- Very large displays: let the layout breathe instead of stranding it -- */
@media (min-width: 1600px) {
  :root {
    --shell: min(1320px, 100% - 5rem);
    --section-y: clamp(6rem, 9vw, 11rem);
  }
}

@media (min-width: 2200px) {
  :root {
    --shell: min(1460px, 100% - 6rem);
    /* Nudge the base size up so text doesn't look lost on a 4K panel. */
    font-size: 18px;
  }
}

/* ---- Laptops / small desktops ------------------------------------------- */
@media (max-width: 1180px) {
  .hero__inner { gap: 2.5rem; }
  .nav__links { gap: 1.5rem; }
}

/* ---- Tablets: stack the two-column layouts ------------------------------ */
@media (max-width: 1000px) {
  :root { --shell: min(1180px, 100% - 2.5rem); }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { min-height: auto; padding-block: 8.5rem 5rem; }
  .scroll-cue { display: none; }

  .booking__grid { grid-template-columns: 1fr; }
  .panel--sticky { position: static; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__col--brand { grid-column: 1 / -1; }

  /* Two-up gallery reads better than three at this width. */
  .gallery__grid { grid-auto-rows: clamp(240px, 38vw, 380px); }
  .tile          { grid-column: span 6; }
  .tile--wide    { grid-column: span 12; }
  .tile--tall    { grid-column: span 6; grid-row: span 1; }
  .tile--half    { grid-column: span 6; }
}

/* ---- Phones (landscape) / small tablets --------------------------------- */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }

  .tile,
  .tile--wide,
  .tile--tall,
  .tile--half { grid-column: span 6; grid-row: span 1; }

  .hero__meta { gap: 1.25rem 2rem; }
  .hero__actions { gap: 0.7rem; }
  .hero__actions .btn { flex: 1 1 auto; }

  .field-row { grid-template-columns: 1fr; }
  .process__grid { gap: 1.25rem; }
  .lightbox { padding: 1rem; }
  .lightbox__close { top: 0.75rem; right: 0.75rem; }
}

/* ---- Phones (portrait) --------------------------------------------------- */
@media (max-width: 520px) {
  :root {
    --shell: min(1180px, 100% - 2rem);
    --radius-lg: 22px;
  }

  h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  h2 { font-size: clamp(2rem, 9.5vw, 2.6rem); }

  .tile,
  .tile--wide,
  .tile--tall,
  .tile--half { grid-column: span 12; grid-row: span 1; }

  .gallery__grid { gap: 0.75rem; grid-auto-rows: clamp(330px, 88vw, 460px); }
  .brand__sub { display: none; }
  .brand__logo { width: 40px; height: 40px; }
  .brand__name { font-size: 1.25rem; }
  .wa-float { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }

  /* Stack the hero CTAs so neither one gets squeezed. */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .btn { padding: 0.95rem 1.4rem; }
  .btn--lg { padding: 1.05rem 1.5rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__base { flex-direction: column; gap: 0.5rem; }

  .panel { border-radius: 20px; }
  .cal__day { border-radius: 10px; font-size: 0.85rem; }
  .cal__weekdays span { font-size: 0.6rem; letter-spacing: 0.06em; }
  .cal__legend { gap: 0.85rem; font-size: 0.72rem; }

  .preview__body { font-size: 0.8rem; }
}

/* ---- Small phones (iPhone SE and narrower) ------------------------------- */
@media (max-width: 380px) {
  :root { --shell: min(1180px, 100% - 1.5rem); }

  .panel { padding: 1.15rem; }
  .cal__days, .cal__weekdays { gap: 3px; }
  .cal__day { font-size: 0.8rem; border-radius: 8px; }
  .cal__month { font-size: 1.15rem; }
  .cal__btn { width: 34px; height: 34px; }

  .hero__meta { gap: 1rem 1.5rem; }
  .hero__stat strong { font-size: 1.55rem; }

  .service-card { padding: 1.85rem 1.35rem; }
  .btn { font-size: 0.86rem; }
}

/* ---- Short landscape phones: don't let the hero eat the whole screen ----- */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: auto; padding-block: 7rem 3.5rem; }
  .mobile-menu { justify-content: flex-start; overflow-y: auto; }
  .mobile-menu a { font-size: 1.5rem; padding-block: 0.35rem; }
}

/* ---- Coarse pointers: hover effects shouldn't hide content on touch ------ */
@media (hover: none) {
  .tile__caption { transform: translateY(0); }
  .service-card::before { opacity: 1; }
}
