:root {
  --cream: #FAF6F1;
  --sand: #F3EADF;
  --nude: #E8D9C6;
  --nude-deep: #D9C4AC;
  --gold: #C9A57B;
  --gold-deep: #A8855E;
  --espresso: #3E2E24;
  --mocha: #6B5445;
  --ink: #241A14;
  --line: rgba(62, 46, 36, 0.12);
  --shadow-sm: 0 2px 10px rgba(62, 46, 36, 0.06);
  --shadow-md: 0 10px 40px rgba(62, 46, 36, 0.08);
  --shadow-lg: 0 20px 60px rgba(62, 46, 36, 0.12);
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --script: 'Pinyon Script', 'Cormorant Garamond', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-line::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 24px);
  padding-left: max(clamp(20px, 4vw, 24px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 4vw, 24px), env(safe-area-inset-right));
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  transition: color 0.35s ease;
  text-decoration: none;
  flex-shrink: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.25);
}
.nav.scrolled .brand { color: var(--ink); text-shadow: none; }
.brand-logo {
  display: block;
  height: 30px;
  width: auto;
  transition: opacity 0.35s ease;
}
.brand-logo-dark { display: none; }
.nav.scrolled .brand-logo-light { display: none; }
.nav.scrolled .brand-logo-dark { display: block; }
.brand-logo-light { filter: drop-shadow(0 1px 10px rgba(0,0,0,0.28)); }
.brand-mark {
  width: 36px; height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-name em {
  font-style: italic;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s, opacity 0.3s;
  opacity: 0.92;
  text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.nav.scrolled .nav-links a { text-shadow: none; }
.nav.scrolled .nav-links a { color: var(--mocha); }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav.scrolled .nav-links a:hover { color: var(--gold-deep); }
.nav-links-book { display: none; }

.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--cream);
  border-radius: 999px;
  color: var(--cream);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--cream);
  color: var(--ink);
}
.nav.scrolled .nav-cta {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}
.nav.scrolled .nav-cta:hover {
  background: #D9B68B;
  border-color: #D9B68B;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  padding: 8px;
}
.nav.scrolled .nav-toggle { color: var(--ink); }
.nav.scrolled .nav-toggle { color: var(--ink); }

