/* ===== DESIGN TOKENS ===== */
@property --underline-width {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

:root {
  --ink: #1C1917;
  --ink-light: #292524;
  --ink-muted: #44403C;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --ivory: #FFFDF9;
  --gold: #9C7741;
  --gold-light: #D4B07A;
  --gold-dark: #8E6D3E;
  --sage: #7A8B6F;
  --sage-light: #94A685;
  --blush: #C4937A;
  --blush-light: #D4A896;
  --text-primary: #1C1917;
  --text-secondary: #57534E;
  --text-muted: #A8A29E;
  --border: rgba(28, 25, 23, 0.08);
  --border-strong: rgba(28, 25, 23, 0.15);
  --glass-bg: rgba(250, 247, 242, 0.72);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 8px 32px rgba(28, 25, 23, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font-heading: 'Cormorant Garamond', 'Apple Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden
}

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

ul {
  list-style: none
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none
}

button {
  cursor: pointer
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section-pad {
  padding: 100px 0
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px
}

.section-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  transition: var(--transition)
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--ink)
}

.btn-primary:hover {
  background: var(--ink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.18)
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong)
}

.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px)
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 1.5px solid var(--gold)
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 154, 92, 0.3)
}

.btn-cta-nav {
  background: var(--gold);
  color: #fff;
  padding: 10px 24px;
  font-size: 0.82rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  border: none
}

.btn-cta-nav:hover {
  background: var(--gold-dark);
  transform: translateY(-1px)
}

.btn:active {
  transform: scale(0.97) translateY(0) !important;
  transition-duration: 0.1s;
}

.btn-cta-nav:hover {
  background: var(--gold-dark);
  transform: translateY(-1px)
}

.btn:active {
  transform: scale(0.97) translateY(0) !important;
  transition-duration: 0.1s;
}

/* ===== FIXED LOGO LEFT ===== */
.fixed-logo-left {
  position: fixed;
  top: 20px;
  left: 32px;
  z-index: 1001;
  transition: top 0.4s cubic-bezier(.4, 0, .2, 1);
}

.fixed-logo-left img {
  height: 100px;
  width: auto;
  display: block;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: 800px;
  transition: top 0.4s cubic-bezier(.4, 0, .2, 1);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow)
}

.nav-logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  margin-right: 8px
}

.nav-logo img {
  height: 34px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(28, 25, 23, 0.05)
}

.nav-cta {
  margin-left: 4px
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition)
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(28, 25, 23, 0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease
}

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

.mobile-menu-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  padding: 32px 24px 48px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateY(0)
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px
}

.mobile-menu-links a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-md);
  transition: var(--transition)
}

.mobile-menu-links a:hover {
  background: var(--cream-dark)
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream)
}

.hero-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  overflow: hidden
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.9;
  transform: scale(1.05);
  transition: transform 1.2s cubic-bezier(.2,0,.2,1), opacity 1.2s ease;
}
.hero.visible .hero-bg-img {
  transform: scale(1);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: -1px;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(250, 247, 242, 0.7) 60%, transparent 100%);
  z-index: 1
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 5% 80px 8%;
  min-height: 100vh;
  max-width: 100%;
  margin: 0
}

.hero-content {
  max-width: 500px;
  position: relative;
  z-index: 2
}

.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold)
}

.hero-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-heading span {
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.hero-credibility {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px
}

.hero-process-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.cred-divider {
  color: var(--text-muted);
  padding: 0 4px;
}

.hero-credibility span {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: var(--underline-width) 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: --underline-width 0.3s ease;
  cursor: pointer;
}

.hero-credibility span:hover {
  --underline-width: 100%;
}

.hero-credibility::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage)
}

/* ===== ABOUT ===== */
.about {
  background: var(--ivory)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-image {
  position: relative
}

.about-image-placeholder {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border: 1px solid var(--border);
  overflow: hidden
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-content .section-sub {
  margin-bottom: 28px
}

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px
}

.about-pill {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px
}

.service-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow:
    0px 0px 0px 1px rgba(28, 25, 23, 0.06),
    0px 1px 2px -1px rgba(28, 25, 23, 0.06),
    0px 2px 4px 0px rgba(28, 25, 23, 0.04);
  --stagger-delay: 0;
  transition-delay: calc(var(--stagger-delay) * 80ms);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0px 0px 0px 1px rgba(28, 25, 23, 0.10),
    0px 4px 12px -2px rgba(28, 25, 23, 0.10),
    0px 8px 24px 0px rgba(28, 25, 23, 0.06);
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage))
}

