/* ─── TOKENS ─── */
:root {
  --ink:      #1C1C1A;
  --slate:    #3D4A3E;
  --mist:     #6B7B6C;
  --clay:     #B8956A;
  --clay-lt:  #D4B48A;
  --cream:    #F5F1E8;
  --stone:    #E6DFD0;
  --fog:      #EDE8DC;
  --white:    #FFFFFF;
  --max:      1120px;
  --nav-h:    68px;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245,241,232,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone);
  z-index: 100;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
}
.logo { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-name {
  font-family: var(--serif); font-size: 21px; font-weight: 600;
  color: var(--slate); letter-spacing: 0.01em;
}
.logo-tag {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clay); font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink); opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta {
  background: var(--slate) !important; color: var(--white) !important;
  padding: 9px 18px !important; border-radius: 3px; opacity: 1 !important;
  transition: background 0.2s !important; letter-spacing: 0.06em !important;
}
.nav-cta:hover { background: var(--mist) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--stone);
  padding: 20px 32px; flex-direction: column; gap: 0; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 12px 0;
  border-bottom: 1px solid var(--stone); color: var(--ink);
}

/* ─── PAGE WRAP ─── */
.page-body { padding-top: var(--nav-h); }

/* ─── SHARED SECTION ─── */
.section { padding: 96px 32px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--clay); font-weight: 600; margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 500; color: var(--slate); line-height: 1.1;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--clay); }
.section-body {
  font-size: 16px; color: var(--mist); line-height: 1.8;
  max-width: 520px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 3px; font-size: 13px;
  font-weight: 600; letter-spacing: 0.05em; transition: all 0.2s; cursor: pointer;
}
.btn-primary { background: var(--slate); color: var(--white); border: none; }
.btn-primary:hover { background: var(--mist); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--slate);
  border: 1.5px solid var(--clay);
}
.btn-outline:hover { background: var(--stone); transform: translateY(-1px); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── TRUST STRIP ─── */
.trust-strip { background: var(--slate); padding: 22px 32px; }
.trust-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.trust-pip { width: 5px; height: 5px; background: var(--clay); border-radius: 50%; flex-shrink: 0; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--fog); border-top: 1px solid var(--stone); padding: 88px 32px; text-align: center; }
.cta-band .section-title { margin: 0 auto 16px; }
.cta-band .section-body { margin: 0 auto 36px; text-align: center; }
.cta-band .btn-group { justify-content: center; }

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 52px 32px 28px; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo-name { font-family: var(--serif); font-size: 20px; color: var(--white); font-weight: 500; }
.footer-logo-tag { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); margin-top: 4px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 12px; line-height: 1.65; max-width: 200px; }
.footer-col h5 {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px; font-weight: 600;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max); margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 10px;
}

/* ─── FORMS ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--slate);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--stone); border-radius: 3px;
  padding: 11px 14px; font-size: 14px; font-family: var(--sans);
  color: var(--ink); background: var(--white);
  transition: border-color 0.2s; outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--slate); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--mist); margin-top: 10px; text-align: center; }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  background: var(--slate); padding: 72px 32px 64px; text-align: center;
}
.page-hero .eyebrow { color: var(--clay); }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 500; color: var(--white); margin: 14px auto 18px;
  max-width: 640px; line-height: 1.1;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 460px; margin: 0 auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  nav { padding: 0; }
  .nav-inner { padding: 0 20px; }
  .mobile-menu { padding: 16px 20px; }
}
