:root {
  --ink: #12161d;
  --navy: #1b2430;
  --paper: #f4f0e8;
  --ivory: #faf7f1;
  --stone: #d9d1c4;
  --brass: #b08d57;
  --mute: #6a645b;
  --line: rgba(18, 22, 29, 0.12);
  --shadow: 0 28px 70px rgba(18, 22, 29, 0.16);
  --display: "Newsreader", "Iowan Old Style", Palatino, serif;
  --sans: "Manrope", "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
.shell { width: min(100% - 2.5rem, 74rem); margin-inline: auto; }
.display { font-family: var(--display); font-weight: 500; letter-spacing: -0.03em; line-height: 1.08; }
.kicker {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass); font-weight: 600;
}
.lead { font-size: 1.12rem; color: var(--mute); max-width: 38rem; line-height: 1.7; }
.banner-sample {
  background: var(--ink); color: var(--paper); font-size: 0.8rem;
  padding: 0.45rem 1rem; text-align: center;
}
.banner-sample a { color: var(--brass); }
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.4rem; }
.brand { display: flex; align-items: baseline; gap: 0.5rem; text-decoration: none; }
.brand strong { font-family: var(--display); font-size: 1.55rem; font-weight: 500; }
.brand span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); }
.nav-links { display: none; gap: 1.45rem; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.88rem; color: var(--mute); }
.nav-links a:hover, .nav-links a[aria-current="page"]:not(.btn) { color: var(--ink); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary[aria-current="page"] {
  color: var(--paper);
  background: var(--ink);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.72rem 1.2rem; border-radius: 0; text-decoration: none; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.nav-toggle {
  display: inline-flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
}
@media (min-width: 920px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}
.nav-mobile { display: none; flex-direction: column; gap: 0.65rem; padding: 0 1.25rem 1.2rem; }
.nav-mobile.open { display: flex; }
.hero-bleed {
  position: relative; min-height: min(88vh, 46rem);
  display: grid; align-items: end; color: var(--paper);
  overflow: hidden;
}
.hero-bleed img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-bleed::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(18,22,29,0.15) 20%, rgba(18,22,29,0.72) 100%);
}
.hero-bleed .copy { position: relative; z-index: 2; padding: 4rem 0 3.5rem; }
.hero-bleed h1 { font-size: clamp(3rem, 7vw, 5.4rem); margin: 0.5rem 0 1rem; max-width: 16ch; }
.hero-bleed .lead { color: color-mix(in srgb, var(--paper) 82%, transparent); }
.hero-bleed .kicker { color: var(--brass); }
.section { padding: 4.6rem 0; }
.section-tight { padding: 2.6rem 0 4.2rem; }
.section-dark { background: var(--navy); color: var(--paper); }
.section-dark .lead, .section-dark .meta { color: color-mix(in srgb, var(--paper) 72%, transparent); }
.section-dark .kicker { color: var(--brass); }
.grid-2, .grid-3 { display: grid; gap: 1.35rem; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--paper); border: 1px solid var(--line); padding: 1.45rem 1.4rem;
}
.card h2, .card h3 { font-family: var(--display); font-size: 1.5rem; margin: 0.3rem 0 0.5rem; font-weight: 500; }
.listing {
  display: grid; gap: 0.85rem; text-decoration: none; color: inherit;
}
.listing img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow);
}
.listing h3 { margin: 0.15rem 0 0; font-family: var(--display); font-size: 1.45rem; font-weight: 500; }
.listing p { margin: 0; color: var(--mute); font-size: 0.92rem; }
.meta-row {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1rem;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute);
}
.price { font-family: var(--display); font-size: 1.55rem; margin: 0.2rem 0; }
.feature {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
  .feature.reverse { grid-template-columns: 0.9fr 1.1fr; }
  .feature.reverse .copy { order: -1; }
}
.feature img { width: 100%; box-shadow: var(--shadow); object-fit: cover; }
.quote {
  font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.28; margin: 0; font-weight: 500;
}
.meta { color: var(--mute); font-size: 0.9rem; margin-top: 0.75rem; }
.form { display: grid; gap: 0.9rem; max-width: 32rem; }
.form label { display: grid; gap: 0.35rem; font-size: 0.82rem; color: var(--mute); letter-spacing: 0.04em; }
.form input, .form select, .form textarea {
  font: inherit; color: var(--ink); background: white; border: 1px solid var(--line);
  border-radius: 0; padding: 0.75rem 0.85rem;
}
.form textarea { min-height: 8rem; resize: vertical; }
.form .btn { justify-self: start; }
.form-success {
  background: var(--paper); border: 1px solid var(--line);
  padding: 1.4rem 1.35rem; max-width: 32rem; outline: none;
}
.specs {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.5rem;
  margin: 1.4rem 0;
}
@media (min-width: 640px) { .specs { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.spec dt { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); }
.spec dd { margin: 0.25rem 0 0; font-family: var(--display); font-size: 1.35rem; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.4rem 0 1.8rem; }
.filter {
  border: 1px solid var(--line); background: transparent; font: inherit;
  padding: 0.45rem 0.85rem; cursor: pointer; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.72rem; font-weight: 600;
}
.filter[aria-pressed="true"], .filter:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.listing.is-hidden { display: none; }
.prose { max-width: 40rem; }
.prose p + p { margin-top: 1rem; }
.list { margin: 0; padding-left: 1.1rem; color: var(--mute); }
.list li + li { margin-top: 0.4rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.gallery { display: grid; gap: 1rem; }
@media (min-width: 800px) { .gallery { grid-template-columns: 1.4fr 1fr; } }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.page-head { padding: 3.5rem 0 1.5rem; }
.page-head h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin: 0.4rem 0 0.8rem; }
.footer {
  border-top: 1px solid var(--line); padding: 2.6rem 0 2rem; margin-top: 2rem;
  color: var(--mute); font-size: 0.92rem;
}
.footer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.legal { margin-top: 1.5rem; font-size: 0.76rem; }
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(18,22,29,0.92);
  z-index: 80; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.2rem; background: transparent; border: 0;
  color: white; font-size: 1.6rem; cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
  html { scroll-behavior: auto; }
}
