:root {
  --green: #3e621a;
  --green-dark: #2a4512;
  --green-mid: #4f7a24;
  --green-soft: #e7efe0;
  --green-wash: rgba(62, 98, 26, 0.08);
  --orange: #f0910d;
  --orange-dark: #c77408;
  --orange-soft: #fde8c8;
  --cream: #f6f1e8;
  --paper: #fffdf9;
  --ink: #3e621a;
  --muted: #5d7348;
  --line: rgba(62, 98, 26, 0.16);
  --shadow: 0 18px 40px rgba(42, 69, 18, 0.08);
  --radius: 22px;
  --header-h: 4.6rem;
  --max: 72rem;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: clamp(1.02rem, 0.96rem + 0.28vw, 1.125rem);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 auto auto 0;
  width: 8px;
  height: 100%;
  background: var(--orange);
  z-index: 40;
  display: none;
}

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

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange-dark);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  background: var(--green);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.4rem 0.7rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.brand-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--green);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle span::after {
  transform: translate(-50%, calc(-50% + 6px));
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.15rem;
  justify-content: flex-end;
}

.site-nav a {
  display: block;
  padding: 0.45rem 0.7rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--orange-dark);
  background: var(--orange-soft);
  text-decoration: none;
}

.site-main {
  flex: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 4vw, 4.2rem) 1.4rem 2.2rem 1.8rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: min(28rem, 70vw);
  height: min(28rem, 70vw);
  background: var(--orange);
  opacity: 0.16;
  right: -6rem;
  top: -8rem;
}

.hero::after {
  width: min(16rem, 42vw);
  height: min(16rem, 42vw);
  background: var(--green);
  opacity: 0.14;
  right: 4rem;
  top: 5rem;
}

.hero-inner,
.section,
.legal {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  display: inline-block;
  color: var(--orange-dark);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.7rem;
}

h1,
h2,
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--green-dark);
  margin: 0 0 0.8rem;
}

.hero-title {
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.6rem);
  max-width: 14ch;
}

.lede {
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  max-width: 38rem;
  color: var(--muted);
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  border-color: var(--orange-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-ghost:hover {
  background: var(--green);
  color: #fff;
}

.section {
  /*padding: 0 1.4rem 3.4rem 1.8rem;*/
  padding: 0 0 3.4rem 0;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 2vw, 2.2rem);
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.7fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.2fr);
}

.portrait-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 22rem);
}

.portrait-wrap::before,
.portrait-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.portrait-wrap::before {
  width: 72%;
  height: 72%;
  background: var(--orange);
  right: -8%;
  top: -7%;
}

.portrait-wrap::after {
  width: 46%;
  height: 46%;
  background: var(--green);
  left: -8%;
  bottom: 4%;
}

.portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #c9b8a6;
}

.prose p {
  margin: 0 0 1rem;
}

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

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

.quote {
  margin: 0 0 1.6rem;
  padding: 1.2rem 1.3rem 1.2rem 1.5rem;
  border-left: 6px solid var(--orange);
  background: var(--green-soft);
  border-radius: 0 18px 18px 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.7rem);
  line-height: 1.35;
  color: var(--green-dark);
}

.timeline {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 0.9rem;
  align-items: start;
}

.timeline time {
  font-weight: 700;
  color: var(--orange-dark);
  font-size: 0.92rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.25rem 1.3rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.18;
  right: -1.4rem;
  top: -1.6rem;
}

.card h2,
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.price-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.price-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 1.7rem + 1.6vw, 3.1rem);
  line-height: 1;
  color: var(--green-dark);
  margin: 0.35rem 0 0.2rem;
}

.price-card span {
  color: var(--muted);
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.gallery a {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery a:hover img {
  transform: scale(1.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow);
}

.contact-card dt {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 0.35rem;
}

.contact-card dd {
  margin: 0;
  font-weight: 600;
}

.contact-card a {
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.map-link {
  margin-top: 1.2rem;
}

.legal {
  padding: 0 1.4rem 3.4rem 1.8rem;
}

.legal h1 {
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.5rem);
}

.legal h2 {
  font-size: 1.25rem;
  margin: 1.6rem 0 0.5rem;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li {
  margin-bottom: 0.35rem;
}

.site-footer {
  margin-top: auto;
  border-top: 8px solid var(--orange);
  background: var(--green-dark);
  color: #e7efe0;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 1.4rem 1.6rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 32, 10, 0.88);
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 3.5rem 1rem 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  max-height: 100%;
}

.lightbox-figure img {
  max-height: calc(100vh - 6rem);
  max-width: min(100%, 70rem);
  margin: 0 auto;
  border-radius: 12px;
}

.lightbox-figure figcaption {
  color: #fff;
  text-align: center;
  margin-top: 0.6rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  width: 2.6rem;
  height: 2.6rem;
  line-height: 1;
}

.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  font-size: 2.6rem;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 28rem;
    visibility: visible;
    overflow: auto;
    box-shadow: 0 16px 28px rgba(42, 69, 18, 0.08);
  }

  .site-nav ul {
    display: grid;
    padding: 0.6rem 1rem 1rem 1.2rem;
    gap: 0.2rem;
    justify-content: stretch;
    justify-items: stretch;
  }

  .site-nav a {
    padding: 0.7rem 0.8rem;
    text-align: left;
  }

  .split,
  .split.reverse,
  .columns,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

@media (max-width: 640px) {
  body::before {
    width: 100%;
    height: 6px;
  }

  .header-inner,
  .hero,
  .section,
  .legal,
  .footer-inner {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }

  .hero-title {
    max-width: none;
  }

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

  .lightbox {
    grid-template-columns: 1fr;
    padding: 3.2rem 0.7rem 4.2rem;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    bottom: 0.6rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
