:root {
  --green: #0b2b26;
  --green-dark: #071b17;
  --green-mid: #123c34;
  --gold: #c9a24b;
  --gold-light: #e3c98a;
  --cream: #f8f3e7;
  --cream-alt: #f0e6cf;
  --ink: #1f2a27;
  --ink-muted: #5c6b66;
  --line: #e4d9bd;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 43, 38, 0.1);
  --max-width: 1120px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); color: var(--green); margin: 0 0 0.5em; font-weight: 600; line-height: 1.2; }
p { margin: 0 0 1em; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.6em;
}
.eyebrow-gold { color: var(--gold-light); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 231, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green);
  letter-spacing: 0.01em;
}
.logo span { color: var(--gold); font-weight: 500; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.main-nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--green); display: block; }

/* Hero */
.hero {
  background: radial-gradient(ellipse at top right, var(--green-mid) 0%, var(--green-dark) 65%);
  color: var(--white);
  padding: 104px 0 92px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(201,162,75,0.08));
  pointer-events: none;
}
.hero-inner { max-width: 760px; position: relative; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 0.45em; }
.hero-sub { color: #d9d0b8; font-size: 1.12rem; max-width: 620px; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--gold); color: var(--green-dark) !important; }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { border-color: rgba(255,255,255,0.4); color: var(--white) !important; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; text-align: center; border: none; }

/* Sections */
.section { padding: 92px 0; }
.section-alt { background: var(--cream-alt); }
.section h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

.about-grid { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 56px; align-items: start; }
.about-card {
  background: var(--green);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
}
.about-card h3 { color: var(--white); }
.about-card p { color: #cfe0da; }
.about-facts { list-style: none; padding: 0; margin: 0; }
.about-facts li { padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.15); color: #e6f0eb; }

/* Founder spotlight */
.founder-spotlight {
  background: var(--green);
  padding: 72px 0;
}
.founder-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.founder-photo {
  width: 240px;
  height: 220px;
  border-radius: 22px;
  border: 4px solid var(--gold);
  flex-shrink: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
}
.founder-copy h2 { color: var(--white); margin-bottom: 0.2em; }
.founder-title { color: var(--gold-light); font-weight: 600; font-size: 0.95rem; margin: 0 0 14px; }
.founder-quote {
  font-family: var(--font-head);
  font-style: italic;
  color: #e6f0eb;
  font-size: 1.15rem;
  margin: 0;
  max-width: 620px;
}

@media (max-width: 640px) {
  .founder-inner { flex-direction: column; text-align: center; }
  .founder-quote { max-width: none; }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card, .feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
.section-alt .service-card { background: var(--white); }
.service-card h3, .feature-card h3 { font-size: 1.1rem; }
.service-card p, .feature-card p { color: var(--ink-muted); margin: 0; font-size: 0.95rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step { text-align: left; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-muted); font-size: 0.95rem; margin: 0; }

/* Quote form */
.quote-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
label { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.form-status { font-weight: 600; min-height: 1.2em; margin: 0; }
.form-status.success { color: #2f6b3f; }
.form-status.error { color: #a5342a; }

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--green); }
.faq-item p { margin: 12px 0 0; color: var(--ink-muted); }

/* Contact */
.contact-section { background: var(--green); color: var(--white); }
.contact-section h2 { color: var(--white); }
.contact-section .eyebrow { color: var(--gold-light); }
.contact-section > .container > p,
.contact-grid > div > p { color: #d9e6e0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contact-details p { margin: 0 0 14px; font-size: 1.05rem; color: #e6f0eb; }
.contact-details a { color: var(--gold-light); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: #a9bdb5;
  padding: 28px 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .quote-grid, .contact-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 14px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { align-self: flex-start; }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 64px; }
  .section { padding: 64px 0; }
  .founder-photo { width: 100%; max-width: 320px; height: 240px; }
}
