:root {
  --green: #4a715a;
  --green-deep: #294b38;
  --green-dark: #173325;
  --cream: #fffed7;
  --cream-soft: #fbfae9;
  --ink: #0f0f0f;
  --ink-soft: #403a3e;
  --white: #ffffff;
  --line: rgba(15, 15, 15, 0.15);
  --line-light: rgba(255, 255, 255, 0.25);
  --shadow: 0 28px 80px rgba(15, 15, 15, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1380px, calc(100% - 64px));
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3.25rem, 5.3vw, 6.7rem);
}

h2 {
  font-size: clamp(2.5rem, 4.2vw, 5rem);
}

h3 {
  font-size: clamp(1.75rem, 2.2vw, 2.65rem);
}

::selection {
  color: var(--white);
  background: var(--green);
}

:focus-visible {
  outline: 3px solid #f2bb62;
  outline-offset: 4px;
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(88px, 9vw, 150px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--cream);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.button-secondary {
  color: var(--green-deep);
  background: transparent;
  border-color: rgba(41, 75, 56, 0.4);
}

.button-secondary:hover {
  background: rgba(74, 113, 90, 0.08);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(15, 15, 15, 0.14);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(15, 15, 15, 0.42);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link svg,
.button-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.text-link:hover svg,
.button-submit:hover svg {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.header-inner {
  display: flex;
  width: min(1480px, calc(100% - 56px));
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  transition: min-height 220ms ease, border-color 220ms ease;
}

.brand-link {
  position: relative;
  display: block;
  width: clamp(220px, 20vw, 340px);
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand-logo-dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 34px);
}

.primary-nav > a:not(.button) {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav-phone {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.button-header {
  color: var(--green-deep);
  background: var(--cream);
}

.menu-toggle {
  display: none;
}

.site-header.scrolled {
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 40px rgba(15, 15, 15, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.scrolled .header-inner {
  min-height: 76px;
  border-color: transparent;
}

.site-header.scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.scrolled .brand-logo-dark {
  opacity: 1;
}

.site-header.scrolled .nav-phone {
  border-color: rgba(41, 75, 56, 0.25);
}

.site-header.scrolled .button-header {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--ink) 0 63%, var(--cream-soft) 63% 100%);
}

.hero-media {
  position: absolute;
  inset: 0 37% 0 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  animation: hero-settle 1.4s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0 37% 0 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.76) 0%, rgba(15, 15, 15, 0.25) 70%, rgba(15, 15, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.67) 0%, transparent 58%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: clamp(760px, 100svh, 940px);
  grid-template-columns: minmax(0, 1.58fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 6vw, 100px);
  padding-top: 112px;
  padding-bottom: 74px;
}

.hero-copy {
  max-width: 780px;
  padding-top: 22px;
  animation: hero-copy-in 780ms 120ms cubic-bezier(.2, .7, .2, 1) both;
}

.hero-copy .eyebrow {
  margin-bottom: 30px;
}

.hero-copy .eyebrow span {
  display: inline-block;
  padding: 7px 11px;
  color: var(--green-dark);
  background: var(--cream);
  border-radius: 999px;
}

.hero-project-logo {
  width: min(600px, 88%);
  height: auto;
  margin-bottom: 30px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(3.35rem, 5vw, 6rem);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin-bottom: 30px;
}

.hero-price span {
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-price strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(38px, 5vh, 58px);
}

.hero-facts {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  list-style: none;
}

.hero-facts li {
  padding-right: 18px;
}

.hero-facts li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 3px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-form-column {
  color: var(--ink);
  animation: hero-form-in 800ms 220ms cubic-bezier(.2, .7, .2, 1) both;
}

.lead-card {
  width: min(100%, 510px);
  padding: clamp(30px, 3.3vw, 48px);
  margin-left: auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(74, 113, 90, 0.23);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-kicker {
  margin-bottom: 9px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-card h2,
.lead-card h3 {
  margin-bottom: 13px;
  color: var(--green-deep);
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.lead-card h3 {
  margin-bottom: 26px;
}

.form-intro {
  margin-bottom: 25px;
  color: #5e585a;
  font-size: 0.94rem;
  line-height: 1.55;
}

.page-alert {
  padding: 12px 14px;
  margin-bottom: 18px;
  color: #7d241e;
  background: #fff1ef;
  border: 1px solid #f2c4bf;
  border-radius: var(--radius);
  font-size: 0.88rem;
}

.lead-form {
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.field input,
.field select {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9c6c0;
  border-radius: 2px;
  outline: none;
  font-size: 0.95rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input::placeholder {
  color: #96908f;
}

.field input:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 113, 90, 0.13);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #b44238;
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 4px;
  color: #a3342d;
  font-size: 0.73rem;
  line-height: 1.35;
}

.field-error:not(:empty) {
  min-height: 1em;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.button-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button-submit:hover {
  background: var(--green-deep);
}

.button-submit[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-consent {
  margin: 14px 0 0;
  color: #6c6667;
  font-size: 0.68rem;
  line-height: 1.55;
}

.form-consent a {
  color: var(--green-deep);
  font-weight: 700;
}

.form-status {
  margin-top: 12px;
  color: var(--green-deep);
  font-size: 0.83rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-status.error {
  color: #a3342d;
}

.form-status.success {
  color: var(--green-deep);
}

.hero-disclaimer {
  position: absolute;
  z-index: 3;
  bottom: 13px;
  left: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.61rem;
  line-height: 1.3;
}

.story {
  position: relative;
  overflow: hidden;
  background: var(--cream-soft);
}

.story::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 1px;
  content: "";
  background: var(--green);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1.25fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: clamp(38px, 7vw, 105px);
}

.story-mark {
  display: flex;
  justify-content: center;
}

.story-mark img {
  width: clamp(145px, 18vw, 255px);
  max-height: 430px;
  object-fit: contain;
  opacity: 0.93;
}

.story-copy h2 {
  max-width: 850px;
  margin-bottom: 31px;
  color: var(--green-deep);
}

.story-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: #504a4c;
  font-size: 1.04rem;
}

.story-copy .intro-copy {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.75vw, 1.75rem);
  line-height: 1.45;
}

.story-copy blockquote {
  padding-left: 23px;
  margin: 38px 0 0;
  color: var(--green);
  border-left: 2px solid var(--green);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  font-style: italic;
  line-height: 1.25;
}

.story-details {
  padding: 12px 0 12px clamp(24px, 3vw, 50px);
  border-left: 1px solid rgba(74, 113, 90, 0.4);
}

.story-details dl {
  margin: 0;
}

.story-details dl > div {
  padding-block: 18px;
  border-bottom: 1px solid rgba(74, 113, 90, 0.22);
}

.story-details dl > div:first-child {
  padding-top: 0;
}

.story-details dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.story-details dt {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-details dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.45;
}

.collections {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--green-deep);
}

.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: #5b5557;
  font-size: 1.05rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
}

.collection-card {
  position: relative;
  min-height: 445px;
  padding: clamp(32px, 4vw, 58px);
  background: var(--white);
}

.collection-card + .collection-card {
  border-left: 1px solid var(--green);
}

.collection-card.featured {
  color: var(--white);
  background: var(--green);
}

.collection-number {
  display: block;
  margin-bottom: clamp(65px, 8vw, 118px);
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.featured .collection-number {
  color: var(--cream);
}

.collection-card h3 {
  margin-bottom: 18px;
  color: var(--green-deep);
}

.collection-card.featured h3 {
  color: var(--cream);
}

.collection-card > p {
  max-width: 350px;
  color: #645e60;
}

.collection-card.featured > p {
  color: rgba(255, 255, 255, 0.78);
}

.range {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 34px;
}

.range strong {
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.05vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.range span,
.model-count {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.featured .range strong {
  color: var(--cream);
}

.collection-card .model-count {
  margin: 6px 0 0;
  color: var(--green);
}

.collection-card.featured .model-count {
  color: rgba(255, 254, 215, 0.86);
}

.document-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 31px;
}

.document-link-row p {
  margin: 0;
  color: #756f71;
  font-size: 0.74rem;
}

.gallery {
  color: var(--white);
  background: var(--ink);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 0.7fr;
  align-items: end;
  gap: 44px;
  margin-bottom: 58px;
}

.gallery-heading .eyebrow {
  margin-bottom: 5px;
}

.gallery-heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--cream);
}

.gallery-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
  background: #222;
}

.gallery-item-wide {
  grid-row: 1 / span 2;
  min-height: 580px;
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .7, .2, 1), filter 300ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 15, 15, 0.58), transparent 42%);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-item:hover img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.fine-print {
  margin: 22px 0 0;
  color: #777173;
  font-size: 0.68rem;
}

.fine-print-light {
  color: rgba(255, 255, 255, 0.52);
}

.location {
  overflow: hidden;
  background: var(--cream-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}

.location-map {
  position: relative;
}

.location-map::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: 24px;
  bottom: 24px;
  left: -24px;
  content: "";
  border: 1px solid rgba(74, 113, 90, 0.46);
}

.location-map picture {
  position: relative;
  z-index: 1;
  display: block;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(41, 75, 56, 0.12);
}

.location-map img {
  width: 100%;
  height: auto;
}

.location-copy h2 {
  margin-bottom: 26px;
  color: var(--green-deep);
}

.location-copy > p:not(.eyebrow, .fine-print) {
  color: #565052;
  font-size: 1.05rem;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 36px 0 35px;
  border-top: 1px solid rgba(74, 113, 90, 0.42);
  border-left: 1px solid rgba(74, 113, 90, 0.42);
}

.travel-grid > div {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid rgba(74, 113, 90, 0.42);
  border-bottom: 1px solid rgba(74, 113, 90, 0.42);
}

.travel-grid strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.travel-grid span {
  color: #555052;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 10% 18%, rgba(255, 254, 215, 0.09), transparent 30%);
}

.final-mark {
  position: absolute;
  right: -5%;
  bottom: -30%;
  width: min(34vw, 520px);
  opacity: 0.06;
}

.final-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.74fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.final-copy h2 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--cream);
}

