@font-face {
  font-family: "Lora";
  src: url("./fonts/lora-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("./fonts/lora-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("./fonts/lora-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --bg: #f7f1e7;
  --bg-strong: #efe5d4;
  --paper: rgba(255, 251, 244, 0.82);
  --paper-solid: #fffaf2;
  --ink: #2f342f;
  --ink-soft: #6b7065;
  --line: rgba(64, 70, 61, 0.12);
  --sage: #879379;
  --sage-deep: #5e6956;
  --olive: #dde3d3;
  --clay: #b87954;
  --sun: #d4bb62;
  --berry: #9b5a5b;
  --shadow-soft: 0 20px 60px rgba(95, 82, 58, 0.12);
  --shadow-card: 0 22px 40px rgba(89, 69, 48, 0.1);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --font-display: "Lora", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(212, 187, 98, 0.22), transparent 26%),
    radial-gradient(circle at right 20%, rgba(184, 121, 84, 0.15), transparent 20%),
    linear-gradient(180deg, #fbf6ee 0%, #f6efe3 42%, #f2eadc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.55), transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.45), transparent 18%),
    radial-gradient(circle at 20% 78%, rgba(135, 147, 121, 0.12), transparent 16%);
  pointer-events: none;
}

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

img[data-gallery-item] {
  cursor: zoom-in;
}

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 121, 84, 0.28);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  z-index: 20;
  box-shadow: var(--shadow-soft);
}

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

.page-shell {
  position: relative;
  width: min(100% - 1rem, 78rem);
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.site-header.is-scrolled {
  background: rgba(255, 248, 240, 0.92);
}

.brand {
  min-width: 0;
}

.brand__eyebrow,
.section-kicker {
  margin: 0 0 0.15rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.brand__title {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: var(--sage);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--ink);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(135, 147, 121, 0.14);
  color: var(--sage-deep);
  transform: translateY(-1px);
}

.hero,
.section {
  position: relative;
}

.hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.95fr);
  align-items: center;
  margin-top: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(246, 238, 224, 0.8)),
    radial-gradient(circle at top right, rgba(212, 187, 98, 0.22), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 14%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(212, 187, 98, 0.16);
  filter: blur(1px);
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero h1,
.section-heading h2,
.story__copy h2,
.price-note h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.8vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.hero__lead,
.story__copy p,
.contact-copy p,
.price-note__foot {
  margin: 1rem 0 0;
  max-width: 40rem;
  font-size: 1.04rem;
  color: var(--ink-soft);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.button--primary {
  background: var(--clay);
  color: #fff9f2;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #a96540;
}

.button--secondary {
  background: rgba(135, 147, 121, 0.14);
  color: var(--sage-deep);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(135, 147, 121, 0.22);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.hero__facts li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  font-weight: 700;
  color: var(--sage-deep);
}

.hero__visual {
  position: relative;
  min-height: 30rem;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.photo-card--large {
  inset: 0 2rem 5rem 0;
  border-radius: 2.5rem 8rem 2.5rem 2.5rem;
}

.photo-card--small {
  right: 0;
  bottom: 2rem;
  width: 42%;
  height: 40%;
  border-radius: 2rem;
  border: 10px solid rgba(255, 250, 242, 0.8);
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(22rem, 78%);
  padding: 1rem 1.1rem;
  border-radius: 0 1.6rem 1.6rem 1.6rem;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow-card);
}

.hero-note p {
  margin: 0;
  color: var(--ink-soft);
}

.section {
  margin-top: 1.3rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border-radius: var(--radius-xl);
}

.section--soft {
  background: rgba(255, 250, 242, 0.7);
  box-shadow: var(--shadow-soft);
}

.section--olive {
  background:
    linear-gradient(145deg, rgba(230, 236, 223, 0.9), rgba(213, 222, 202, 0.78)),
    radial-gradient(circle at right top, rgba(184, 121, 84, 0.14), transparent 26%);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  max-width: 52rem;
}

.section-heading h2,
.story__copy h2,
.price-note h2,
.contact-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1;
}

.accommodation-grid,
.trips-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.trip-card,
.contact-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 244, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
}

.feature-card h3,
.trip-card h3,
.contact-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.06;
  font-weight: 600;
}

.feature-card p,
.trip-card p,
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.trip-card img {
  width: 100%;
  height: 12rem;
  margin-bottom: 0.85rem;
  border-radius: 1.2rem;
  object-fit: cover;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.service-strip span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(135, 147, 121, 0.12);
  color: var(--sage-deep);
  font-weight: 700;
}

.story {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.1fr);
  align-items: start;
}

.story__media {
  position: relative;
  min-height: 34rem;
}

.story__main-photo,
.story__detail-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.story__main-photo {
  inset: 0 3rem 4rem 0;
  border-radius: 2.5rem;
}

.story__detail-photo {
  right: 0;
  bottom: 0;
  width: 46%;
  border-radius: 2rem;
  border: 10px solid rgba(255, 250, 242, 0.85);
}

.story__main-photo img,
.story__detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.story-gallery img {
  width: 100%;
  height: 10rem;
  border-radius: 1.2rem;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.story-gallery img:focus-visible,
.trip-card img:focus-visible,
.story__main-photo img:focus-visible,
.story__detail-photo img:focus-visible {
  outline: 3px solid rgba(184, 121, 84, 0.32);
  outline-offset: 4px;
}

.poetic-quote {
  margin: 1.3rem 0 0;
  padding: 1.1rem 1.2rem;
  border-radius: 1.7rem;
  background: rgba(184, 121, 84, 0.1);
  color: var(--ink);
  border-left: 5px solid rgba(184, 121, 84, 0.35);
}

.poetic-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.22;
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  grid-template-columns: repeat(12, 1fr);
}