/* ===== HERO (single image) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
  padding: 108px 24px 64px;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  background: #e9d3cb url('assets/hero-bg.png') center right/cover no-repeat;
  transform: scale(1.06);
  animation: heroKen 18s ease-out forwards;
}
@keyframes heroKen { from { transform: scale(1.14); } to { transform: scale(1.04); } }
.hero-scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(120,72,72,0.34) 0%, rgba(120,72,72,0.18) 28%, rgba(110,66,66,0.30) 60%, rgba(86,50,48,0.62) 100%),
    radial-gradient(120% 90% at 42% 46%, rgba(70,40,40,0.42), rgba(86,50,48,0.10) 62%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-emblem {
  color: #EAD3B4;
  width: clamp(110px, 14vw, 168px); height: auto;
  display: block;
  filter: drop-shadow(0 2px 18px rgba(0,0,0,0.30));
  animation: hEmblem 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
.hero-emblem img { width: 100%; height: auto; display: block; animation: breathe 6s ease-in-out 1.5s infinite; }
@keyframes hEmblem { from { opacity:0; transform: translateY(12px) scale(0.9);} to {opacity:1; transform:none;} }
@keyframes breathe { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }

.hero-title {
  width: 100%;
  margin: 18px 0 4px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 34px rgba(0,0,0,0.4);
}
.hero-title-serif {
  display: block;
  font-family: var(--serif);
  font-size: clamp(33px, 5vw, 74px);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.1;
  animation: hRise 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.hero-title-script {
  display: block;
  font-family: var(--script);
  font-size: clamp(38px, 5.8vw, 90px);
  line-height: 1.28;
  color: #EAD3B4;
  margin-top: 6px;
  animation: hRise 1s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
@keyframes hRise { from {opacity:0; transform: translateY(20px);} to {opacity:1; transform:none;} }
@keyframes hFade { from {opacity:0;} to {opacity:1;} }
@keyframes hRiseSm { from {opacity:0; transform: translateY(18px);} to {opacity:1; transform:none;} }
.hero-kicker {
  font-family: var(--sans);
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,247,238,0.85);
  margin-top: 18px;
  animation: hFade 1s ease 0.7s both;
}
.hero-cta {
  margin-top: 30px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: var(--gold);
  padding: 17px 44px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: hFade 1s ease 0.9s both;
}
.hero-cta:hover { transform: translateY(-2px); background: #D9B68B; box-shadow: 0 14px 38px rgba(0,0,0,0.4); }

/* hero badges with tooltip */
.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  animation: hFade 1s ease 0.8s both;
}
.hero-badge {
  position: relative;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  cursor: default;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.hero-badge:hover, .hero-badge:focus-visible {
  background: rgba(255,255,255,0.24);
  border-color: var(--cream);
  transform: translateY(-2px);
  outline: none;
}
.hero-badge svg { width: 28px; height: 28px; }
.hero-badge-tip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-badge-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--cream);
}
.hero-badge:hover .hero-badge-tip,
.hero-badge:focus-visible .hero-badge-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* services row */
.hero-services {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 64px);
  margin-top: 46px;
  width: 100%;
  flex-wrap: wrap;
}
.hero-svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  animation: hRiseSm 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-svc:nth-child(1){ animation-delay: 1s; }
.hero-svc:nth-child(2){ animation-delay: 1.1s; }
.hero-svc:nth-child(3){ animation-delay: 1.2s; }
.hero-svc:nth-child(4){ animation-delay: 1.3s; }
.hero-svc-icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(255,247,238,0.10);
  border: 1px solid rgba(234,211,180,0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: grid; place-items: center;
  color: #EAD3B4;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-svc:hover .hero-svc-icon { background: rgba(234,211,180,0.22); transform: translateY(-3px); }
.hero-svc-icon svg { width: 42px; height: 42px; }
.hero-svc-icon img { width: 46px; height: 46px; object-fit: contain; }
.hero-svc h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero-tagline {
  font-family: var(--script);
  font-size: clamp(26px, 3.4vw, 40px);
  color: #EAD3B4;
  margin-top: 40px;
  text-shadow: 0 2px 26px rgba(0,0,0,0.4);
  animation: hFade 1.2s ease 1.5s both;
}
.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 46px;
  overflow: hidden;
  z-index: 1;
}
.hero-scroll-line {
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  transform-origin: top;
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip { 0%,100%{ transform: scaleY(0.3); opacity: 0.3; } 50%{ transform: scaleY(1); opacity: 1; } }

.btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 36px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 24px rgba(201, 165, 123, 0.4);
}
.btn-primary:hover {
  background: #D9B68B;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 165, 123, 0.5);
}
.btn-ghost {
  color: var(--cream);
  border-color: rgba(255, 245, 230, 0.35);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(255, 245, 230, 0.08);
}
.btn .arrow {
  transition: transform 0.3s;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: slide 36s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes slide {
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--mocha);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
}

/* ===== SECTION ===== */
section {
  position: relative;
}
.section {
  padding: 120px 0;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-head .eyebrow {
  margin-bottom: 20px;
  display: inline-block;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  margin-bottom: 20px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.section-head p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--mocha);
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--nude);
  box-shadow: var(--shadow-lg);
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--nude);
}
.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo-frame {
  position: absolute;
  top: 24px; left: 24px; right: -24px; bottom: -24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream);
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-badge .star { color: var(--gold); }

.about-text h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 300;
  margin: 18px 0 28px;
}
.about-text h2 em { font-style: italic; color: var(--gold-deep); }
.about-text .para {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mocha);
  margin-bottom: 20px;
  max-width: 540px;
}
.about-text .para:last-of-type { margin-bottom: 32px; }
.about-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--gold-deep);
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.stat-num em { font-style: italic; color: var(--gold-deep); }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-top: 10px;
}

