@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --color-forest-900: #112819;
  --color-forest-800: #1A3A2A;
  --color-forest-600: #2D6844;
  --color-forest-400: #6B9E7A;
  --color-forest-300: #9ABEA7;
  --color-forest-100: #D8E8DD;

  --color-cream-800: #3D3730;
  --color-cream-600: #766E63;
  --color-cream-500: #968D82;
  --color-cream-400: #B3A99C;
  --color-cream-300: #CEC5B8;
  --color-cream-200: #EDE9DF;
  --color-cream-100: #F4F1EA;
  --color-cream-50: #F9F7F2;

  --color-gold-500: #C5A55A;
  --color-gold-300: #DECA8F;

  --color-blush-500: #C47F74;
  --color-blush-300: #E0B0AA;

  --color-error: #9B3D36;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(17, 40, 25, 0.06);
  --shadow-md: 0 8px 32px rgba(17, 40, 25, 0.10);
  --shadow-nav: 0 2px 16px rgba(17, 40, 25, 0.08);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-cream-100);
  color: var(--color-forest-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-cream-100); }
::-webkit-scrollbar-thumb { background: var(--color-forest-300); border-radius: 3px; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--color-cream-50);
  border-bottom-color: var(--color-cream-200);
  box-shadow: var(--shadow-nav);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 300ms ease;
}

.site-header.scrolled .header-inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--color-cream-50);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: color 300ms ease;
  text-decoration: none;
  user-select: none;
}

.site-header.scrolled .site-wordmark {
  color: var(--color-forest-900);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(249, 247, 242, 0.88);
  letter-spacing: 0.02em;
  transition: color 300ms ease;
  padding: 0;
}

.site-header.scrolled .nav-link {
  color: var(--color-forest-800);
}

.nav-link:hover {
  color: var(--color-gold-500);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 24px;
  border: 1.5px solid rgba(249, 247, 242, 0.55);
  color: var(--color-cream-50);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

.site-header.scrolled .nav-cta {
  border-color: var(--color-forest-800);
  color: var(--color-forest-800);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-shadow: none;
}

.nav-cta:hover {
  background: var(--color-forest-800);
  color: var(--color-cream-50);
  border-color: var(--color-forest-800);
}

.site-header.scrolled .nav-cta:hover {
  color: var(--color-cream-50);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-cream-50);
  transition: color 300ms ease;
}

.site-header.scrolled .mobile-menu-btn {
  color: var(--color-forest-800);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 28, 18, 0.78) 0%, rgba(11, 28, 18, 0.42) 55%, rgba(11, 28, 18, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-inner {
  max-width: 620px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-500);
  margin-bottom: 24px;
}

.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--color-gold-500);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-cream-50);
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(249, 247, 242, 0.85);
  margin-bottom: 44px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary-light {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 24px;
  background: var(--color-cream-50);
  color: var(--color-forest-800);
  border: 1.5px solid var(--color-cream-50);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 300ms ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-light:hover {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-cream-50);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-cream-50);
  border: 1.5px solid rgba(249, 247, 242, 0.5);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 300ms ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-light:hover {
  border-color: var(--color-cream-50);
  background: rgba(249, 247, 242, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(249, 247, 242, 0.5);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(197, 165, 90, 0.6);
}

/* ── SERVICES ── */
.services {
  background: var(--color-cream-100);
  padding: 96px 0;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-500);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--color-forest-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.services-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}

.service-card {
  background: var(--color-cream-50);
  border: 1px solid var(--color-cream-200);
  border-radius: 4px;
  padding: 36px 32px;
  transition: all 300ms ease;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.service-card:hover {
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.service-card-icon {
  color: var(--color-forest-600);
  margin-bottom: 20px;
}

.service-card-rule {
  width: 36px;
  height: 1px;
  background: var(--color-gold-500);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-forest-900);
  line-height: 1.25;
  margin-bottom: 14px;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-cream-600);
  margin-bottom: 16px;
}

.service-card .detail {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-forest-300);
  line-height: 1.6;
  font-style: italic;
}

/* Process */
.process {
  border-top: 1px solid var(--color-cream-200);
  padding-top: 64px;
}

