/*
  CLIENT: Southern Heirloom Event Company
  ─────────────────────────────────────────
  Nav:            B — Logo left, all links right, transparent → cream on scroll
  Hero:           A — Full-screen image with gradient overlay, centered headline + CTA
  Typography:     10 — Cormorant Garamond + Plus Jakarta Sans (Pinyon Script for accent eyebrows)
  Color Strategy: 3 — Cream-forward, rose gold and sage as accent pops
  Section Rhythm: B — Hero → Mission → 2-col About → Services Grid → Testimonial placeholder → CTA
  Design Seed:    heirloom, magnolia, Southern elegance
  ─────────────────────────────────────────
*/

/* ── Google Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Pinyon+Script&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ── Custom Properties ─────────────────────────────────────────────── */
:root {
  /* Sage — from logo background */
  --sage:        #8FA89C;
  --sage-dark:   #5A7068;
  --sage-light:  #C8D8D2;
  --sage-tint:   #EFF4F1;

  /* Rose Gold — from logo script text */
  --rose:        #B5735A;
  --rose-dark:   #8C5540;
  --rose-light:  #D4A090;
  --rose-tint:   #F7EFEC;

  /* Cream / Neutral */
  --cream:       #FAF8F4;
  --cream-dark:  #EDE9E2;
  --cream-mid:   #DDD6CC;

  /* Text */
  --text-dark:   #2C2C2A;
  --text-mid:    #5C5B58;
  --text-light:  #9C9B97;

  /* Fonts */
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-script: 'Pinyon Script', cursive;
  --font-body:   'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --max-w:       1200px;
  --section-py:  5rem;
  --radius:      4px;
  --radius-lg:   12px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(44, 44, 42, 0.07);
  --shadow-md:   0 6px 24px rgba(44, 44, 42, 0.11);
  --shadow-lg:   0 16px 48px rgba(44, 44, 42, 0.16);

  /* Transition */
  --transition:  0.3s ease;
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--cream);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h4 { font-size: 1.3rem; }
p { color: var(--text-mid); max-width: 65ch; }

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--rose);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

/* ── Utility ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-pad { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

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

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--rose);
  color: #ffffff;
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: #ffffff;
}
.btn-sage {
  background: var(--sage);
  color: #ffffff;
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}
.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* ── Fade-in on Scroll ───────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Section Divider ─────────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 56px;
  background: var(--rose-light);
}
.divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose-light);
}

/* ── Navigation ─────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: var(--cream);
  padding: 0.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-light);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a:hover { color: #ffffff; }
.nav-links a[aria-current="page"] { color: var(--rose-light); }
.site-nav.scrolled .nav-links a { color: var(--text-dark); }
.site-nav.scrolled .nav-links a:hover { color: var(--rose); }
.site-nav.scrolled .nav-links a[aria-current="page"] { color: var(--rose); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: var(--transition);
}
.site-nav.scrolled .nav-hamburger span { background: var(--text-dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-hamburger.open { opacity: 0; pointer-events: none; }

/* Mobile Drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  padding-top: max(1.5rem, env(safe-area-inset-top, 0px) + 0.5rem);
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer a {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: color var(--transition);
}
.nav-mobile-drawer a:hover,
.nav-mobile-drawer a[aria-current="page"] { color: var(--rose); }
.nav-mobile-close {
  position: absolute;
  top: max(2rem, env(safe-area-inset-top, 0px) + 1.25rem);
  right: max(2rem, env(safe-area-inset-right, 0px) + 1.25rem);
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2.25rem;
  font-weight: 300;
  cursor: pointer;
  color: var(--text-dark);
  line-height: 1;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile-close:hover {
  color: var(--rose);
  background: var(--cream-dark);
}

/* ── Hero (Homepage) ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--sage-dark);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(40, 38, 34, 0.38) 0%,
    rgba(40, 38, 34, 0.52) 50%,
    rgba(40, 38, 34, 0.68) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-script {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--rose-light);
  display: block;
  margin-bottom: 0.75rem;
}
.hero-content h1 {
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (Inner Pages) ─────────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--sage-tint);
  text-align: center;
  border-bottom: 1px solid var(--sage-light);
}
.page-hero .eyebrow { color: var(--rose); }
.page-hero h1 { color: var(--text-dark); font-size: clamp(2.2rem, 5vw, 3.8rem); }

/* ── Mission Block ───────────────────────────────────────────────────── */
.mission {
  background: var(--cream);
  padding: 6rem 0;
  text-align: center;
}
.mission-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mission h2 {
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.mission p { margin: 0 auto; }

/* ── About Snapshot ──────────────────────────────────────────────────── */
.about-snap { background: var(--cream-dark); padding: var(--section-py) 0; }
.about-snap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-snap-image {
  position: relative;
  padding: 18px 0 0 18px;
}
.about-snap-image::before {
  content: '';
  position: absolute;
  inset: 0 18px 18px 0;
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-snap-image img {
  position: relative;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-snap-text .eyebrow { color: var(--rose); }
.about-snap-text h2 { margin-bottom: 1rem; }
.about-snap-text p { margin-bottom: 1.5rem; }

/* ── Services Preview (Homepage) ─────────────────────────────────────── */
.services-preview {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.services-preview-head {
  text-align: center;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--sage-light);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.93rem; margin-bottom: 1.25rem; }
.link-more {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  transition: color var(--transition);
}
.link-more:hover { color: var(--rose-dark); }

/* ── Testimonial ─────────────────────────────────────────────────────── */
.testimonial-section {
  background: var(--sage-tint);
  padding: var(--section-py) 0;
  text-align: center;
}
.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--rose-light);
  line-height: 0.7;
  margin-bottom: 1.5rem;
  display: block;
}
.testimonial-text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial-attr {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ── CTA Band ────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--rose);
  padding: 5.5rem 0;
  text-align: center;
}
.cta-band h2 { color: #ffffff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255, 255, 255, 0.82); margin: 0 auto 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── About Page — Story ──────────────────────────────────────────────── */
.about-story { background: var(--cream); padding: var(--section-py) 0; }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-story-text .eyebrow { color: var(--rose); }
.about-story-text h2 { margin-bottom: 1.25rem; }
.about-story-text p { margin-bottom: 1.25rem; }
.about-story-image {
  position: relative;
  padding: 18px 0 0 18px;
}
.about-story-image::before {
  content: '';
  position: absolute;
  inset: 0 18px 18px 0;
  border: 1.5px solid var(--rose-light);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-story-image img {
  position: relative;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── About Page — Values ─────────────────────────────────────────────── */
.values-section { background: var(--cream-dark); padding: var(--section-py) 0; }
.values-head { text-align: center; margin-bottom: 3rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.value-card {
  background: var(--cream);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.93rem; margin: 0 auto; text-align: center; }

/* ── About Page — Team ───────────────────────────────────────────────── */
.team-section { background: var(--cream); padding: var(--section-py) 0; }
.team-head { text-align: center; margin-bottom: 3rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.team-card { text-align: center; }
.team-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--sage-light);
}
.team-card h3 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.team-title {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--rose);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.team-card p { font-size: 0.93rem; margin: 0 auto; }

/* ── Services Page ───────────────────────────────────────────────────── */
.services-intro { background: var(--cream); padding: var(--section-py) 0; text-align: center; }
.services-intro p { margin: 1rem auto 0; }

.packages-section { background: var(--cream-dark); padding: var(--section-py) 0; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.package-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.package-card.featured { border: 2px solid var(--rose); }
.package-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--rose);
  padding: 0.25rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}
.package-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.package-header h3 { margin-bottom: 0.5rem; }
.package-header p { font-size: 0.93rem; }
.package-body { padding: 1.75rem 2rem; flex: 1; }
.package-includes {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: block;
}
.package-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.package-body li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.package-body li::before {
  content: '✦';
  color: var(--rose-light);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 0.3rem;
}
.package-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--cream-dark);
}

