
:root {
  --sage: #A7B7A6;
  --sage-dark: #71816f;
  --cream: #FAF8F4;
  --blue: #DCE8EF;
  --charcoal: #3E4348;
  --white: #FFFFFF;
  --ink-soft: #62686d;
  --line: rgba(62, 67, 72, 0.12);
  --shadow: 0 20px 60px rgba(62, 67, 72, 0.10);
  --shadow-soft: 0 10px 35px rgba(62, 67, 72, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a { color: inherit; }

button, input, textarea, select { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #516a7b;
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-sm { padding: 3.5rem 0; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  color: var(--sage-dark);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, h4 {
  margin: 0 0 1rem;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1.25rem; }

.lead {
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--ink-soft);
}

.center { text-align: center; }
.center .lead { margin-inline: auto; }

.muted { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .45rem .8rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--charcoal);
}

.btn-outline-light {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-sage {
  background: var(--sage-dark);
  color: var(--white);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 244, .92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.brand strong {
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand span {
  margin-top: .25rem;
  color: var(--ink-soft);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
  transition: .2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  font-size: .93rem;
  font-weight: 600;
}

.site-nav a:not(.btn):hover,
.site-nav a[aria-current="page"]:not(.btn) {
  color: var(--sage-dark);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(33, 42, 42, .83) 0%, rgba(33, 42, 42, .56) 45%, rgba(33, 42, 42, .18) 100%),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2200&q=82") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0,0,0,.18));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 6rem 0;
}

.hero p {
  max-width: 760px;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  color: rgba(255,255,255,.9);
}

.hero-note {
  margin-top: 2.5rem;
  font-size: .82rem !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-hero {
  padding: 7rem 0 5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(220,232,239,.9), transparent 34%),
    linear-gradient(135deg, var(--cream), #f1f4ef);
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}

.card p:last-child { margin-bottom: 0; }

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 15px;
  background: var(--blue);
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
}

.soft-panel {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 34px;
  background: var(--blue);
}

.sage-panel { background: #e5ece3; }
.white-panel { background: var(--white); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.media-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, transparent 30%, rgba(34,44,42,.35)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=82") center/cover no-repeat;
}

.media-card.office {
  background:
    linear-gradient(180deg, transparent 30%, rgba(34,44,42,.25)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1400&q=82") center/cover no-repeat;
}

.photo-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 2px dashed rgba(62,67,72,.22);
  border-radius: 34px;
  background: linear-gradient(145deg, #e9efe6, #f8f4ed);
  color: var(--ink-soft);
  text-align: center;
}

.photo-placeholder strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.list-check {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem 1rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.7rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 800;
}

.timeline {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.timeline-item {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.timeline-item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 1.1rem;
  color: var(--sage-dark);
  font-family: "Lora", Georgia, serif;
  font-size: 1.8rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem);
  border-radius: 36px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(53,68,65,.94), rgba(88,105,102,.78)),
    url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.cta-band h2 { max-width: 780px; }
.cta-band p { max-width: 700px; color: rgba(255,255,255,.88); }

.accordion {
  display: grid;
  gap: .8rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(62,67,72,.05);
}

.accordion summary {
  cursor: pointer;
  padding: 1.3rem 1.5rem;
  font-family: "Lora", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  list-style: none;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: "+";
  float: right;
  color: var(--sage-dark);
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
}

.accordion details[open] summary::after { content: "–"; }

.accordion .answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.contact-list strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 700;
  font-size: .9rem;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(62,67,72,.22);
  border-radius: 12px;
  background: #fff;
  color: var(--charcoal);
  padding: .9rem 1rem;
}

textarea {
  min-height: 145px;
  resize: vertical;
}

.form-help {
  color: var(--ink-soft);
  font-size: .82rem;
}

.form-status {
  display: none;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: #e7efe5;
}

.map-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  margin-top: 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(220,232,239,.82), rgba(220,232,239,.82)),
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(62,67,72,.08) 28px 30px);
  color: var(--ink-soft);
  text-align: center;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: #343a3d;
  color: rgba(255,255,255,.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 2rem;
}

.site-footer h3, .site-footer h4 { color: var(--white); }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); }

.footer-links {
  display: grid;
  gap: .55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.notice {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--sage-dark);
  border-radius: 0 12px 12px 0;
  background: #eef3ec;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--cream);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav .btn { width: 100%; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero {
    min-height: 720px;
    background-position: 62% center;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(29,38,37,.12);
  }
  .grid-2, .grid-3, .timeline, .form-row, .footer-grid {
    grid-template-columns: 1fr;
  }
  .list-check { grid-template-columns: 1fr; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { width: 100%; }
  .card { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; }
  .media-card, .photo-placeholder { min-height: 420px; }
}


.headshot-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #e9efe6, #f8f4ed);
  box-shadow: var(--shadow);
}

.headshot-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 30%;
}

.map-embed {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-note-list {
  margin-top: 1rem;
}
