:root {
  --navy: #0B1E3D;
  --tan: #8B7458;
  --sage: #5F7142;
  --cream: #FAF6EF;
  --cream-alt: #F1ECE1;
  --white: #FFFFFF;
  --text: #26241F;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}
.brand-logo { height: 56px; }
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a { font-weight: 500; font-size: 0.95rem; text-decoration: none; color: var(--navy); }
.site-nav a:hover { color: var(--tan); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }

@media (max-width: 800px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.5rem;
    display: none;
    gap: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero-overlay {
  width: 100%;
  background: linear-gradient(180deg, rgba(11,30,61,0.5), rgba(11,30,61,0.82));
  padding: 4rem 1.5rem;
}
.hero-content { max-width: 700px; margin: 0 auto; text-align: center; color: var(--white); }
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.hero-sub { font-size: 1.15rem; margin-bottom: 2rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--tan); color: var(--navy); }
.btn-primary:hover { background: #a08765; }
.btn-secondary { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

@media (max-width: 800px) {
  .hero-content h1 { font-size: 2rem; }
}

.content-section { padding: 5rem 1.5rem; }
.content-section.alt-bg { background: var(--cream-alt); }
.section-inner { max-width: 760px; margin: 0 auto; }
.content-section h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.content-section p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.content-section p:last-child { margin-bottom: 0; }

.collage-section { padding: 0; }
.collage-img { width: 100%; }

.cta-section { padding: 5rem 1.5rem; }
.cta-section.alt-bg { background: var(--cream-alt); }
.cta-section .section-inner { max-width: 640px; }
.cta-section h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.cta-section p { text-align: center; margin-bottom: 2rem; font-size: 1.05rem; }
.form-embed {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.form-pending { text-align: center; font-style: italic; color: var(--navy); margin: 0; }
.form-embed iframe { border: none; width: 100%; }

.site-footer { background: var(--navy); color: var(--cream); padding: 3rem 1.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo-wrap {
  display: inline-block;
  background: var(--cream);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}
.footer-logo { height: 70px; margin: 0; }
.footer-social { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; }
.footer-social a {
  text-decoration: none;
  font-weight: 500;
  color: var(--cream);
  border-bottom: 1px solid var(--tan);
  padding-bottom: 2px;
}
.footer-copy { font-size: 0.85rem; opacity: 0.8; max-width: 600px; margin: 0 auto; }
