/* ─── Custom Properties ────────────────────────────────────────────── */
:root {
  --bg:       #F7F4F0;
  --text:     #1C1C1A;
  --accent:   #C8541A;
  --muted:    #4A6741;
  --card-bg:  #EEEAE4;
  --border:   #DDD8D0;
  --text-sub: #5a5855;
  --radius:   8px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

:root[data-theme="dark"] {
  --bg:       #111009;
  --text:     #EDE9E3;
  --muted:    #8AAF80;
  --card-bg:  #1A1916;
  --border:   #2C2A26;
  --text-sub: #9A9490;
}

/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Typography ───────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garant', serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
}

h1 em {
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: var(--text-sub);
}

.label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}

.btn-primary:hover {
  background: #b04515;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--text);
  background: rgba(28, 28, 26, 0.04);
}

.btn-large {
  padding: 1.1rem 2.75rem;
  font-size: 1rem;
}

/* ─── Nav ──────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 5rem;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s, box-shadow 0.3s;
}

#nav.is-scrolled {
  background: rgba(247, 244, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.logo-mark {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

.footer-logo-mark {
  width: 22px;
  height: auto;
  margin-bottom: 0.2rem;
  opacity: 0.85;
}

.logo-primary {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.75rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1;
  transition: color 0.2s;
}

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.56rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-sub);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-book {
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.btn-book:hover {
  background: #b04515;
}


/* ─── Hero ─────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0D0C0A;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

/* Very light overlay — photo reads naturally, just enough depth at edges */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12, 9, 6, 0.32) 0%, rgba(12, 9, 6, 0.08) 55%, rgba(12, 9, 6, 0) 100%),
    linear-gradient(to top, rgba(12, 9, 6, 0.28) 0%, rgba(12, 9, 6, 0) 28%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.12);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 6rem 5rem 0;
}

/* Light mode: warm translucent card */
.hero-card {
  background: rgba(247, 244, 240, 0.9);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid rgba(221, 216, 208, 0.9);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.75rem 3rem;
  max-width: 500px;
  width: 100%;
  color: var(--text);
  box-shadow: 0 8px 40px rgba(12, 9, 6, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hero-card .label {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero-card h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  margin-bottom: 2.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-card h1 em {
  font-size: 1.15em;
  display: block;
  line-height: 1.0;
  color: var(--accent);
  font-style: italic;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* btn-ghost: light mode = dark bordered (on warm card) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease), border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  background: rgba(28, 28, 26, 0.06);
  border-color: var(--text);
}


/* HUD process steps */
.hero-hud {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5rem 2.75rem;
}

.hud-steps {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.hud-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hud-step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.hud-step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hud-divider {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* Nav: white text when hero is visible (not scrolled) */
#nav:not(.is-scrolled) .logo-primary,
#nav:not(.is-scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}


#nav:not(.is-scrolled) .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}


/* ─── Section Layout ───────────────────────────────────────────────── */
section {
  padding: 7rem 5rem;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  margin-top: 0.25rem;
}

.availability-note {
  margin-top: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-sub);
  letter-spacing: 0.01em;
}

/* ─── Services ─────────────────────────────────────────────────────── */
#services {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 3rem;
}

#services .section-header {
  padding: 0 7rem;
  margin-bottom: 4rem;
}

/* Outer wrapper: column stack of top-row + full card */
.services-panels {
  display: flex;
  flex-direction: column;
  margin: 0 7rem;
  gap: 3px;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
}

/* Top row: the two side-by-side panels */
.services-top-row {
  display: flex;
  height: 52vh;
  min-height: 340px;
  gap: 3px;
}

.service-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Expand/shrink only applies within the top row */
.services-top-row:has(.service-panel:hover) .service-panel:not(:hover) {
  flex: 0.72;
}

.services-top-row:has(.service-panel:hover) .service-panel:hover {
  flex: 1.28;
}

.panel-img {
  position: absolute;
  inset: 0;
}

.panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}


