:root {
  --primary-color: #333;
  --secondary-color: #9b0615;
  --teal: #006c7e;
  --mustard: #fcaf3d;
  --warm-bg: #faf8f5;
  --paper: #fff;
  --muted: #6f6a63;
  --line: #e6ded4;
  --dark-teal: #063f48;
  --shadow: 0 18px 50px rgba(28, 25, 21, 0.12);
  --primary-font: "Urbanist", Arial, sans-serif;
  --secondary-font: "Jost", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--primary-color);
  background: var(--warm-bg);
  font-family: var(--primary-font);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--secondary-color);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

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

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-anchor {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 36px;
  background: rgba(0, 108, 126, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(34, 29, 24, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--secondary-font);
  font-size: 15px;
  text-decoration: none;
  outline-offset: 3px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(252, 175, 61, 0.22);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  flex: 0 0 44px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #102b2e;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-house.jpg");
  background-position: center center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 18, 20, 0.76), rgba(9, 18, 20, 0.28) 56%, rgba(9, 18, 20, 0.08)),
    linear-gradient(0deg, rgba(9, 18, 20, 0.58), rgba(9, 18, 20, 0.02) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 136px;
  color: #fff;
}

.eyebrow,
.section-kicker,
.article-label {
  margin: 0 0 12px;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mustard);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--secondary-font);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 26px;
}

p {
  margin: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--secondary-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
  box-shadow: inset 0 -4px 0 rgba(252, 175, 61, 0.34);
}

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

.button-ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.64);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: #fff;
  color: var(--secondary-color);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 112px);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-height: 92px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-facts strong {
  display: block;
  font-family: var(--secondary-font);
  font-size: 29px;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.intro-band,
.house-section,
.gallery-section,
.attractions-section,
.reviews-section,
.faq-section,
.contact-section {
  padding: 96px 0;
}

.intro-band {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 72px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: 19px;
}

.separator {
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(155, 6, 21, 0), rgba(155, 6, 21, 0.42), rgba(252, 175, 61, 0.55), rgba(0, 108, 126, 0));
}

.house-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.house-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.house-story > p:not(.section-kicker) {
  margin-top: 24px;
  color: var(--muted);
}

.detail-ledger {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.detail-ledger div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.detail-ledger dt {
  color: var(--secondary-color);
  font-family: var(--secondary-font);
}

.detail-ledger dd {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  text-decoration-color: var(--mustard);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.gallery-section,
.faq-section {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 42px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.55fr);
  gap: 60px;
  align-items: end;
}

.split-heading > p,
.split-heading > div + p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ddd;
  cursor: zoom-in;
}

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

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

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

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

.attractions-section {
  overflow: hidden;
}

.scroll-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.scroll-controls button {
  min-width: 58px;
  min-height: 42px;
  border: 1px solid rgba(155, 6, 21, 0.28);
  border-radius: 8px;
  background: #fff;
  color: var(--secondary-color);
  cursor: pointer;
}

.scroll-controls button:hover,
.scroll-controls button:focus-visible {
  background: var(--secondary-color);
  color: #fff;
}

.attraction-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 0 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--secondary-color) rgba(155, 6, 21, 0.12);
}

.attraction-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #172b2d;
  color: #fff;
  scroll-snap-align: start;
}

.attraction-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 260ms ease, opacity 260ms ease;
}

.attraction-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(8, 12, 13, 0.82), rgba(8, 12, 13, 0));
}

.attraction-card h3 {
  font-size: 22px;
}

.attraction-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.attraction-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.guide-callout {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 18px 30px;
  align-items: center;
  margin-top: 38px;
  padding: 28px;
  border-top: 1px solid rgba(155, 6, 21, 0.24);
  border-bottom: 1px solid rgba(155, 6, 21, 0.24);
}

.guide-callout .section-kicker {
  grid-row: 1 / span 2;
  margin: 0;
}

.guide-callout h3 {
  grid-column: 2;
  color: var(--secondary-color);
}

.guide-callout p:not(.section-kicker) {
  grid-column: 2;
  color: var(--muted);
}

.guide-callout .button {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.reviews-section {
  background: #f1fbfd;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 212px;
  margin: 0;
  padding: 30px;
  border: 1px solid #cbe8ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.review-card::before {
  content: "5.0 / 5";
  display: block;
  margin-bottom: 26px;
  color: var(--teal);
  font-family: var(--secondary-font);
  font-size: 14px;
}

.review-card blockquote {
  margin: 0;
  color: #15323a;
  font-size: 21px;
  font-style: italic;
  line-height: 1.35;
}

.review-card figcaption {
  margin-top: 24px;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 14px;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 70px;
}

.faq-layout > div:first-child p:not(.section-kicker) {
  margin-top: 22px;
  color: var(--muted);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--primary-color);
  font-family: var(--secondary-font);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--secondary-color);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 42px 24px 0;
  color: var(--muted);
}

.contact-section {
  background: var(--dark-teal);
  color: #fff;
}

.contact-section .section-kicker {
  color: var(--mustard);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: center;
}

.contact-copy p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-details p {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  margin: 0;
}

.contact-details span {
  color: var(--mustard);
  font-family: var(--secondary-font);
}

