/* =============================================================
   SOUL SACRED PHOTOGRAPHY — styles.css
   Design System + All Section Styles
   ============================================================= */

/* ---------------------------------------------------------------
   1. CUSTOM PROPERTIES (Design Tokens)
--------------------------------------------------------------- */
:root {
  /* Colors */
  --color-cream:          #FAF7F2;
  --color-cream-warm:     #F5EFE6;
  --color-sage-light:     #E8EDE6;
  --color-sage:           #8A9E88;
  --color-sage-dark:      #6B7F69;
  --color-dusty-rose:     #C9A49A;
  --color-terracotta:     #B5705A;
  --color-terracotta-dk:  #8E5444;
  --color-charcoal:       #2C2C2C;
  --color-charcoal-lt:    #4A4744;
  --color-warm-gray:      #7A7670;
  --color-white:          #FFFFFF;
  --color-hero-overlay:   rgba(25, 18, 12, 0.50);
  --color-venmo:          #008CFF;

  /* Typography */
  --font-serif:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:     'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-script:   'Great Vibes', cursive;

  /* Type Scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   2rem;
  --text-3xl:   2.75rem;
  --text-4xl:   3.5rem;
  --text-5xl:   4.5rem;
  --text-hero:  clamp(2.5rem, 5vw, 4.5rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container-max:  1200px;
  --navbar-height:  80px;

  /* Border Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(44, 44, 44, 0.06);
  --shadow-sm:  0 2px 8px rgba(44, 44, 44, 0.08);
  --shadow-md:  0 4px 20px rgba(44, 44, 44, 0.12);
  --shadow-lg:  0 8px 40px rgba(44, 44, 44, 0.16);
  --shadow-xl:  0 16px 60px rgba(44, 44, 44, 0.20);

  /* Transitions */
  --ease-fast:    150ms ease;
  --ease-normal:  300ms ease;
  --ease-slow:    600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ---------------------------------------------------------------
   2. RESET + BASE
--------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

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

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: color var(--ease-fast);
}

a:hover {
  color: var(--color-terracotta-dk);
}

ul { list-style: none; }

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

input, textarea, select {
  font-family: var(--font-sans);
  font-size: var(--text-base);
}

:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 3px;
}


/* ---------------------------------------------------------------
   3. TYPOGRAPHY UTILITIES
--------------------------------------------------------------- */
.script-font {
  font-family: var(--font-script);
  font-weight: 400;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--sp-3);
}

.section-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  margin-bottom: var(--sp-5);
}