/* ===== SAFETY ===== */
.safety {
  background: var(--ink);
  color: var(--cream);
  padding: 140px 0;
  overflow: hidden;
}
.safety-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.safety-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: url('assets/tools.jpg') center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.safety-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
}
.safety-tag {
  position: absolute;
  bottom: 28px; left: 28px;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  z-index: 2;
}
.safety-tag small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.safety-text h2 {
  color: var(--cream);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  margin: 20px 0 28px;
}
.safety-text h2 em { font-style: italic; color: var(--gold); }
.safety-text .eyebrow { color: var(--gold); }
.safety-text p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 245, 230, 0.78);
  margin-bottom: 36px;
  max-width: 460px;
}
.safety-checks {
  display: grid;
  gap: 16px;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 245, 230, 0.12);
}
.check:last-child { border-bottom: 0; }
.check-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 14px;
}
.check-content strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 4px;
}
.check-content span {
  font-size: 14px;
  color: rgba(255, 245, 230, 0.6);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
  background: var(--sand);
  padding: 140px 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--nude-deep);
}
.service-card.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.service-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--nude);
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-num {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(250, 246, 241, 0.9);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.service-price {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-family: var(--sans);
}
.service-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}
.service-body h3 em { font-style: italic; color: var(--gold-deep); }
.service-body p {
  font-size: 14px;
  color: var(--mocha);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.service-book {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.service-book .arrow {
  color: var(--gold-deep);
  transition: transform 0.3s;
}
.service-card:hover .service-book .arrow { transform: translateX(4px); }

/* ===== EXTRAS ROW ===== */
.extras {
  background: var(--cream);
  padding: 100px 0;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.extra {
  padding: 40px 32px;
  background: var(--sand);
  border-radius: 4px;
  text-align: left;
  transition: background 0.3s;
}
.extra:hover { background: var(--nude); }
.extra-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  font-size: 22px;
}
.extra h4 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}
.extra h4 em { font-style: italic; color: var(--gold-deep); }
.extra p {
  font-size: 14px;
  color: var(--mocha);
  line-height: 1.6;
}

/* ===== BOOKING CTA ===== */
.booking-cta {
  background: linear-gradient(135deg, var(--nude) 0%, var(--sand) 100%);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-cta::before,
.booking-cta::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 123, 0.2);
  pointer-events: none;
}
.booking-cta::before { top: -200px; left: -150px; }
.booking-cta::after { bottom: -200px; right: -150px; }
.booking-cta .inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.booking-cta h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  margin: 20px 0 28px;
  line-height: 1.05;
}
.booking-cta h2 em { font-style: italic; color: var(--gold-deep); }
.booking-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--mocha);
  margin-bottom: 40px;
}
.booking-cta .btn-primary {
  padding: 22px 56px;
  font-size: 13px;
}
.booking-cta .fineprint {
  margin-top: 28px;
  font-size: 12px;
  color: var(--mocha);
  letter-spacing: 0.08em;
}

/* ===== SOCIAL ===== */
.social {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}
.social h3 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  margin: 18px 0 14px;
}
.social h3 em { font-style: italic; color: var(--gold-deep); }
.social p {
  color: var(--mocha);
  max-width: 460px;
  margin: 0 auto 32px;
}
/* ===== INSTAGRAM CAROUSEL ===== */
.ig-carousel {
  position: relative;
  margin: 48px auto 40px;
  max-width: 1180px;
  padding: 0 58px;
  box-sizing: border-box;
}
.ig-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
}
.ig-track::-webkit-scrollbar { display: none; }
.ig-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.ig-slide {
  flex: 0 0 auto;
  width: clamp(240px, 68vw, 300px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: center;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  position: relative;
  user-select: none;
  -webkit-user-drag: none;
}
.ig-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.ig-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(62, 46, 36, 0);
  transition: background 0.3s;
}
.ig-slide:hover img { transform: scale(1.06); }
.ig-slide:hover::after { background: rgba(62, 46, 36, 0.12); }
.ig-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(62, 46, 36, 0.12);
  transition: background 0.3s, color 0.3s;
}
.ig-nav:hover { background: var(--ink); color: var(--cream); }
.ig-prev { left: 4px; }
.ig-next { right: 4px; }
@media (max-width: 760px) {
  .ig-nav { display: none; }
  .ig-carousel { padding: 0; }
}
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.ig-link:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--nude);
  padding: 80px 0 36px;
  color: var(--espresso);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-name { color: var(--ink); font-size: 28px; }
.footer-brand .brand-name em { color: var(--gold-deep); }
.footer-logo { display: block; height: 30px; width: auto; }
.footer-brand p {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--mocha);
  max-width: 320px;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--mocha);
}
.footer a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--gold-deep); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(62, 46, 36, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--mocha);
  flex-wrap: wrap;
}

