/* Evergreen Dental — single stylesheet, no build step.

   Aesthetic-clinic register: ivory and near-black green with champagne, a display
   serif at real scale, and film grain over everything. Since the template ships with
   no photography, atmosphere has to come from light, texture and type — hence the
   gradient wash in the hero, the dark sections for contrast, and the hairline detail. */

:root {
  --noir: #0b1310;
  --ink: #1b2723;
  --ink-mid: #4a5b54;
  /* 4.9:1 on ivory. Dark sections need the opposite direction, so muted text there
     uses a translucent ivory instead — see .section--dark .quote figcaption. */
  --ink-soft: #5f6f68;

  --ivory: #f8f5ef;
  --ivory-deep: #efe9dd;
  --white: #fff;

  /* --champagne is for rules, borders and text on dark (6.6:1 on noir). It only
     manages 2.6:1 on ivory, so text on light uses --champagne-ink (5.5:1) instead. */
  --champagne: #b89355;
  --champagne-ink: #7d5f28;
  --champagne-lift: #d9c08a;

  --line: #e2dbcd;
  --line-dark: rgb(248 245 239 / 0.14);

  --danger: #9c3226;
  --danger-bg: #f9efec;

  --radius: 2px;
  --radius-lg: 3px;

  --maxw: 1240px;
  --gutter: clamp(1.5rem, 5vw, 4.5rem);

  --display: "Cormorant Garamond", "Noto Serif TC", ui-serif, Georgia, serif;
  --sans: "Noto Sans TC", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

/* Any class that sets `display` outranks the browser's built-in [hidden] rule, so
   hidden elements would still render. This keeps `hidden` meaning hidden. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-mid);
  background: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* Film grain. Fixed, unclickable, and barely there — it stops the flat fills from
   looking like plastic, which is most of the difference between cheap and expensive. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* CJK has no light display weight that holds up at these sizes, and its glyphs need
   air rather than negative tracking. */
body.lang-zh h1,
body.lang-zh h2,
body.lang-zh h3 {
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--champagne-ink);
  outline-offset: 4px;
}

.section--dark :focus-visible,
.footer :focus-visible {
  outline-color: var(--champagne-lift);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(5rem, 12vw, 9.5rem) 0;
}

.section--dark {
  background: var(--noir);
  color: rgb(248 245 239 / 0.62);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--ivory);
}

.section--dark .label {
  color: var(--champagne-lift);
}

.section--dark .label--line::before {
  background: var(--champagne-lift);
}

.section--deep {
  background: var(--ivory-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 100;
  padding: 0.8rem 1.2rem;
  background: var(--noir);
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Bilingual: one language visible at a time ----------
   Component CSS must never set `display` on a bare `span` — a rule like
   `.thing span { display: block }` outranks these and shows both languages. */

[lang="zh"] {
  display: none;
}

body.lang-zh [lang="en"] {
  display: none;
}

body.lang-zh [lang="zh"] {
  display: inline;
}

body.lang-zh p[lang="zh"],
body.lang-zh div[lang="zh"] {
  display: block;
}

/* ---------- Type helpers ---------- */

.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne-ink);
}

body.lang-zh .label {
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.label--line::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  margin-right: 0.9rem;
  vertical-align: middle;
  background: var(--champagne-ink);
}

.lede {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  max-width: 46ch;
}

.display {
  font-size: clamp(2.9rem, 7.2vw, 5.6rem);
}

body.lang-zh .display {
  font-size: clamp(2.2rem, 5.4vw, 4rem);
}

/* ---------- Scroll reveal ---------- */

/* Gated on .js, which the script adds to <html> at startup. Without it these rules
   never apply — so if the script fails to load, the content is simply visible rather
   than stuck at opacity 0 forever. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

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

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

body.lang-zh .btn {
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.btn--primary {
  background: var(--noir);
  color: var(--ivory);
}

.btn--primary:hover {
  background: var(--champagne);
  color: var(--noir);
}

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

.btn--ghost:hover {
  border-color: var(--champagne-ink);
  color: var(--champagne-ink);
}

.section--dark .btn--primary {
  background: var(--champagne);
  color: var(--noir);
}

.section--dark .btn--primary:hover {
  background: var(--ivory);
}

.section--dark .btn--ghost {
  color: var(--ivory);
  border-color: var(--line-dark);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgb(248 245 239 / 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1.1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

body.lang-zh .brand {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.brand svg {
  flex: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.nav__link {
  position: relative;
  padding: 0.5rem 0.95rem;
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.lang-zh .nav__link {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* Hairline that grows from the centre — small, but it reads as considered. */
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  width: 0;
  height: 1px;
  background: var(--champagne-ink);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}