.section-subtext {
  font-size: var(--text-md);
  color: var(--color-warm-gray);
  max-width: 560px;
  margin: 0 auto var(--sp-10);
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .section-subtext {
  margin-left: auto;
  margin-right: auto;
}


/* ---------------------------------------------------------------
   4. LAYOUT UTILITIES
--------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section-padding {
  padding: var(--sp-24) 0;
}

.bg-sage-light  { background-color: var(--color-sage-light); }
.bg-cream-warm  { background-color: var(--color-cream-warm); }
.text-center    { text-align: center; }


/* ---------------------------------------------------------------
   5. BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: background var(--ease-normal), color var(--ease-normal),
              border-color var(--ease-normal), transform var(--ease-normal),
              box-shadow var(--ease-normal);
  white-space: nowrap;
}

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

/* Primary — terracotta fill */
.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
}
.btn-primary:hover {
  background: var(--color-terracotta-dk);
  border-color: var(--color-terracotta-dk);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

/* Ghost — transparent with white border (for dark backgrounds) */
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Outline — transparent with dark border */
.btn-outline {
  background: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}
.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

/* Ghost dark — transparent with dark border (modals) */
.btn-ghost-dark {
  background: transparent;
  color: var(--color-warm-gray);
  border-color: var(--color-warm-gray);
}
.btn-ghost-dark:hover {
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

/* Venmo */
.btn-venmo {
  background: var(--color-venmo);
  color: var(--color-white);
  border-color: var(--color-venmo);
  font-size: var(--text-base);
  padding: var(--sp-4) var(--sp-8);
}
.btn-venmo:hover {
  background: #0070d9;
  border-color: #0070d9;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

/* Nav CTA */
.btn-nav-cta {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-xs);
}
.btn-nav-cta:hover {
  background: var(--color-terracotta-dk);
  border-color: var(--color-terracotta-dk);
  transform: translateY(-1px);
}

/* Full width button */
.btn-full {
  width: 100%;
}


/* ---------------------------------------------------------------
   6. SCROLL ANIMATIONS
--------------------------------------------------------------- */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in       { transform: translateY(28px); }
.fade-in-left  { transform: translateX(-36px); }
.fade-in-right { transform: translateX(36px); }

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Hero staggered fade-in delays */
.fade-delay-1 { transition-delay: 0.15s; }
.fade-delay-2 { transition-delay: 0.30s; }
.fade-delay-3 { transition-delay: 0.45s; }

/* Hero elements visible immediately via JS class */
.hero-visible .hero-content .fade-in {
  opacity: 1;
  transform: translate(0);
}


/* ---------------------------------------------------------------
   7. SECTION WAVE DIVIDERS
--------------------------------------------------------------- */
.section-wave {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}

.section-wave svg {
  display: block;
  width: 100%;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
}


/* ---------------------------------------------------------------
   8. NAVBAR
--------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-8);
  z-index: 1000;
  transition: background var(--ease-normal), box-shadow var(--ease-normal);
  background: transparent;
}

.navbar.scrolled {
  background: var(--color-cream);
  box-shadow: var(--shadow-sm);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--color-white);
  transition: color var(--ease-normal);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: -4px;
  transition: color var(--ease-normal);
}

.navbar.scrolled .logo-script { color: var(--color-charcoal); }
.navbar.scrolled .logo-sub    { color: var(--color-warm-gray); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--ease-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-terracotta);
  transition: width var(--ease-normal);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--color-white); }

.navbar.scrolled .nav-links a { color: var(--color-charcoal-lt); }
.navbar.scrolled .nav-links a:hover { color: var(--color-charcoal); }

/* Hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  z-index: 1001;
}

.hamburger-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--ease-normal), opacity var(--ease-normal), background var(--ease-normal);
  border-radius: 2px;
}

.navbar.scrolled .hamburger-bar { background: var(--color-charcoal); }

/* Hamburger open state */
.nav-hamburger.open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-hamburger.open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ---------------------------------------------------------------
   9. HERO
--------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1a1210; /* fallback if no image */
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: contrast(1.08) saturate(1.1) brightness(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(20, 15, 10, 0.30) 0%,
    rgba(20, 15, 10, 0.12) 50%,
    rgba(20, 15, 10, 0.28) 100%
  );
}

/* Fallback when no image is present */
.hero-no-image {
  background: linear-gradient(160deg, #2C1F15 0%, #4A3020 50%, #1a1210 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-10);
  max-width: 850px;
}

.hero-eyebrow {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-3);
  display: block;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: var(--text-hero);
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 11rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-subtext {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--sp-6);
}

.hero-buttons {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}


/* ---------------------------------------------------------------
   10. ABOUT
--------------------------------------------------------------- */
.about {
  background-color: var(--color-cream);
  padding-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  /* Placeholder style if no image */
  background-color: var(--color-sage-light);
  min-height: 400px;
}

/* Botanical accent border offset */
.about-accent-border {
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1.5px solid var(--color-sage);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about-text .section-eyebrow { margin-bottom: var(--sp-2); }

.about-body {
  font-size: var(--text-md);
  color: var(--color-charcoal-lt);
  margin-bottom: var(--sp-5);
  line-height: 1.8;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: var(--color-terracotta);
  border-left: 2px solid var(--color-sage);
  padding-left: var(--sp-5);
  margin-bottom: var(--sp-8);
  line-height: 1.5;
}


/* ---------------------------------------------------------------
   11. GALLERY
--------------------------------------------------------------- */
.portfolio {
  padding-top: var(--sp-16);
}

.gallery-filters {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-10);
}

.filter-btn {
  padding: var(--sp-2) var(--sp-5);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-sage);
  background: transparent;
  color: var(--color-warm-gray);
  transition: all var(--ease-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* CSS Columns masonry layout */
.gallery-grid {
  columns: 3;
  column-gap: var(--sp-4);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
  background-color: var(--color-sage-light);
  transition: transform var(--ease-normal), box-shadow var(--ease-normal);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: opacity var(--ease-normal);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 18, 12, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease-normal);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay {
  opacity: 1;
}

.gallery-expand {
  font-size: 2.5rem;
  color: var(--color-white);
  font-weight: 300;
  line-height: 1;
}

/* Placeholder state (when no image found) */
.gallery-placeholder {
  background: var(--color-sage-light);
  min-height: 200px;
}

.gallery-placeholder::before {
  content: '📷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.4;
}

/* Instagram follow */
.instagram-follow {
  text-align: center;
  margin-top: var(--sp-12);
}

.instagram-label {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}


/* ---------------------------------------------------------------
   12. SERVICES
--------------------------------------------------------------- */
.services {
  background-color: var(--color-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  border: 1.5px solid rgba(138, 158, 136, 0.25);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--ease-normal), transform var(--ease-normal);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Featured card */
.service-card--featured {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 1px var(--color-terracotta), var(--shadow-sm);
}

.service-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.service-icon {
  margin-bottom: var(--sp-4);
  height: 50px;
  display: flex;
  align-items: center;
}

.service-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: var(--sp-1);
}

.service-price {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  margin-bottom: var(--sp-5);
}

.service-price span {
  font-size: var(--text-2xl);
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--color-terracotta);
}

.service-includes {
  flex: 1;
  margin-bottom: var(--sp-6);
}

.service-includes li {
  font-size: var(--text-sm);
  color: var(--color-charcoal-lt);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--color-sage-light);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}