.final-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 34px;
}

.contact-links a {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.8rem);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.lead-card-bottom {
  color: var(--ink);
}

.site-footer {
  padding: 80px 0 34px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.35fr;
  gap: 70px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: min(430px, 100%);
  height: auto;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-label {
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact p:not(.footer-label) {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact a,
.footer-links a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  color: var(--white);
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.67rem;
  line-height: 1.55;
}

.footer-legal p:first-child {
  max-width: 940px;
}

.footer-legal p:last-child {
  flex: 0 0 auto;
}

.mobile-sticky-cta {
  display: none;
}

.lightbox {
  width: min(1220px, calc(100% - 42px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  background: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  padding: 6px 0;
  color: var(--white);
  border: 0;
  cursor: pointer;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-banner {
  position: fixed;
  z-index: 220;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  width: min(920px, calc(100% - 44px));
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 22px;
  margin-inline: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(74, 113, 90, 0.35);
  box-shadow: 0 20px 70px rgba(15, 15, 15, 0.25);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.privacy-banner > div {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.utility-page {
  background: var(--cream-soft);
}

.utility-header {
  padding-block: 26px;
  background: var(--white);
  border-bottom: 1px solid rgba(74, 113, 90, 0.26);
}

.utility-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.utility-header img {
  width: min(340px, 50vw);
  height: auto;
}

.policy-wrap {
  max-width: 920px;
  padding-block: clamp(70px, 8vw, 120px);
}

.policy-wrap > h1 {
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.policy-updated {
  margin-bottom: 58px;
  color: #746e70;
}

.policy-wrap section {
  padding-block: 32px;
  border-top: 1px solid rgba(74, 113, 90, 0.28);
}

.policy-wrap section h2 {
  margin-bottom: 15px;
  color: var(--green-deep);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}

.policy-wrap section p {
  color: #4e484a;
}

.utility-footer {
  padding-block: 34px;
  color: var(--white);
  background: var(--ink);
}

.utility-footer > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.utility-footer p {
  margin: 0;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--cream-soft);
}

.thank-you-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
}

.thank-you-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.thank-you-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 60%, rgba(15, 15, 15, 0.22));
}

.thank-you-image picture,
.thank-you-image img {
  width: 100%;
  height: 100%;
}

.thank-you-image img {
  object-fit: cover;
}

.thank-you-card {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(50px, 7vw, 110px);
}

.thank-you-card > a:first-child img {
  width: min(430px, 100%);
  height: auto;
  margin-bottom: clamp(70px, 11vh, 130px);
}

.thank-you-card h1 {
  margin-bottom: 25px;
  color: var(--green-deep);
  font-size: clamp(3rem, 5vw, 5.7rem);
}

.thank-you-card > p:not(.eyebrow, .reference-number, .form-consent) {
  color: #514b4d;
  font-size: 1.08rem;
}

.reference-number {
  padding: 12px 16px;
  margin: 18px 0 0;
  color: var(--green-deep);
  background: rgba(74, 113, 90, 0.1);
  border-left: 3px solid var(--green);
  font-size: 0.86rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@keyframes hero-settle {
  from { opacity: 0.55; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-form-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1240px) {
  :root {
    --page: min(1180px, calc(100% - 48px));
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.72rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.8fr);
    gap: 42px;
  }

  .hero-media,
  .hero-shade {
    right: 39%;
  }

  .hero {
    background: linear-gradient(90deg, var(--ink) 0 61%, var(--cream-soft) 61% 100%);
  }

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

  .story-grid {
    grid-template-columns: 145px minmax(0, 1fr) 260px;
    gap: 45px;
  }

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

@media (max-width: 1040px) {
  .primary-nav > a:not(.button, .nav-phone) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5.8vw, 4.9rem);
  }

  .hero-facts li:nth-child(2) {
    display: none;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: minmax(0, 1fr) 270px;
  }

  .story-mark {
    display: none;
  }

  .collection-card {
    min-height: 420px;
    padding: 34px;
  }

  .collection-number {
    margin-bottom: 72px;
  }

  .location-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.8fr);
    gap: 48px;
  }

  .travel-grid strong {
    font-size: 2.45rem;
  }

  .final-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 50px;
  }
}

@media (max-width: 860px) {
  :root {
    --page: calc(100% - 38px);
  }

  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-bottom: 58px;
  }

  .section-pad {
    padding-block: 82px;
  }

  .header-inner {
    width: calc(100% - 38px);
    min-height: 78px;
  }

  .brand-link {
    width: min(270px, 68vw);
  }

  .menu-toggle {
    position: relative;
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 110px 34px 60px;
    color: var(--green-deep);
    background: var(--cream-soft);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.open {
    z-index: -1;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .primary-nav > a:not(.button),
  .primary-nav > a:not(.button, .nav-phone) {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 8vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-nav > a:not(.button)::after {
    bottom: -3px;
  }

  .nav-phone {
    padding: 22px 0 0;
    border-top: 1px solid rgba(74, 113, 90, 0.25);
    border-left: 0;
  }

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

  .site-header.menu-active {
    color: var(--green-deep);
  }

  .site-header.menu-active .brand-logo-light {
    opacity: 0;
  }

  .site-header.menu-active .brand-logo-dark {
    opacity: 1;
  }

  .hero {
    min-height: 0;
    color: var(--white);
    background: var(--cream-soft);
  }

  .hero-media,
  .hero-shade {
    inset: 0 0 auto;
    height: clamp(590px, 78svh, 760px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 15, 15, 0.64), rgba(15, 15, 15, 0.15)),
      linear-gradient(0deg, rgba(15, 15, 15, 0.8), transparent 65%);
  }

  .hero-grid {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .hero-copy {
    display: flex;
    min-height: clamp(590px, 78svh, 760px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 120px 0 40px;
  }

  .hero-project-logo {
    width: min(570px, 92%);
    margin-bottom: 24px;
  }

  .hero h1 {
    max-width: 670px;
    font-size: clamp(3.3rem, 11vw, 5.5rem);
  }

  .hero-lead {
    max-width: 650px;
  }

  .hero-facts {
    width: 100%;
    max-width: 560px;
  }

  .hero-form-column {
    padding: 28px 0 76px;
    color: var(--ink);
  }

  .lead-card {
    width: 100%;
    max-width: 650px;
    padding: clamp(27px, 7vw, 46px);
    margin-inline: auto;
    box-shadow: 0 20px 54px rgba(41, 75, 56, 0.12);
  }

  .hero-disclaimer {
    display: none;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .story-details {
    padding: 0;
    border-top: 1px solid rgba(74, 113, 90, 0.4);
    border-left: 0;
  }

  .story-details dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-details dl > div {
    padding: 20px 14px 20px 0;
  }

  .story-details dl > div:nth-child(odd) {
    border-right: 1px solid rgba(74, 113, 90, 0.22);
  }

  .story-details dl > div:nth-child(even) {
    padding-left: 22px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .collection-card {
    min-height: 0;
    padding: 38px;
  }

  .collection-card + .collection-card {
    border-top: 1px solid var(--green);
    border-left: 0;
  }

  .collection-number {
    margin-bottom: 45px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-heading .eyebrow {
    margin-bottom: 0;
  }

  .gallery-heading > p:last-child {
    max-width: 600px;
  }

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

  .gallery-item-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 450px;
  }

  .gallery-item {
    min-height: 240px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .location-map {
    margin-left: 18px;
  }

  .location-copy {
    max-width: 700px;
  }

  .final-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .final-copy {
    max-width: 720px;
  }

  .lead-card-bottom {
    max-width: 650px;
    margin: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px calc(13px + env(safe-area-inset-bottom));
    color: var(--green-dark);
    background: var(--cream);
    border-top: 1px solid rgba(41, 75, 56, 0.3);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 -8px 30px rgba(15, 15, 15, 0.12);
  }

  .thank-you-shell {
    grid-template-columns: 1fr;
  }

  .thank-you-image {
    min-height: 42vh;
  }

  .thank-you-card {
    max-width: 760px;
    padding: 68px 28px 90px;
  }

  .thank-you-card > a:first-child img {
    margin-bottom: 70px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    font-size: 0.98rem;
  }

  .section-pad {
    padding-block: 70px;
  }

  .header-inner {
    width: calc(100% - 30px);
  }

  .hero-media,
  .hero-shade,
  .hero-copy {
    min-height: 0;
    height: 670px;
  }

  .hero-media img {
    object-position: 54% center;
  }

  .hero-copy {
    height: 670px;
    padding: 115px 0 29px;
  }

  .hero-copy .eyebrow {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.64rem;
  }

  .hero-copy .eyebrow::before {
    width: 24px;
  }

  .hero-project-logo {
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.85rem, 13vw, 4.25rem);
  }

  .hero-lead {
    margin-bottom: 17px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero-price {
    margin-bottom: 19px;
  }

  .hero-price strong {
    font-size: 1.65rem;
  }

  .hero-actions {
    width: 100%;
    margin-bottom: 24px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.72rem;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .hero-facts {
    padding-top: 14px;
  }

  .hero-facts strong {
    font-size: 1.25rem;
  }

  .hero-facts span {
    font-size: 0.61rem;
  }

  .lead-card h2,
  .lead-card h3 {
    font-size: 2.15rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-copy h2,
  .section-heading h2,
  .gallery-heading h2,
  .location-copy h2,
  .final-copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.55rem);
  }

  .story-copy .intro-copy {
    font-size: 1.28rem;
  }

  .story-details dl {
    grid-template-columns: 1fr;
  }

  .story-details dl > div,
  .story-details dl > div:first-child,
  .story-details dl > div:nth-child(even) {
    padding: 18px 0;
    border-right: 0;
  }

  .document-link-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .gallery-item-wide,
  .gallery-item {
    min-height: 245px;
    grid-column: auto;
  }

  .location-map {
    margin-left: 12px;
  }

  .location-map::before {
    top: -12px;
    right: 12px;
    bottom: 12px;
    left: -12px;
  }

  .travel-grid > div {
    min-height: 108px;
    padding: 14px;
  }

  .travel-grid strong {
    font-size: 2.2rem;
  }

  .travel-grid span {
    font-size: 0.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .privacy-banner {
    right: 12px;
    bottom: 72px;
    left: 12px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
  }

  .privacy-banner > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .utility-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .utility-footer > div {
    flex-direction: column;
  }

  .thank-you-actions {
    width: 100%;
    flex-direction: column;
  }

  .thank-you-actions .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .hero-media,
  .hero-shade,
  .hero-copy {
    height: 640px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-lead {
    font-size: 0.91rem;
  }

  .hero-facts li {
    padding-right: 10px;
  }

  .hero-facts li + li {
    padding-left: 12px;
  }

  .collection-card {
    padding: 30px 25px;
  }

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

  .privacy-banner > div {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 861px) and (max-height: 800px) {
  .hero-grid {
    min-height: 800px;
    padding-top: 100px;
    padding-bottom: 42px;
  }

  .hero-project-logo {
    width: min(470px, 78%);
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 4.4vw, 4.5rem);
  }

  .hero-lead {
    margin-bottom: 17px;
    font-size: 1rem;
  }

  .hero-price,
  .hero-actions {
    margin-bottom: 19px;
  }

  .lead-card {
    padding: 28px 32px;
  }

  .lead-card h2 {
    font-size: 2.2rem;
  }

  .form-intro {
    margin-bottom: 16px;
  }

  .field {
    margin-bottom: 9px;
  }

  .field input,
  .field select {
    min-height: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
