:root {
  --paper: #f4f0e7;
  --paper-deep: #e7ded0;
  --paper-soft: #eee8de;
  --forest: #24352d;
  --forest-soft: #334a3d;
  --bronze: #815838;
  --gold: #c9aa7c;
  --ink: #242522;
  --muted: #65665f;
  --white: #fffdf8;
  --line: rgba(36, 37, 34, 0.18);
  --line-light: rgba(255, 253, 248, 0.22);
  --shadow-sm: 0 12px 32px rgba(24, 31, 27, 0.09);
  --shadow-lg: 0 28px 80px rgba(17, 23, 20, 0.24);
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 72px);
  --section-space: clamp(96px, 11vw, 176px);
  --radius: 6px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-shift: 0px;
  --z-header: 40;
  --z-menu: 35;
  --z-modal: 100;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--forest-soft);
}

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

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

button {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.93;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 500;
}

h2 {
  margin-bottom: clamp(28px, 3vw, 48px);
  font-size: clamp(48px, 6.2vw, 94px);
}

h3 {
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.25;
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

.section {
  position: relative;
  scroll-margin-top: 84px;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

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

.section-soft {
  background: var(--paper-soft);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow-light {
  color: var(--gold);
}

.section-index {
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-index-dark {
  color: var(--muted);
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 0 var(--gutter);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    min-height 300ms var(--ease-out),
    color 300ms var(--ease-out),
    background-color 300ms var(--ease-out),
    border-color 300ms var(--ease-out);
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  color: var(--ink);
  background: rgba(244, 240, 231, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.site-header.is-open {
  background: var(--paper);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--forest);
  background: var(--gold);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  font-weight: 600;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 0.85;
}

.brand-name i {
  color: var(--gold);
  font-weight: 500;
}

.site-header.is-scrolled .brand-name i,
.site-header.is-open .brand-name i {
  color: var(--bronze);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 36px);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color 240ms var(--ease-out),
    background-color 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.header-cta {
  min-width: 174px;
  padding: 0 20px;
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.44);
}

.header-cta span:last-child,
.btn span:last-child,
.text-link span:last-child {
  display: inline-block;
  transition: transform 240ms var(--ease-out);
}

.header-cta:hover span:last-child,
.btn:hover span:last-child,
.text-link:hover span:last-child {
  transform: translate(3px, -3px);
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 260ms var(--ease-out);
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  display: grid;
  align-items: end;
  min-height: min(940px, 92dvh);
  padding: 160px var(--gutter) 54px;
  color: var(--white);
  background: #1b241f;
  overflow: hidden;
}

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

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 50% 48%;
  transform: translate3d(0, calc(var(--hero-shift) * 0.45), 0) scale(1.035);
  animation: heroIn 1.4s var(--ease-soft) both;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(11, 18, 15, 0.58) 0%, rgba(11, 18, 15, 0.2) 54%, rgba(11, 18, 15, 0.04) 100%),
    linear-gradient(0deg, rgba(11, 18, 15, 0.42) 0%, transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 68vw);
  margin-left: max(0px, calc((100vw - var(--container)) / 2 - var(--gutter)));
  padding-bottom: 112px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(64px, 7.5vw, 122px);
}

.hero h1 em {
  display: inline;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn {
  padding: 0 26px;
}

.btn-primary {
  color: var(--forest);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 10px 32px rgba(16, 23, 19, 0.16);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--forest-soft);
  border-color: var(--forest-soft);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-dark {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.btn-dark:hover {
  background: var(--forest-soft);
  border-color: var(--forest-soft);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--forest);
  background: transparent;
  border-color: rgba(36, 53, 45, 0.45);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.btn-large {
  min-height: 60px;
  padding-inline: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link-light {
  color: var(--white);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  width: min(660px, 48vw);
  border-top: 1px solid rgba(255, 253, 248, 0.34);
}

.hero-meta div {
  min-height: 76px;
  padding: 16px 24px 0;
  border-left: 1px solid rgba(255, 253, 248, 0.2);
}

.hero-meta span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.hero-meta p {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-scroll span {
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: linePulse 2.2s var(--ease-out) infinite;
}

.about {
  min-height: 920px;
  padding: var(--section-space) 0;
  isolation: isolate;
  overflow: hidden;
}

.about-bg,
.about-shade {
  position: absolute;
  inset: 0;
}

.about-bg {
  z-index: -2;
  background: url("assets/images/about-katun-upscaled.png") center 46% / cover no-repeat;
  transform: scale(1.02);
}

.about-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 42, 36, 0.9) 0%, rgba(18, 42, 36, 0.68) 48%, rgba(18, 42, 36, 0.14) 100%),
    linear-gradient(0deg, rgba(18, 42, 36, 0.46), transparent 54%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(80px, 0.55fr) minmax(520px, 1.35fr) minmax(180px, 0.6fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}

.about-copy {
  max-width: 780px;
}

.about h2 {
  font-size: clamp(56px, 6.6vw, 102px);
}

.about-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 680px;
  color: rgba(255, 253, 248, 0.77);
  font-size: 15px;
}

.about-text p {
  margin-bottom: 0;
}

.about blockquote {
  position: relative;
  max-width: 660px;
  margin: 58px 0 0;
  padding: 28px 0 0 68px;
  color: var(--white);
  border-top: 1px solid var(--line-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.25;
}

.about blockquote span {
  position: absolute;
  top: 24px;
  left: 4px;
  color: var(--gold);
  font-size: 66px;
  line-height: 0.8;
}

.about-note {
  align-self: end;
  margin-top: 540px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.about-note span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
}

.about-note p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 12px;
}

.advantages,
.cabins,
.family,
.nearby,
.reviews {
  padding: var(--section-space) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(80px, 0.35fr) minmax(560px, 1.5fr);
  gap: clamp(32px, 5vw, 100px);
  margin-bottom: clamp(70px, 8vw, 118px);
}

.section-intro h2 {
  max-width: 980px;
}

.amenity-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amenity-groups article {
  min-height: 370px;
  padding: 30px clamp(20px, 2.4vw, 38px) 36px;
  border-left: 1px solid var(--line);
  transition:
    color 280ms var(--ease-out),
    background-color 280ms var(--ease-out);
}

.amenity-groups article:first-child {
  border-left: 0;
}

.amenity-groups article:hover {
  color: var(--white);
  background: var(--forest);
}

.amenity-number {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 700;
}

.amenity-kicker {
  margin: 68px 0 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.amenity-groups article:hover .amenity-kicker,
.amenity-groups article:hover > p:last-child {
  color: rgba(255, 253, 248, 0.68);
}

.amenity-groups article:hover .amenity-number {
  color: var(--gold);
}

.amenity-groups h3 {
  min-height: 76px;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.amenity-groups article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.section-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.cabins {
  padding-top: clamp(104px, 8vw, 136px);
  background: var(--white);
}

.section-intro-cabins {
  grid-template-columns: minmax(80px, 0.3fr) minmax(480px, 1.2fr) minmax(230px, 0.5fr);
  margin-bottom: clamp(52px, 5vw, 76px);
}

.intro-aside {
  align-self: end;
  max-width: 330px;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 14px;
}

.stay-story {
  display: grid;
  gap: clamp(120px, 13vw, 210px);
}

.story-chapter {
  position: relative;
}

.story-media {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.story-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-soft);
}

.story-media:hover img {
  transform: scale(1.025);
}

.story-media > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--forest);
  background: var(--gold);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.story-copy .eyebrow {
  margin-bottom: 16px;
}

.story-copy h3 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.3vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.story-copy > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.story-territory {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.55fr);
  gap: clamp(40px, 6vw, 98px);
  align-items: end;
}

.story-territory .story-media {
  aspect-ratio: 16 / 10;
}

.story-territory .story-copy {
  padding-bottom: 8%;
}

.story-exterior {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.45fr);
  gap: clamp(42px, 8vw, 132px);
  align-items: center;
}

.story-exterior .story-copy {
  padding-left: clamp(0px, 3vw, 52px);
}

.story-pair {
  position: relative;
  min-height: 820px;
}

.story-media-tall {
  width: 68%;
  height: 780px;
  margin-left: auto;
}

.story-media-small {
  position: absolute;
  bottom: -42px;
  left: 0;
  width: 48%;
  aspect-ratio: 4 / 5;
  border: 10px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.story-interior {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.interior-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
  align-items: end;
}

.story-media-wide {
  aspect-ratio: 4 / 5;
}

.story-media-bedroom {
  aspect-ratio: 4 / 5.8;
  margin-bottom: -64px;
}

.interior-copy .btn {
  margin-top: 28px;
}

.banya {
  padding: var(--section-space) 0;
  overflow: hidden;
}

.banya-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(54px, 8vw, 128px);
  align-items: center;
  margin-top: 72px;
}

.banya-copy h2 {
  font-size: clamp(54px, 6vw, 90px);
}

.banya-copy > p:not(.eyebrow, .dark-note) {
  max-width: 570px;
  color: rgba(255, 253, 248, 0.72);
}

.dark-note {
  max-width: 520px;
  margin-top: 32px;
  padding-top: 18px;
  color: rgba(255, 253, 248, 0.52);
  border-top: 1px solid var(--line-light);
  font-size: 12px;
}

.evening-composition {
  position: relative;
  min-height: 800px;
}

.evening-main {
  width: 78%;
  height: 690px;
  margin-left: auto;
  overflow: hidden;
}

.evening-main img,
.evening-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evening-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 9px solid var(--forest);
}

.photo-caption {
  position: absolute;
  right: 0;
  bottom: 12px;
  margin: 0;
  color: rgba(255, 253, 248, 0.54);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.family-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: clamp(54px, 8vw, 132px);
  align-items: center;
}

.family-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.family-media img {
  height: 100%;
  object-fit: cover;
}

.media-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  color: var(--forest);
  background: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.family-copy h2 {
  margin-top: 58px;
  font-size: clamp(52px, 5.8vw, 86px);
}

.family-copy > p:not(.eyebrow, .section-note) {
  max-width: 610px;
  color: var(--muted);
}

.family-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.family-facts span {
  min-height: 64px;
  padding: 20px 8px 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.family-facts span:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.nearby-heading,
.reviews-heading,
.gallery-heading {
  display: grid;
  grid-template-columns: minmax(80px, 0.32fr) minmax(500px, 1.2fr) minmax(240px, 0.48fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: start;
  margin-bottom: clamp(64px, 7vw, 108px);
}

.nearby-heading h2,
.reviews-heading h2,
.gallery-heading h2 {
  margin-bottom: 0;
}

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

.route-line article {
  position: relative;
  min-height: 310px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.route-line article:last-child {
  border-right: 0;
}

.route-line article::before {
  position: absolute;
  top: -5px;
  left: 28px;
  width: 9px;
  height: 9px;
  background: var(--bronze);
  border: 3px solid var(--paper-soft);
  border-radius: 50%;
  content: "";
}

.route-line span {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 700;
}

.route-line h3 {
  margin: 86px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
}

.route-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.nearby-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.nearby-footer p {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.reviews-heading {
  grid-template-columns: minmax(80px, 0.32fr) minmax(620px, 1.68fr);
}

.review-stage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  border-top: 1px solid var(--line);
}

.review-stage article {
  position: relative;
  min-height: 310px;
  padding: 38px clamp(28px, 4vw, 60px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-stage article:nth-child(even) {
  border-right: 0;
}

.review-stage article p {
  max-width: 620px;
  margin: 44px 0 30px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.25;
}

.review-stage .review-featured {
  grid-row: span 2;
  min-height: 620px;
  color: var(--white);
  background: var(--forest);
}

.review-stage .review-featured p {
  margin-top: 120px;
  font-size: clamp(38px, 4vw, 58px);
}

.quote-mark {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 62px;
  line-height: 0.7;
}

.review-topic {
  color: var(--bronze);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.review-featured .review-topic {
  color: var(--gold);
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
}

.reviews-footer p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.gallery {
  padding: clamp(104px, 8vw, 136px) 0 0;
  overflow: hidden;
}

.gallery-heading {
  margin-bottom: clamp(52px, 5vw, 76px);
}

.gallery-heading {
  align-items: end;
}

.gallery-heading > p {
  max-width: 350px;
  margin-bottom: 14px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 14px;
}

.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 28vw);
  gap: 10px;
  padding: 0 var(--gutter) 44px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.gallery-item {
  position: relative;
  height: clamp(420px, 50vw, 690px);
  padding: 0;
  color: var(--white);
  background: #18231e;
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-item:nth-child(3n + 2) {
  height: clamp(380px, 45vw, 620px);
  margin-top: 56px;
}

.gallery-item:nth-child(3n + 3) {
  height: clamp(400px, 47vw, 650px);
  margin-top: 22px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-soft);
}

.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(10, 16, 13, 0.76), transparent);
  content: "";
  pointer-events: none;
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  transform: translateY(8px);
  transition: transform 280ms var(--ease-out);
}

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

.gallery-item:hover span {
  transform: translateY(0);
}

.contacts {
  min-height: 900px;
  padding: var(--section-space) 0;
  color: var(--white);
  background: var(--forest);
  isolation: isolate;
  overflow: hidden;
}

.contact-backdrop,
.contact-shade {
  position: absolute;
  inset: 0;
}

.contact-backdrop {
  z-index: -2;
}

.contact-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.contact-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 28, 22, 0.82) 0%, rgba(16, 28, 22, 0.58) 60%, rgba(16, 28, 22, 0.2)),
    linear-gradient(0deg, rgba(16, 28, 22, 0.52), transparent 54%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(80px, 0.28fr) minmax(520px, 1.15fr) minmax(300px, 0.57fr);
  gap: clamp(36px, 5vw, 92px);
  align-items: end;
  min-height: 590px;
}

.contact-copy h2 {
  font-size: clamp(60px, 6.8vw, 104px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 253, 248, 0.74);
}

.contact-copy .btn {
  margin-top: 20px;
}

.contact-card {
  padding: 36px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.contact-card-label {
  margin-bottom: 36px;
  color: var(--bronze);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-card address {
  margin-bottom: 36px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 2.4vw, 36px);
  font-style: normal;
  line-height: 1.25;
}

.contact-card-actions {
  display: grid;
}

.contact-card-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  padding: 70px var(--gutter) 28px;
  color: var(--white);
  background: #18231e;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.4fr;
  gap: 42px;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 0.8;
}

.footer-brand i {
  color: var(--gold);
  font-weight: 500;
}

.footer-main > p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 253, 248, 0.54);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 28px;
}