.service-includes li::before {
  content: '✦';
  color: var(--color-sage);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.services-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  max-width: 600px;
  margin: 0 auto;
}

.services-note a {
  color: var(--color-terracotta);
}


/* ---------------------------------------------------------------
   13. TESTIMONIALS
--------------------------------------------------------------- */
.testimonials {
  background-color: var(--color-cream-warm);
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
}

.testimonial-stars {
  color: var(--color-terracotta);
  font-size: var(--text-md);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-5);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-charcoal);
  margin-bottom: var(--sp-5);
  quotes: "\201C" "\201D";
}

.testimonial-author {
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--color-warm-gray);
  letter-spacing: 0.06em;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-sage);
  background: transparent;
  color: var(--color-warm-gray);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-normal);
}

.testimonial-btn:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
}

.testimonial-dots {
  display: flex;
  gap: var(--sp-2);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--color-sage);
  background: transparent;
  padding: 0;
  transition: all var(--ease-normal);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
}


/* ---------------------------------------------------------------
   14. CONTACT
--------------------------------------------------------------- */
.contact {
  background-color: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-body {
  font-size: var(--text-md);
  color: var(--color-charcoal-lt);
  margin-bottom: var(--sp-8);
  line-height: 1.8;
}

.contact-details {
  margin-bottom: var(--sp-6);
}

.contact-details p {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-3);
}

.contact-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: 2px;
}

.contact-details a {
  font-size: var(--text-md);
  color: var(--color-charcoal);
}

.contact-details a:hover {
  color: var(--color-terracotta);
}

.contact-response-time {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  font-style: italic;
}


/* ---------------------------------------------------------------
   15. FORMS (shared styles)
--------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--sp-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  margin-bottom: var(--sp-2);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--color-white);
  border: 1.5px solid rgba(138, 158, 136, 0.35);
  border-radius: var(--radius-md);
  color: var(--color-charcoal);
  font-size: var(--text-base);
  font-family: var(--font-sans);
  font-weight: 300;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(181, 112, 90, 0.15);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

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='%237A7670' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
}

.form-status {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  display: none;
}

.form-status.success {
  display: block;
  background: #EDF7ED;
  color: #2D6A31;
  border: 1px solid #A8D5AA;
}

.form-status.error {
  display: block;
  background: #FDF0ED;
  color: #8E2D1C;
  border: 1px solid #E8B4A8;
}


/* ---------------------------------------------------------------
   16. FOOTER
--------------------------------------------------------------- */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--sp-10);
  margin-bottom: var(--sp-6);
}

.footer-logo {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: var(--sp-1);
  display: block;
}

.footer-name {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-2);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  font-family: var(--font-serif);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--ease-fast);
  letter-spacing: 0.04em;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--ease-normal);
}

.social-link:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  background: rgba(181, 112, 90, 0.1);
}

.footer-copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}


