/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --green-deep:   #1E3A2F;
  --green-mid:    #2C5240;
  --green-soft:   #4A7A5E;
  --gold:         #C9A96E;
  --gold-light:   #E2C99A;
  --gold-pale:    #F5EDD8;
  --cream:        #FAF8F3;
  --cream-warm:   #F2EDE4;
  --white:        #FFFFFF;
  --text-dark:    #1E2820;
  --text-mid:     #3D4840;
  --text-soft:    #7A8278;

  --container:    1120px;
  --section-py:   96px;
  --section-px:   24px;
  --radius-card:  4px;
  --radius-pill:  50px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Jost', system-ui, sans-serif;

  --transition:   0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section {
  padding: var(--section-py) var(--section-px);
}

/* Section label (small uppercase caps) */
.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

/* Script accent */
.script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1.2;
  display: block;
  margin-bottom: 4px;
}

/* Section H2 */
.section-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn-dark {
  background: var(--green-deep);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--green-mid);
  box-shadow: 0 8px 24px rgba(30, 58, 47, 0.3);
}

/* Fade-in animation utility */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   1. NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

#nav.scrolled {
  box-shadow: 0 2px 24px rgba(30, 58, 47, 0.10);
  border-bottom-color: rgba(201, 169, 110, 0.15);
  background: rgba(250, 248, 243, 0.97);
}

.nav-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo .logo-primary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--green-deep);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.nav-logo .logo-script {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1.1;
  margin-top: -1px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--green-deep);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px var(--section-px) 32px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(30, 58, 47, 0.12);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-mid);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: color var(--transition);
}

.mobile-nav a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-nav a:hover {
  color: var(--green-deep);
}

.mobile-nav .btn {
  margin-top: 20px;
  width: 100%;
}

/* ============================================================
   2. HERO
   ============================================================ */
#hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  padding-top: 76px; /* nav offset */
}

/* Deep green gradient base */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(201, 169, 110, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 55%),
    linear-gradient(145deg, #0e2218 0%, #1E3A2F 40%, #2C5240 100%);
  z-index: 0;
}

/* Decorative concentric rings (right side) */
.hero-rings {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  z-index: 1;
  pointer-events: none;
}

.hero-rings::before,
.hero-rings::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.12);
}

.hero-rings::before {
  inset: 0;
}

.hero-rings::after {
  inset: 60px;
  border-color: rgba(201, 169, 110, 0.08);
}

.ring-inner-1 {
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.06);
}

.ring-inner-2 {
  position: absolute;
  inset: 180px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.05);
}

.ring-inner-3 {
  position: absolute;
  inset: 240px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.04);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 80px var(--section-px);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.hero-headline .line-italic {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.8), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* Hero text animate-in (JS adds class .animated) */
.hero-eyebrow.animated,
.hero-headline .line.animated,
.hero-sub.animated,
.hero-ctas.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* ============================================================
   3. TRUST STRIP
   ============================================================ */
#trust {
  background: var(--white);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 28px var(--section-px);
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  color: var(--text-mid);
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201, 169, 110, 0.35);
}

.trust-item .trust-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   4. ABOUT
   ============================================================ */
#about {
  background: var(--cream);
}

.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

/* Portrait placeholder */
.about-portrait-wrap {
  position: relative;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portrait-placeholder-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
}

/* Gold badge */
.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
  text-align: center;
}

.about-badge .badge-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.about-badge .badge-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  opacity: 0.9;
}

/* About right content */
.about-body p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-signature {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--green-deep);
  display: block;
  margin: 20px 0 28px;
  line-height: 1;
}

/* ============================================================
   5. SERVICES
   ============================================================ */
#services {
  background: var(--cream-warm);
}

.services-header {
  max-width: var(--container);
  margin: 0 auto 56px;
  text-align: center;
}

.services-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-content: center;
}

/* Service card */
.service-card-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30, 58, 47, 0.10);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50px;
  padding: 5px 14px;
}

/* ============================================================
   6. BOOKING CTA BAND
   ============================================================ */