.useful-links {
  padding: 32px;
  border-radius: 8px;
  background: var(--teal);
  box-shadow: var(--shadow);
}

.useful-links h3 {
  margin-bottom: 24px;
  color: #fff;
  text-align: center;
}

.badge-stack {
  display: grid;
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.trust-badge img {
  max-width: 190px;
  max-height: 94px;
}

.site-footer {
  position: relative;
  padding: 58px 0 0;
  border-top: 6px solid var(--mustard);
  background:
    linear-gradient(135deg, rgba(6, 63, 72, 0.98), rgba(0, 108, 126, 0.92)),
    var(--dark-teal);
  color: rgba(255, 255, 255, 0.78);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1.28fr) minmax(130px, 0.7fr) minmax(150px, 0.76fr) minmax(210px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  font-size: 15px;
}

.footer-brand-block {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  border-radius: 8px;
  outline-offset: 4px;
}

.footer-logo img {
  width: 156px;
}

.footer-brand-block h2,
.site-footer h3,
.footer-brand-block p,
.footer-column p,
.footer-bottom p {
  margin: 0;
}

.footer-brand-block h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.footer-brand-block p {
  max-width: 34ch;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer h3 {
  margin-bottom: 6px;
  color: var(--mustard);
  font-family: var(--secondary-font);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  outline-offset: 4px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.footer-column a:hover,
.footer-bottom a:hover {
  transform: translateX(2px);
}

.footer-column span {
  display: block;
  color: var(--mustard);
  font-family: var(--secondary-font);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-contact {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  margin-top: 46px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 17, 18, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(1040px, 100%);
  margin: 0;
  color: #fff;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox figcaption {
  margin-top: 12px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.simple-header {
  position: sticky;
}

.simple-nav {
  gap: 10px;
}

.article {
  background: var(--paper);
}

.article-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #183237;
}

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

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 18, 20, 0.78), rgba(9, 18, 20, 0.08));
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 70px;
  color: #fff;
}

.article-hero-copy .text-link {
  margin: 0 0 34px;
  color: #fff;
}

.article-hero-copy .section-kicker {
  color: var(--mustard);
}

.article-hero-copy h1 {
  max-width: 880px;
  font-size: 62px;
}

.article-hero-copy p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.article-layout {
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 70px;
  margin: 0 auto;
  padding: 90px 0 110px;
}

.article-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-aside ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.article-body {
  display: grid;
  gap: 58px;
}

.article-body section {
  display: grid;
  gap: 22px;
}

.article-body p:not(.article-label) {
  color: var(--muted);
  font-size: 19px;
}

.article-figure,
.article-image-pair figure {
  margin: 12px 0 0;
}

.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.article-figure figcaption,
.article-image-pair figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.article-image-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.article-image-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.article-rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(155, 6, 21, 0.4), rgba(252, 175, 61, 0.5), rgba(0, 108, 126, 0));
}

@media (max-width: 1100px) {
  .site-header {
    padding: 12px 20px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 9px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 41px;
  }

  .hero-facts {
    right: 20px;
    grid-template-columns: repeat(4, 98px);
  }

  .gallery-grid {
    grid-auto-rows: 160px;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(155, 6, 21, 0.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .simple-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .simple-nav a {
    color: rgba(255, 255, 255, 0.9);
    min-height: 36px;
    padding: 7px 10px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    margin-bottom: 210px;
  }

  h1,
  .article-hero-copy h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-facts {
    left: 20px;
    right: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-band,
  .house-section,
  .gallery-section,
  .attractions-section,
  .reviews-section,
  .faq-section,
  .contact-section {
    padding: 74px 0;
  }

  .intro-grid,
  .house-layout,
  .split-heading,
  .faq-layout,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .house-photo img {
    aspect-ratio: 16 / 11;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .guide-callout {
    grid-template-columns: 1fr;
  }

  .guide-callout .section-kicker,
  .guide-callout h3,
  .guide-callout p:not(.section-kicker),
  .guide-callout .button {
    grid-column: auto;
    grid-row: auto;
  }

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

  .contact-layout {
    align-items: stretch;
  }

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

  .article-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .section-inner,
  .separator,
  .article-layout,
  .article-hero-copy {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 72px;
    padding: 10px 14px;
  }

  .simple-header {
    align-items: flex-start;
    gap: 8px;
  }

  .brand img {
    width: 126px;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media {
    background-image: url("assets/house-exterior.jpg");
    background-position: center center;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin-bottom: 222px;
  }

  h1,
  .article-hero-copy h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-content p:not(.eyebrow),
  .article-hero-copy p:not(.section-kicker) {
    font-size: 17px;
    max-width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-facts div {
    min-height: 82px;
    padding: 15px;
  }

  .detail-ledger div,
  .contact-details p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

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

  .scroll-controls {
    justify-content: flex-start;
  }

  .attraction-rail {
    grid-auto-columns: minmax(272px, 82vw);
  }

  .article-hero {
    min-height: 560px;
  }

  .article-image-pair {
    grid-template-columns: 1fr;
  }

  .useful-links {
    padding: 24px;
  }
}

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

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