.gallery-item {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem;
  background: rgba(255, 251, 244, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.8rem;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  color: var(--ink);
}

.gallery-item img {
  width: 100%;
  height: 15rem;
  border-radius: 1.25rem;
  object-fit: cover;
}

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

.gallery-item--wide img {
  height: 17rem;
}

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

.gallery-item--tall img {
  height: 100%;
  min-height: 20rem;
}

.price-section {
  background:
    radial-gradient(circle at top right, rgba(212, 187, 98, 0.2), transparent 30%),
    rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow-soft);
}

.price-note {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 2rem 4rem 2rem 2rem;
  background: var(--paper-solid);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.price-board {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 1fr);
  align-items: center;
  margin-top: 1.4rem;
}

.price-main {
  display: grid;
  justify-items: start;
  gap: 0.2rem;
  padding: 1.2rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(135, 147, 121, 0.16), rgba(212, 187, 98, 0.14));
}

.price-main span,
.price-main small {
  color: var(--ink-soft);
  font-weight: 700;
}

.price-main strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 0.95;
  font-weight: 600;
}

.price-list {
  display: grid;
  gap: 0.8rem;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(64, 70, 61, 0.18);
}

.price-list dt {
  font-weight: 800;
}

.price-list dd {
  margin: 0;
  color: var(--ink-soft);
  text-align: right;
}

.contact-section {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.9fr);
  align-items: start;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.88), rgba(245, 236, 221, 0.78)),
    radial-gradient(circle at top left, rgba(135, 147, 121, 0.14), transparent 28%);
  box-shadow: var(--shadow-soft);
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card a {
  color: var(--clay);
  font-weight: 800;
}

.contact-map {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: calc(var(--radius-lg) + 0.3rem);
  background: rgba(255, 251, 244, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.contact-map__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.contact-map__top h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.06;
  font-weight: 600;
}

.contact-map__top p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-map__link {
  color: var(--clay);
  font-weight: 800;
  white-space: nowrap;
}

.contact-map__frame {
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgba(64, 70, 61, 0.08);
  background: rgba(245, 236, 221, 0.55);
  height: 320px;
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 1.4rem 0 0.2rem;
  text-align: center;
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: none;
}

.site-footer__legal {
  font-size: 0.9rem;
  opacity: 0.78;
}

.site-footer__legal::before {
  content: " · ";
}

.legal-page {
  background:
    radial-gradient(circle at top left, rgba(212, 187, 98, 0.18), transparent 34%),
    linear-gradient(180deg, #f4eee3 0%, #efe6d7 100%);
}

.page-shell--legal {
  width: min(100% - 2rem, 70rem);
}

.site-header--legal {
  gap: 1rem;
}

.site-nav--legal {
  display: flex;
  flex-wrap: wrap;
}

.legal-section {
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(245, 236, 221, 0.82)),
    radial-gradient(circle at right top, rgba(135, 147, 121, 0.12), transparent 32%);
  box-shadow: var(--shadow-soft);
}

.legal-heading h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.legal-heading p {
  max-width: 46rem;
  margin: 0;
  color: var(--ink-soft);
}

.legal-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 244, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 600;
}

.legal-card p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
}

.legal-card ul {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.legal-card li + li {
  margin-top: 0.45rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--clay);
  font-weight: 700;
}

.legal-note {
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(32, 28, 24, 0.66);
  backdrop-filter: blur(5px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__inner {
  position: relative;
  width: min(92vw, 72rem);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: #fdf8f1;
  box-shadow: var(--shadow-soft);
}

.lightbox__figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #f7f1e7;
}

.lightbox__meta {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.2rem 1.25rem;
  background: #fdf8f1;
  border-top: 1px solid rgba(64, 70, 61, 0.1);
}

.lightbox__meta strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.lightbox__meta p {
  margin: 0;
  color: var(--ink-soft);
}

.lightbox__meta a {
  margin-left: 0.5rem;
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

@media (max-width: 70rem) {
  .hero,
  .story,
  .contact-section,
  .price-board {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .story__media {
    min-height: 26rem;
  }

  .contact-map__top {
    flex-direction: column;
    align-items: start;
  }

  .contact-map__link {
    white-space: normal;
  }

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

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 6;
  }

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

  .legal-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 52rem) {
  .page-shell {
    width: min(100% - 0.75rem, 44rem);
  }

  .site-header {
    border-radius: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
  }

  .site-header--legal {
    align-items: start;
  }

  .site-nav--legal {
    display: flex;
    width: auto;
    padding-top: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.4rem;
  }

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

  .site-nav a {
    justify-content: flex-start;
    border-radius: 1rem;
  }

  .hero {
    padding-top: 1.6rem;
  }

  .hero__facts {
    gap: 0.5rem;
  }

  .accommodation-grid,
  .trips-grid {
    grid-template-columns: 1fr;
  }

  .story-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .gallery-item img,
  .gallery-item--wide img,
  .gallery-item--tall img {
    height: 14rem;
    min-height: 0;
  }

}

@media (max-width: 36rem) {
  .hero h1,
  .section-heading h2,
  .story__copy h2,
  .price-note h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .brand__title {
    font-size: 1.75rem;
  }

  .hero__visual,
  .story__media {
    min-height: 20rem;
  }

  .photo-card--large,
  .story__main-photo {
    inset: 0 1rem 4rem 0;
  }

  .photo-card--small,
  .story__detail-photo {
    width: 52%;
  }

  .hero-note {
    width: calc(100% - 1rem);
  }

  .story-gallery {
    grid-template-columns: 1fr;
  }

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

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

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