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

:root {
  --teal-deep:   #0F2D3A;
  --teal-mid:    #214956;
  --teal-light:  #2d6475;
  --gold:        #C7A46A;
  --gold-dark:   #a8884f;
  --cream:       #F7F2EA;
  --cream-warm:  #f0e9dc;
  --text-dark:   #0F2D3A;
  --text-mid:    #3a5a68;
  --text-light:  #6a8a98;
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.sans { font-family: 'Inter', sans-serif; }

p { line-height: 1.8; margin-bottom: 1.2em; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-dark); font-weight: 600; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 45, 58, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(199,164,106,0.2);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
  font-weight: 600;
}
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--teal-deep) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--cream) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--teal-deep);
  padding: 16px 40px;
}
.btn-gold:hover { background: var(--gold-dark); color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 15px 39px;
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--teal-deep); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  padding: 15px 39px;
  border: 1px solid rgba(247,242,234,0.4);
}
.btn-outline-cream:hover { background: rgba(247,242,234,0.1); }

/* ── SECTIONS ── */
.section { padding: 100px 40px; }
.section-sm { padding: 60px 40px; }
.section-inner { max-width: 800px; margin: 0 auto; }
.section-inner.wide { max-width: 1100px; }
.section-inner.narrow { max-width: 640px; }

/* Dark section */
.section-dark {
  background: var(--teal-deep);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(247,242,234,0.72); }
.section-dark strong { color: var(--cream); }

/* Mid section */
.section-mid { background: var(--teal-mid); }
.section-mid h2, .section-mid h3 { color: var(--cream); }
.section-mid p { color: rgba(247,242,234,0.75); }

/* Warm section */
.section-warm { background: var(--cream-warm); }

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ── DIVIDER ── */
.gold-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-divider.center { margin: 24px auto; }

/* ── FOOTER ── */
.site-footer {
  background: #08191f;
  padding: 60px 40px 32px;
  color: rgba(247,242,234,0.5);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(199,164,106,0.15);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(247,242,234,0.45);
  margin-top: 16px;
}
.footer-logo-img { height: 52px; width: auto; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(247,242,234,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(247,242,234,0.3);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(199,164,106,0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(15,45,58,0.98); padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .section { padding: 72px 24px; }
  .section-sm { padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── LEAF TEXTURE (connecting thread across site) ── */
/* Teal-tinted: for use on cream/warm sections of brand pages */
.leaf-texture {
  background-color: var(--cream-warm);
  background-image: url('leafy-background.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}
.leaf-texture > * { position: relative; z-index: 1; }
.leaf-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240,233,220,0.93);
  z-index: 0;
}

/* Dark teal variant: for dark sections */
.leaf-texture-dark {
  background-color: var(--teal-deep);
  background-image: url('leafy-background.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}
.leaf-texture-dark > * { position: relative; z-index: 1; }
.leaf-texture-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,45,58,0.96);
  z-index: 0;
}