/* ── Process Steps ───────────────────────────────────────────────────── */
.process-section { background: var(--cream); padding: var(--section-py) 0; }
.process-head { text-align: center; margin-bottom: 3.5rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  counter-reset: steps;
}
.process-step { text-align: center; counter-increment: steps; }
.step-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; margin: 0 auto; text-align: center; }

/* ── Portfolio Page ──────────────────────────────────────────────────── */
.gallery-filters {
  background: var(--cream);
  padding: 2.5rem 0;
  text-align: center;
}
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--cream-mid);
  border-radius: 2rem;
  cursor: pointer;
  color: var(--text-mid);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--rose); color: var(--rose); }
.filter-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: #ffffff;
}

.gallery-section { background: var(--cream-dark); padding: 2rem 0 var(--section-py); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 3/4;
}
.gallery-item.wide { aspect-ratio: 4/3; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item[data-hidden="true"] { display: none; }

/* ── Contact Page ────────────────────────────────────────────────────── */
.contact-section { background: var(--cream); padding: var(--section-py) 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .eyebrow { color: var(--rose); }
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--rose);
}
.contact-item-text { font-size: 0.95rem; }
.contact-item-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.contact-item-text a { color: var(--text-mid); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--rose); }

.contact-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--sage);
  color: #ffffff;
  border-color: var(--sage);
}

.contact-form-wrap {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-size: 1.7rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--sage-tint);
  border-radius: var(--radius);
  color: var(--sage-dark);
  font-size: 0.9rem;
  margin-top: 1rem;
  border-left: 3px solid var(--sage);
}
.form-success.show { display: block; }

/* Contact info centered (no form) */
.contact-info.solo {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.contact-info.solo > p { margin-left: auto; margin-right: auto; }
.contact-info.solo .contact-details { align-items: center; }
.contact-info.solo .contact-social { justify-content: center; }

.map-section { background: var(--cream-dark); padding: var(--section-py) 0; }
.map-section h2 { text-align: center; margin-bottom: 2rem; }
.map-embed {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-brand p {
  font-size: 0.88rem;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--rose-light);
  color: var(--rose-light);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--rose-light); }
.footer-col li { font-size: 0.88rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.32);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.32); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--rose-light); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-snap-inner,
  .about-story-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-snap-image::before,
  .about-story-image::before { display: none; }
  .about-snap-image,
  .about-story-image { padding: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 720px) {
  :root { --section-py: 3.5rem; }
  .site-nav {
    padding-top: max(1.5rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    min-height: auto;
  }
  .site-nav.scrolled {
    padding-top: max(1.5rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }
  .nav-links { display: none; }
  .nav-hamburger {
    display: flex;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-logo img { height: 52px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall,
  .gallery-item.wide { aspect-ratio: 3/4; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
}