/* ===== BOOKING MODAL ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36, 26, 20, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--cream);
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s ease;
  position: relative;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sand);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  z-index: 2;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--nude); }

.modal-header {
  padding: 40px 40px 24px;
  border-bottom: 1px solid var(--line);
}
.modal-header h3 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 6px;
}
.modal-header h3 em { font-style: italic; color: var(--gold-deep); }
.modal-header p {
  color: var(--mocha);
  font-size: 14px;
}

.steps {
  display: flex;
  gap: 8px;
  padding: 20px 40px;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
.step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mocha);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.step.active { opacity: 1; color: var(--ink); }
.step.done { opacity: 1; color: var(--gold-deep); }
.step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  font-weight: 500;
}
.step.done .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.step.active .step-num {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.modal-body {
  padding: 36px 40px;
  min-height: 340px;
}
.modal-body h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}
.modal-body .step-intro {
  color: var(--mocha);
  font-size: 14px;
  margin-bottom: 28px;
}

.svc-list { display: grid; gap: 12px; }
.svc-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--cream);
}
.svc-opt:hover { border-color: var(--nude-deep); background: #FBF7F2; }
.svc-opt.selected {
  border-color: var(--gold);
  background: #FBF4EA;
  box-shadow: 0 0 0 3px rgba(201, 165, 123, 0.12);
}
.svc-opt-main { display: flex; align-items: center; gap: 16px; }
.svc-opt-bubble {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sand);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.svc-opt.selected .svc-opt-bubble { background: var(--gold); color: var(--ink); }
.svc-opt-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.svc-opt-meta {
  font-size: 12px;
  color: var(--mocha);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.svc-opt-price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-dow {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mocha);
  padding: 8px 0;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  position: relative;
}
.cal-day:hover:not(.disabled) {
  border-color: var(--gold);
}
.cal-day.selected {
  background: var(--ink);
  color: var(--cream);
}
.cal-day.disabled {
  color: #C8B9A8;
  cursor: not-allowed;
  opacity: 0.5;
}
.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cal-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.cal-title em { font-style: italic; color: var(--gold-deep); }
.cal-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.2s;
}
.cal-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.cal-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.time-slot {
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  cursor: pointer;
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
}
.time-slot:hover:not(.disabled) { border-color: var(--gold); }
.time-slot.selected {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.time-slot.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.times-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-top: 24px;
  margin-bottom: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #FBF7F2;
}
.field .error {
  display: none;
  color: #B0553E;
  font-size: 12px;
  margin-top: 6px;
}
.field.invalid .error { display: block; }
.field.invalid input,
.field.invalid textarea { border-color: #B0553E; }

.confirm-card {
  background: var(--sand);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.confirm-row:last-child { border-bottom: 0; padding-bottom: 0; }
.confirm-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
}
.confirm-val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  text-align: right;
}
.confirm-val em { font-style: italic; color: var(--gold-deep); }
.confirm-total {
  font-family: var(--serif);
  font-size: 30px;
}

.modal-footer {
  padding: 20px 40px 36px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.modal-back {
  background: transparent;
  border: 0;
  color: var(--mocha);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 0;
  transition: color 0.2s;
}
.modal-back:hover { color: var(--ink); }
.modal-back:disabled { opacity: 0.3; cursor: not-allowed; }

.success {
  text-align: center;
  padding: 40px 20px 20px;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
.success h3 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 12px;
}
.success h3 em { font-style: italic; color: var(--gold-deep); }
.success p {
  color: var(--mocha);
  max-width: 420px;
  margin: 0 auto 24px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 200;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== TWEAKS PANEL ===== */