.service-duration {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px
}

.service-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 12px
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  filter: blur(4px);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
  transition-delay: calc(var(--card-reveal-delay, 0s) + (var(--item-index) * 0.1s));
}

.service-card.visible .service-list li {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.service-list li::before {
  content: '·';
  color: var(--gold);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: -2px;
}

.service-card .btn {
  width: 100%;
  padding: 12px 24px;
  font-size: 0.85rem;
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ivory);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: inline-flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marqueeScroll 60s linear infinite running;
  will-change: transform;
  transform: translateZ(0);
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-muted);
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0) translateZ(0);
  }
  100% {
    transform: translateX(-50%) translateZ(0);
  }
}

.marquee-track:focus-within {
  animation-play-state: paused;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--ivory)
}

.reviews-track-wrapper {
  overflow: hidden;
  margin-top: 48px;
  position: relative
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none
}

.reviews-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--ivory), transparent)
}

.reviews-track-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--ivory), transparent)
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: reviewScroll 30s linear infinite;
  width: max-content;
  will-change: transform;
}

.reviews-track:hover {
  animation-play-state: paused
}

.review-card {
  flex-shrink: 0;
  width: 320px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border);
  transition: var(--transition)
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px)
}

.review-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 18px;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--gold)
}

.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em
}

.review-context {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px
}

@keyframes reviewScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition)
}

.faq-item.open {
  border-color: var(--border-strong)
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  transition: var(--transition);
  background: transparent
}

.faq-question:hover {
  background: rgba(28, 25, 23, 0.02)
}

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--gold)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}

.faq-item.open .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 92, 0.1), transparent 70%)
}

.final-cta .section-label {
  color: var(--gold)
}

.final-cta .section-heading {
  color: var(--cream)
}

.final-cta .section-sub {
  color: rgba(250, 247, 242, 0.65);
  margin: 0 auto 40px
}

.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.final-cta .btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

.final-cta .btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark)
}

.final-cta .btn-secondary {
  color: var(--cream);
  border-color: rgba(250, 247, 242, 0.2)
}

.final-cta .btn-secondary:hover {
  border-color: var(--cream)
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.6);
  border-top: 1px solid rgba(250, 247, 242, 0.06)
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 64px;
  padding: 48px 0 32px;
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 16px;
  display: inline-block
}

.footer-brand .nav-logo img {
  height: 100px;
  width: auto;
}

.footer-mission {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.5);
  max-width: 280px;
  margin-bottom: 24px
}

.footer-social-container {
  display: flex;
  margin-top: 16px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.5);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer-social-link:hover {
  color: var(--gold);
  border-color: rgba(212, 163, 115, 0.3);
}

.footer-social-link svg {
  color: rgba(250, 247, 242, 0.5);
  transition: var(--transition);
}

.footer-social-link:hover svg {
  color: var(--gold);
}

.footer-col h3 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 20px
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.5);
  padding: 6px 0;
  transition: var(--transition)
}

.footer-col a:hover {
  color: var(--gold)
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.06);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.35)
}

/* ===== BOOKING PAGE ===== */
.booking-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--ivory)
}

.booking-hero .section-sub {
  margin: 0 auto
}

.booking-form-section {
  padding: 60px 0 100px;
  background: var(--cream)
}

.booking-form-wrapper {
  max-width: 680px;
  margin: 0 auto
}

.form-group-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 8px;
  margin-top: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border)
}

.form-group-title:first-child {
  margin-top: 0
}

.form-group {
  margin-bottom: 20px
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.01em
}

.form-label .req {
  color: var(--blush);
  margin-left: 2px
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-strong);
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.92rem;
  transition: var(--transition)
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 92, 0.1)
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted)
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A8A29E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px
}

.form-radio-group,
.form-check-group {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.form-radio,
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5
}

.form-radio input[type="radio"],
.form-check input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
  cursor: pointer;
  position: relative
}

.form-check input[type="checkbox"] {
  border-radius: 6px
}

.form-radio input[type="radio"]:checked {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--ivory)
}

.form-check input[type="checkbox"]:checked {
  border-color: var(--gold);
  background: var(--gold)
}