.footer-links a,
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  font-weight: 600;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--container);
  margin-inline: auto;
  padding-top: 24px;
  color: rgba(255, 253, 248, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.footer-bottom a {
  font-size: 10px;
}

.modal,
.lightbox {
  position: fixed;
  z-index: var(--z-modal);
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 220ms ease,
    visibility 220ms;
}

.modal.is-open,
.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 15, 0.76);
  backdrop-filter: blur(9px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  max-height: calc(100dvh - 40px);
  padding: clamp(32px, 5vw, 58px);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 300ms var(--ease-out),
    transform 300ms var(--ease-out);
}

.modal.is-open .modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-close,
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.modal-dialog h2 {
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 66px);
}

.modal-dialog > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-options {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease;
}

.contact-options a:hover {
  color: var(--bronze);
}

.contact-options span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.contact-options b {
  font-size: 11px;
}

.lightbox {
  padding: 20px clamp(20px, 4vw, 68px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  width: min(100%, 1500px);
  height: min(92dvh, 980px);
  color: var(--white);
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 260ms var(--ease-out),
    transform 320ms var(--ease-out);
}

.lightbox.is-open .lightbox-dialog {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  top: 0;
  right: 0;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.lightbox-media {
  display: grid;
  place-items: center;
  height: calc(100% - 74px);
  overflow: hidden;
}

.lightbox-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-arrow {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.lightbox-meta {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  min-height: 66px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.lightbox-meta p {
  margin: 0;
  font-size: 13px;
}

.lightbox-meta span {
  color: var(--gold);
  font-size: 12px;
}

.image-error {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 240px;
  padding: 20px;
  color: var(--ink);
  background: var(--paper-deep);
  font-size: 12px;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
}

[data-reveal] {
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-image-reveal] {
  overflow: hidden;
  transform: translateY(18px);
  transition:
    transform 900ms var(--ease-soft);
}

[data-image-reveal]::after {
  position: absolute;
  z-index: 5;
  inset: 0;
  background: var(--image-curtain, var(--paper));
  content: "";
  pointer-events: none;
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 900ms var(--ease-soft);
}

.cabins [data-image-reveal] {
  --image-curtain: var(--white);
}

.banya [data-image-reveal],
.contacts [data-image-reveal] {
  --image-curtain: var(--forest);
}

.evening-main {
  position: relative;
}

[data-reveal].is-visible,
[data-image-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-image-reveal].is-visible::after {
  transform: scaleY(0);
  transform-origin: top;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: scale(1.09);
  }
  to {
    opacity: 1;
    transform: translate3d(0, calc(var(--hero-shift) * 0.45), 0) scale(1.035);
  }
}

@keyframes linePulse {
  0%,
  100% {
    transform: scaleX(0.35);
  }
  50% {
    transform: scaleX(1);
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 16px;
  }

  .header-cta {
    min-width: 156px;
  }

  .hero-content {
    width: min(730px, 74vw);
  }

  .hero-meta {
    width: min(580px, 50vw);
  }

  .about-layout {
    grid-template-columns: 70px minmax(500px, 1fr) 180px;
    gap: 40px;
  }

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

  .amenity-groups article {
    min-height: 320px;
    border-bottom: 1px solid var(--line);
  }

  .amenity-groups article:nth-child(odd) {
    border-left: 0;
  }

  .amenity-groups article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .story-pair {
    min-height: 700px;
  }

  .story-media-tall {
    height: 660px;
  }

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

  .evening-composition {
    min-height: 680px;
  }

  .evening-main {
    height: 590px;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: clamp(24px, 5vw, 48px);
  }

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

  .main-nav {
    position: fixed;
    z-index: var(--z-menu);
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 18px var(--gutter) 36px;
    color: var(--ink);
    background: var(--paper);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 260ms var(--ease-out),
      transform 260ms var(--ease-out);
  }

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

  .main-nav a {
    width: 100%;
    min-height: 56px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle {
    z-index: calc(var(--z-menu) + 1);
    display: block;
    grid-column: 3;
  }

  .header-cta {
    display: none;
  }

  .brand {
    z-index: calc(var(--z-menu) + 1);
  }

  .hero {
    min-height: min(900px, 94dvh);
    padding-top: 130px;
  }

  .hero-content {
    width: min(720px, 92%);
    padding-bottom: 180px;
  }

  .hero-meta {
    right: var(--gutter);
    bottom: 38px;
    width: calc(100% - var(--gutter) * 2);
  }

  .hero-scroll {
    display: none;
  }

  .about {
    min-height: 860px;
  }

  .about-layout,
  .section-intro,
  .section-intro-cabins,
  .nearby-heading,
  .reviews-heading,
  .gallery-heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 52px;
  }

  .about-copy {
    max-width: 760px;
  }

  .about-note {
    width: 220px;
    margin-top: 0;
  }

  .section-intro,
  .nearby-heading,
  .reviews-heading,
  .gallery-heading {
    gap: 34px;
  }

  .intro-aside {
    max-width: 600px;
    margin-bottom: 0;
  }

  .story-territory,
  .story-exterior,
  .story-interior {
    grid-template-columns: 1fr;
  }

  .story-territory .story-copy {
    max-width: 640px;
    padding-bottom: 0;
  }

  .story-exterior .story-copy {
    max-width: 640px;
    padding-left: 0;
  }

  .story-pair {
    order: -1;
  }

  .story-interior .interior-copy {
    max-width: 640px;
  }

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

  .banya-copy {
    max-width: 760px;
  }

  .family-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }

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

  .route-line article:nth-child(2) {
    border-right: 0;
  }

  .route-line article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .review-stage .review-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 430px;
    border-right: 0;
  }

  .contact-layout {
    align-content: center;
    gap: 34px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .contact-card {
    width: min(100%, 520px);
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
    --section-space: 88px;
  }

  body {
    font-size: 16px;
  }

  h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .brand-name {
    font-size: 18px;
  }

  .site-header {
    padding-inline: var(--gutter);
  }

  .hero {
    min-height: min(830px, 94dvh);
    padding: 118px var(--gutter) 24px;
  }

  .hero-media img {
    height: 105%;
    object-position: 52% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(11, 18, 15, 0.7) 0%, rgba(11, 18, 15, 0.18) 78%),
      linear-gradient(90deg, rgba(11, 18, 15, 0.34), transparent);
  }

  .hero-content {
    width: 100%;
    padding-bottom: 260px;
  }

  .hero h1 {
    max-width: 11ch;
    margin-bottom: 22px;
    font-size: clamp(52px, 16vw, 70px);
    line-height: 0.9;
  }

  .hero-lead {
    max-width: 36ch;
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.55;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
    padding-inline: 4px;
  }

  .hero-meta {
    bottom: 22px;
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 253, 248, 0.28);
  }

  .hero-meta div {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    min-height: 48px;
    padding: 0 8px;
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
    border-left: 0;
  }

  .hero-meta p {
    margin: 0;
  }

  .about {
    min-height: 900px;
  }

  .about-bg {
    background-position: 54% center;
  }

  .about-shade {
    background:
      linear-gradient(0deg, rgba(18, 42, 36, 0.9) 0%, rgba(18, 42, 36, 0.62) 72%, rgba(18, 42, 36, 0.18)),
      linear-gradient(90deg, rgba(18, 42, 36, 0.5), transparent);
  }

  .about-layout {
    gap: 34px;
  }

  .about h2 {
    font-size: clamp(45px, 13vw, 59px);
  }

  .about-text {
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 14px;
  }

  .about blockquote {
    margin-top: 36px;
    padding-left: 42px;
    font-size: 24px;
  }

  .about blockquote span {
    left: 0;
    font-size: 52px;
  }

  .about-note {
    width: 180px;
  }

  .section-intro {
    margin-bottom: 56px;
  }

  .cabins {
    padding-top: 68px;
  }

  .section-intro-cabins {
    margin-bottom: 20px;
  }

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

  .amenity-groups article {
    min-height: 0;
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .amenity-groups article:nth-child(n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .amenity-groups article:last-child {
    border-bottom: 0;
  }

  .amenity-groups article:hover {
    color: inherit;
    background: transparent;
  }

  .amenity-kicker {
    margin-top: 30px;
  }

  .amenity-groups h3 {
    min-height: 0;
    margin-bottom: 12px;
  }

  .amenity-groups article:hover .amenity-kicker,
  .amenity-groups article:hover > p:last-child {
    color: var(--muted);
  }

  .stay-story {
    gap: 110px;
  }

  .story-territory,
  .story-exterior,
  .story-interior {
    gap: 34px;
  }

  .story-territory .story-media {
    aspect-ratio: 4 / 5;
  }

  .story-territory .story-media img {
    object-position: 52% center;
  }

  .story-copy h3 {
    font-size: 42px;
  }

  .story-pair {
    min-height: 520px;
  }

  .story-media-tall {
    width: 78%;
    height: 500px;
  }

  .story-media-small {
    bottom: -28px;
    width: 52%;
    border-width: 6px;
  }

  .interior-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 8px;
  }

  .story-media-bedroom {
    margin-bottom: -30px;
  }

  .banya-layout {
    margin-top: 44px;
  }

  .banya-copy h2 {
    font-size: 48px;
  }

  .evening-composition {
    min-height: 530px;
  }

  .evening-main {
    width: 86%;
    height: 470px;
  }

  .evening-secondary {
    width: 48%;
    border-width: 6px;
  }

  .photo-caption {
    display: none;
  }

  .family-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .family-media {
    aspect-ratio: 4 / 5;
  }

  .family-copy h2 {
    margin-top: 36px;
    font-size: 46px;
  }

  .nearby-heading,
  .reviews-heading,
  .gallery-heading {
    margin-bottom: 56px;
  }

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

  .route-line article {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-line article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .route-line article::before {
    left: 0;
  }

  .route-line h3 {
    margin: 42px 0 12px;
  }

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

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

  .review-stage article,
  .review-stage .review-featured {
    grid-column: auto;
    min-height: 310px;
    padding: 32px 24px;
    border-right: 0;
  }

  .review-stage .review-featured {
    min-height: 430px;
  }

  .review-stage .review-featured p {
    margin-top: 76px;
    font-size: 40px;
  }

  .review-stage article p {
    margin-top: 48px;
    font-size: 28px;
  }

  .reviews-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-heading > p {
    margin-top: -20px;
  }

  .gallery {
    padding-top: 82px;
  }

  .gallery-heading {
    margin-bottom: 48px;
  }

  .gallery-rail {
    grid-auto-columns: 82vw;
    padding-inline: var(--gutter);
  }

  .gallery-item,
  .gallery-item:nth-child(3n + 2),
  .gallery-item:nth-child(3n + 3) {
    height: 520px;
    margin-top: 0;
  }

  .contacts {
    min-height: 920px;
  }

  .contact-layout {
    min-height: 680px;
  }

  .contact-copy h2 {
    font-size: 50px;
  }

  .contact-copy .btn {
    width: 100%;
  }

  .contact-card {
    padding: 28px 24px;
  }

  .contact-backdrop img {
    object-position: 54% center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
  }

  .footer-links {
    grid-column: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
  }

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

  .footer-bottom div {
    flex-direction: column;
    gap: 0;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-dialog {
    width: 100%;
    max-height: 92dvh;
    border-radius: var(--radius) var(--radius) 0 0;
    transform: translateY(24px);
  }

  .contact-options a {
    min-height: 64px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-dialog {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    height: 94dvh;
  }

  .lightbox-close {
    top: 4px;
    right: 4px;
  }

  .lightbox-arrow {
    width: 46px;
    height: 46px;
  }

  .lightbox-media {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-top: 56px;
  }

  .lightbox-prev {
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .lightbox-next {
    z-index: 2;
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }

  .lightbox-meta {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero-content {
    padding-bottom: 250px;
  }

  .about h2,
  .family-copy h2,
  .contact-copy h2 {
    font-size: 43px;
  }

  .story-pair {
    min-height: 460px;
  }

  .story-media-tall {
    height: 440px;
  }

  .gallery-item,
  .gallery-item:nth-child(3n + 2),
  .gallery-item:nth-child(3n + 3) {
    height: 470px;
  }
}

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

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

  .hero-media img {
    transform: none !important;
  }

  [data-reveal],
  [data-image-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-image-reveal]::after {
    display: none;
  }
}
