@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/outfit.woff2") format("woff2");
}

@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fraunces-600.woff2") format("woff2");
}

:root {
  --pine: #1e3a2f;
  --pine-deep: #12241c;
  --pine-mid: #2c4a3d;
  --cream: #f4efe6;
  --paper: #faf7f2;
  --ink: #1a1612;
  --muted: #6b6358;
  --sunset: #c45c26;
  --sunset-dark: #a84c1e;
  --line: #ddd4c6;
  --sand: #e8dfd0;
  --ivory: #fffdf8;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --shadow: 0 1px 2px rgb(26 22 18 / 0.06), 0 8px 24px rgb(26 22 18 / 0.06);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.55;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.15;
  font-weight: 600;
  margin: 0;
}

p {
  text-wrap: pretty;
}

.wrap {
  width: min(72rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(250 247 242 / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.site-header.is-home {
  position: fixed;
  inset: 0 0 auto 0;
  background: transparent;
  box-shadow: none;
}

.site-header.is-home.scrolled,
.site-header.open {
  background: rgb(250 247 242 / 0.95);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.wordmark strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--pine);
}

.wordmark span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.site-header.is-home:not(.scrolled):not(.open) .wordmark strong,
.site-header.is-home:not(.scrolled):not(.open) .nav-links a,
.site-header.is-home:not(.scrolled):not(.open) .phone-link,
.site-header.is-home:not(.scrolled):not(.open) .menu-btn {
  color: var(--cream);
}

.site-header.is-home:not(.scrolled):not(.open) .wordmark span {
  color: rgb(244 239 230 / 0.7);
}

.nav-links {
  display: none;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pine);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pine);
}

.menu-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--pine);
  font-size: 1.4rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 2rem;
}

.site-header.open .mobile-nav {
  display: flex;
  background: var(--pine);
  color: var(--cream);
  margin: 0 calc(50% - 50vw);
  padding: 1.5rem 1.25rem 2rem;
}

.mobile-nav a {
  padding: 0.75rem;
  font-size: 1.1rem;
  color: var(--cream);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.35rem;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--sunset);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--sunset-dark);
}

.btn-secondary {
  background: var(--pine);
  color: var(--cream);
}

.btn-cream {
  background: var(--cream);
  color: var(--pine);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  background: var(--pine-deep);
}

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

.hero > picture,
.page-hero > picture {
  position: absolute;
  inset: 0;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: rgb(18 36 28 / 0.55);
}

.hero-copy {
  position: relative;
  padding: 8rem 0 4rem;
}

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sunset);
  margin: 0 0 0.75rem;
}

.hero .kicker {
  color: rgb(244 239 230 / 0.75);
}

.display {
  font-size: clamp(2.75rem, 1.4rem + 4.2vw, 5.25rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.headline {
  font-size: clamp(2rem, 1.2rem + 2.4vw, 3.35rem);
  color: var(--pine);
}

.title {
  font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2.15rem);
}

.lede {
  max-width: 38rem;
  font-size: 1.15rem;
  color: rgb(244 239 230 / 0.85);
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.page-hero {
  position: relative;
  color: var(--cream);
  background: var(--pine-deep);
  overflow: hidden;
}

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

.page-hero .wrap {
  position: relative;
  padding: 6rem 0 4rem;
}

.page-hero .lede {
  color: rgb(244 239 230 / 0.8);
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.fact {
  padding: 1.4rem 1.25rem;
  border-right: 1px solid var(--line);
}

.fact:nth-child(2n) {
  border-right: 0;
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pine);
}

.fact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cream);
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--pine);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 4.5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 28rem;
}

.muted {
  color: var(--muted);
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1.25rem;
  outline: 1px solid rgb(26 22 18 / 0.1);
  outline-offset: -1px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--pine);
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.mosaic picture,
.gallery picture,
figure picture,
.split > picture {
  display: block;
  width: 100%;
}

.mosaic img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.75rem;
}

.band {
  background: var(--cream);
}

.band-pine {
  background: var(--pine);
  color: var(--cream);
}

.band-deep {
  background: var(--pine-deep);
  color: var(--cream);
}

.quote {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.list-rows {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.list-rows li {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.spec dt {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.spec {
  border-block: 1px solid var(--line);
}

.spec > div {
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  gap: 0.4rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.year {
  color: var(--sunset);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.columns {
  columns: 2;
  gap: 2rem;
}

.columns li {
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  list-style: none;
}

.columns {
  padding: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.chip {
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
}

.chip.active {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
}

.gallery {
  display: grid;
  gap: 0.75rem;
}

.gallery button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.75rem;
}

.form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--ivory);
  color: var(--ink);
  font: inherit;
  padding: 0.7rem 0.85rem;
  margin-bottom: 1rem;
}

textarea {
  min-height: 8rem;
}

.map {
  width: 100%;
  height: 16rem;
  border: 0;
  border-radius: 1.25rem;
}

.site-footer {
  background: var(--pine-deep);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0;
}

.site-footer .wordmark strong,
.site-footer .wordmark span {
  color: var(--cream);
}

.site-footer .wordmark span {
  color: rgb(244 239 230 / 0.7);
}

.fine {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  color: rgb(244 239 230 / 0.45);
  font-size: 0.75rem;
  padding: 1.1rem 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgb(18 36 28 / 0.95);
  z-index: 80;
  display: none;
  flex-direction: column;
  color: var(--cream);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: calc(100svh - 6rem);
  max-width: min(96vw, 1100px);
  margin: auto;
  object-fit: contain;
}

.lightbox-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 800px) {
  .nav-links,
  .header-cta {
    display: flex;
  }

  .menu-btn,
  .mobile-nav,
  .site-header.open .mobile-nav {
    display: none;
  }

  .facts {
    grid-template-columns: repeat(4, 1fr);
  }

  .fact:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .fact:last-child {
    border-right: 0;
  }

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

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .spec > div,
  .timeline li {
    grid-template-columns: 10rem 1fr;
  }

  .columns {
    columns: 3;
  }

  .form {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}