#booking-band {
  background: var(--green-deep);
  padding: 80px var(--section-px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#booking-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.booking-band-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

#booking-band .label {
  color: var(--gold-light);
  opacity: 0.8;
}

#booking-band h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

#booking-band p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}

.booking-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

/* ============================================================
   7. HOW IT WORKS
   ============================================================ */
#how {
  background: var(--cream);
}

.how-header {
  max-width: var(--container);
  margin: 0 auto 64px;
  text-align: center;
}

.steps-wrap {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

/* Connecting line between steps */
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.4) 15%, rgba(201, 169, 110, 0.4) 85%, transparent);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(201, 169, 110, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ============================================================
   8. TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--cream-warm);
}

.testimonials-header {
  max-width: var(--container);
  margin: 0 auto 56px;
  text-align: center;
}

.testimonials-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 36px 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 58, 47, 0.08);
}

/* Decorative large quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-pale);
  font-weight: 300;
  pointer-events: none;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
  display: block;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  text-transform: uppercase;
}

/* ============================================================
   9. CONTACT
   ============================================================ */
#contact {
  background: var(--cream);
}

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

/* Contact info left */
.contact-info h2.section-h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail .detail-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-detail .detail-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-detail .detail-text strong {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 2px;
}

/* Form right */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 44px 44px;
  box-shadow: 0 4px 32px rgba(30, 58, 47, 0.06);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.contact-form-wrap .form-sub {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-card);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 130, 120, 0.55);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* Success message */
#form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

#form-success.visible {
  display: block;
}

.success-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

#form-success h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

#form-success p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ============================================================
   10. FOOTER
   ============================================================ */
#footer {
  background: var(--green-deep);
  padding: var(--section-py) var(--section-px) 0;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer brand col */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-primary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo .logo-script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.1;
}

.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.social-link:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Footer nav cols */
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

/* Footer bottom bar */
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
}

.footer-bottom-social {
  display: flex;
  gap: 14px;
}

.footer-bottom-social a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer-bottom-social a:hover {
  color: var(--gold-light);
}

/* ============================================================
   MOBILE FIXED BOOK BUTTON
   ============================================================ */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 20px 20px;
  background: linear-gradient(to top, rgba(250, 248, 243, 0.98) 60%, transparent);
}

.mobile-book-bar .btn {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --section-px: 20px;
  }

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-rings {
    width: 300px;
    height: 300px;
    right: -60px;
    opacity: 0.5;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Trust strip */
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .trust-item {
    font-size: 0.7rem;
    padding: 10px 8px;
    gap: 6px;
    white-space: nowrap;
    justify-content: center;
  }

  .trust-item .trust-icon {
    font-size: 0.85rem;
  }

  .trust-item:nth-child(3)::before,
  .trust-item:nth-child(2)::before {
    display: none;
  }

  .trust-item:nth-child(3) {
    border-top: 1px solid rgba(201, 169, 110, 0.2);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(201, 169, 110, 0.2);
  }

  .trust-item:nth-child(4)::before {
    display: block;
    top: 20%;
    height: 60%;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-portrait {
    aspect-ratio: 3 / 2;
  }

  .about-badge {
    bottom: -16px;
    left: 16px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-wrap::before {
    display: none;
  }

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

  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    text-align: left;
    padding: 0;
    align-items: start;
  }

  .step-number {
    margin: 0;
  }

  .step-content {
    padding-top: 12px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Mobile book bar */
  .mobile-book-bar {
    display: block;
  }

  /* Add bottom padding to last section so the sticky button doesn't overlap */
  #footer {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 60px var(--section-px);
  }

  .about-badge {
    left: 12px;
    bottom: -12px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

/* ── FAQ ── */
#faq {
  background: var(--cream-warm);
  padding: var(--section-py) var(--section-px);
}
.faq-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.faq-header {
  max-width: 640px;
  margin-bottom: 52px;
}
.faq-intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-soft);
  margin-top: 8px;
}
.faq-list {
  border-top: 1px solid rgba(201,169,110,.2);
}
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,.2);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.35;
  flex: 1;
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform .3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.75;
}
