:root {
  --ink: #151411;
  --ink-soft: #24221d;
  --paper: #f3f0e8;
  --sand: #e6ddce;
  --white: #fffdf8;
  --rust: #b95734;
  --rust-dark: #944126;
  --brass: #c9a86a;
  --line: rgba(21, 20, 17, 0.18);
  --line-light: rgba(255, 253, 248, 0.2);
  --text-soft: #625e55;
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

img,
video {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6.5vw, 7.25rem);
}

.hero h1 span {
  color: var(--brass);
}

h2 {
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 5vw, 5.6rem);
}

h3 {
  line-height: 1.15;
}

.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: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--rust);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 86px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 253, 248, 0.25);
}

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

.brand__mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.brand__text {
  padding-left: 0.85rem;
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-left: 1px solid currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 0.75rem 0;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.button {
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  border-radius: 2px;
  color: inherit;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
}

.button--header {
  min-height: 44px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--text {
  min-height: auto;
  padding: 0.75rem 0;
  color: var(--white);
  border-bottom-color: rgba(255, 253, 248, 0.45);
}

.button--text span {
  color: var(--brass);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.55);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero {
  min-height: min(880px, 100vh);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  color: var(--white);
  background: var(--ink);
}

.hero__content {
  padding: clamp(9.5rem, 16vh, 12rem) var(--pad) clamp(4rem, 9vh, 7rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow,
.kicker,
.section-tag,
.reel-stage__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brass);
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 2rem;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
}

.hero__actions {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__address {
  margin: 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: rgba(21, 20, 17, 0.12);
  content: "";
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  min-width: 260px;
  padding: 1.35rem 1.6rem;
  display: grid;
  color: var(--ink);
  background: var(--paper);
}

.hero__visual figcaption span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__visual figcaption strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.fact-bar {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.fact-bar div {
  min-height: 150px;
  padding: 1.75rem clamp(1rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.fact-bar div:first-child {
  border-left: 1px solid var(--line);
}

.fact-bar strong {
  margin-bottom: 0.15rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.fact-bar span {
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
}

.section > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

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

.section--sand {
  background: var(--sand);
}

.section-tag {
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding-bottom: 0.9rem;
  color: var(--rust);
  border-bottom: 1px solid var(--line);
}

.section-tag--light {
  color: var(--brass);
  border-bottom-color: var(--line-light);
}

.kicker {
  margin-bottom: 1rem;
  color: var(--rust);
}

.kicker--brass {
  color: var(--brass);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.story__copy p:not(.kicker) {
  max-width: 650px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.text-link {
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  display: inline-block;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.story__image,
.details__photo,
.location__photo {
  margin: 0;
}

.story__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story__image figcaption,
.details__photo figcaption,
.location__photo figcaption {
  padding-top: 0.75rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit__heading {
  max-width: 960px;
  margin-right: 0;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  margin-left: auto;
}

.fit__heading > p:last-child {
  max-width: 650px;
  color: rgba(255, 253, 248, 0.66);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.fit-card {
  min-height: 300px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.fit-card--feature {
  grid-column: span 2;
  background: var(--rust);
}

.fit-card__number {
  margin-bottom: auto;
  color: var(--brass);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.fit-card--feature .fit-card__number {
  color: var(--white);
}

.fit-card h3 {
  max-width: 500px;
  margin-bottom: 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  font-weight: 500;
}

.fit-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.9rem;
}

.fit-card--feature p {
  color: rgba(255, 253, 248, 0.84);
}

.details__intro {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.details__intro h2 {
  margin-bottom: 0;
}

.details__intro > p {
  color: var(--text-soft);
}

.details__layout {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.details__photo img {
  min-height: 620px;
  height: 100%;
  object-fit: cover;
}

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

.spec-row {
  padding: 1.45rem 0;
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(140px, 0.7fr) minmax(180px, 1.2fr);
  gap: 1.25rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.spec-row span {
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-row strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.spec-row small {
  color: var(--text-soft);
  font-size: 0.83rem;
  line-height: 1.45;
}

.detail-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-strip div {
  min-height: 150px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-strip span {
  color: var(--text-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-strip strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.reels {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.reels .section-tag {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.reel-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.reel-stage__video {
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 12px;
  background: var(--ink);
  box-shadow: 24px 24px 0 var(--rust);
}

.reel-stage__video video {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.reel-stage__label {
  margin-bottom: 0.8rem;
  color: var(--rust);
}

.reel-stage__content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.reel-stage__intro {
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--line);
}

.reel-stage__intro h2 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
}

.reel-stage__intro > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.reel-stage__current {
  padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(1.75rem, 3vw, 2.5rem);
}

.reel-stage__current h3 {
  margin-bottom: 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.reel-stage__current > p:not(.reel-stage__label) {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--text-soft);
}

.reel-options {
  border-top: 1px solid var(--line);
}

.reel-option {
  width: 100%;
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.reel-option span {
  color: var(--rust);
  font-size: 0.72rem;
}

.reel-option[aria-selected="true"] {
  padding-left: 1rem;
  color: var(--white);
  background: var(--ink);
}

.gallery__header {
  max-width: 980px;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: minmax(220px, 25vw);
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  border: 0;
  cursor: zoom-in;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 250ms ease, transform 500ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.82;
  transform: scale(1.025);
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.location__copy > p:not(.kicker) {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.65);
}

.drive-times {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.drive-times div {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.drive-times strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.drive-times span {
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location__photo img {
  min-height: 600px;
  object-fit: cover;
}

.location__photo figcaption {
  color: rgba(255, 253, 248, 0.5);
}

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

.inquiry__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(400px, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.inquiry__copy > p:not(.kicker) {
  max-width: 560px;
  color: var(--text-soft);
}

.agent-card {
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.agent-card span {
  margin-bottom: 0.5rem;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agent-card strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.agent-card p {
  margin-bottom: 0.5rem;
  color: var(--text-soft);
}

.agent-card a {
  width: fit-content;
  color: var(--rust);
  font-weight: 700;
  text-decoration: none;
}

.inquiry__panel {
  min-height: 520px;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
}

.inquiry__panel-label {
  margin-bottom: 1rem;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry__panel h3 {
  max-width: 620px;
  margin-bottom: 2rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.inquiry__panel ul {
  width: 100%;
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.inquiry__panel li {
  padding: 0.8rem 0;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line);
}

.inquiry__panel-note {
  margin: 1.25rem 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.inquiry__panel-note a {
  color: var(--rust);
  font-weight: 700;
}

.typeform-live-source {
  display: none;
}

.site-footer {
  padding: 3rem var(--pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.site-footer > div:first-child {
  display: flex;
  flex-direction: column;
}

.site-footer strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.site-footer span,
.site-footer p {
  color: rgba(255, 253, 248, 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 900px;
  margin: 0;
  grid-column: 1 / -1;
  font-size: 0.7rem;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: clamp(1rem, 4vw, 4rem);
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(21, 20, 17, 0.96);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1400px, 94vw);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 253, 248, 0.55);
  cursor: pointer;
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 1rem;
  }

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

  .button--header {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .details__layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .spec-row {
    grid-template-columns: 1fr 1fr;
  }

  .spec-row small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
  }

  .nav-toggle {
    position: relative;
    z-index: 52;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 5px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 253, 248, 0.45);
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    z-index: 51;
    inset: 0;
    padding: 7rem var(--pad) 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    color: var(--white);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    font-family: "Fraunces", Georgia, serif;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: 680px;
  }

  .hero__visual {
    min-height: 620px;
  }

  .fact-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .story__grid,
  .details__intro,
  .details__layout,
  .reel-stage,
  .location__grid,
  .inquiry__grid {
    grid-template-columns: 1fr;
  }

  .story__image {
    order: -1;
  }

  .details__intro {
    align-items: start;
  }

  .details__photo img,
  .location__photo img {
    min-height: 420px;
  }

  .detail-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .reel-stage__video {
    width: min(72vw, 390px);
  }

  .reel-stage__content {
    min-height: auto;
  }

  .location__photo {
    order: -1;
  }

  .inquiry__grid {
    gap: 3rem;
  }

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

@media (max-width: 700px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .brand__text {
    display: none;
  }

  .hero__content {
    min-height: 630px;
    padding-top: 8.5rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__visual figcaption {
    min-width: 220px;
    padding: 1rem 1.25rem;
  }

  .fact-bar {
    padding: 0;
  }

  .fact-bar div {
    min-height: 125px;
    padding: 1.2rem;
  }

  .fact-bar strong {
    font-size: 2.4rem;
  }

  .section-tag {
    margin-bottom: 3.5rem;
  }

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

  .fit-card--feature {
    grid-column: auto;
  }

  .fit-card {
    min-height: 260px;
  }

  .details__photo img,
  .location__photo img {
    min-height: 340px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .spec-row small {
    grid-column: auto;
  }

  .detail-strip {
    grid-template-columns: 1fr;
  }

  .detail-strip div {
    min-height: 120px;
  }

  .reel-stage__video {
    width: calc(100% - 24px);
    box-shadow: 18px 18px 0 var(--rust);
  }

  .reel-stage__intro h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

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

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .drive-times {
    grid-template-columns: 1fr 1fr;
  }

  .inquiry__panel {
    min-height: auto;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

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

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.65rem max(0.75rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    display: block;
    background: var(--ink);
    border-top: 1px solid rgba(255, 253, 248, 0.2);
  }

  .mobile-contact-bar .button {
    width: 100%;
    min-height: 52px;
  }
}

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

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

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