.nav__link:hover {
  color: var(--ink);
}

.nav__link:hover::after {
  width: calc(100% - 1.9rem);
}

.lang-toggle {
  margin-left: 0.7rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-mid);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.lang-toggle:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

.nav__cta {
  margin-left: 0.7rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
}

.nav__toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

@media (max-width: 940px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem var(--gutter) 1.8rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
  }

  .nav__link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav__link::after {
    display: none;
  }

  .lang-toggle,
  .nav__cta {
    margin: 1rem 0 0;
    justify-content: center;
    text-align: center;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 11vw, 8.5rem) 0 clamp(4rem, 9vw, 7rem);
}

/* Two soft washes of light. Blurred gradients read as depth where a flat fill
   reads as a template. */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.hero::before {
  width: 46rem;
  height: 46rem;
  top: -18rem;
  right: -14rem;
  background: radial-gradient(circle, rgb(184 147 85 / 0.22), transparent 68%);
}

.hero::after {
  width: 40rem;
  height: 40rem;
  bottom: -22rem;
  left: -16rem;
  background: radial-gradient(circle, rgb(147 168 157 / 0.28), transparent 68%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.hero h1 {
  margin: 1.8rem 0 0;
}

.hero h1 em {
  font-style: italic;
  color: var(--champagne-ink);
}

/* Synthesised italic on CJK is a slant, not a real cut — it looks like a rendering
   fault. Keep the colour emphasis, drop the slant. */
body.lang-zh .hero h1 em {
  font-style: normal;
}

.hero .lede {
  margin-top: 1.9rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.8rem;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 3.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.fact strong {
  display: block;
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}

/* Targets a class, never a bare `span`, so the language rules keep working. */
.fact__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 16ch;
}

body.lang-zh .fact__label {
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  text-transform: none;
}

/* The hero's right side shows the booking product itself rather than decoration,
   so it carries information and can't read as a missing image. */
.preview {
  position: relative;
  padding: 2.2rem;
  background: rgb(255 255 255 / 0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgb(255 255 255 / 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgb(11 19 16 / 0.28);
}

/* Champagne hairline offset behind the panel. */
.preview::before {
  content: "";
  position: absolute;
  inset: 1.3rem -1.3rem -1.3rem 1.3rem;
  z-index: -1;
  border: 1px solid var(--champagne);
  border-radius: var(--radius-lg);
  opacity: 0.4;
}

.preview__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.preview__head h2 {
  font-size: 1.35rem;
}

.preview__date {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

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

.preview__slot {
  padding: 0.7rem 0.3rem;
  text-align: center;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgb(255 255 255 / 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview__slot--taken {
  color: var(--ink-soft);
  text-decoration: line-through;
}

.preview__slot--pick {
  background: var(--noir);
  border-color: var(--noir);
  color: var(--ivory);
}

.preview__foot {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.preview__tick {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--champagne-ink);
  color: var(--champagne-ink);
}

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

  .preview {
    margin-right: 1.3rem;
  }
}

/* ---------- Section headings ---------- */

.section__head {
  max-width: 44rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__head h2 {
  margin-top: 1.4rem;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
}

body.lang-zh .section__head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}

.section__head p {
  margin-top: 1.5rem;
  font-size: 1.06rem;
  max-width: 48ch;
}

/* ---------- Promises ---------- */

.promises {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
  counter-reset: promise;
}

.promise {
  counter-increment: promise;
}

.promise::before {
  content: "0" counter(promise);
  display: block;
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--champagne);
}

.promise h3 {
  font-size: 1.55rem;
}

body.lang-zh .promise h3 {
  font-size: 1.3rem;
}

.promise p {
  margin-top: 1rem;
  font-size: 0.98rem;
}

/* ---------- Treatment menu ---------- */

.menu {
  border-top: 1px solid var(--line);
}

.menu__row {
  display: grid;
  grid-template-columns: 4rem minmax(11rem, 1.1fr) 2.2fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 2.1rem 1rem 2.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.5s var(--ease), padding-left 0.5s var(--ease);
}

.menu__row:hover {
  background: rgb(255 255 255 / 0.55);
  padding-left: 1rem;
}

.menu__index {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--champagne-ink);
}

.menu__row h3 {
  font-size: 1.6rem;
}

body.lang-zh .menu__row h3 {
  font-size: 1.3rem;
}

.menu__desc {
  font-size: 0.97rem;
  max-width: 52ch;
}

.menu__price {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

body.lang-zh .menu__price {
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  text-transform: none;
}

@media (max-width: 900px) {
  .menu__row {
    grid-template-columns: 3rem 1fr;
    gap: 0.5rem 1rem;
    padding: 1.8rem 0;
  }

  .menu__row:hover {
    padding-left: 0;
  }

  .menu__desc,
  .menu__price {
    grid-column: 2;
  }

  .menu__price {
    margin-top: 0.7rem;
  }
}

/* ---------- Team ---------- */

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}

/* No stagger here. With three cards, offsetting the middle one reads as a mistake
   rather than as composition, and it pushes the names and roles out of alignment. */

/* No portraits: the clinic has no photography, and a monogram plate just reads as an
   image that failed to load. A hairline and the name carry the card instead. If a
   practice supplies real headshots, add an <img> above the name here. */
.person {
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.person h3 {
  font-size: 1.75rem;
}

body.lang-zh .person h3 {
  font-size: 1.4rem;
}

.person__role {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne-ink);
}

body.lang-zh .person__role {
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-transform: none;
}

.person p {
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
}

.quote {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.quote::before {
  content: "“";
  display: block;
  margin-bottom: -1.2rem;
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--champagne);
  opacity: 0.55;
}

.quote blockquote {
  margin: 0 0 1.8rem;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--ivory);
}

body.lang-zh .quote blockquote {
  font-size: 1.15rem;
  font-style: normal;
  line-height: 1.85;
}

.quote figcaption {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(248 245 239 / 0.6);
}

body.lang-zh .quote figcaption {
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  text-transform: none;
}

/* ---------- Visit ---------- */

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

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

.visit h3 {
  margin-bottom: 1.6rem;
  font-size: 1.35rem;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours th,
.hours td {
  padding: 1rem 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}

.hours th {
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}

.hours td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.hours tr:last-child th,
.hours tr:last-child td {
  border-bottom: 0;
}

.hours .is-closed td {
  color: var(--ink-soft);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.6rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-list svg {
  margin-top: 0.4rem;
  color: var(--champagne-ink);
}

.contact-list a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.4s var(--ease);
}

.contact-list a:hover {
  border-color: var(--champagne);
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  width: 52rem;
  height: 52rem;
  top: -26rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(100px);
  background: radial-gradient(circle, rgb(184 147 85 / 0.28), transparent 65%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-top: 1.4rem;
  font-size: clamp(2.3rem, 5.4vw, 4rem);
}

body.lang-zh .cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta p {
  margin: 1.6rem auto 2.8rem;
  max-width: 44ch;
}

/* ---------- Footer ---------- */

.footer {
  padding: 4rem 0 3rem;
  background: var(--noir);
  color: rgb(248 245 239 / 0.62);
  font-size: 0.85rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer a {
  color: rgb(248 245 239 / 0.7);
  text-decoration: none;
}

.footer a:hover {
  color: var(--champagne-lift);
}

.demo-note {
  margin-top: 2rem;
  font-size: 0.78rem;
  line-height: 1.8;
  max-width: 72ch;
  color: var(--ink-soft);
}

.demo-note strong {
  color: var(--ink);
  font-weight: 500;
}

/* The same note also sits on the booking page's white panel, so the light-on-dark
   treatment has to be scoped to the footer or it turns invisible there. */
.footer .demo-note {
  color: rgb(248 245 239 / 0.58);
}

.footer .demo-note strong {
  color: rgb(248 245 239 / 0.75);
}
