*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:       #1F5E3B;
  --green-deep:  #163F28;
  --green-light: #E6EFEA;
  --gold:        #C7A23A;
  --gold-light:  #EDD98A;
  --cream:       #F6F4EF;
  --ink:         #2C2F33;
  --ink-mid:     #4A4F55;
  --ink-light:   #5F6F7A;
  --white:       #FFFFFF;
  --serif:       'EB Garamond', Georgia, serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

/* ── NAVIGATION ── */
nav {
  background: var(--green);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-shield { height: 52px; display: block; mix-blend-mode: screen; }
.nav-brand-text { display: flex; flex-direction: column; gap: 1px; }
.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  line-height: 1.15;
}
.nav-brand-sub {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(246,244,239,0.55);
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(246,244,239,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--cream); }
.nav-cta {
  font-style: normal !important;
  font-weight: 600 !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.45rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--green) !important; }
.nav-cta.active { background: var(--gold) !important; color: var(--green) !important; }

/* ── HERO ── */
.hero {
  background: var(--green);
  padding: 100px 5vw 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,94,59,0.93) 0%, rgba(22,63,40,0.97) 100%),
    repeating-linear-gradient(45deg, rgba(199,162,58,0.04) 0px, rgba(199,162,58,0.04) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 800px; }
.hero-eyebrow {
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-weight: 400; color: var(--gold-light); }
.hero-desc {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: rgba(246,244,239,0.68);
  max-width: 540px;
  line-height: 1.85;
  margin-bottom: 2.75rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.85rem 2.25rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(246,244,239,0.3);
  color: rgba(246,244,239,0.8);
  font-family: var(--serif);
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 2.25rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(246,244,239,0.7); color: var(--cream); }

/* ── PILLARS ── */
.pillars {
  background: var(--white);
  padding: 72px 5vw;
  border-bottom: 1px solid rgba(44,47,51,0.08);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pillar { display: flex; flex-direction: column; gap: 0.6rem; }
.pillar-mark { width: 36px; height: 2px; background: var(--gold); margin-bottom: 0.4rem; }
.pillar h3 { font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.pillar p { font-size: 0.95rem; color: var(--ink-light); line-height: 1.75; }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

/* ── ABOUT ── */
.about {
  padding: 96px 5vw;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-text p { font-size: 1rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1rem; }
.gold-divider { width: 48px; height: 2px; background: var(--gold); margin: 2rem 0; }

/* ── SERVICES ── */
.services-page { background: var(--cream); padding: 96px 5vw; }
.services-page-inner { max-width: 900px; margin: 0 auto; }
.services-page h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.services-page .intro {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 3rem;
  max-width: 620px;
}
.services-list { display: flex; flex-direction: column; }
.service-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(44,47,51,0.1);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: start;
}
.service-item:first-child { border-top: 1px solid rgba(44,47,51,0.1); }
.service-num { font-size: 0.88rem; color: var(--gold); padding-top: 2px; }
.service-name { font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; }
.service-desc { font-size: 0.95rem; color: var(--ink-light); line-height: 1.7; }

/* ── FOUNDER ── */
.founder-section { background: var(--white); padding: 96px 5vw; }
.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
}
.founder-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.founder-title {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.founder-text p { font-size: 1rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1rem; }
.founder-text p:last-child { margin-bottom: 0; }

/* ── CONTACT ── */
.contact-section { background: var(--green-light); padding: 96px 5vw; }
.contact-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.contact-info > p { font-size: 1rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-detail-label { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold); }
.contact-detail-value { font-size: 1rem; color: var(--ink); }

/* ── FORM ── */
.form-card {
  background: var(--white);
  border-radius: 3px;
  padding: 2.75rem 3rem;
  border: 1px solid rgba(44,47,51,0.07);
}
.form-title { font-size: 1.7rem; font-weight: 500; color: var(--ink); margin-bottom: 0.3rem; }
.form-subtitle { font-size: 1rem; color: var(--ink-light); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
label { font-size: 0.82rem; letter-spacing: 0.1em; color: var(--ink-mid); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(44,47,51,0.18);
  border-radius: 2px;
  background: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(95,111,122,0.45); }
input:focus, select:focus, textarea:focus { border-color: var(--green); background: var(--white); }
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='%235F6F7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.form-note { font-size: 0.85rem; color: var(--ink-light); line-height: 1.65; margin-bottom: 1.5rem; }
.form-submit {
  width: 100%;
  background: var(--green);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--green-deep); transform: translateY(-1px); }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 60px 5vw 36px; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246,244,239,0.1);
  margin-bottom: 1.75rem;
}
.footer-brand-name { font-size: 1.4rem; font-weight: 600; color: var(--cream); letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.footer-brand-sub { font-size: 0.72rem; letter-spacing: 0.22em; color: rgba(246,244,239,0.35); margin-bottom: 1rem; }
.footer-about { font-size: 0.95rem; color: rgba(246,244,239,0.45); line-height: 1.75; }
.footer-heading { font-size: 0.78rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.95rem; color: rgba(246,244,239,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(246,244,239,0.25);
}

/* ── PAGE HERO (non-home) ── */
.page-hero {
  background: var(--green);
  padding: 72px 5vw 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,94,59,0.93) 0%, rgba(22,63,40,0.97) 100%),
    repeating-linear-gradient(45deg, rgba(199,162,58,0.04) 0px, rgba(199,162,58,0.04) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 700px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(246,244,239,0.65);
  line-height: 1.85;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  .founder-photo { max-width: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 60px 5vw 80px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
