:root {
  --bg: #f4f1ec;
  --bg-2: #ebe6de;
  --surface: #fffcf8;
  --ink: #1c2428;
  --muted: #667178;
  --line: #ddd6cb;
  --line-strong: #c9c0b2;
  --teal: #1f5c63;
  --teal-deep: #16464c;
  --brass: #b08a4f;
  --brass-soft: #c9a66a;
  --radius: 2px;
  --pad: clamp(1.25rem, 4.5vw, 3.25rem);
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--brass);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-solid,
.site-header.page-header {
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand span {
  color: var(--teal);
  font-weight: 500;
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  padding: 0.55rem 1.05rem;
  background: var(--teal);
  color: #f7faf9 !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--teal-deep);
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.6rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: var(--pad);
    right: var(--pad);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
  }

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

  .nav a {
    padding: 0.85rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-teal {
  background: var(--teal);
  color: #f7faf9;
}

.btn-teal:hover {
  background: var(--teal-deep);
}

.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-brass {
  background: var(--brass);
  color: #fff;
}

.btn-brass:hover {
  background: var(--brass-soft);
  color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--teal-deep);
}

.btn-light:hover {
  background: var(--bg-2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.cta-row-flush {
  margin-top: 0;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2.5rem) 0 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 36, 40, 0.25) 0%, rgba(28, 36, 40, 0.15) 35%, rgba(28, 36, 40, 0.72) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.hero .eyebrow {
  color: var(--brass-soft);
}

.hero .eyebrow::before {
  background: var(--brass-soft);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.75rem);
  color: #fff;
  max-width: 12ch;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.hero .lede {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

/* Availability strip (signature) */
.avail {
  position: relative;
  z-index: 2;
  margin-top: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: -2.5rem;
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(28, 36, 40, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.avail label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.avail input,
.avail select {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: var(--bg);
}

.avail input:focus,
.avail select:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.avail .btn {
  white-space: nowrap;
  height: 2.7rem;
}

@media (max-width: 860px) {
  .avail {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }

  .avail .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .avail {
    grid-template-columns: 1fr;
  }
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section-alt {
  background: var(--bg-2);
}

.section-teal {
  background: var(--teal);
  color: #f7faf9;
}

.section-teal .eyebrow {
  color: var(--brass-soft);
}

.section-teal .eyebrow::before {
  background: var(--brass-soft);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin-bottom: 0.7rem;
}

.section-head p {
  color: var(--muted);
}

.section-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.4rem;
}

.section-row .section-head {
  margin-bottom: 0;
}

/* ——— Room cards ——— */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
  margin: 0;
}

.room-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
}

.room-card .media {
  margin: 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bg-2);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover img {
  transform: scale(1.04);
}

.room-card .body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.room-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-card h3 {
  font-size: 1.75rem;
}

.room-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.room-card .rate {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
}

.room-card .rate strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--teal);
}

.room-card .rate span {
  font-size: 0.85rem;
  color: var(--muted);
}

.room-card .rate .link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brass);
}

@media (max-width: 900px) {
  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .room-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Amenities mosaic ——— */
.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: minmax(12rem, 1fr) minmax(12rem, 1fr);
  gap: 1rem;
  margin: 0;
}

.mosaic article {
  margin: 0;
  position: relative;
  min-height: 14rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  isolation: isolate;
}

.mosaic article:first-child {
  grid-row: 1 / 3;
  min-height: 0;
}

.mosaic article:nth-child(4) {
  grid-column: 2 / 4;
}

.mosaic img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(transparent 25%, rgba(28, 36, 40, 0.88));
}

.mosaic h3 {
  font-size: 1.7rem;
  margin-bottom: 0.3rem;
}

.mosaic p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 28ch;
}

@media (max-width: 860px) {
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .mosaic article:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 18rem;
  }

  .mosaic article:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .mosaic {
    grid-template-columns: 1fr;
  }
}