.process-header {
  text-align: center;
  margin-bottom: 48px;
}

.process-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--color-forest-900);
}

.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.process-step-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--color-gold-500);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}

.process-step-line {
  width: 1px;
  height: 28px;
  background: var(--color-cream-200);
  margin: 0 auto 16px;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-forest-900);
  margin-bottom: 10px;
}

.process-step p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-cream-600);
  line-height: 1.7;
}

.process-divider {
  width: 1px;
  background: var(--color-cream-200);
  align-self: stretch;
  margin: 40px 0;
}

/* ── PHOTO BAND ── */
.photo-band {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 320px;
  overflow: hidden;
}

.photo-band-item {
  background-size: cover;
  background-position: center;
}

/* ── GALLERY ── */
.gallery {
  background: var(--color-cream-200);
  padding: 96px 0;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.gallery-header-right {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-cream-600);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 28, 18, 0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms ease;
}

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

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 300ms ease;
}

.gallery-item:hover .gallery-item-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-label {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-cream-50);
  margin-bottom: 4px;
}

.gallery-item-detail {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(249, 247, 242, 0.7);
  letter-spacing: 0.02em;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(11, 28, 18, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 510;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(249, 247, 242, 0.10);
  border: 1px solid rgba(249, 247, 242, 0.2);
  color: var(--color-cream-50);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}

.lightbox-close:hover {
  background: rgba(249, 247, 242, 0.22);
}

.lightbox-inner {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(249, 247, 242, 0.10);
  border: 1px solid rgba(249, 247, 242, 0.2);
  color: var(--color-cream-50);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}

.lightbox-arrow:hover {
  background: rgba(249, 247, 242, 0.22);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-caption {
  padding: 14px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.lightbox-label {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--color-cream-50);
  margin-bottom: 4px;
}

.lightbox-detail {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-forest-300);
}

.lightbox-hint {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(249, 247, 242, 0.5);
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  padding: 4px;
}

/* ── QUOTE ── */
.quote-section {
  background: var(--color-cream-100);
  padding: 0;
}

.quote-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
}

.quote-line {
  width: 1px;
  height: 48px;
  background: var(--color-gold-500);
  margin: 0 auto 36px;
  opacity: 0.6;
}

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--color-forest-900);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.quote-rule {
  width: 32px;
  height: 1px;
  background: var(--color-gold-500);
}

.quote-author {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-cream-500);
  letter-spacing: 0.08em;
}

/* ── ABOUT ── */
.about {
  background: var(--color-cream-50);
  padding: 96px 0;
}

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

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

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.about-floating-quote {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-forest-800);
  border-radius: 4px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(11, 28, 18, 0.18);
  max-width: 220px;
}

.about-floating-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--color-cream-50);
  line-height: 1.5;
  margin-bottom: 8px;
}

.about-floating-quote cite {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-forest-300);
  letter-spacing: 0.06em;
  font-style: normal;
}

.about-text {
  padding-left: 16px;
}

.about-text .gold-rule {
  margin-bottom: 28px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--color-forest-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.about-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-cream-800);
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding-top: 32px;
  border-top: 1px solid var(--color-cream-200);
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-forest-800);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-cream-500);
  letter-spacing: 0.04em;
}

.btn-primary-dark {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 24px;
  background: var(--color-forest-800);
  color: var(--color-cream-50);
  border: 1.5px solid var(--color-forest-800);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 300ms ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-dark:hover {
  background: var(--color-forest-600);
  border-color: var(--color-forest-600);
}

/* Venues */
.venues {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--color-cream-200);
}

.venues-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-500);
  margin-bottom: 20px;
  text-align: center;
}

.venues-list {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.venues-list span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-cream-600);
  letter-spacing: 0.02em;
  padding: 4px 20px;
}

.venues-list .dot {
  color: var(--color-cream-300);
  align-self: center;
}

