:root {
  --green: #96b30f;
  --green-dark: #6f8705;
  --ink: #17211b;
  --muted: #66736a;
  --line: #dfe6d6;
  --surface: #f7f9f3;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  background: var(--surface);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand,
.nav-links a,
.button {
  text-decoration: none;
}

.brand {
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--green);
  color: var(--green-dark);
  font-weight: 700;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: clamp(540px, 70svh, 600px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 14, 0.72), rgba(8, 18, 14, 0.35) 42%, rgba(8, 18, 14, 0.08));
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 clamp(20px, 5vw, 72px) 52px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font: 700 14px/1.3 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1,
h2 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 60px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(20px, 2.4vw, 30px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font: 700 16px/1 Arial, Helvetica, sans-serif;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
}

.section-copy p {
  max-width: 680px;
  font-size: 20px;
}

.quote {
  margin: 28px 0 0;
  color: var(--green-dark);
  font-weight: 700;
}

.team-photo {
  margin: 0;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.times {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 19px;
}

.section-heading a {
  color: var(--green-dark);
  font-weight: 700;
}

.times-grid {
  display: grid;
  gap: 1px;
  max-width: 960px;
  background: var(--line);
  border: 1px solid var(--line);
}

.times-grid div {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(140px, 1fr) minmax(140px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
  background: var(--white);
  font-size: 22px;
}

.times-grid span {
  color: var(--green-dark);
  font-weight: 700;
}

.times-grid strong {
  min-height: 1.55em;
  font-weight: 400;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 36px;
  align-items: start;
}

address {
  display: grid;
  gap: 8px;
  padding: 28px;
  border-left: 4px solid var(--green);
  background: var(--surface);
  font: 20px/1.45 Arial, Helvetica, sans-serif;
}

address a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.legal {
  background: var(--surface);
}

.legal .section-heading {
  margin-bottom: 28px;
}

.legal-panel {
  max-width: 1040px;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-panel summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--green-dark);
  font: 700 22px/1.25 Georgia, "Times New Roman", serif;
}

.legal-panel summary:hover {
  background: #fbfcf7;
}

.legal-copy {
  padding: 4px 24px 26px;
  border-top: 1px solid var(--line);
  color: #2b342d;
  font-family: Arial, Helvetica, sans-serif;
}

.legal-copy h3 {
  margin: 26px 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.legal-copy p,
.legal-copy li {
  max-width: 900px;
  color: #3f4a43;
  font-size: 16px;
}

.legal-copy a {
  color: var(--green-dark);
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 15px/1.4 Arial, Helvetica, sans-serif;
}

.footer nav {
  display: flex;
  gap: 18px;
}

.footer a {
  text-decoration: none;
}

@media (max-width: 820px) {
  .topbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 500px;
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .times-grid div {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .brand {
    align-items: flex-start;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .button {
    width: 100%;
  }
}