/* ——— Rates ——— */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.rate-card {
  padding: 1.7rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rate-card.featured {
  border-color: var(--teal);
  background: #f7faf9;
  box-shadow: 0 14px 36px rgba(31, 92, 99, 0.1);
}

.rate-card .tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.55rem;
}

.rate-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.rate-card .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin: 0.85rem 0;
}

.rate-card .price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.rate-card ul {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.rate-card li {
  padding: 0.5rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .rate-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }
}

/* ——— Book band ——— */
.book-band {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}

.book-band h2 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin: 0.4rem 0 0.7rem;
  color: #fff;
}

.book-band p {
  color: rgba(247, 250, 249, 0.78);
  max-width: 40ch;
}

@media (max-width: 720px) {
  .book-band {
    grid-template-columns: 1fr;
  }
}

/* ——— Page hero ——— */
.page-hero {
  padding: calc(var(--header-h) + 2.75rem) 0 2.5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  max-width: 14ch;
  margin-bottom: 0.7rem;
}

.page-hero .lede {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ——— Detail ——— */
.detail-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.detail-gallery .main {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
}

.detail-gallery .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0;
}

.detail-gallery .thumbs figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
}

.detail-gallery .thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose h2 {
  font-size: 1.7rem;
  margin: 1.6rem 0 0.6rem;
}

.prose p + p {
  margin-top: 0.85rem;
}

.prose ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.prose li + li {
  margin-top: 0.4rem;
}

.aside-card {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.aside-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.aside-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 1rem;
}

.aside-card .price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.aside-card dl {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.aside-card dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.aside-card dd {
  margin: 0.15rem 0 0;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 860px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .aside-card {
    position: static;
  }
}

/* ——— About / location ——— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split .media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--bg-2);
}

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

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value {
  padding: 1.4rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brass);
  margin-bottom: 0.4rem;
}

.value h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.value p {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-placeholder {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 92, 99, 0.12), rgba(176, 138, 79, 0.1)),
    var(--surface);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .split,
  .values {
    grid-template-columns: 1fr;
  }
}

/* ——— Forms ——— */
.book-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: var(--bg);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.form textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--teal);
  min-height: 1.25rem;
  font-weight: 600;
}

.info-block .lede-block {
  margin-bottom: 1.25rem;
}

.info-block strong {
  color: var(--ink);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.35rem;
}

.hours-table th,
.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.hours-table th {
  text-align: left;
  font-weight: 600;
}

.hours-table td {
  text-align: right;
  color: var(--muted);
}

@media (max-width: 860px) {
  .book-layout,
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ——— Journal ——— */
.journal-list {
  border-top: 1px solid var(--line);
}

.journal-row {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.journal-row time {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.journal-row h3 {
  font-size: 1.55rem;
  margin-bottom: 0.3rem;
}

.journal-row p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 52ch;
}

.journal-row .link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .journal-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

/* ——— 404 ——— */
.error-page {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) var(--pad) 4rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-weight: 500;
  color: var(--teal);
  line-height: 0.9;
}

.error-page p {
  color: var(--muted);
  margin: 0.5rem 0 1.5rem;
}

/* ——— Footer ——— */
.site-footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid .brand {
  font-size: 1.7rem;
}

.footer-grid p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 28ch;
}

.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-grid a:hover {
  color: var(--teal);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.section-after-avail {
  padding-top: clamp(4.5rem, 10vw, 7rem);
}

.avail .form-note {
  grid-column: 1 / -1;
  margin: 0;
}

.split-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 0.85rem;
}

.split-copy .lede-block {
  color: var(--muted);
  max-width: 42ch;
}

.split-copy .lede-block + .lede-block {
  margin-top: 1rem;
}

.note {
  margin-top: 1.75rem;
  color: var(--muted);
  max-width: 48ch;
  font-size: 0.92rem;
}

.values-gap {
  margin-top: 2rem;
}

.btn-block {
  width: 100%;
}

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

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