/* Top-row panels: scale on hover (driven by the expand animation) */
.service-panel:hover .panel-img img {
  transform: scale(1.05);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 9, 6, 0.88) 0%,
    rgba(12, 9, 6, 0.3) 48%,
    rgba(12, 9, 6, 0.1) 100%
  );
  transition: background 0.5s var(--ease);
}

.service-panel:hover .panel-overlay {
  background: linear-gradient(
    to top,
    rgba(12, 9, 6, 0.92) 0%,
    rgba(12, 9, 6, 0.42) 52%,
    rgba(12, 9, 6, 0.14) 100%
  );
}

/* ─── Full Detail Card ─────────────────────────────────────────────── */
.service-panel--full {
  flex: none;          /* don't participate in top-row flex */
  height: 60vh;
  min-height: 420px;
  transition: none;   /* no flex-expand animation */
}

/* Independent zoom-only hover — no overlay change, no flex shift */
.service-panel--full .panel-img img {
  object-position: center 50%;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-panel--full:hover .panel-img img {
  transform: scale(1.07);
}

/* Slightly denser overlay for the wide cinematic shot */
.panel-overlay--full {
  background: linear-gradient(
    to right,
    rgba(12, 9, 6, 0.82) 0%,
    rgba(12, 9, 6, 0.45) 45%,
    rgba(12, 9, 6, 0.15) 100%
  );
  transition: background 0.6s var(--ease);
}

.service-panel--full:hover .panel-overlay--full {
  background: linear-gradient(
    to right,
    rgba(12, 9, 6, 0.88) 0%,
    rgba(12, 9, 6, 0.52) 45%,
    rgba(12, 9, 6, 0.2) 100%
  );
}

/* Content: bottom-left anchored — same grammar as the top two panels */
.panel-content--full {
  justify-content: flex-end;
  padding: 2.75rem 3rem;
}

/* Width-constrained wrapper so the car shows on the right */
.full-panel-inner {
  max-width: 460px;
}

/* Details block — slides up on hover, same pattern as top panels */
.full-panel-details {
  margin-top: 1.25rem;
  max-width: 340px;
}

/* "Book This" button — white variant matching .panel-details .btn-secondary */
.full-panel-btn {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  align-self: flex-start;
}

.full-panel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.panel-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 2.75rem;
  color: #fff;
}

.panel-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.panel-header .slide-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.panel-header h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.panel-header .slide-price {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-top: 0.15rem;
}

.panel-details {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease) 0.07s, transform 0.4s var(--ease) 0.07s;
  pointer-events: none;
  margin-top: 1.25rem;
}

.service-panel:hover .panel-details {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.panel-details ul {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.panel-details ul li {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
}

.panel-details ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.panel-details ul li:last-child {
  border-bottom: none;
}

.panel-details .btn-secondary {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

.panel-details .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.price-disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-top: 0.65rem;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
}

/* ─── Gallery ──────────────────────────────────────────────────────── */
#gallery {
  background: var(--card-bg);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
}

.tab {
  padding: 0.5rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-sub);
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s;
}

.tab:hover {
  color: var(--text);
}

.tab.active {
  color: var(--text);
  border-bottom-color: var(--accent);
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.hidden {
  display: none;
}

/* ─── Before / After ───────────────────────────────────────────────── *

/* ─── Before/After Slider (placeholder) ────────────────────────────── */

/* ─── Location / Map ───────────────────────────────────────────────── */
#location {
  background: var(--bg);
  padding-left: 7rem;
  padding-right: 7rem;
}

.location-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

.location-map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

#serviceMap {
  height: 520px;
  width: 100%;
}

/* Leaflet controls — keep below fixed nav */
.leaflet-top,
.leaflet-bottom {
  z-index: 400 !important;
}

/* Leaflet controls — match site theme */
.leaflet-control-zoom a {
  background: #1a1816 !important;
  color: #ede9e3 !important;
  border-color: #2c2a26 !important;
  font-size: 16px !important;
}

