:root {
  --ink: #17221c;
  --forest: #183026;
  --cream: #f2efe8;
  --paper: #faf9f5;
  --rust: #a7481c;
  --line: rgba(23, 34, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: white;
  padding: 0.8rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 100px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand img {
  width: 66px;
  height: 38px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.6rem);
  font-size: 0.88rem;
}

.nav a {
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.65;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.7rem 1.2rem;
  border-radius: 99px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: white;
}

.hero {
  min-height: 760px;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 46%;
  animation: hero-in 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 20, 16, 0.76) 0%, rgba(10, 20, 16, 0.28) 52%, rgba(10, 20, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(10, 20, 16, 0.55), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 88vw);
  padding: 0 0 clamp(3.5rem, 8vh, 6rem) 8vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
}

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

h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(4rem, 5.6vw, 6rem);
  line-height: 1.04;
}

h1 em,
h2 em {
  font-style: normal;
  font-weight: 600;
}

.hero-copy {
  max-width: 530px;
  margin: clamp(1.2rem, 2.2vh, 2rem) 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  margin-top: clamp(1.5rem, 3.2vh, 2.3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

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

.button-map {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
}

.button-map:hover {
  background: rgba(255, 255, 255, 0.14);
}

.text-link {
  font-size: 0.9rem;
}

.text-link span {
  margin-left: 0.4rem;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(1.4rem, 2.6vh, 2rem);
}

.hero-socials-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-social-links {
  display: flex;
  gap: 0.55rem;
}

.hero-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.25rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-social-links a:hover,
.hero-social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.hero-social-links svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-social-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.hero-note {
  position: absolute;
  z-index: 1;
  right: 4vw;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note span:last-child {
  color: rgba(255, 255, 255, 0.62);
  text-transform: none;
  letter-spacing: 0;
}

.section {
  padding: clamp(5rem, 10vw, 10rem) 6vw;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  column-gap: 6vw;
}

.section-label {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 600;
}

.section-label span {
  color: var(--rust);
}

.section-label p {
  margin: 0;
}

.intro-copy h2,
.gallery-heading h2 {
  font-size: clamp(3.3rem, 6.4vw, 7.2rem);
}

.intro-copy > p {
  margin: 3rem 0 0 auto;
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(23, 34, 28, 0.7);
}

.intro-stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
  border-top: 1px solid var(--line);
}

.intro-stats div {
  padding: 1.4rem 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.intro-stats strong {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.intro-stats span {
  color: rgba(23, 34, 28, 0.58);
  font-size: 0.78rem;
}

.feature-image {
  padding-top: 0;
}

.feature-image figure {
  margin: 0;
}

.feature-image img {
  width: 100%;
  height: min(72vw, 780px);
  object-fit: cover;
  object-position: center;
}

.feature-image figcaption {
  padding-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.routes {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.routes-heading {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 2rem 6vw;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.routes-heading h2 {
  max-width: 980px;
  font-size: clamp(3.2rem, 5.8vw, 6.8rem);
}

.routes-heading p {
  max-width: 720px;
  margin: 2rem 0 0;
  color: rgba(23, 34, 28, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

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

.route-card {
  min-height: 310px;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.route-card span {
  display: block;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-card h3 {
  max-width: 360px;
  margin: 1.15rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.05;
}

.route-card p {
  margin: 1.3rem 0 0;
  color: rgba(23, 34, 28, 0.66);
  font-size: 0.95rem;
}

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

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 2rem 6vw;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.gallery-heading h2 {
  max-width: 950px;
}

.gallery-heading > p {
  grid-column: 2;
  margin: 0;
  color: rgba(23, 34, 28, 0.58);
  font-size: 0.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #ddd7cb;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
}

.gallery-item:nth-child(3) {
  grid-column: span 3;
}

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

.gallery-wide {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.gallery-item span {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  color: white;
  font-size: 0.65rem;
  text-shadow: 0 1px 8px #000;
}

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

.guides-heading {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 2rem 6vw;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.guides-heading h2 {
  max-width: 980px;
  font-size: clamp(3.2rem, 5.8vw, 6.8rem);
}

.guides-heading p {
  max-width: 720px;
  margin: 2rem 0 0;
  color: rgba(23, 34, 28, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.guide-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.guide-card span,
.article-summary span,
.article-callout span {
  display: block;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-card span {
  margin: 1.3rem clamp(1.25rem, 2vw, 1.8rem) 0;
}

.guide-card h3 {
  margin: 0.75rem clamp(1.25rem, 2vw, 1.8rem) 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.guide-card p {
  margin: 1rem clamp(1.25rem, 2vw, 1.8rem) clamp(1.4rem, 2vw, 1.9rem);
  color: rgba(23, 34, 28, 0.66);
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: white;
  min-height: 720px;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 6vw;
  position: relative;
  z-index: 1;
}

.section-label.light span {
  color: #d77649;
}

.contact h2 {
  font-size: clamp(3.5rem, 7vw, 8rem);
}

.contact-details {
  position: relative;
  z-index: 1;
  width: 68%;
  margin: 7rem 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-details > * {
  min-width: 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-location {
  grid-column: 1 / -1;
}

.contact-details span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
}

.contact-details p,
.contact-details strong {
  display: block;
  margin: 0.55rem 0 0;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-details a:hover strong {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-map {
  position: relative;
  z-index: 1;
  width: 68%;
  margin: 3rem 0 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) 1.35fr;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.map-copy {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.map-copy span {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
}

.map-copy p {
  max-width: 280px;
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: saturate(0.82) contrast(1.04);
}

.contact-mark {
  position: absolute;
  left: -0.04em;
  bottom: -0.25em;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Playfair Display", serif;
  font-size: 28vw;
  line-height: 1;
  pointer-events: none;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 4vw;
  background: #102219;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

footer p {
  margin: 0;
}

footer p:last-child {
  text-align: right;
}

.footer-brand {
  color: white;
}

.footer-brand img {
  width: 52px;
  height: 30px;
}

.article-site-header {
  position: absolute;
}

.article-hero {
  min-height: 660px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}

.article-hero-image,
.article-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.article-hero-image {
  object-fit: cover;
  object-position: center;
}

.article-hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 20, 16, 0.82) 0%, rgba(10, 20, 16, 0.42) 55%, rgba(10, 20, 16, 0.14) 100%),
    linear-gradient(0deg, rgba(10, 20, 16, 0.62), transparent 58%);
}

.article-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 90vw);
  padding: 0 0 clamp(4rem, 8vh, 6rem) 8vw;
}

.article-hero h1 {
  max-width: 1080px;
  font-size: clamp(3.2rem, 5.4vw, 6.4rem);
}

.article-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.article-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 2fr);
  gap: 7vw;
  align-items: start;
}

.article-summary {
  position: sticky;
  top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.article-summary p {
  margin: 1rem 0 1.6rem;
  color: rgba(23, 34, 28, 0.66);
}

.article-summary .button-light {
  border: 1px solid var(--line);
}

.article-content {
  max-width: 820px;
}

.article-content .lead {
  margin-top: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
  color: rgba(23, 34, 28, 0.82);
}

.article-content h2 {
  margin: 4rem 0 1.25rem;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
}

.article-content p,
.article-content li {
  color: rgba(23, 34, 28, 0.7);
  font-size: 1.04rem;
}

.article-content ul {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
}

.article-content li + li {
  margin-top: 0.55rem;
}

.article-image {
  margin: 3.2rem 0;
}

.article-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-image figcaption {
  margin-top: 0.8rem;
  color: rgba(23, 34, 28, 0.52);
  font-size: 0.8rem;
}

.article-callout {
  margin: 3rem 0;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-left: 3px solid var(--rust);
  background: var(--cream);
}

.article-callout p {
  margin: 0.9rem 0 0;
}

.article-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.article-links a {
  color: var(--rust);
  font-weight: 600;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 4rem;
  background: rgba(8, 15, 12, 0.96);
  color: white;
}

.lightbox[open] {
  display: grid;
  place-items: center;
}

.lightbox::backdrop {
  background: rgba(8, 15, 12, 0.8);
}

.lightbox img {
  width: min(1200px, 84vw);
  height: min(780px, 78vh);
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.lightbox-close {
  right: 2rem;
  top: 1rem;
  font-size: 2.5rem;
  font-weight: 200;
}

.lightbox-nav {
  top: 50%;
  font-size: 1.6rem;
  padding: 1rem;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-count {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes hero-in {
  from {
    opacity: 0.5;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 78px;
    padding: 0 1.2rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    align-items: center;
    z-index: 2;
  }

  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

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

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

  .nav {
    position: fixed;
    inset: 0;
    background: var(--forest);
    flex-direction: column;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-cta {
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: 92vw;
    padding: 0 1.2rem clamp(4rem, 8vh, 6rem);
  }

  .hero-note {
    display: none;
  }

  .intro,
  .routes-heading,
  .guides-heading,
  .gallery-heading,
  .contact-top {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .routes-heading h2,
  .guides-heading h2,
  .gallery-heading h2,
  .contact h2 {
    margin-top: 2.5rem;
  }

  .intro-stats,
  .gallery-heading > p {
    grid-column: 1;
  }

  .contact-details {
    width: 100%;
  }

  .contact-map {
    width: 100%;
  }

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

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

  .article-summary {
    position: static;
  }

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

@media (max-width: 640px) {
  h1 {
    font-size: clamp(3.25rem, 14vw, 4.5rem);
    line-height: 1.03;
  }

  .section {
    padding: 5.5rem 1.2rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-socials {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero-social-links {
    flex-wrap: wrap;
  }

  .hero-social-links a {
    padding-inline: 0.65rem;
  }

  .intro-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

  .route-card {
    min-height: auto;
  }

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

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

  .article-hero-content {
    width: 92vw;
    padding: 0 1.2rem 4rem;
  }

  .article-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .feature-image {
    padding-top: 0;
  }

  .feature-image img {
    height: 115vw;
  }

  .gallery-grid {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.8rem;
  }

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-wide {
    flex: 0 0 84vw;
    height: 112vw;
    scroll-snap-align: start;
  }

  .gallery-item:nth-child(even) {
    height: 78vw;
  }

  .contact {
    min-height: 700px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    margin-top: 5rem;
  }

  .contact-location {
    grid-column: auto;
  }

  .contact-map {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-map iframe {
    min-height: 320px;
  }

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

  footer p:last-child {
    text-align: left;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox img {
    width: 100%;
    height: 80vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1.3rem;
  }
}

@media (min-width: 901px) and (max-height: 860px) {
  .hero {
    min-height: 680px;
  }

  h1 {
    font-size: clamp(3.75rem, 5vw, 5.6rem);
  }

  .eyebrow {
    margin-bottom: 1rem;
  }

  .hero-content {
    padding-bottom: clamp(2rem, 5vh, 3.5rem);
  }
}

@media (min-width: 1400px) and (max-height: 920px) {
  h1 {
    font-size: clamp(4.25rem, 4.8vw, 5.8rem);
  }
}

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

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

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