.form-check input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700
}

.form-submit-area {
  margin-top: 40px;
  text-align: center
}

.form-submit-btn {
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 600
}

.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 6px;
  display: none
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #c0392b
}

.form-group.error .form-error {
  display: block
}

/* ===== CONFIRMATION ===== */
.confirmation {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px
}

.confirmation-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.8rem;
  color: #fff
}

.confirmation .section-heading {
  margin-bottom: 12px
}

.confirmation .section-sub {
  margin: 0 auto 36px
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity 0.6s cubic-bezier(.4, 0, .2, 1),
    transform 0.6s cubic-bezier(.4, 0, .2, 1),
    filter 0.6s cubic-bezier(.4, 0, .2, 1);
  transition-delay: calc(var(--stagger, 0) * 0.12s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-gradient-overlay {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.95) 0%, rgba(250, 247, 242, 0.85) 50%, rgba(250, 247, 242, 0.6) 100%)
  }

  .hero-inner {
    text-align: center;
    padding: 120px 0 80px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto
  }

  .hero-ctas {
    justify-content: center
  }

  .hero-credibility {
    justify-content: center
  }

  .hero-label {
    justify-content: center
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-image {
    order: -1;
    max-width: 340px;
    margin: 0 auto
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .section-pad {
    padding: 72px 0
  }
}

@media(max-width:768px) {
  /* Phase 1: Hero Section */
  .hero-image-bg {
    width: 100%;
    opacity: 1;
    position: absolute;
    inset: 0;
  }
  
  .hero-gradient-overlay {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.7) 0%, rgba(250,247,242,0.85) 60%, var(--cream) 100%);
    width: 100%;
  }
  
  .hero-inner {
    padding: 110px 0 72px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0;
  }
  
  .hero-process-note {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  /* Phase 2: Navbar & Logo */
  .fixed-logo-left img,
  .footer-brand .nav-logo img {
    height: 64px;
  }
  
  .fixed-logo-left {
    top: 12px;
    left: 16px;
  }
  
  .navbar {
    width: auto;
    right: 16px;
    left: auto;
    transform: none;
  }
  
  .nav-pill {
    padding: 8px 12px;
  }
  
  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mobile-menu {
    display: block;
  }

  /* Phase 3: Section Spacing & Typography */
  .section-pad {
    padding: 56px 0
  }
  
  .section-heading {
    font-size: clamp(1.7rem, 6vw, 2.4rem)
  }
  
  .section-sub {
    font-size: 0.96rem;
    max-width: 100%;
  }
  
  .hero-heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.1;
  }
  
  .hero-sub {
    font-size: 0.93rem;
    max-width: 100%;
  }

  /* Phase 5: Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0 20px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-social-container {
    justify-content: center;
  }
  
  .footer-mission {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-col {
    text-align: center;
    padding-bottom: 8px;
  }
  
  .footer-col a {
    padding: 10px 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  /* Phase 6: Booking Page Hero */
  .booking-hero {
    padding: 100px 0 44px;
  }
  
  .booking-hero .section-sub {
    font-size: 0.95rem;
  }

  /* Phase 7: Touch Targets & Micro-improvements */
  .mobile-menu-links a {
    padding: 16px 20px;
    font-size: 1.05rem;
  }
  
  .btn {
    min-height: 48px;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 0.93rem;
  }
  
  .service-card {
    padding: 28px 20px;
  }
  }

@media(max-width:480px) {
  .container {
    padding: 0 16px
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center
  }
  
  .final-cta-btns {
    flex-direction: column;
    align-items: center
  }

  /* Phase 3: Section Spacing */
  .section-pad {
    padding: 44px 0;
  }
  
  /* Phase 4: Hero Credibility Bar */
  .hero-credibility {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    align-items: center;
  }
  
  .cred-divider {
    display: none;
  }
}

/* ===== BOOKING TRANSITIONS ===== */
.booking-section-transition {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.booking-section-transition.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

#confirmationState {
  display: none;
  /* Keep none by default, JS will toggle flex + visible class */
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.45s cubic-bezier(.4, 0, .2, 1), transform 0.45s cubic-bezier(.4, 0, .2, 1);
}

#confirmationState.visible {
  display: flex;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Pause auto-scrolling tracks for vestibular safety */
  .marquee-track,
  .reviews-track {
    animation-play-state: paused !important;
  }
}