:root {
  --green: #10291f;
  --green-2: #173c2d;
  --green-3: #24533e;
  --gold: #b4872d;
  --gold-light: #d9ba72;
  --cream: #f8f4ea;
  --paper: #fffdf8;
  --ink: #111a16;
  --muted: #5e6b64;
  --line: rgba(16, 41, 31, .16);
  --shadow: 0 22px 55px rgba(16, 41, 31, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 999; background: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem clamp(1.25rem, 4vw, 4.5rem);
  background: rgba(255,253,248,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; font-weight: 700; letter-spacing: -.02em; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-light); }
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a { text-decoration: none; font-weight: 600; font-size: .95rem; }
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-cta { color: white; background: var(--green); padding: .7rem 1.1rem; border-radius: 999px; }
.site-nav .nav-cta:hover { color: white; background: var(--green-3); }
.menu-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--green); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 8rem);
  background:
    radial-gradient(circle at 78% 30%, rgba(217,186,114,.28), transparent 27rem),
    linear-gradient(135deg, #fffdf8 0 58%, #f1eadb 58% 100%);
}
.hero::before { content: ""; position: absolute; width: 18rem; height: 18rem; border: 1px solid rgba(180,135,45,.35); border-radius: 50%; left: -9rem; bottom: -9rem; }
.hero-copy { position: relative; z-index: 1; max-width: 760px; }
.eyebrow { margin: 0 0 .7rem; color: var(--gold); font-weight: 700; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.08; margin-top: 0; }
h1 { max-width: 740px; margin-bottom: 1.35rem; color: var(--green); font-size: clamp(3.4rem, 7.4vw, 7.5rem); letter-spacing: -.055em; }
.hero-lede { max-width: 660px; font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: #3c4a43; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--green); border-radius: 999px; padding: .75rem 1.35rem; font: inherit; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(16,41,31,.15); }
.button-primary { color: white; background: var(--green); }
.button-primary:hover { background: var(--green-3); }
.button-secondary { color: var(--green); background: transparent; }
.appointment-note { margin-top: 1rem; color: var(--muted); font-size: .94rem; }
.hero-mark { position: relative; padding: 1.35rem; background: rgba(255,255,255,.75); border: 1px solid rgba(180,135,45,.28); border-radius: 50% 50% 12% 12%; box-shadow: var(--shadow); }
.hero-mark::after { content: ""; position: absolute; inset: -18px; border: 1px solid rgba(180,135,45,.35); border-radius: inherit; pointer-events: none; }
.hero-mark img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50% 50% 10% 10%; }
.hero-mark blockquote { margin: 1.2rem .8rem .4rem; color: var(--green); font-family: "Playfair Display", serif; font-size: clamp(1.2rem, 2vw, 1.7rem); font-style: italic; text-align: center; }

.values-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--green); color: white; }
.values-strip span { padding: 1.2rem; text-align: center; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; font-size: .8rem; border-right: 1px solid rgba(255,255,255,.15); }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem); }
.section-heading { max-width: 880px; margin-bottom: 3.5rem; }
.section-heading.compact { max-width: 760px; }
.section-heading h2, .about-panel h2, .contact-copy h2, .audience-section h2 { margin-bottom: 1.1rem; color: var(--green); font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -.04em; }
.section-heading > p:last-child, .about-panel > p:last-child, .contact-copy > p { color: var(--muted); font-size: 1.08rem; }
.services-section { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.service-card { grid-column: span 4; min-height: 310px; padding: 2rem; background: var(--cream); border: 1px solid var(--line); border-radius: 1.25rem; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card.featured { grid-column: span 8; background: var(--green); color: white; }
.service-number { color: var(--gold); font-weight: 700; font-size: .82rem; letter-spacing: .16em; }
.service-card h3 { margin: 1rem 0 .9rem; color: var(--green); font-size: 1.65rem; }
.service-card.featured h3 { color: white; font-size: clamp(2rem, 3vw, 3rem); }
.service-card p { color: var(--muted); }
.service-card.featured p, .service-card.featured li { color: #e7eee9; }
.service-card ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.service-card li { padding-top: .7rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .9rem; }

.audience-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 7vw, 8rem); background: var(--cream); border-block: 1px solid var(--line); }
.audience-section h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); }
.audience-list { display: flex; flex-wrap: wrap; gap: .8rem; }
.audience-list span { padding: .85rem 1.1rem; background: white; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; }

.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 6rem); background: var(--green); color: white; }
.about-panel h2 { color: white; }
.about-panel > p:last-child { color: #d7e1db; }
.founder-panel { align-self: end; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding: clamp(1.5rem, 4vw, 3rem); color: var(--ink); background: var(--paper); border-radius: 1.5rem; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.founder-initials { width: 74px; height: 74px; display: grid; place-items: center; color: white; background: var(--gold); border-radius: 50%; font-family: "Playfair Display", serif; font-size: 1.5rem; font-weight: 700; }
.founder-panel h3 { margin: 0; color: var(--green); font-size: 2rem; }
.founder-panel .role { margin: .2rem 0 1rem; color: var(--gold); font-weight: 700; }
.founder-panel p:last-child { color: var(--muted); }

.boundaries-section { background: var(--paper); }
.boundary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.boundary-grid span { position: relative; padding: 1rem 1rem 1rem 2.7rem; background: var(--cream); border: 1px solid var(--line); border-radius: .8rem; font-weight: 600; }
.boundary-grid span::before { content: "—"; position: absolute; left: 1rem; color: var(--gold); }

.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 7vw, 7rem); padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem); background: linear-gradient(135deg, #ece1c8, var(--cream)); }
.contact-copy h2 { font-size: clamp(2.8rem, 5vw, 5.4rem); }
.contact-details { display: grid; gap: .75rem; margin-top: 2rem; }
.contact-details a, .contact-details div { display: flex; flex-direction: column; padding: 1rem 0; text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-details small { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.contact-details strong { font-size: 1.05rem; overflow-wrap: anywhere; }
.contact-form { display: grid; gap: 1rem; padding: clamp(1.4rem, 4vw, 2.5rem); background: var(--paper); border: 1px solid rgba(180,135,45,.3); border-radius: 1.5rem; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .4rem; color: var(--green); font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 48px; padding: .75rem; color: var(--ink); background: white; border: 1px solid #aab4ae; border-radius: .55rem; font: inherit; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid rgba(180,135,45,.28); border-color: var(--gold); }
.contact-form .button { justify-self: start; }
.form-note { margin: 0; color: var(--muted); font-size: .85rem; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 2rem clamp(1.25rem, 7vw, 8rem); color: #dbe4df; background: #091912; }
.site-footer img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.site-footer strong { color: white; }
.site-footer p { margin: .15rem 0 0; font-size: .87rem; }

@media (max-width: 980px) {
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-mark { max-width: 570px; }
  .service-card, .service-card.featured { grid-column: span 6; }
  .service-card ul { grid-template-columns: 1fr; }
  .audience-section, .about-section, .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 68px; }
  .brand span { max-width: 210px; font-size: .9rem; line-height: 1.2; }
  .brand img { width: 44px; height: 44px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); display: none; flex-direction: column; align-items: stretch; gap: .25rem; padding: 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .7rem; }
  .site-nav .nav-cta { text-align: center; }
  .hero { padding-top: 4rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .values-strip { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card.featured { grid-column: 1 / -1; }
  .audience-section { gap: 1.5rem; }
  .boundary-grid, .field-row { grid-template-columns: 1fr; }
  .founder-panel { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: auto 1fr; }
  .site-footer > p:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
