:root {
  --ink: #183d36;
  --ink-soft: #4c625b;
  --green: #0c5c45;
  --green-deep: #073b2f;
  --green-pale: #e4eee8;
  --red: #9f3027;
  --wheat: #d6a34d;
  --paper: #f7f5ef;
  --white: #fffdfa;
  --line: #d8dfd8;
  --shadow: 0 18px 50px rgba(25, 51, 41, 0.09);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--wheat);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 5;
  padding: 0.6rem 0.9rem;
  background: var(--green-deep);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand-wrap,
.field-banner,
.nav-inner,
.page-intro,
.service-notes,
.about-grid,
.footer-inner {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

.brand-wrap {
  padding: 1.8rem 0 1.5rem;
}

.brand-link {
  display: inline-block;
  line-height: 0;
}

.brand-logo {
  width: min(500px, 100%);
  height: auto;
}

.field-banner {
  width: 100%;
  height: auto;
  max-height: 154px;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  margin-top: 1rem;
  background: var(--green-deep);
}

.nav-inner {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.75rem 1.1rem;
  color: #f7f3e8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 1.1rem;
  bottom: 0.45rem;
  left: 1.1rem;
  height: 2px;
  background: var(--wheat);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

main {
  min-height: 50vh;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: center;
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.about-intro {
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: clamp(2.5rem, 9vw, 9rem);
}

.intro-copy {
  max-width: 660px;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--wheat);
  padding-inline: 0.3rem;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 700px;
  margin-bottom: 1.4rem;
  color: var(--green-deep);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1rem;
  color: var(--green-deep);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

h3 {
  margin-bottom: 0.2rem;
  color: var(--green-deep);
  font-size: 1.05rem;
  line-height: 1.35;
}

p {
  margin-bottom: 1.25rem;
}

.lead {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.image-card,
.portrait-card {
  margin: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card {
  transform: rotate(1.5deg);
}

.image-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.image-card figcaption,
.portrait-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-style: italic;
}

.service-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(4rem, 9vw, 8rem);
  background: var(--line);
  border-block: 1px solid var(--line);
}

.service-notes article {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--green-pale);
}

.service-notes article + article {
  background: #f0e9dc;
}

.service-notes .section-label {
  color: var(--green);
}

.service-notes h2 {
  max-width: 360px;
}

.service-notes p:last-child {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.portrait-card {
  width: min(100%, 220px);
  justify-self: end;
  transform: rotate(-2deg);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 153 / 213;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(4rem, 9vw, 8rem);
  background: var(--line);
  border-block: 1px solid var(--line);
}

.content-section {
  min-width: 0;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
}

.content-section:nth-child(2),
.content-section:nth-child(3) {
  background: #f0e9dc;
}

.content-section p:not(.section-label) {
  color: var(--ink-soft);
}

.content-section h2 {
  max-width: 430px;
}

.clean-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.45;
}

.clean-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.experience-list {
  margin-top: 1.7rem;
}

.experience-item {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.experience-item:last-child {
  border-bottom: 1px solid var(--line);
}

.experience-item p {
  margin-bottom: 0;
}

.experience-date {
  color: var(--red) !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

.site-footer {
  padding: 2.2rem 0;
  background: var(--green-deep);
  color: #eff1e6;
  font-size: 0.82rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.15fr 0.85fr 1.2fr;
  gap: 1rem;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

.footer-contact {
  font-size: 0.78rem;
  line-height: 1.35;
}

.footer-contact p + p {
  margin-top: 0.55rem;
}

.footer-contact span {
  display: block;
  color: #b9c8ba;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a {
  text-underline-offset: 0.2em;
}

.footer-inner nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.footer-inner a {
  color: inherit;
  text-underline-offset: 0.2em;
}

.footer-inner a:hover {
  color: #f0c76f;
}

.copyright {
  text-align: right;
}

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

  .brand-wrap,
  .field-banner,
  .nav-inner,
  .page-intro,
  .service-notes,
  .about-grid,
  .footer-inner {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .brand-wrap {
    padding: 1.25rem 0 1rem;
  }

  .field-banner {
    width: 100%;
    height: 100px;
  }

  .site-nav {
    margin-top: 0.7rem;
  }

  .nav-link {
    padding: 0.65rem 0.8rem;
    font-size: 0.7rem;
  }

  .nav-link::after {
    right: 0.8rem;
    left: 0.8rem;
  }

  .page-intro,
  .about-intro {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.75rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .image-card,
  .portrait-card {
    width: min(100%, 320px);
    align-self: center;
  }

  .service-notes,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-bottom: 3.5rem;
  }

  .content-section {
    padding: 2rem 1.5rem;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    text-align: center;
  }

  .footer-contact {
    order: 2;
  }

  .footer-inner nav {
    justify-content: center;
    order: 3;
  }

  .copyright {
    text-align: center;
    order: 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}