:root {
  color-scheme: light;
  --ink: #1f2a24;
  --muted: #607066;
  --line: #d9e2d6;
  --paper: #fbfcf8;
  --wash: #eef5ea;
  --sage: #5f8a68;
  --deep: #244735;
  --gold: #c49a4f;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(238, 245, 234, 0.92), rgba(251, 252, 248, 0.98)),
    radial-gradient(circle at 80% 10%, rgba(196, 154, 79, 0.16), transparent 32%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(217, 226, 214, 0.8);
  background: rgba(251, 252, 248, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.brand-text {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--deep);
}

main {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(760px, calc(100vh - 72px));
  padding: clamp(54px, 9vw, 108px) 0 clamp(40px, 7vw, 80px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.intro {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 720;
}

.button.primary {
  background: var(--deep);
  color: var(--white);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep);
}

.hero-panel {
  display: grid;
  gap: 12px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 60px rgba(40, 67, 49, 0.08);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep);
  font-size: 2.2rem;
}

.stat span {
  color: var(--muted);
}

.section {
  padding: clamp(46px, 8vw, 86px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.card p,
.muted,
.office p {
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.schedule {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
}

.schedule-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row span {
  color: var(--sage);
  font-weight: 760;
}

.schedule-row em {
  color: var(--muted);
  font-style: normal;
}

.office {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: clamp(42px, 7vw, 82px) 0;
  border-radius: 8px;
  padding: clamp(24px, 5vw, 44px);
  background: var(--deep);
  color: var(--white);
}

.office .eyebrow,
.office p {
  color: rgba(255, 255, 255, 0.72);
}

address {
  display: grid;
  gap: 6px;
  min-width: 240px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .site-header,
  .footer,
  .section-heading,
  .office {
    align-items: start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split,
  .office {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .schedule-row {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .schedule-row em {
    grid-column: 2;
  }

  address {
    min-width: 0;
    border-left: 0;
    padding-left: 0;
  }
}
