:root {
  --ink: #18202a;
  --warm-white: #fffdf8;
  --porcelain: #f7f4ef;
  --brass: #b08a4a;
  --sage: #6f7f69;
  --brick: #9b4f3f;
  --mist: #4b5560;
  --line: rgba(24, 32, 42, 0.14);
  --shadow: 0 18px 50px rgba(24, 32, 42, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(247, 244, 239, 0.9) 0, rgba(255, 253, 248, 0) 520px),
    linear-gradient(90deg, rgba(155, 79, 63, 0.035) 0 1px, transparent 1px 100%),
    var(--warm-white);
  background-size: auto, 56px 56px, auto;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 310px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: var(--mist);
  font-size: 14px;
}

.desktop-nav a,
.site-footer a {
  text-decoration: none;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--brick);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-select,
input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--warm-white);
  color: var(--ink);
  font: inherit;
}

.language-select {
  padding: 0 10px;
}

.button,
button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--warm-white);
  padding: 0 20px;
  font: 700 14px/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: #26313d;
}

.button-hot {
  border-color: #9d7532;
  background: linear-gradient(135deg, #c7a05b 0%, var(--brass) 44%, #8f6230 100%);
  color: var(--warm-white);
  box-shadow: 0 10px 24px rgba(176, 138, 74, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-hot:hover {
  background: linear-gradient(135deg, #d3ad68 0%, #b88f49 44%, #9b6a34 100%);
  color: var(--warm-white);
  transform: translateY(-1px);
}

.site-header .button-hot {
  animation: ctaGlow 2.8s ease-in-out infinite;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  white-space: nowrap;
}

.button-ghost {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.8);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(24, 32, 42, 0.84) 0%, rgba(24, 32, 42, 0.5) 42%, rgba(24, 32, 42, 0.06) 100%),
    linear-gradient(0deg, rgba(24, 32, 42, 0.42) 0%, rgba(24, 32, 42, 0) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(44px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--warm-white);
}

.hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 720ms ease forwards;
}

.hero-content > :nth-child(2) {
  animation-delay: 120ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 220ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 320ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 420ms;
}

.hero-content > :nth-child(6) {
  animation-delay: 520ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.availability-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(44px, 7vw, 86px);
}

.hero-lead {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  padding: 8px 12px;
  color: var(--warm-white);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  width: 34px;
  height: 54px;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--warm-white);
  transform: translateX(-50%);
  animation: scrollCue 1.7s ease-in-out infinite;
}

.availability-panel {
  width: min(1180px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(247, 244, 239, 0.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.availability-panel h2 {
  font-size: 30px;
}

.booking-widget {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
}

.booking-widget-live {
  display: block;
  min-height: 74px;
  overflow: hidden;
}

.booking-widget-live .iai-search {
  width: 100%;
}

.booking-widget-live button,
.booking-widget-live input[type="button"],
.booking-widget-live input[type="submit"],
.booking-widget-live .iai-search button,
.booking-widget-live .iai-search [class*="button"],
.booking-widget-live .iai-search [class*="btn"] {
  border-color: #9d7532 !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, #c7a05b 0%, var(--brass) 44%, #8f6230 100%) !important;
  color: var(--warm-white) !important;
  font-weight: 800 !important;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--mist);
  font-size: 13px;
  font-weight: 700;
}

input {
  width: 100%;
  padding: 0 12px;
}

.integration-note {
  grid-column: 2;
  margin: -10px 0 0;
  color: var(--mist);
  font-size: 13px;
}

.fact-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fact-strip span,
.amenity-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.82);
  padding: 10px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.fact-strip span {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.fact-strip span:hover {
  border-color: rgba(176, 138, 74, 0.48);
  background: rgba(255, 253, 248, 0.94);
  transform: translateY(-2px);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
}

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

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.trust-section {
  border-bottom: 1px solid var(--line);
}

.section h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.4vw, 58px);
}

.section p {
  color: var(--mist);
  font-size: 17px;
}

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
}