.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  width: min(280px, calc(100vw - 32px));
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  padding: 20px;
  display: none;
  font-size: 13px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h5 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.tweaks-panel .sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 16px;
}
.tweak-group { margin-top: 14px; }
.tweak-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 8px;
}
.tweak-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.tweak-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.tweak-swatch.active { box-shadow: 0 0 0 2px var(--ink); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */

/* ---- Large tablet / small laptop (≤1080px) ---- */
@media (max-width: 1080px) {
  .about-grid { gap: 56px; }
  .safety-grid { gap: 64px; }
  .service-grid { gap: 18px; }
  .ig-gallery { gap: 6px; }
}

/* ---- Tablet (≤960px) ---- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta.desktop { display: none; }

  /* Mobile dropdown menu */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: calc(100% + 8px);
    right: clamp(20px, 4vw, 24px);
    left: clamp(20px, 4vw, 24px);
    background: var(--cream);
    padding: 12px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
  }
  .nav-links.mobile-open a {
    color: var(--ink);
    opacity: 1;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 0.06em;
    transition: background 0.2s;
  }
  .nav-links.mobile-open a:hover { background: var(--sand); }
  .nav-links.mobile-open .nav-links-book { display: block; }
  .nav-links.mobile-open .nav-links-book a {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    margin-top: 4px;
  }
  .nav { position: fixed; }
  .nav-inner { position: relative; }

  .section { padding: 88px 0; }
  .safety, .services, .booking-cta, .extras, .social { padding: 96px 0; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 460px; margin: 0 auto; width: 100%; }
  .about-photo-frame { top: 16px; left: 16px; right: -16px; bottom: -16px; }

  .safety-grid { grid-template-columns: 1fr; gap: 48px; }
  .safety-image { max-width: 460px; margin: 0 auto; width: 100%; }
  /* Put the heading/intro above the photo on stacked layout */
  .safety-text { order: -1; }

  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .extras-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .ig-gallery { grid-template-columns: repeat(6, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---- Large phone / small tablet portrait (≤720px) ---- */
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .safety, .services, .booking-cta, .extras, .social { padding: 80px 0; }
  .section-head { margin-bottom: 56px; }

  .extras-grid { grid-template-columns: 1fr; gap: 14px; }
  .extra { display: flex; align-items: flex-start; gap: 20px; padding: 28px 24px; }
  .extra-icon { margin-bottom: 0; flex-shrink: 0; }

  .ig-gallery { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  .about-stats { gap: 32px; }
  .stat-num { font-size: 34px; }

  .marquee-item { font-size: 18px; gap: 36px; }
  .marquee-track { gap: 36px; }
}

/* ---- Phone (≤600px) ---- */
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-media { aspect-ratio: 16/10; }
  .service-card { flex-direction: row; }
  .service-card .service-media { width: 42%; aspect-ratio: auto; }
  .service-body { padding: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .about-stats { gap: 20px 28px; }

  /* Modal becomes a bottom sheet that fills the screen */
  .modal-backdrop { padding: 0; place-items: end stretch; }
  .modal {
    max-width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  .modal-backdrop.open .modal { transform: none; }
  .modal-body { flex: 1; }
  .modal-header { padding: 28px 24px 20px; padding-top: max(28px, env(safe-area-inset-top)); }
  .modal-header h3 { font-size: 28px; }
  .modal-body { padding: 28px 24px; min-height: 0; }
  .steps { padding: 16px 24px; }
  .modal-footer { padding: 16px 24px; padding-bottom: max(16px, env(safe-area-inset-bottom)); }
  .form-grid { grid-template-columns: 1fr; }
  .steps .step span { display: none; }
  .steps .step { flex: 0 0 auto; justify-content: center; }
  .steps .step .step-num { margin: 0 auto; }
  .steps { justify-content: space-around; }

  .svc-opt { padding: 14px 16px; }
  .svc-opt-name { font-size: 18px; }
  .times { grid-template-columns: repeat(3, 1fr); }
  .confirm-card { padding: 24px 20px; }
}

/* ---- Small phone (≤400px) ---- */
@media (max-width: 400px) {
  .brand-name { font-size: 19px; }
  .brand-mark { width: 32px; height: 32px; font-size: 16px; }

  .about-stats { gap: 16px; }
  .about-stats > div { flex: 1 1 40%; }
  .stat-num { font-size: 30px; }

  .footer-grid { grid-template-columns: 1fr; }
  .ig-gallery { gap: 4px; }

  .service-card { flex-direction: column; }
  .service-card .service-media { width: 100%; aspect-ratio: 16/10; }

  .times { grid-template-columns: repeat(2, 1fr); }
  .cal-day { font-size: 13px; }
  .calendar { gap: 4px; }
}

/* ---- Landscape phones: let the hero breathe without 100vh lock ---- */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: 680px; }
  .hero-scroll { display: none; }
}

/* ---- Coarse pointer: ensure comfortable hit targets ---- */
@media (pointer: coarse) {
  .nav-links a { padding: 6px 0; }
  .cal-day { min-height: 40px; }
  .time-slot { min-height: 48px; }
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 110px 22px 64px; }
  .hero-services { margin-top: 44px; gap: 20px 30px; }
  .hero-tagline { margin-top: 40px; }
}
@media (max-width: 600px) {
  .hero { padding: 104px 22px 60px; }
  .hero-emblem { width: 60px; height: 60px; }
  .hero-services {
    gap: 26px 34px;
    margin-top: 38px;
    max-width: 320px;
  }
  .hero-svc { flex: 0 0 calc(50% - 34px); }
  .hero-svc-icon { width: 66px; height: 66px; }
  .hero-svc-icon svg { width: 38px; height: 38px; }
  .hero-svc-icon img { width: 40px; height: 40px; }
  .hero-cta { margin-top: 26px; }
  .hero-tagline { margin-top: 34px; }
}
@media (max-width: 380px) {
  .hero-services { gap: 22px 26px; }
  .hero-svc-icon { width: 60px; height: 60px; }
}