/* ── CONTACT ── */
.contact {
  background: var(--color-forest-800);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-eyebrow {
  margin-bottom: 16px;
}

.contact-info .gold-rule {
  margin-bottom: 28px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--color-cream-50);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.contact-info p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-forest-300);
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-forest-400);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-forest-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-forest-600);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--color-cream-100);
  color: var(--color-forest-900);
  border: 1.5px solid var(--color-cream-300);
  border-radius: 24px;
  padding: 13px 22px;
  outline: none;
  transition: all 300ms ease;
  letter-spacing: 0.01em;
}

.form-input:focus {
  background: #FFFFFF;
  border-color: var(--color-forest-800);
}

.form-input.error {
  border-color: var(--color-error);
}

.form-input::placeholder {
  color: var(--color-cream-500);
}

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

.form-textarea {
  border-radius: 12px;
  padding: 14px 22px;
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form-error {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-error);
  margin-top: 5px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.form-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(154, 190, 167, 0.7);
  line-height: 1.6;
}

.btn-submit {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 24px;
  background: var(--color-cream-50);
  color: var(--color-forest-800);
  border: 1.5px solid var(--color-cream-50);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 300ms ease;
  white-space: nowrap;
}

.btn-submit:hover {
  background: transparent;
  color: var(--color-cream-50);
}

/* Thank you state */
.contact-thanks {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  display: none;
}

.contact-thanks.active {
  display: block;
}

.contact-thanks-line {
  width: 1px;
  height: 60px;
  background: var(--color-gold-500);
  margin: 0 auto 40px;
  opacity: 0.5;
}

.contact-thanks h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--color-cream-50);
  margin-bottom: 20px;
  line-height: 1.15;
}

.contact-thanks p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-forest-300);
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-thanks .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(249, 247, 242, 0.6);
  margin-top: 32px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--color-forest-900);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .site-wordmark {
  font-size: 20px;
  color: var(--color-cream-50);
  margin-bottom: 20px;
  display: block;
}

.footer-brand .gold-rule {
  margin-bottom: 20px;
  margin-left: 0;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(216, 232, 221, 0.6);
  line-height: 1.8;
  max-width: 300px;
}

.footer-est-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-forest-400);
  margin-bottom: 6px;
}

.footer-est-value {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(216, 232, 221, 0.7);
}

.footer-nav-heading {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-forest-400);
  margin-bottom: 20px;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(216, 232, 221, 0.7);
  letter-spacing: 0.02em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  display: block;
  transition: color 300ms ease;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-nav-link:hover {
  color: var(--color-forest-100);
}

.footer-contact-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4A7059;
  margin-bottom: 4px;
}

.footer-contact-value {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(216, 232, 221, 0.75);
  line-height: 1.5;
}

.footer-social {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(216, 232, 221, 0.55);
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  transition: color 300ms ease;
}

.footer-social:hover {
  color: rgba(216, 232, 221, 0.85);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(154, 190, 167, 0.4);
  letter-spacing: 0.04em;
}

.footer-location {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(154, 190, 167, 0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .header-inner { padding-left: 32px; padding-right: 32px; }
  .hero-content { padding: 0 32px; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .header-inner { padding-left: 24px; padding-right: 24px; }
  .hero-content { padding: 0 24px; }

  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-forest-900);
    z-index: 300;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .header-nav.open .nav-link {
    color: var(--color-cream-50);
    font-size: 18px;
  }
  .header-nav.open .nav-cta {
    border-color: var(--color-cream-50);
    color: var(--color-cream-50);
    font-size: 16px;
    padding: 14px 32px;
  }
  .mobile-menu-btn { display: block; z-index: 350; }

  .hero { min-height: 560px; }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }

  .services { padding: 64px 0; }
  .services-grid { flex-direction: column; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-divider { width: 40px; height: 1px; margin: 0 auto; align-self: auto; }

  .photo-band { grid-template-columns: 1fr; height: auto; }
  .photo-band-item { height: 200px; }

  .gallery { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery-header-right { text-align: left; }

  .about { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-floating-quote { right: 16px; bottom: -16px; }
  .about-text { padding-left: 0; }
  .about-stats { gap: 24px; }

  .contact { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; gap: 16px; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .lightbox { padding: 20px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .venues-list { flex-direction: column; align-items: center; }
  .about-stats { flex-direction: column; gap: 16px; }
}