.newsletter-card,
.info-panel,
.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--porcelain), rgba(255, 253, 248, 0.72));
  padding: 26px;
  box-shadow: 0 12px 34px rgba(24, 32, 42, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.newsletter-card:hover,
.info-panel:hover,
.detail-card:hover {
  border-color: rgba(176, 138, 74, 0.36);
  box-shadow: 0 18px 44px rgba(24, 32, 42, 0.12);
  transform: translateY(-3px);
}

.newsletter-card h3,
.info-panel h3,
.detail-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

.newsletter-card p,
.newsletter-card small {
  color: var(--mist);
}

.newsletter-card input {
  margin-bottom: 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.gallery-controls {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.gallery-control {
  width: 44px;
  min-height: 44px;
  border-radius: 999px;
  border-color: var(--line);
  background: var(--ink);
  color: var(--warm-white);
  padding: 0;
  font-size: 28px;
  line-height: 1;
}

.gallery-count {
  min-width: 54px;
  color: var(--mist);
  font-weight: 800;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: 0 18px 38px rgba(24, 32, 42, 0.1);
  cursor: zoom-in;
}

.gallery-grid .gallery-large {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-grid img,
.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-grid figure:hover img,
.location-image:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  background: rgba(24, 32, 42, 0.76);
  color: var(--warm-white);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 700;
}

.gallery-progress {
  display: none;
  width: min(420px, 100%);
  height: 4px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(24, 32, 42, 0.1);
}

.gallery-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--brass);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.info-panel dl {
  margin: 0;
}

.info-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-panel div:last-child {
  border-bottom: 0;
}

.info-panel dt {
  color: var(--mist);
  font-weight: 700;
}

.info-panel dd {
  margin: 0;
  text-align: right;
}

.compact-section {
  padding-top: 24px;
}

.card-grid,
.policy-grid {
  display: grid;
  gap: 18px;
}

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

.amenities-section {
  padding-top: 20px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.amenity-grid span {
  display: grid;
  min-height: 108px;
  align-content: center;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(247, 244, 239, 0.9));
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.amenity-grid span::before {
  content: "";
  width: 22px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--brass);
}

.amenity-grid span:hover {
  border-color: rgba(176, 138, 74, 0.44);
  box-shadow: 0 16px 34px rgba(24, 32, 42, 0.1);
  transform: translateY(-4px);
}

.amenity-grid b {
  display: block;
  font-size: 16px;
}

.amenity-grid small {
  display: block;
  margin-top: 3px;
  color: var(--mist);
  font-size: 13px;
  font-weight: 600;
}

.location-section {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--porcelain);
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
}

.location-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}

.location-image img {
  will-change: transform;
}

.location-copy {
  padding-right: 18px;
}

.policy-section {
  border-bottom: 1px solid var(--line);
}

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

.detail-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--mist);
}

.booking-launch-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(176, 138, 74, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 32, 42, 0.94), rgba(33, 44, 56, 0.92)),
    var(--ink);
  color: var(--warm-white);
  padding: clamp(30px, 6vw, 64px);
  box-shadow: var(--shadow);
}

.booking-launch-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 180px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(176, 138, 74, 0.2), transparent);
  animation: brassSweep 7s ease-in-out infinite alternate;
}

.booking-launch-card h2 {
  position: relative;
  z-index: 1;
  color: var(--warm-white);
}

.booking-launch-card p,
.booking-launch-card .button {
  position: relative;
  z-index: 1;
}

.booking-launch-card p {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.78);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 36px;
  padding: 54px clamp(18px, 5vw, 72px) 28px;
  background: var(--ink);
  color: var(--warm-white);
}

.footer-logo {
  width: 280px;
  max-width: 100%;
  margin-bottom: 16px;
  background: var(--warm-white);
  border-radius: 6px;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--warm-white);
}