.leaflet-control-zoom a:hover {
  background: #2c2a26 !important;
}

.leaflet-control-attribution {
  background: rgba(17, 16, 9, 0.75) !important;
  color: #6b6760 !important;
  font-size: 0.65rem !important;
}

.leaflet-control-attribution a {
  color: #8a8580 !important;
}

/* Popup styling */
.leaflet-popup-content-wrapper {
  background: #1a1816 !important;
  color: #ede9e3 !important;
  border: 1px solid #2c2a26 !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.85rem !important;
}

.leaflet-popup-tip {
  background: #1a1816 !important;
}

.location-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-zone-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.zone-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(200, 84, 26, 0.25);
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.location-cities {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.65;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.location-fee-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.location-fee-card .label {
  display: block;
}

.location-fee-card h4 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.location-fee-card p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.65;
}

.location-fee-card strong {
  color: var(--accent);
  font-weight: 500;
}

.location-fee-btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .location-wrap {
    grid-template-columns: 1fr;
  }
  #serviceMap {
    height: 340px;
  }
}

/* ─── Booking CTA ──────────────────────────────────────────────────── */
#booking-cta {
  background: var(--card-bg);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-left: 7rem;
  padding-right: 7rem;
}

#booking-cta h2 {
  margin: 0.5rem 0 1rem;
}

#booking-cta p {
  max-width: 420px;
  margin: 0 auto 2rem;
}

/* ─── Footer ───────────────────────────────────────────────────────── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2.25rem 5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand span:first-of-type {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-brand .muted {
  font-size: 0.8rem;
  color: #888;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-sub);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-social-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  position: relative;
  top: -0.5px;
}

.footer-copy {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 300;
}

.footer-photo-credit {
  font-size: 0.78rem;
  color: var(--text-sub);
}

.footer-photo-credit summary {
  cursor: pointer;
  list-style: none;
  color: #aaa;
  font-weight: 300;
  user-select: none;
  transition: color 0.2s;
}

.footer-photo-credit summary::-webkit-details-marker { display: none; }

.footer-photo-credit summary::after {
  content: ' ↓';
  font-size: 0.7em;
  opacity: 0.6;
}

.footer-photo-credit[open] summary::after {
  content: ' ↑';
}

.footer-photo-credit summary:hover {
  color: var(--text);
}

.footer-photo-credit p {
  margin-top: 0.5rem;
  color: #aaa;
  font-weight: 300;
  line-height: 1.5;
  max-width: 30ch;
}

.footer-photo-credit a {
  color: var(--text-sub);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer-photo-credit a:hover {
  color: var(--text);
}

/* ─── Modal ────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 26, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: calc(var(--radius) * 2);
  border-top: 2px solid var(--accent);
  padding: 2.5rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.4s var(--ease);
}

.modal-panel h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel--notion {
  max-width: 720px;
  width: min(720px, 95vw);
  height: 85vh;
  max-height: 85vh;
  padding: 3rem 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-panel--notion iframe {
  flex: 1;
  border: none;
  display: block;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.4rem;
  color: #888;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s;
}

.progress-dot.active {
  background: var(--accent);
}

.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
}

.modal-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Service options in modal */
.service-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.service-option {
  cursor: pointer;
}

.service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.service-option input:checked + .option-card {
  border-color: var(--accent);
  background: rgba(200, 84, 26, 0.05);
}

/* Service name — serif, consistent across all three */
.option-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Price — sans-serif, consistent across all three */
.option-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.01em;
}

/* Badge — absolutely positioned so it never affects card height */
.option-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-55%);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid rgba(200, 84, 26, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}

/* Time slots */
/* ─── Custom Calendar ───────────────────────────────────────────────── */
.cal-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem 1.25rem;
  margin-bottom: 1.25rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cal-month-year {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}

.cal-nav:hover:not(:disabled) {
  background: var(--border);
  color: var(--text);
}

.cal-nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.cal-dows {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.3rem;
}

