@font-face {
  font-family: "BPG Nino Mtavruli";
  src: url("assets/fonts/bpg-nino-mtavruli-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #179A4D;
  --forest: #06572E;
  --ink: #111111;
  --muted: #6f6f6f;
  --line: #dedcd6;
  --paper: #f7f6f2;
  --white: #ffffff;
  --black: #000000;
  --header-height: 88px;
  --shell: min(1360px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "BPG Nino Mtavruli", sans-serif;
  font-weight: 700;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

address {
  font-style: normal;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 11vw, 176px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  color: var(--forest);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 101;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding-inline: 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: min-height 350ms var(--ease), background-color 350ms var(--ease), color 350ms var(--ease), border-color 350ms var(--ease), box-shadow 350ms var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-active {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.brand span {
  font-size: 0.9rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
  font-size: 0.77rem;
}

.desktop-nav a,
.footer-column a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.footer-column a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.desktop-nav a:hover::after,
.footer-column a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-toggle,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  font-size: 0.72rem;
}

.header-call {
  min-width: 112px;
  padding: 13px 20px 11px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 0.75rem;
  transition: background-color 220ms ease, transform 220ms ease;
}

.header-call:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  gap: 5px;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  background: currentColor;
  transition: transform 260ms var(--ease);
}

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

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

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  padding: 48px 24px 32px;
  background: var(--paper);
  color: var(--ink);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.65rem, 8vw, 2.4rem);
}

.mobile-menu-call {
  width: 100%;
  margin-top: 36px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  will-change: transform;
}

.hero-overlay {
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin-bottom: clamp(154px, 16vh, 220px);
}

.eyebrow {
  color: var(--forest);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-eyebrow,
.eyebrow-light {
  color: var(--white);
}

.hero h1 {
  max-width: 1010px;
  margin-top: 22px;
  font-size: clamp(3.1rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.final-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  text-align: center;
  transition: transform 260ms var(--ease), background-color 260ms ease, color 260ms ease, border-color 260ms ease;
}

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

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-primary:hover {
  background: var(--forest);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

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

.button-outline {
  border-color: var(--forest);
  color: var(--forest);
}

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

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 44px;
  left: 0;
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.hero-meta span + span {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 34px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
}

.scroll-cue span {
  width: 1px;
  height: 17px;
  background: var(--white);
  animation: cue 2.2s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(-4px); opacity: 0.5; }
  50% { transform: translateY(5px); opacity: 1; }
}

.section-index {
  margin-bottom: 32px;
  color: var(--green);
  font-size: 0.75rem;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2.5fr);
  column-gap: clamp(48px, 8vw, 140px);
}

.statement-grid > .eyebrow {
  padding-top: 18px;
}

.display-copy {
  max-width: 1020px;
  font-size: clamp(2.25rem, 5vw, 5.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.statement-detail {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.statement-detail p,
.section-heading > p,
.trust-copy > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.text-link {
  color: var(--forest);
  font-size: 0.78rem;
  white-space: nowrap;
}

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

.forest-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(64px, 11vw, 180px);
}

.forest-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.forest-copy h2 {
  max-width: 650px;
  margin-top: 24px;
  font-size: clamp(2.8rem, 5.8vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.feature-list {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding-block: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.feature-number {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.feature h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.feature p {
  max-width: 420px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.75;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  margin-bottom: 72px;
}

.section-heading h2 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(2.65rem, 5.5vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.room-feature {
  display: grid;
  gap: 24px;
}

.room-feature-large {
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  align-items: end;
}

.room-photo-wrap {
  overflow: hidden;
  background: #e7e4dc;
}

.room-photo-wrap img {
  width: 100%;
  height: auto;
  transition: transform 900ms var(--ease);
}

.room-feature:hover .room-photo-wrap img,
.gallery-item:hover img {
  transform: scale(1.025);
}

.room-copy {
  padding: 18px 0 22px;
}

.room-copy > span {
  color: var(--green);
  font-size: 0.7rem;
}

.room-copy h3 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3.2vw, 3.35rem);
  line-height: 1.1;
}

.room-copy p {
  max-width: 430px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.room-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 80px);
  margin-top: clamp(80px, 12vw, 170px);
}

.room-pair .portrait {
  aspect-ratio: 4 / 5;
}

.room-pair .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-feature-offset {
  margin-top: 130px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 86px;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, 15vw);
  gap: 16px;
}

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

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

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

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

.gallery-item span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  width: fit-content;
  padding: 10px 12px 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.7rem;
}

.trust {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(48px, 10vw, 160px);
}

.trust-score {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: 56px;
  background: var(--green);
  color: var(--white);
}

.trust-score strong {
  font-size: clamp(5.5rem, 13vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.trust-score span {
  max-width: 320px;
  margin-top: 30px;
  font-size: 0.88rem;
}

.trust-copy h2 {
  margin-block: 18px 24px;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.location {
  position: relative;
  min-height: 840px;
  padding: 0;
  background: var(--black);
  overflow: hidden;
}

.location-visual,
.location-visual::after {
  position: absolute;
  inset: 0;
}

.location-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-visual::after {
  background: rgba(0, 0, 0, 0.42);
  content: "";
}

.location-card {
  position: relative;
  z-index: 2;
  width: min(610px, calc(100vw - 48px));
  margin-left: max(24px, calc((100vw - min(1360px, calc(100vw - 64px))) / 2));
  padding: clamp(42px, 6vw, 78px);
  background: var(--forest);
  color: var(--white);
  transform: translateY(120px);
}

.location-card h2 {
  margin-top: 22px;
  font-size: clamp(2.45rem, 4.6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.location-card address {
  display: grid;
  gap: 8px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

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

.final-cta {
  display: grid;
  place-items: center;
  text-align: center;
}

.cta-logo {
  width: 130px;
  height: 130px;
  margin-bottom: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.final-cta h2 {
  margin-top: 22px;
  font-size: clamp(3.4rem, 8vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding-block: 72px 32px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

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

.footer-brand strong {
  font-size: 1rem;
}

.footer-brand span,
.footer-column > span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
}

.footer-column a,
.footer-column p {
  width: fit-content;
  max-width: 240px;
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-booking-bar {
  display: none;
}

.gallery-dialog {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--black);
  color: var(--white);
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.dialog-frame {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
}

.dialog-frame figure {
  display: grid;
  max-width: min(1200px, calc(100vw - 180px));
  max-height: 90svh;
  justify-self: center;
  margin: 0;
}

.dialog-frame figure img {
  max-width: 100%;
  max-height: 82svh;
  margin: auto;
  object-fit: contain;
}

.dialog-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.dialog-close,
.dialog-arrow {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 26px;
  width: 50px;
  height: 50px;
  font-size: 2.4rem;
  line-height: 1;
}

.dialog-arrow {
  width: 54px;
  height: 54px;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

@media (max-width: 1040px) {
  :root {
    --shell: min(calc(100% - 40px), 920px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .statement-grid,
  .forest-grid,
  .room-feature-large,
  .section-heading,
  .trust {
    grid-template-columns: 1fr;
  }

  .statement-grid > .eyebrow {
    padding-top: 0;
  }

  .display-copy {
    margin-top: 32px;
  }

  .statement-detail {
    grid-column: 1;
  }

  .forest-copy {
    position: static;
  }

  .section-heading {
    align-items: start;
  }

  .room-feature-large .room-copy {
    max-width: 620px;
  }

  .gallery-grid {
    grid-auto-rows: minmax(120px, 22vw);
  }

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

  .trust-score {
    min-height: 360px;
  }

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

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.not-found img {
  width: 128px;
  height: 128px;
  margin: 0 auto 36px;
  border-radius: 50%;
  object-fit: cover;
}

.not-found h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
}

.not-found p {
  margin: 22px auto 34px;
  color: var(--muted);
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
    --shell: calc(100% - 32px);
  }

  .section {
    padding-block: 88px;
  }

  .brand span {
    display: none;
  }

  .language-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    height: 106%;
    object-position: 47% center;
  }

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

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-meta {
    bottom: 82px;
    display: grid;
    gap: 8px;
  }

  .hero-meta span + span {
    padding-left: 0;
    border-left: 0;
  }

  .scroll-cue {
    display: none;
  }

  .statement-detail {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .statement-detail .text-link {
    width: fit-content;
  }

  .display-copy,
  .section-heading h2,
  .trust-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  .forest-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .feature {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 48px;
  }

  .room-pair {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .room-feature-offset {
    margin-top: 44px;
  }

  .room-pair .portrait {
    aspect-ratio: 4 / 5;
  }

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

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-item-tall {
    aspect-ratio: 4 / 5;
  }

  .trust-score {
    min-height: 300px;
    padding: 36px;
  }

  .location {
    display: grid;
    min-height: 860px;
    align-items: end;
  }

  .location-card {
    width: calc(100% - 32px);
    margin: 0 auto 16px;
    padding: 38px 28px;
    transform: none;
  }

  .location-card h2 {
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .location-actions {
    display: grid;
  }

  .text-link-light {
    width: fit-content;
    margin-top: 10px;
  }

  .final-actions {
    display: grid;
    width: 100%;
  }

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

  .footer-brand {
    margin-bottom: 12px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    padding-bottom: 74px;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  }

  .mobile-booking-bar a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border-radius: 999px;
    font-size: 0.73rem;
  }

  .mobile-booking-bar a:first-child {
    background: var(--green);
    color: var(--white);
  }

  .dialog-frame {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
  }

  .dialog-frame figure {
    max-width: calc(100vw - 110px);
  }

  .dialog-frame figcaption {
    display: grid;
    gap: 5px;
  }

  .dialog-arrow {
    width: 40px;
    height: 40px;
  }
}

@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;
  }

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