.footer-newsletter input {
  margin-bottom: 10px;
}

.footer-newsletter button {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.footer-bottom a {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #c7a05b, #96662f);
  color: var(--warm-white);
  padding: 14px 18px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 64px clamp(16px, 5vw, 64px);
  background: rgba(24, 32, 42, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.lightbox p {
  margin: 14px 0 0;
  color: var(--warm-white);
  font-weight: 800;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.12);
  color: var(--warm-white);
  backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  min-height: 46px;
  border-radius: 999px;
  font-size: 28px;
}

.lightbox-arrow {
  top: 50%;
  width: 50px;
  min-height: 60px;
  border-radius: 999px;
  font-size: 36px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

@keyframes brassSweep {
  from {
    transform: translate3d(0, 0, 0) skewX(-18deg);
  }
  to {
    transform: translate3d(-110px, 0, 0) skewX(-18deg);
  }
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(176, 138, 74, 0.28);
  }
  50% {
    box-shadow: 0 10px 30px rgba(176, 138, 74, 0.52);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 210px;
  }

  .desktop-nav {
    display: none;
  }

  .availability-panel,
  .split-section,
  .location-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .availability-panel {
    margin-top: 18px;
    overflow: hidden;
  }

  .booking-widget {
    grid-template-columns: 1fr;
  }

  .booking-widget-live {
    width: 100%;
    min-height: 170px;
  }

  .booking-widget-live .iai-search,
  .booking-widget-live .iai-search > * {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .booking-widget-live .iai-search * {
    box-sizing: border-box !important;
    max-width: 100% !important;
  }

  .booking-widget-live .iai-search table,
  .booking-widget-live .iai-search tbody,
  .booking-widget-live .iai-search tr,
  .booking-widget-live .iai-search td,
  .booking-widget-live .iai-search th {
    display: block !important;
    width: 100% !important;
  }

  .booking-widget-live .iai-search > div,
  .booking-widget-live .iai-search form,
  .booking-widget-live .iai-search fieldset {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .booking-widget-live input,
  .booking-widget-live button {
    width: 100% !important;
    max-width: 100%;
  }

  .booking-widget-live button,
  .booking-widget-live input[type="button"],
  .booking-widget-live input[type="submit"],
  .booking-widget-live .iai-search button,
  .booking-widget-live .iai-search [class*="button"],
  .booking-widget-live .iai-search [class*="btn"] {
    border-color: #9d7532 !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, #c7a05b 0%, var(--brass) 44%, #8f6230 100%) !important;
    color: var(--warm-white) !important;
    font-weight: 800 !important;
  }

  .integration-note {
    grid-column: auto;
  }

  .policy-grid,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 18px 12px 0;
    margin-right: -18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
  }

  .gallery-grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .gallery-controls {
    display: flex;
  }

  .gallery-progress {
    display: block;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid figure,
  .gallery-grid .gallery-large,
  .gallery-grid figure {
    flex: 0 0 82%;
    min-height: 280px;
    scroll-snap-align: start;
  }

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

  .location-section {
    padding-block: 58px;
  }

  .location-image {
    min-height: 330px;
    border-radius: 8px;
  }

  .site-footer {
    padding-bottom: 82px;
  }

  .sticky-cta {
    display: inline-flex;
    left: 16px;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 174px;
  }

  .header-actions .button-small {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-content {
    padding: 42px 18px;
  }

  .hero-ctas .button {
    width: 100%;
  }

  .availability-panel,
  .fact-strip,
  .section {
    width: calc(100% - 28px);
  }

  .availability-panel {
    padding: 18px;
  }

  .fact-strip span,
  .amenity-grid span {
    font-size: 13px;
  }

  .section {
    padding-block: 58px;
  }

  .site-footer {
    padding-inline: 18px;
  }

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

  .lightbox {
    padding: 56px 12px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 14px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-image {
    transform: none;
  }

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