/* Respect reduced-motion: show everything, no looping float */
@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .hero-photo img,
  .hero-emblem,
  .hero-emblem svg,
  .hero-title-serif,
  .hero-title-script,
  .hero-kicker,
  .hero-heart,
  .hero-svc,
  .hero-cta,
  .hero-trust-item,
  .hero-tagline {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== WHATSAPP WIDGET ===== */
.wa-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  font-family: var(--sans);
}
.wa-fab {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  animation: wa-blink 1.8s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: wa-pulse 2s ease-out infinite;
}
.wa-fab-icon { width: 33px; height: 33px; }
.wa-fab-close { width: 24px; height: 24px; display: none; }
.wa-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px #fff;
}
/* Estado abierto: detiene parpadeo y muestra la X */
.wa-widget.open .wa-fab { animation: none; }
.wa-widget.open .wa-fab::before { display: none; }
.wa-widget.open .wa-fab-icon { display: none; }
.wa-widget.open .wa-fab-close { display: block; }
.wa-widget.open .wa-fab-badge { display: none; }

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@keyframes wa-blink {
  0%, 100% { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50%      { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22), 0 0 0 10px rgba(37, 211, 102, 0); }
}

.wa-chat {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 330px;
  max-width: calc(100vw - 44px);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(62, 46, 36, 0.30);
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease, transform 0.26s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.wa-widget.open .wa-chat {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.wa-chat-header {
  background: var(--espresso);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-chat-avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.wa-chat-avatar img { width: 62%; height: 62%; object-fit: contain; }
.wa-chat-meta { display: flex; flex-direction: column; line-height: 1.25; }
.wa-chat-meta strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.wa-chat-status {
  font-size: 11px;
  opacity: 0.82;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wa-chat-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
}
.wa-chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.75;
  display: grid;
  place-items: center;
  transition: opacity 0.2s;
}
.wa-chat-close:hover { opacity: 1; }
.wa-chat-body {
  padding: 20px 14px 16px;
  background: var(--cream);
  min-height: 120px;
}
.wa-bubble {
  background: #fff;
  border-radius: 4px 16px 16px 16px;
  padding: 11px 13px;
  box-shadow: 0 2px 8px rgba(62, 46, 36, 0.08);
  max-width: 88%;
  font-size: 13.5px;
  color: var(--espresso);
}
.wa-bubble p { margin: 0 0 5px; line-height: 1.45; }
.wa-bubble-time {
  font-size: 10px;
  color: var(--mocha);
  display: block;
  text-align: right;
  margin-top: 2px;
}
.wa-chat-foot {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.wa-chat-foot input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.wa-chat-foot input:focus { border-color: var(--gold); }
.wa-send {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.wa-send:hover { background: #1eb955; transform: scale(1.05); }

@media (max-width: 480px) {
  .wa-widget { right: 16px; bottom: 16px; }
  .wa-fab { width: 56px; height: 56px; }
}

/* ===== RATING FRESHA (about) ===== */
.about-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  text-decoration: none;
  color: var(--espresso);
  font-size: 14px;
}
.about-rating-stars { color: #E8B400; letter-spacing: 2px; font-size: 16px; }
.about-rating strong { color: var(--gold-deep); }
.about-rating:hover { text-decoration: underline; }

/* ===== FAQ ===== */
.faq { background: var(--sand); }
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 24px;
  color: var(--gold-deep);
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 4px 22px;
  color: var(--mocha);
  line-height: 1.65;
  font-size: 15px;
}
.faq-item a { color: var(--gold-deep); }