.cal-dows span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-sub);
  text-align: center;
  padding: 0.2rem 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  position: relative;
}

.cal-day:hover:not(:disabled) {
  background: var(--border);
}

.cal-day--empty {
  pointer-events: none;
}

.cal-day--past {
  color: var(--text-sub);
  opacity: 0.35;
  cursor: not-allowed;
}

.cal-day--today::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.cal-day--selected {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 500;
}

.cal-day--selected::after {
  display: none;
}

/* ─── Time Slots ────────────────────────────────────────────────────── */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 0 0 1.75rem;
}

.time-option {
  cursor: pointer;
}

.time-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-option span {
  display: block;
  text-align: center;
  padding: 0.65rem 0.5rem;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
}

.time-option input:checked + span {
  border-color: var(--accent);
  background: rgba(200, 84, 26, 0.05);
}

.time-option span:hover {
  border-color: #bbb;
}

/* Form inputs */
.form-input {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-input::placeholder {
  color: #b0aba5;
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
  margin-bottom: 1.5rem;
}

/* Confirmation step */
.confirm-icon {
  width: 64px;
  height: 64px;
  background: rgba(74, 103, 65, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--muted);
  margin: 0 auto 1.5rem;
}

.modal-step[data-step="4"] {
  text-align: center;
}

.modal-step[data-step="4"] p {
  margin: 0.75rem 0 2rem;
}

/* ─── Theme Transition ─────────────────────────────────────────────── */
section,
#nav,
footer,
.modal-panel,
.option-card,
.time-option span,
.form-input,
.hero-card {
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* ─── Reveal Animation ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 768px) {

  section {
    padding: 5rem 1.5rem;
  }

  #nav {
    padding: 1rem 1.5rem;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 5rem 1.75rem 0;
  }

  .hero-hud {
    padding: 0 1.75rem 2rem;
  }

  .hud-steps {
    gap: 1rem;
  }

  .hud-step-label {
    font-size: 0.65rem;
  }


  .services-panels {
    margin: 0;
    gap: 3px;
  }

  .services-top-row {
    flex-direction: column;
    height: auto;
    min-height: unset;
    gap: 3px;
  }

  .service-panel {
    flex: none !important;
    height: 42vw;
    min-height: 220px;
  }

  /* Full card stacks naturally; taller so content breathes */
  .service-panel--full {
    height: 52vw;
    min-height: 260px;
  }

  .panel-content--full {
    padding: 2rem 1.75rem;
  }

  .full-panel-inner {
    max-width: 100%;
  }

  .full-panel-desc {
    display: none; /* headline + price + button is sufficient at small sizes */
  }

  .panel-details {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-copy {
    order: 3;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .modal-panel {
    padding: 2rem 1.5rem;
    border-radius: calc(var(--radius) * 1.5);
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════════ */

/* ─── Scroll Progress Bar ─────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ─── Custom Cursor ───────────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transition: opacity 0.2s, background 0.2s;
}

.cursor-ring {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(200, 84, 26, 0.45);
  transition: opacity 0.3s, width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.25s, background 0.2s;
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 64px;
  height: 64px;
  border-color: var(--accent);
}


@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ─── Hero Entrance Animations ────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-anim-1 { opacity: 0; animation: heroFadeUp 0.85s var(--ease) 0.35s forwards; }
.hero-anim-2 { opacity: 0; animation: heroFadeUp 0.9s  var(--ease) 0.55s forwards; }
.hero-anim-3 { opacity: 0; animation: heroFadeUp 0.75s var(--ease) 0.8s  forwards; }
.hero-anim-4 { opacity: 0; animation: heroFadeIn 0.7s  var(--ease) 1.1s  forwards; }


/* ─── Gallery Stagger ─────────────────────────────────────────────── */
.gallery-item {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.gallery-item.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ─── Enhanced Reveals ────────────────────────────────────────────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ─── Hero Image Parallax ─────────────────────────────────────────── */
.hero-img {
  will-change: transform;
}

/* ─── Discount Popup ──────────────────────────────────────────────── */
.discount-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.discount-popup.is-open {
  pointer-events: all;
  opacity: 1;
}

.discount-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 9, 6, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.discount-card {
  position: relative;
  z-index: 1;
  background: rgba(247, 244, 240, 0.97);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  border: 1px solid rgba(221, 216, 208, 0.95);
  border-radius: calc(var(--radius) * 2.5);
  padding: 3rem 3.5rem 2.75rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 24px 80px rgba(12, 9, 6, 0.28),
    0 4px 16px rgba(12, 9, 6, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: scale(0.93) translateY(20px);
  transition: transform 0.45s var(--ease);
}

.discount-popup.is-open .discount-card {
  transform: scale(1) translateY(0);
}

/* The big typographic number */
.discount-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin: 0.5rem 0 0;
  color: var(--accent);
  gap: 0.05em;
}

.discount-pct {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(7rem, 18vw, 10rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.discount-pct-sign {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 400;
  padding-top: 0.55em;
  letter-spacing: 0;
}

/* Serif italic tagline */
.discount-tagline {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin: 0.1rem 0 1.25rem;
  line-height: 1.15;
}

.discount-tagline em {
  font-style: italic;
  color: var(--text);
}

/* Body copy */
.discount-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-sub);
  max-width: 340px;
  margin: 0 auto 0;
}

/* Inline code badge */
.discount-code {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(200, 84, 26, 0.1);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  font-size: 0.88rem;
}

/* Claim button */
.discount-claim {
  width: 100%;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

/* Skip link */
.discount-skip {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-sub);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  text-align: center;
  transition: color 0.2s;
}

.discount-skip:hover {
  color: var(--text);
}

/* Discount row in recap (hidden until claimed) */
.recap-discount-row {
  display: none;
}

.recap-discount-val {
  color: var(--muted) !important;
  font-weight: 600 !important;
}

@media (max-width: 480px) {
  .discount-card {
    padding: 2.25rem 1.75rem 2rem;
    border-radius: calc(var(--radius) * 2);
  }

  .discount-pct {
    font-size: clamp(6rem, 22vw, 8rem);
  }
}

/* ─── Hamburger Button ────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: 0.75rem;
  color: var(--text);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.35s var(--ease), opacity 0.25s, background 0.2s;
  transform-origin: center;
}

/* Animate to X when open */
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Nav Drawer ───────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.mobile-nav.is-open {
  pointer-events: all;
  opacity: 1;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 26, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(80vw, 320px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2.5rem;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.6rem;
  color: #888;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.2s;
}

.mobile-nav-close:hover {
  color: var(--text);
}

.mobile-nav-link {
  display: block;
  font-family: 'Cormorant Garant', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-panel .btn-primary {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

/* ─── Sticky Mobile CTA ───────────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 1rem 1.5rem calc(1rem + env(safe-area-inset-bottom));
  background: rgba(247, 244, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-sticky-cta.is-visible {
  transform: translateY(0);
}

.mobile-sticky-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ─── Testimonials ────────────────────────────────────────────────── */
#testimonials {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding-left: 7rem;
  padding-right: 7rem;
}

.testimonial-carousel {
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial {
  min-width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-sizing: border-box;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.testimonial-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}

.testimonial-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-sub);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.author-loc {
  font-size: 0.78rem;
  color: var(--text-sub);
}

.review-source {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
  opacity: 0.8;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ─── FAQ ─────────────────────────────────────────────────────────── */
#faq {
  background: var(--bg);
  padding-left: 7rem;
  padding-right: 7rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.2s;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}

/* ─── Combo Badge ─────────────────────────────────────────────────── */
.option-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(200, 84, 26, 0.12);
  color: var(--accent);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ─── Booking Recap (Step 4) ──────────────────────────────────────── */
.booking-recap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 2rem;
  text-align: left;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.recap-row:last-child {
  border-bottom: none;
}

.recap-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
}

.recap-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-align: right;
}

/* ─── Disabled Step 2 Continue ────────────────────────────────────── */
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ─── Hero Sub-copy & Proof Chips ────────────────────────────────── */
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-sub);
  margin: 1rem 0 0.75rem;
  max-width: 380px;
}

/* On the dark hero card, make it legible */
.hero-card .hero-sub {
  color: rgba(28, 28, 26, 0.72);
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-sub);
}

.hero-card .hero-proof {
  color: rgba(28, 28, 26, 0.65);
}

.proof-sep {
  color: var(--border);
}

/* ─── Gallery CTA Strip ───────────────────────────────────────────── */
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem 0;
  flex-wrap: wrap;
}

.gallery-cta p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-sub);
  margin: 0;
}

