:root {
  --paper: #f7f8ef;
  --paper-deep: #e8ecd3;
  --ink: #3b2b25;
  --muted: #647056;
  --moss: #163502;
  --sage: #557311;
  --lime: #bac146;
  --lime-soft: #e5e9a8;
  --lime-pale: #f3f5d5;
  --coral: #db535f;
  --coral-deep: #b9414b;
  --coral-soft: #f7d8d3;
  --earth: #3b2b25;
  --line: rgba(85, 115, 17, 0.22);
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(59, 43, 37, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(85, 115, 17, 0.08), rgba(186, 193, 70, 0.1) 520px, transparent 900px),
    var(--paper);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px clamp(22px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 2px solid rgba(85, 115, 17, 0.34);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.brand small,
.footer-brand small {
  display: block;
  color: var(--sage);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--sage);
  border-color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 53, 2, 0.12), rgba(85, 115, 17, 0.18) 46%, rgba(59, 43, 37, 0.72)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 44px));
  margin: 0 clamp(22px, 7vw, 96px) 72px;
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #eef2c9;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  font-size: clamp(38px, 5.7vw, 64px);
}

h2 {
  font-size: clamp(34px, 5vw, 54px);
}

h3 {
  font-size: 28px;
}

p {
  margin: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 23px;
  color: var(--white);
  background: var(--moss);
  border: 1px solid var(--moss);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.button-secondary {
  color: var(--white);
  background: rgba(22, 53, 2, 0.45);
  border-color: rgba(255, 253, 247, 0.74);
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 128px) 0;
}

.intro.section {
  padding: clamp(48px, 7vw, 82px) 0;
}

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

.intro-layout {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
}

.intro h2,
.section-heading h2,
.split-copy h2 {
  margin-bottom: 24px;
}

.intro h2 {
  color: var(--sage);
}

.intro p,
.split-copy p,
.section-heading p {
  color: var(--muted);
  max-width: 760px;
}

.intro p {
  font-size: 16px;
  line-height: 1.65;
}

.intro p + p,
.split-copy p + p {
  margin-top: 18px;
}

.intro-copy {
  display: grid;
  align-content: center;
}

.quiet-card {
  max-width: 760px;
  margin-top: clamp(20px, 3vw, 30px);
  padding: clamp(22px, 3.5vw, 34px);
  background: var(--lime-pale);
  border-left: 5px solid var(--lime);
}

.profile-card {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--paper-deep);
}

.profile-card img {
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.intro .quote {
  color: var(--moss);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.8vw, 34px);
  font-weight: 600;
  line-height: 1.22;
}

.split {
  width: 100%;
  max-width: none;
  padding-right: clamp(22px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(85, 115, 17, 0.1), transparent 42%),
    var(--white);
}

.split-media {
  min-height: 560px;
}

.split-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.split-copy {
  max-width: 560px;
  padding: 74px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--sage);
  box-shadow: var(--shadow);
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card div {
  padding: 28px;
}

.card h3 {
  margin-bottom: 14px;
  color: var(--moss);
}

.card p {
  color: var(--muted);
  font-size: 16px;
}

.quote-section {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 80px 22px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(22, 53, 2, 0.56), rgba(85, 115, 17, 0.34) 52%, rgba(59, 43, 37, 0.72)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.quote-section div {
  max-width: 900px;
}

.quote-section p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.08;
}

.quote-section span {
  display: block;
  margin-top: 26px;
  color: var(--lime);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resources {
  padding-bottom: 100px;
}

.resource-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.resource-list a {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) 1fr;
  gap: 32px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.resource-list a:hover strong {
  color: var(--sage);
}

.resource-list strong {
  color: var(--moss);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.15;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 52px clamp(22px, 5vw, 72px);
  background: var(--paper-deep);
  border-top: 4px solid var(--sage);
}

.footer-contact {
  display: grid;
  gap: 4px;
  color: var(--muted);
  text-align: right;
}

.footer-contact p {
  color: var(--ink);
  font-weight: 700;
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copyright {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.construction-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(22, 53, 2, 0.5), rgba(59, 43, 37, 0.68)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.construction-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.construction-card {
  width: min(620px, 100%);
  padding: clamp(34px, 6vw, 58px);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  border-top: 5px solid var(--sage);
  box-shadow: var(--shadow);
  text-align: center;
}

.construction-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  object-fit: cover;
}

.construction-card h1 {
  margin-bottom: 20px;
  color: var(--moss);
  font-size: clamp(48px, 8vw, 78px);
}

.construction-card p:not(.eyebrow) {
  max-width: 480px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.construction-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.construction-actions .button-secondary {
  color: var(--moss);
  background: transparent;
  border-color: var(--sage);
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 22px;
    left: 22px;
    display: none;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 650px;
  }

  .intro-layout,
  .split,
  .cards,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .profile-card img {
    min-height: 340px;
  }

  .split {
    padding-right: 0;
  }

  .split-copy {
    width: min(100% - 44px, 760px);
    max-width: none;
    margin: 0 auto;
  }

  .resource-list a {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .hero {
    align-items: start;
  }

  .hero-content {
    margin: 72px 22px 0;
  }

  h1 {
    font-size: 34px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 18px;
  }

  .split-media,
  .split-media img {
    min-height: 380px;
  }

  .profile-card img {
    min-height: 300px;
  }

  .card div {
    padding: 24px;
  }
}