/* ---------------------------------------------------------------
   17. MODALS (shared)
--------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}

.modal[hidden] {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 18, 12, 0.70);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font-size: 1.5rem;
  color: var(--color-warm-gray);
  line-height: 1;
  transition: color var(--ease-fast);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--color-charcoal);
  background: var(--color-sage-light);
}

.modal-header {
  margin-bottom: var(--sp-6);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: var(--sp-2);
}

.modal-subtext {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
}

.booking-deposit-note {
  background: rgba(138, 158, 136, 0.15);
  border-left: 3px solid var(--color-sage);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--color-charcoal-lt);
  margin-bottom: var(--sp-5);
}


/* ---------------------------------------------------------------
   18. VENMO MODAL
--------------------------------------------------------------- */
.modal-content--venmo {
  text-align: center;
  max-width: 440px;
}

.venmo-success-icon {
  font-size: 3.5rem;
  margin-bottom: var(--sp-3);
}

.venmo-message {
  color: var(--color-charcoal-lt);
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

.venmo-deposit-box {
  background: var(--color-cream-warm);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
  border: 1.5px solid rgba(138, 158, 136, 0.30);
}

.venmo-deposit-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: var(--sp-2);
}

.venmo-amount {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--color-terracotta);
  margin-bottom: var(--sp-1);
}

.venmo-session-name {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
}

.venmo-note {
  font-size: var(--text-xs);
  color: var(--color-warm-gray);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

.venmo-done-btn {
  margin-top: var(--sp-2);
}


/* ---------------------------------------------------------------
   19. LIGHTBOX
--------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 10, 6, 0.94);
}

.lightbox[hidden] { display: none; }

.lightbox-overlay {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  user-select: none;
}

.lightbox-close {
  position: fixed;
  top: var(--sp-5);
  right: var(--sp-6);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--ease-fast);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-normal);
  backdrop-filter: blur(4px);
}

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

.lightbox-prev { left: var(--sp-5); }
.lightbox-next { right: var(--sp-5); }


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

  .about-grid {
    gap: var(--sp-10);
  }

  .contact-grid {
    gap: var(--sp-10);
  }

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

  .footer-social {
    justify-content: flex-start;
    grid-column: 1 / -1;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }
}


/* ---------------------------------------------------------------
   21. RESPONSIVE — TABLET PORTRAIT (max 768px)
--------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }

  /* Navbar */
  .navbar {
    padding: 0 var(--sp-5);
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--navbar-height) + var(--sp-6)) var(--sp-8) var(--sp-8);
    gap: var(--sp-6);
    box-shadow: var(--shadow-xl);
    transition: right var(--ease-slow);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--color-charcoal);
    font-size: var(--text-md);
  }

  .navbar.scrolled .nav-links a,
  .nav-links a {
    color: var(--color-charcoal);
  }

  /* Sections */
  .section-padding { padding: var(--sp-16) 0; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .about-img { height: 380px; }

  /* Gallery */
  .gallery-grid { columns: 2; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Testimonials */
  .testimonial-card { padding: var(--sp-6) var(--sp-4); }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  /* Booking form rows */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav { align-items: center; }

  .footer-social { justify-content: center; grid-column: auto; }

  /* Lightbox */
  .lightbox-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-prev { left: var(--sp-2); }
  .lightbox-next { right: var(--sp-2); }
}


/* ---------------------------------------------------------------
   22. RESPONSIVE — MOBILE (max 480px)
--------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-eyebrow { font-size: 2.2rem; }
  .hero-headline { margin-bottom: 6rem; }
  .hero-bg-img { object-position: 15% 40%; }

  .hero-subtext {
    letter-spacing: 0.15em;
    font-size: var(--text-xs);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .gallery-grid { columns: 1; }

  .gallery-filters { gap: var(--sp-1); }

  .filter-btn {
    padding: var(--sp-1) var(--sp-3);
    font-size: 0.65rem;
  }

  .modal-content {
    padding: var(--sp-8) var(--sp-5);
    border-radius: var(--radius-lg);
  }

  .modal-title { font-size: var(--text-xl); }
}


/* ---------------------------------------------------------------
   23. PRINT STYLES
--------------------------------------------------------------- */
@media print {
  .navbar,
  .hero-wave,
  .section-wave,
  .gallery-filters,
  .testimonial-controls,
  .modal,
  .lightbox { display: none !important; }

  body { background: white; color: black; }
  .section-padding { padding: 20px 0; }
}