/* ─── Testimonials CTA Strip ──────────────────────────────────────── */
.testimonials-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 3rem;
}

.cta-reassurance {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-sub);
  margin: 0;
  opacity: 0.8;
}

/* ─── Booking Guarantees ──────────────────────────────────────────── */
.booking-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.5rem;
}

.booking-guarantees span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-sub);
}

/* ─── Step Hint (modal step 1) ────────────────────────────────────── */
.step-hint {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin: 0 0 1rem;
  opacity: 1;
  transition: opacity 0.2s;
}

/* ─── Inline Form Errors ──────────────────────────────────────────── */
.form-error {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  margin: -0.4rem 0 0.75rem;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.form-error.is-visible {
  opacity: 1;
}

.form-input.is-error {
  border-color: #c0392b;
}

/* ─── Form Reassurance (modal step 3) ────────────────────────────── */
.form-reassurance {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-sub);
  margin-top: 0.75rem;
  opacity: 0.75;
}

/* ─── Mobile responsive additions ────────────────────────────────── */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-right .btn-book {
    display: none;
  }

  .mobile-sticky-cta {
    display: block;
  }

  /* Padding accounts for sticky CTA bar */
  body {
    padding-bottom: 80px;
  }

  .gallery-cta {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .gallery-cta .btn-primary,
  .testimonials-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .booking-guarantees {
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
  }

  .hero-proof {
    justify-content: flex-start;
  }

  /* Add extra bottom padding to #booking-cta since sticky bar is there */
  #booking-cta {
    padding-bottom: 2rem;
  }
}


/* ─── Results Section ──────────────────────────────────────────────── */
#results {
  padding-left: 0;
  padding-right: 0;
}

#results .section-header {
  padding: 0 7rem;
  margin-bottom: 4rem;
}

/* ─── Before/After Slider ──────────────────────────────────────────── */
#results .ba-wrap {
  position: relative;
  margin: 3rem auto 0;
  border-radius: var(--radius);
  overflow: visible;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 16 / 7;
  background: var(--card-bg);
  box-shadow: 0 2px 32px rgba(28, 28, 26, 0.1);
}

.ba-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before { z-index: 2; }
.ba-after  { z-index: 1; }

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 0;
  pointer-events: none;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: #C8541A;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(200, 84, 26, 0.4);
  z-index: 10;
  pointer-events: none;
}

.ba-btn {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 244, 240, 0.88);
  border: 1px solid rgba(200, 84, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12), 0 0 0 3px rgba(247, 244, 240, 0.4);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.ba-wrap:active .ba-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), 0 0 0 4px rgba(247, 244, 240, 0.5);
}

.ba-label {
  position: absolute;
  bottom: 1.25rem;
  z-index: 5;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(28, 28, 26, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  pointer-events: none;
}

.ba-label--before { left: 1.25rem; }
.ba-label--after  { right: 1.25rem; }

@media (max-width: 600px) {
  #results .ba-wrap {
    margin-top: 1.5rem;
    border-radius: calc(var(--radius) / 2);
  }
}

/* ─── Before/After Grid ────────────────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: auto;
  gap: 2rem;
  margin: 3rem 7rem 0;
  align-items: stretch;
}

/* Left column: interior sliders stacked */
#baWrap  { grid-column: 1; grid-row: 1; }
#baWrap2 { grid-column: 1; grid-row: 2; }

/* Right column: exterior slider spans both rows */
#baWrap3 {
  grid-column: 2;
  grid-row: 1 / 3;
}

/* Override aspect-ratio so it fills the full grid height */
#results #baWrap3 {
  aspect-ratio: unset;
  height: 100%;
}

/* Exterior slider: cover fills the box, no letterbox gaps */
#baWrap3 .ba-before img,
#baWrap3 .ba-after img {
  object-fit: cover;
  object-position: center center;
}

/* Override single-slider margin when inside grid */
.ba-grid .ba-wrap {
  margin: 0;
  max-width: 100%;
}

@media (max-width: 700px) {
  .ba-grid {
    grid-template-columns: 1fr;
    margin: 2rem 1.5rem 0;
  }
  #baWrap, #baWrap2, #baWrap3 {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 16 / 7;
  }
}

/* Force sliders to fill their grid cells */
#results .ba-grid .ba-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* Sliders are never individually hidden — the grid reveals them as one unit */
.ba-grid .ba-wrap {
  opacity: 1;
  transform: none;
}

/* ─── Booking Modal ─────────────────────────────────────────────────── */
.modal-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-sub);
  margin: 0.5rem 0 1.75rem;
  line-height: 1.6;
}

.booking-contact-card {
  background: #0E0D0B;
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}

.booking-contact-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(200,84,26,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.booking-phone-link {
  display: block;
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 300;
  color: #C8541A;
  text-decoration: none;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s var(--ease);
}

.booking-phone-link:hover {
  opacity: 0.75;
}

/* Ghost button variant for dark card context */
.booking-contact-card .btn-ghost {
  border-color: rgba(237, 233, 227, 0.2);
  color: #EDE9E3;
}

.booking-contact-card .btn-ghost:hover {
  background: rgba(237, 233, 227, 0.06);
  border-color: rgba(237, 233, 227, 0.5);
}

.booking-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.booking-actions .btn-primary,
.booking-actions .btn-ghost {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  text-align: center;
  text-decoration: none;
}

.booking-tips {
  margin-bottom: 1.5rem;
}

.booking-tips-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
}

.booking-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-tips ul li {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-sub);
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
}

.booking-tips ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.booking-confirm-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-sub);
  text-align: center;
  margin: 0;
}

@media (max-width: 480px) {
  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-actions .btn-primary,
  .booking-actions .btn-ghost {
    max-width: 100%;
  }
}

/* ─── Reviews Empty State ───────────────────────────────────────────── */
.reviews-empty {
  text-align: center;
  padding: 1rem 2rem 3rem;
}

.reviews-empty-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 3rem 2rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}

.google-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 1.5rem;
  display: block;
}

.reviews-empty-msg {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.reviews-empty-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.reviews-empty-btns a {
  text-decoration: none;
  min-width: 160px;
  justify-content: center;
}

.reviews-future-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-sub);
  opacity: 0.5;
  margin: 0;
}

/* Hero Google link (replaces star rating) */
.hero-google-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero-google-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE FIXES
   Covers gaps in the existing breakpoints. Sections with hardcoded
   7rem / 5rem padding need their own overrides because they bypass
   the general `section` rule.
═══════════════════════════════════════════════════════════════════ */

/* ─── Nav: hamburger visible on dark hero (not scrolled) ─────────── */
#nav:not(.is-scrolled) .nav-hamburger span {
  background: rgba(255, 255, 255, 0.9);
}


/* ─── Large tablet ≤1100px ────────────────────────────────────────── */
@media (max-width: 1100px) {
  #nav {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .hero-hud {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  section {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  #services .section-header {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .services-panels {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  #results .section-header {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .ba-grid {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  #testimonials {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  #faq {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  #booking-cta {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* ─── Mobile ≤768px ───────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Sections with hardcoded side padding */
  #services .section-header { padding-left: 1.5rem; padding-right: 1.5rem; }
  #results .section-header  { padding-left: 1.5rem; padding-right: 1.5rem; }
  #testimonials  { padding-left: 1.5rem; padding-right: 1.5rem; }
  #faq           { padding-left: 1.5rem; padding-right: 1.5rem; }
  #booking-cta   { padding-left: 1.5rem; padding-right: 1.5rem; }
  footer         { padding-left: 1.5rem; padding-right: 1.5rem; }

  /* Allow hero to grow taller than viewport on mobile so the HUD
     steps below the card are never clipped */
  #hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }

  /* Center the card horizontally; align to top so HUD sits below */
  .hero-content {
    justify-content: center;
    align-items: flex-start;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Hero card: full width, centered text */
  .hero-card {
    padding: 1.75rem 1.5rem;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  /* Keep label left — center looks odd for all-caps small labels */
  .hero-card .label {
    text-align: left;
  }

  .hero-card h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 1rem;
  }

  /* Prevent "Outshine" italic from sizing larger than h1 on small screens */
  .hero-card h1 em {
    font-size: 1em;
  }

  .hero-card .hero-sub {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    max-width: 100%;
  }

  .hero-card .hero-proof {
    justify-content: center;
    margin-bottom: 0.75rem;
  }

  .hero-btns {
    justify-content: center;
  }

  /* Small gap between card and HUD steps, comfortable bottom padding */
  .hero-hud {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .hud-steps {
    justify-content: center;
    width: 100%;
  }

  /* ── Fix 3: Service panels — stacked image + content layout ──────
     Replace the fixed-height overlay approach with a flex column:
     image thumbnail on top, dark content block below. Nothing clips. */
  .service-panel {
    height: auto !important;
    min-height: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .service-panel--full {
    height: auto !important;
    min-height: 0 !important;
  }

  /* Image block: relative so the img fills it via width/height 100% */
  .panel-img {
    position: relative;
    inset: auto;
    height: 180px;
    flex-shrink: 0;
  }

  /* Gradient overlay not needed — image and content are now separate */
  .panel-overlay {
    display: none;
  }

  /* Content block: static flow, warm card background, top-anchored */
  .panel-content {
    position: relative;
    inset: auto;
    background: var(--card-bg);
    color: var(--text);
    padding: 1.5rem 1.75rem;
    justify-content: flex-start;
  }

  .panel-header h3 {
    color: var(--text);
  }

  .panel-details ul li {
    color: var(--text-sub);
    border-bottom-color: var(--border);
  }

  .panel-details .btn-secondary,
  .full-panel-btn {
    color: var(--text);
    border-color: var(--border);
  }

  .panel-details .btn-secondary:hover,
  .full-panel-btn:hover {
    background: rgba(28, 28, 26, 0.06);
    border-color: var(--text);
  }

  .price-disclaimer {
    color: var(--text-sub);
  }

  /* Full detail content adjustments */
  .panel-content--full {
    padding: 1.5rem 1.75rem;
  }

  .full-panel-inner {
    max-width: 100%;
  }

  /* ── Fix 5: Map — full bleed width ───────────────────────────────
     Remove section side padding for location so the map spans
     edge-to-edge. Re-apply padding only to the text blocks.       */
  #location {
    padding-left: 0;
    padding-right: 0;
  }

  #location .section-header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .location-sidebar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .location-map-container {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  #serviceMap {
    height: 420px;
  }

  /* Location CTA button: full width */
  .location-fee-btn {
    display: block;
    text-align: center;
  }
}

/* ── Fix 4: Third before/after slider visible on mobile ─────────────
   The outer rule #results #baWrap3 { aspect-ratio: unset; height: 100% }
   has higher specificity than the 700px rule. Override it here.     */
@media (max-width: 700px) {
  #results #baWrap3 {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  #baWrap3 .ba-before img,
  #baWrap3 .ba-after img {
    object-position: center bottom;
  }
}

/* ─── Small mobile ≤480px ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-card {
    padding: 1.75rem 1.5rem;
  }

  footer {
    text-align: center;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}
