@import url("/fonts/fonts.css");

/* ==========================================================================
   Nord Mirissa — "Evening at the house"

   Art direction: the amber backlight behind the entrance sign is the only light
   source on the site. Everything sits in warm darkness around it — the way the
   house actually looks at seven in the evening, which is also the hour the
   photographs were taken. Warm near-black, never blue-black.

   Type: Source Serif 4 does the emotional work. Optical sizing is on, so at
   display sizes it sharpens into a high-contrast editorial face; at reading
   sizes it stays soft. Archivo, tracked wide in caps, handles labels, numerals
   and anything mechanical. The serif speaks, the grotesque annotates.

   This design commits to a single dark world on purpose — there is no light
   variant. A guest house lit by one amber sign does not have a daytime mode.
   ========================================================================== */

:root {
  color-scheme: dark;

  --ground:   #13100D;
  --raised:   #1B1713;
  --veil:     #241F19;
  --line:     #3A322A;
  --line-dim: #241F19;

  --text:     #F0EAE0;
  --soft:     #B3A797;
  --faint:    #7F7568;

  --amber:      #E9A63B;
  --amber-lift: #F7CB78;
  --amber-deep: #7A5312;
  --amber-glow: rgb(233 166 59 / .16);

  --teak: #C48350;
  --sage: #909C7B;
  --wa:   #25D366;

  --focus: var(--amber);

  --f-serif: "Source Serif 4", ui-serif, Georgia, "Songti SC", "Noto Serif CJK SC", serif;
  --f-ui:    "Archivo", ui-sans-serif, system-ui, "PingFang SC", "Microsoft YaHei", sans-serif;

  /* Type scale, 1.28 */
  --t-xs:   0.76rem;
  --t-sm:   0.875rem;
  --t-base: 1.0625rem;
  --t-md:   1.28rem;
  --t-lg:   1.64rem;
  --t-xl:   2.1rem;
  --t-2xl:  2.69rem;
  --t-3xl:  3.44rem;
  --t-4xl:  4.4rem;
  --t-5xl:  5.6rem;

  --measure: 60ch;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --page: 74rem;
  --wide: 94rem;

  --r: 2px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ------------------------------------------------------------------- reset */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--f-serif);
  font-size: var(--t-base);
  line-height: 1.65;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg, video { max-width: 100%; display: block; }
picture { display: block; }
picture img { width: 100%; height: 100%; }

a { color: inherit; text-decoration-color: color-mix(in oklab, currentColor 32%, transparent); text-underline-offset: .2em; }
a:hover { text-decoration-color: currentColor; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 1px;
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.05; text-wrap: balance; }
p { margin: 0; }
address { font-style: normal; }
button { font: inherit; color: inherit; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--amber); color: #17120A; padding: .8rem 1.3rem;
  font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 700;
}
.skip:focus { left: 0; }

.ico { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

/* ------------------------------------------------- ambient: grain + lamplight */

/* A fixed film grain. Digital photographs of a warm room look flat on a screen;
   a little noise puts the texture back and stops the dark fields banding. */
body::before {
  content: "";
  position: fixed; inset: -50%;
  z-index: 1; pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* The sign's glow, sitting behind everything. It drifts as you scroll — the
   light source moving past you rather than the page moving under a lamp. */
.lamp {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 78% var(--lamp-y, 18%), var(--amber-glow), transparent 65%),
    radial-gradient(48rem 34rem at 8% calc(var(--lamp-y, 18%) + 46%), rgb(144 156 123 / .07), transparent 62%);
  transition: background-position .4s linear;
}

main, .hdr, .ftr, .stickybar { position: relative; z-index: 2; }

/* ------------------------------------------------------------------ layout */

.wrap { width: min(100% - var(--gutter) * 2, var(--page)); margin-inline: auto; }
.wrap--wide { width: min(100% - var(--gutter) * 2, var(--wide)); margin-inline: auto; }
.prose { max-width: var(--measure); display: flex; flex-direction: column; gap: 1.1em; }
.prose p { line-height: 1.72; color: var(--soft); }

section { padding-block: clamp(4rem, 10vw, 9rem); }
section + section { padding-block-start: 0; }

.stack { display: flex; flex-direction: column; }
.stack--sm { gap: .75rem; }
.stack--md { gap: 1.6rem; }
.stack--lg { gap: clamp(2.25rem, 5vw, 4rem); }

/* Eyebrow: a hairline, a tracked label. Reads as a caption in a printed book. */
.eyebrow {
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--amber);
  display: flex; align-items: center; gap: .85rem;
}
.eyebrow::before {
  content: ""; height: 1px; width: 2.5rem; flex: none;
  background: linear-gradient(90deg, transparent, var(--amber));
}

/* Display type: serif, tight, optically large. */
.h-sec  { font-family: var(--f-serif); font-size: clamp(var(--t-xl), 5vw, var(--t-3xl)); letter-spacing: -.02em; }
.h-page { font-family: var(--f-serif); font-size: clamp(var(--t-2xl), 7vw, var(--t-4xl)); letter-spacing: -.028em; }
.lede   { font-size: clamp(var(--t-md), 2.1vw, var(--t-lg)); line-height: 1.48; color: var(--soft); max-width: 44ch; }

/* An intimate aside in the family's own register. */
.aside-i {
  font-style: italic; font-size: clamp(var(--t-md), 2.4vw, var(--t-xl));
  line-height: 1.42; color: var(--text); max-width: 34ch; letter-spacing: -.01em;
}

/* ------------------------------------------------------------------ header */

.hdr {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in oklab, var(--ground) 72%, transparent);
  backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.hdr.is-stuck { border-bottom-color: var(--line-dim); background: color-mix(in oklab, var(--ground) 92%, transparent); }
.hdr__in {
  width: min(100% - var(--gutter) * 2, var(--wide)); margin-inline: auto;
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 4.6rem;
}

.brand { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; flex: none; }
.brand__n {
  font-family: var(--f-ui); font-weight: 700; font-size: 1.3rem; letter-spacing: .15em;
  /* The wordmark carries the same glow as the sign on the wall. */
  text-shadow: 0 0 18px rgb(233 166 59 / .5);
  color: var(--amber-lift);
}
.brand__m { font-family: var(--f-ui); font-weight: 500; font-size: .58rem; letter-spacing: .46em; color: var(--faint); margin-top: .3em; }

.nav { display: none; gap: clamp(.9rem, 1.7vw, 1.8rem); margin-inline-end: auto; }
.nav a {
  font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 500;
  text-decoration: none; color: var(--soft); padding-block: .45rem;
  position: relative; white-space: nowrap; transition: color .25s;
}
.nav a:hover { color: var(--text); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: .1rem; height: 1px;
  background: var(--amber); transition: right .35s var(--ease-out);
}
.nav a:hover::after { right: 0; }
.nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after { right: 0; }

.hdr__right { display: flex; align-items: center; gap: .55rem; margin-inline-start: auto; }

/* ------------------------------------------------------------ language menu */

.lang { position: relative; }
.lang > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 600; color: var(--soft);
  padding: .45rem .65rem; border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .25s, color .25s;
}
.lang > summary::-webkit-details-marker { display: none; }
.lang > summary:hover, .lang[open] > summary { color: var(--text); border-color: var(--faint); }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + .45rem); z-index: 95;
  background: var(--raised); border: 1px solid var(--line);
  box-shadow: 0 24px 60px -20px rgb(0 0 0 / .85);
  min-width: 12.5rem; padding: .35rem; display: flex; flex-direction: column;
}
.lang__menu a {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--f-ui); font-size: var(--t-sm); text-decoration: none;
  padding: .5rem .65rem; color: var(--soft); transition: background .2s, color .2s;
}
.lang__menu a:hover { background: var(--veil); color: var(--text); }
.lang__menu a[aria-current="true"] { color: var(--amber); font-weight: 700; }

/* Flags are a wayfinding cue, not a claim that a language belongs to a country —
   the language name stays next to every one of them. */
.flag { width: 1.3rem; height: .92rem; flex: none; border-radius: 1px; box-shadow: 0 0 0 1px rgb(255 255 255 / .12); }
.lang > summary .flag { width: 1.15rem; height: .82rem; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 2.7rem; height: 2.5rem; background: none; border: 1px solid var(--line);
  border-radius: var(--r); cursor: pointer; padding: 0 .58rem;
}
.burger span { display: block; height: 1.5px; background: var(--text); transition: transform .3s var(--ease-out), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mnav {
  border-top: 1px solid var(--line-dim); background: var(--raised);
  padding: .5rem var(--gutter) 1.6rem; display: flex; flex-direction: column;
}
.mnav[hidden] { display: none; }
.mnav a {
  font-family: var(--f-serif); font-size: var(--t-lg); text-decoration: none;
  padding: .8rem 0; border-bottom: 1px solid var(--line-dim); color: var(--text);
}
.mnav__langs { display: flex; flex-wrap: wrap; gap: .45rem; padding-top: 1.2rem; }
.mnav__langs a {
  font-family: var(--f-ui); font-size: var(--t-sm); border: 1px solid var(--line);
  padding: .45rem .7rem; display: inline-flex; align-items: center; gap: .45rem;
}

.hdr .hdr__wa { display: none; }

@media (min-width: 1100px) {
  .nav { display: flex; }
  .burger { display: none; }
  .mnav, .mnav[hidden] { display: none; }
  .hdr .hdr__wa { display: inline-flex; }
}

/* ----------------------------------------------------------------- buttons */

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 700; letter-spacing: .045em;
  padding: .95rem 1.6rem; border: 1px solid transparent; border-radius: var(--r);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease-out);
}
.btn > * { position: relative; z-index: 1; }
/* A warm fill that sweeps up from the base on hover, like a lamp coming on. */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .42s var(--ease-out);
}
.btn:hover::after { transform: scaleY(1); }
.btn:active { transform: translateY(1px); }
.btn--sm { padding: .6rem 1rem; font-size: var(--t-xs); }

.btn--wa { background: var(--wa); color: #06210F; }
.btn--wa::after { background: var(--amber-lift); }
.btn--wa:hover { color: #17120A; }

.btn--amber { background: var(--amber); color: #17120A; }
.btn--amber::after { background: var(--amber-lift); }

.btn--call, .btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--call::after, .btn--ghost::after { background: var(--text); }
.btn--call:hover, .btn--ghost:hover { color: var(--ground); border-color: var(--text); }

.btn--solid { background: var(--text); color: var(--ground); }
.btn--solid::after { background: var(--amber); }
.btn--solid:hover { color: #17120A; }

.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; }

/* -------------------------------------------------------------------- hero */

.hero { position: relative; isolation: isolate; min-height: min(76svh, 40rem); display: grid; align-items: end; overflow: hidden; }
/* <picture> is a block with auto height, so without this the image renders at
   its own aspect ratio and stops short — on a phone the hero photo covered only
   the top third and the headline fell onto bare background. */
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture, .hero__media > div { height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* Light touch: the photograph supplies its own darkness. Just enough to seat
     the type and to blend the bottom edge into the page. */
  background:
    linear-gradient(to top, var(--ground) 0%, rgb(19 16 13 / .55) 22%, transparent 52%),
    linear-gradient(95deg, rgb(19 16 13 / .58) 0%, rgb(19 16 13 / .15) 42%, transparent 62%);
}
/* On a phone the copy sits over the lit concrete wall rather than beside it,
   so the bottom of the scrim has to carry more weight. */
@media (max-width: 700px) {
  .hero::after {
    background:
      linear-gradient(to top, var(--ground) 0%, rgb(19 16 13 / .78) 38%, rgb(19 16 13 / .35) 68%, transparent 100%);
  }
}
.hero__in {
  width: min(100% - var(--gutter) * 2, var(--wide)); margin-inline: auto;
  padding-block: clamp(3rem, 8vw, 6.5rem);
  display: flex; flex-direction: column; gap: 1.6rem; align-items: flex-start;
}
.hero__kicker {
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .34em; text-transform: uppercase; color: var(--amber);
}
.hero h1 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(2.5rem, 7.4vw, var(--t-5xl));
  letter-spacing: -.032em; max-width: 15ch; line-height: 1.02;
}
.hero h1 em { font-style: italic; color: var(--amber-lift); }
.hero__sub { font-size: clamp(var(--t-base), 1.9vw, var(--t-md)); max-width: 42ch; color: var(--soft); line-height: 1.55; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--amber-lift);
  border: 1px solid rgb(233 166 59 / .35); background: rgb(233 166 59 / .08);
  padding: .5rem .85rem; border-radius: var(--r);
}

/* A slow drift on the hero photograph. Not a zoom you notice — a room breathing. */
@media (prefers-reduced-motion: no-preference) {
  .js .hero__media img { animation: drift 26s var(--ease) infinite alternate; }
  @keyframes drift { from { transform: scale(1.04) translate3d(0, 0, 0); } to { transform: scale(1.11) translate3d(-1.4%, -1.2%, 0); } }
}

/* Load sequence: each line of the headline is wiped up from behind a mask. */
.line { display: block; overflow: hidden; }
.line > span { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .js .hero .line > span,
  .js .hero__kicker, .js .hero__sub, .js .hero__badge, .js .hero .cta-row, .js .scrollcue {
    opacity: 0; transform: translateY(115%);
    animation: rise .95s var(--ease-out) forwards;
  }
  .js .hero__kicker, .js .hero__sub, .js .hero__badge, .js .hero .cta-row, .js .scrollcue { transform: translateY(1.4rem); }
  @keyframes rise { to { opacity: 1; transform: none; } }
  .js .hero__kicker           { animation-delay: .15s; }
  .js .hero .line:nth-child(1) > span { animation-delay: .3s; }
  .js .hero .line:nth-child(2) > span { animation-delay: .4s; }
  .js .hero .line:nth-child(3) > span { animation-delay: .5s; }
  .js .hero__sub              { animation-delay: .68s; }
  .js .hero__badge            { animation-delay: .78s; }
  .js .hero .cta-row          { animation-delay: .86s; }
  .js .scrollcue              { animation-delay: 1.2s; }
}

.scrollcue {
  position: absolute; bottom: 1.6rem; right: var(--gutter); z-index: 3;
  display: none; align-items: center; gap: .7rem;
  font-family: var(--f-ui); font-size: var(--t-xs); letter-spacing: .2em;
  text-transform: uppercase; color: var(--faint);
}
.scrollcue i { display: block; width: 1px; height: 3rem; background: linear-gradient(var(--faint), transparent); position: relative; overflow: hidden; }
.scrollcue i::after {
  content: ""; position: absolute; inset: 0; background: var(--amber);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }
@media (min-width: 900px) { .scrollcue { display: flex; } }

/* ---------------------------------------------------------------- marquee */

/* Guest phrases drifting past, the way you half-hear a room. Duplicated track
   so the loop has no seam; paused on hover so a phrase can actually be read. */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line-dim);
  padding-block: 1.4rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.mq__track { display: flex; width: max-content; gap: 0; }
.mq__track > * { flex: none; }
.mq__item {
  display: inline-flex; align-items: center; gap: 1.4rem; padding-inline: 1.4rem;
  font-family: var(--f-serif); font-style: italic; font-size: var(--t-md);
  color: var(--soft); white-space: nowrap;
}
.mq__item::after { content: "✳"; color: var(--amber); font-style: normal; font-size: .7em; }
@media (prefers-reduced-motion: no-preference) {
  .js .mq__track { animation: mq 64s linear infinite; }
  .js .marquee:hover .mq__track { animation-play-state: paused; }
  @keyframes mq { to { transform: translateX(-50%); } }
}

/* ----------------------------------------------------------------- family */

/* The whole pitch is that four people run this house. It gets a full section
   with the largest type on the page, not a line in a paragraph. */
.family { position: relative; }
.family__head { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: end; }
@media (min-width: 900px) { .family__head { grid-template-columns: 1.1fr .9fr; } }

.fam {
  display: grid; gap: 0;
  border-top: 1px solid var(--line-dim);
}
.fam__row {
  display: grid; grid-template-columns: auto 1fr; gap: .4rem 1.4rem;
  padding-block: clamp(1.5rem, 3.4vw, 2.4rem);
  border-bottom: 1px solid var(--line-dim);
  align-items: baseline; position: relative;
}
.fam__row::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--amber); transition: width .8s var(--ease-out);
}
.fam__row.is-in::after { width: 100%; }
.fam__n {
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .16em; color: var(--amber); font-variant-numeric: tabular-nums;
}
.fam__role {
  font-family: var(--f-serif); font-size: clamp(var(--t-lg), 4.2vw, var(--t-2xl));
  letter-spacing: -.022em; line-height: 1.1;
}
.fam__role em { font-style: italic; color: var(--amber-lift); }
.fam__what { grid-column: 2; color: var(--soft); font-size: var(--t-sm); max-width: 52ch; }
@media (min-width: 820px) {
  .fam__row { grid-template-columns: 4rem 1fr 1fr; align-items: center; }
  .fam__what { grid-column: 3; font-size: var(--t-base); }
}

/* ---------------------------------------------------------------- carousel */

/* Deliberately bleeds off the right edge — the row continues past the page, so
   it reads as something you drag rather than a grid that happens to be wide. */
.car { position: relative; }
.car__track {
  display: flex; gap: .75rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-inline-end: var(--gutter);
  cursor: grab;
}
.car__track::-webkit-scrollbar { display: none; }
.car__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.car__track.is-dragging * { pointer-events: none; }
.car__slide {
  flex: none; scroll-snap-align: start;
  width: min(84vw, 30rem);
  position: relative; overflow: hidden; background: var(--veil);
}
.car__slide img { aspect-ratio: 4 / 5; transition: transform 1.1s var(--ease-out), filter .6s; }
.car__slide:hover img { transform: scale(1.045); }
.car__slide--wide { width: min(92vw, 46rem); }
.car__slide--wide img { aspect-ratio: 3 / 2; }
@media (min-width: 900px) { .car__slide { width: 25rem; } }

.car__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3.5rem 1.2rem 1.1rem;
  background: linear-gradient(to top, rgb(9 7 5 / .92), transparent);
  font-family: var(--f-ui); font-size: var(--t-xs); letter-spacing: .12em;
  text-transform: uppercase; color: var(--text);
}

/* The track bleeds off the right edge on purpose; its controls must not — they
   sit back inside the gutter so the next button is never half off-screen. */
.car__foot { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.5rem; padding-inline-end: var(--gutter); }
.car__bar { flex: 1; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.car__bar i { position: absolute; inset: 0 auto 0 0; background: var(--amber); width: 20%; transition: transform .25s var(--ease), width .25s var(--ease); }
.car__nav { display: flex; gap: .5rem; }
.car__btn {
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--text);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color .25s, background .25s, color .25s, opacity .25s;
}
.car__btn:hover:not(:disabled) { border-color: var(--amber); color: var(--amber); }
.car__btn:disabled { opacity: .28; cursor: default; }
.car__btn--prev .ico { transform: rotate(180deg); }

/* ------------------------------------------------------------------- rooms */

.rooms { display: flex; flex-direction: column; gap: clamp(3rem, 7vw, 6rem); }
.room { display: grid; gap: clamp(1.25rem, 3vw, 3rem); align-items: center; grid-template-columns: 1fr; }
.room__media { position: relative; overflow: hidden; background: var(--veil); }
.room__media img { aspect-ratio: 4 / 3; transition: transform 1.2s var(--ease-out); }
.room:hover .room__media img { transform: scale(1.04); }
.room__tag {
  position: absolute; left: 0; top: 0;
  background: var(--amber); color: #17120A;
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; padding: .5rem .9rem;
}
.room__body { display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; }
.room__body h3 { font-family: var(--f-serif); font-size: clamp(var(--t-lg), 3.4vw, var(--t-2xl)); letter-spacing: -.024em; }
.room__body h3 a { text-decoration: none; }
.room__facts {
  display: flex; flex-wrap: wrap; gap: .5rem 1.3rem;
  font-family: var(--f-ui); font-size: var(--t-xs); letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint);
}
.room__facts span { display: inline-flex; align-items: center; gap: .4rem; }
.room p { color: var(--soft); }

@media (min-width: 880px) {
  .room { grid-template-columns: 1.15fr .85fr; }
  .room:nth-child(even) { grid-template-columns: .85fr 1.15fr; }
  .room:nth-child(even) .room__media { order: 2; }
}

/* ------------------------------------------------------------------ scores */

.rating { display: inline-flex; align-items: center; gap: .8rem; font-family: var(--f-ui); }
.rating__score {
  background: var(--amber); color: #17120A; font-weight: 700; font-size: var(--t-md);
  padding: .3em .5em; border-radius: var(--r); line-height: 1; font-variant-numeric: tabular-nums;
}
.rating__meta { display: flex; flex-direction: column; line-height: 1.3; font-size: var(--t-sm); }
.rating__meta small { color: var(--faint); font-size: var(--t-xs); }

.scores { display: grid; grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr)); gap: 1px; background: var(--line-dim); border: 1px solid var(--line-dim); }
.score { background: var(--ground); padding: 1.4rem 1.3rem; display: flex; flex-direction: column; gap: .45rem; }
.score__n {
  font-family: var(--f-ui); font-weight: 700; font-size: var(--t-2xl); line-height: 1;
  font-variant-numeric: tabular-nums; color: var(--text);
}
.score__l { font-family: var(--f-ui); font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.score__bar { height: 2px; background: var(--line); position: relative; margin-top: .3rem; overflow: hidden; }
.score__bar i { position: absolute; inset: 0 auto 0 0; background: var(--amber); width: 0; transition: width 1.3s var(--ease-out); }
.score.is-in .score__bar i { width: var(--w); }

/* --------------------------------------------------------------- highlights */

.hls { display: flex; flex-direction: column; border-top: 1px solid var(--line-dim); }
.hl { display: grid; grid-template-columns: auto 1fr; gap: .3rem 1.2rem; align-items: baseline; padding: 1.15rem 0; border-bottom: 1px solid var(--line-dim); }
.hl__n { font-family: var(--f-ui); font-weight: 700; font-size: var(--t-lg); color: var(--amber); font-variant-numeric: tabular-nums; }
.hl__t { color: var(--soft); font-size: var(--t-sm); }
.hl__m { grid-column: 2; font-family: var(--f-ui); font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); white-space: nowrap; }
@media (min-width: 720px) {
  .hl { grid-template-columns: auto 1fr auto; gap: 1.4rem; align-items: center; }
  .hl__m { grid-column: auto; }
}

/* ---------------------------------------------------------------- pillars */

.pillars { display: grid; gap: 1px; background: var(--line-dim); border-block: 1px solid var(--line-dim); grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.pillar { background: var(--ground); padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: .8rem; }
.pillar h3 { font-family: var(--f-serif); font-size: var(--t-md); letter-spacing: -.012em; }
.pillar p { color: var(--soft); font-size: var(--t-sm); line-height: 1.65; }

/* -------------------------------------------------------------------- band */

.band { position: relative; isolation: isolate; overflow: hidden; }
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media > div, .band__media picture { height: 100%; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgb(19 16 13 / .95) 0%, rgb(19 16 13 / .84) 44%, rgb(19 16 13 / .52) 100%);
}
.band__in { padding-block: clamp(4rem, 10vw, 8rem); display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.band h2 { font-family: var(--f-serif); font-size: clamp(var(--t-xl), 5vw, var(--t-3xl)); letter-spacing: -.024em; max-width: 18ch; }
.band p { max-width: 48ch; color: var(--soft); }

/* ----------------------------------------------------------------- gallery */

.gal { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .35rem; }
@media (min-width: 700px) { .gal { grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr)); gap: .55rem; } }
.gal__i { position: relative; overflow: hidden; background: var(--veil); border: 0; padding: 0; cursor: zoom-in; display: block; }
.gal__i img { aspect-ratio: 3 / 2; transition: transform 1s var(--ease-out), filter .5s; filter: saturate(.94); }
.gal__i:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gal__i--tall { grid-row: span 2; }
.gal__i--tall img { aspect-ratio: 3 / 4; height: 100%; }

.galfilter { display: flex; flex-wrap: wrap; gap: .45rem; }
.galfilter button {
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .6rem 1rem; border: 1px solid var(--line);
  background: transparent; color: var(--soft); border-radius: var(--r); cursor: pointer;
  transition: all .25s var(--ease);
}
.galfilter button:hover { border-color: var(--faint); color: var(--text); }
.galfilter button[aria-pressed="true"] { background: var(--amber); color: #17120A; border-color: var(--amber); }

.lbox { position: fixed; inset: 0; z-index: 200; background: rgb(9 7 5 / .97); display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem); backdrop-filter: blur(6px); }
.lbox[hidden] { display: none; }
.lbox img { max-width: 100%; max-height: 84svh; width: auto; height: auto; object-fit: contain; }
.lbox__cap { color: var(--faint); font-family: var(--f-ui); font-size: var(--t-sm); letter-spacing: .1em; text-transform: uppercase; text-align: center; margin-top: 1.1rem; }
.lbox__btn {
  position: absolute; background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .18);
  color: var(--text); width: 3.1rem; height: 3.1rem; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background .25s, border-color .25s;
}
.lbox__btn:hover { background: rgb(233 166 59 / .18); border-color: var(--amber); }
.lbox__prev { left: clamp(.5rem, 2vw, 2.5rem); top: 50%; transform: translateY(-50%) rotate(180deg); }
.lbox__next { right: clamp(.5rem, 2vw, 2.5rem); top: 50%; transform: translateY(-50%); }
.lbox__close { top: clamp(.5rem, 2vw, 2.5rem); right: clamp(.5rem, 2vw, 2.5rem); }

/* --------------------------------------------------------------- distances */

.dists { display: grid; grid-template-columns: 1fr; }
.dist { display: grid; grid-template-columns: 1fr auto; gap: .2rem .9rem; align-items: baseline; padding: .9rem 0; border-bottom: 1px solid var(--line-dim); }
.dist__n { font-size: var(--t-sm); grid-column: 1 / -1; }
.dist__d { font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 700; font-variant-numeric: tabular-nums; color: var(--amber); }
.dist__w { font-family: var(--f-ui); font-size: var(--t-xs); color: var(--faint); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; text-align: right; }
@media (min-width: 620px) {
  .dist { grid-template-columns: 1fr auto auto; gap: 1rem; }
  .dist__n { grid-column: auto; }
  .dist__w { min-width: 6.5rem; }
}

/* ------------------------------------------------------------------ routes */

.routes { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.route { padding-block: clamp(1.5rem, 3vw, 2.2rem); border-bottom: 1px solid var(--line-dim); display: grid; gap: .65rem; grid-template-columns: 1fr; }
.route__h { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem; }
.route__f { font-family: var(--f-serif); font-size: var(--t-md); }
.route__t { font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); border: 1px solid rgb(233 166 59 / .3); padding: .25rem .6rem; border-radius: var(--r); }
.route p { color: var(--soft); max-width: var(--measure); }
@media (min-width: 800px) { .route { grid-template-columns: 15rem 1fr; gap: 2.5rem; } }

/* --------------------------------------------------------------------- faq */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line-dim); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.3rem 2.8rem 1.3rem 0; position: relative;
  font-family: var(--f-serif); font-size: var(--t-md); line-height: 1.35;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 1.75rem; width: .68rem; height: .68rem;
  border-right: 1.5px solid var(--amber); border-bottom: 1.5px solid var(--amber);
  transform: rotate(45deg); transition: transform .3s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--amber-lift); }
.faq__a { padding: 0 0 1.4rem; color: var(--soft); max-width: var(--measure); }

/* ---------------------------------------------------------------- amenities */

.amen { display: grid; gap: clamp(1.75rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.amen__g { display: flex; flex-direction: column; gap: 1rem; }
.amen__g h3 { font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); }
.amen__g ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem 1rem; }
@media (min-width: 560px) { .amen__g ul { grid-template-columns: 1fr; } }
.amen__g li { display: flex; gap: .6rem; align-items: baseline; font-size: var(--t-sm); color: var(--soft); }
.amen__g .ico { color: var(--sage); width: .85em; height: .85em; position: relative; top: .1em; }

/* -------------------------------------------------------------- guide bits */

.beaches { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.beach { padding-block: clamp(1.5rem, 3vw, 2.2rem); border-bottom: 1px solid var(--line-dim); display: grid; gap: .6rem; }
.beach__h { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem; }
.beach__n { font-family: var(--f-serif); font-size: var(--t-md); }
.beach__w { font-family: var(--f-ui); font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--sage); display: inline-flex; align-items: center; gap: .35rem; }
.beach p { color: var(--soft); max-width: var(--measure); }

.things { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1px; background: var(--line-dim); border: 1px solid var(--line-dim); }
.thing { background: var(--ground); padding: clamp(1.4rem, 2.5vw, 2rem); display: flex; flex-direction: column; gap: .6rem; }
.thing h3 { font-family: var(--f-serif); font-size: var(--t-base); }
.thing p { font-size: var(--t-sm); color: var(--soft); }

.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .65rem; max-width: var(--measure); }
.checks li { display: flex; gap: .7rem; align-items: baseline; color: var(--soft); }
.checks .ico { color: var(--sage); width: .9em; height: .9em; position: relative; top: .12em; }

/* -------------------------------------------------------------- contact/map */

.contact-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.ccard {
  border: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex; flex-direction: column; gap: .9rem; align-items: flex-start;
  background: var(--raised); transition: border-color .35s, transform .35s var(--ease-out);
}
.ccard:hover { border-color: var(--amber); transform: translateY(-3px); }
.ccard h3 { font-family: var(--f-serif); font-size: var(--t-md); }
.ccard p { color: var(--soft); font-size: var(--t-sm); }
.ccard__big { font-family: var(--f-ui); font-weight: 700; font-size: var(--t-lg); letter-spacing: .01em; text-decoration: none; color: var(--amber); }

.mapwrap { border: 1px solid var(--line); background: var(--veil); aspect-ratio: 16 / 9; overflow: hidden; }
.mapwrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: invert(.92) hue-rotate(180deg) saturate(.7); }

.otas { display: flex; flex-wrap: wrap; gap: .6rem; }
.ota {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
  border: 1px solid var(--line); padding: .75rem 1.15rem; border-radius: var(--r);
  font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 500; color: var(--soft);
  transition: border-color .25s, color .25s, background .25s;
}
.ota:hover { border-color: var(--amber); color: var(--text); background: rgb(233 166 59 / .07); }

/* ------------------------------------------------------------------ sticky */

.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: color-mix(in oklab, var(--raised) 92%, transparent);
  backdrop-filter: blur(18px) saturate(1.3);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.stickybar__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem;
  padding: .65rem .3rem .7rem; text-decoration: none;
  font-family: var(--f-ui); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--soft); border-inline-end: 1px solid var(--line-dim);
}
.stickybar__btn:last-child { border-inline-end: 0; }
.stickybar__btn .ico { width: 1.35rem; height: 1.35rem; }
.stickybar__btn--wa { color: var(--wa); }
.stickybar__btn--book { color: var(--amber); }
body { padding-bottom: 4.5rem; }
@media (min-width: 1100px) { .stickybar { display: none; } body { padding-bottom: 0; } }

/* ------------------------------------------------------------------ footer */

.ftr { background: var(--raised); border-top: 1px solid var(--line-dim); margin-top: clamp(3rem, 7vw, 6rem); }
.ftr__in {
  width: min(100% - var(--gutter) * 2, var(--wide)); margin-inline: auto;
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  display: grid; gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.ftr__col { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.ftr__col--brand { gap: 1.1rem; }
.ftr__col--brand p { color: var(--soft); font-size: var(--t-sm); max-width: 30ch; }
.ftr__col h3 { font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin-bottom: .35rem; }
.ftr__col a { font-size: var(--t-sm); text-decoration: none; color: var(--soft); transition: color .2s; }
.ftr__col a:hover { color: var(--amber); }
.ftr__col address { font-size: var(--t-sm); color: var(--soft); max-width: 22ch; }
.brand--ftr { flex-direction: column; }
.ftr__bar {
  border-top: 1px solid var(--line-dim);
  width: min(100% - var(--gutter) * 2, var(--wide)); margin-inline: auto;
  padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}
.ftr__bar small { color: var(--faint); font-family: var(--f-ui); font-size: var(--t-xs); }

/* --------------------------------------------------------- lqip and reveals */

picture img { background-image: var(--lqip); background-size: cover; background-position: center; }
picture img[data-loaded="true"] { background-image: none; }

/* Hidden only once JS confirms it can reveal them again — without JS, and for
   any crawler that does not run it, everything stays visible. */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* A photograph wiping open from its base reads more deliberate than a fade.
   The clip goes on the CHILD, never on .wipe itself: a clipped element has zero
   intersection area, so IntersectionObserver would never fire on it and it would
   stay hidden forever. The container stays unclipped and observable. */
.js .wipe > * { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-out); }
.js .wipe.is-in > * { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal, .js .wipe, .js .wipe > * { opacity: 1; transform: none; clip-path: none; }
}

/* ------------------------------------------------------------------- misc */

.note { border-left: 1px solid var(--amber); padding: .3rem 0 .3rem 1.2rem; color: var(--soft); max-width: var(--measure); font-style: italic; }
.tablewrap { overflow-x: auto; }

/* ============================================================ story sections */

/* ---- proof bar: score and volume always rendered as a pair ---- */

.proof { padding-block: clamp(1.75rem, 4vw, 2.75rem); border-bottom: 1px solid var(--line-dim); }
.proof__in { display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; align-items: center; justify-content: space-between; }
.proof__scores { display: flex; flex-wrap: wrap; gap: 1.25rem 2.75rem; }
.pscore { display: flex; flex-direction: column; gap: .2rem; }
.pscore b {
  font-family: var(--f-ui); font-weight: 700; font-size: var(--t-xl); line-height: 1;
  font-variant-numeric: tabular-nums; color: var(--amber);
}
.pscore b i { font-style: normal; font-size: .5em; color: var(--faint); margin-inline-start: .1em; }
.pscore span { font-family: var(--f-ui); font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.proof__note { color: var(--soft); font-size: var(--t-sm); max-width: 42ch; }

/* ---- section heads with an italic aside alongside ---- */

.day__head { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: end; }
@media (min-width: 900px) { .day__head { grid-template-columns: 1.1fr .9fr; } }

/* ---- the day: alternating scenes, photo-led ---- */

.beats { display: flex; flex-direction: column; gap: clamp(3rem, 7vw, 6rem); }
.beat { display: grid; gap: clamp(1.25rem, 3vw, 3rem); align-items: center; grid-template-columns: 1fr; }
.beat__media { overflow: hidden; background: var(--veil); }
.beat__media img { aspect-ratio: 5 / 4; transition: transform 1.2s var(--ease-out); }
.beat:hover .beat__media img { transform: scale(1.04); }
.beat__body { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.beat__time {
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--amber);
}
.beat__body h3 { font-family: var(--f-serif); font-size: clamp(var(--t-lg), 3.2vw, var(--t-2xl)); letter-spacing: -.022em; }
.beat__body > p { color: var(--soft); max-width: 46ch; }
@media (min-width: 900px) {
  .beat { grid-template-columns: 1fr 1fr; }
  .beat:nth-child(even) .beat__media { order: 2; }
}

/* ---- quotes: the page's proof, always attributed ---- */

.q { margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.q p {
  font-family: var(--f-serif); font-style: italic;
  font-size: var(--t-md); line-height: 1.45; color: var(--text);
}
.q p::before { content: "“"; }
.q p::after { content: "”"; }
.q cite {
  font-family: var(--f-ui); font-style: normal; font-size: var(--t-xs);
  letter-spacing: .08em; color: var(--faint);
}
.q--card {
  border-left: 1px solid var(--amber); padding: .1rem 0 .1rem 1.2rem;
}
.q__topic {
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sage);
}

.qgrid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: 1fr; margin-top: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 760px) { .qgrid { grid-template-columns: repeat(3, 1fr); } }
.qgrid--3 { margin-top: 0; }
@media (min-width: 760px) { .qgrid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .qgrid--3 { grid-template-columns: repeat(3, 1fr); } }
.qgrid--dark { margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.qgrid--dark .q p { font-size: var(--t-base); }

/* ---- feature block: image one side, substance the other ---- */

.feature__in { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .feature__in { grid-template-columns: .95fr 1.05fr; } }
.feature__media { overflow: hidden; background: var(--veil); }
.feature__media img { aspect-ratio: 4 / 5; }

.dishes { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: .45rem; }
@media (min-width: 560px) { .dishes { grid-template-columns: repeat(2, 1fr); gap: .5rem 1.5rem; } }
.dishes li { position: relative; padding-inline-start: 1rem; color: var(--soft); font-size: var(--t-sm); }
.dishes li::before { content: ""; position: absolute; left: 0; top: .62em; width: 5px; height: 5px; background: var(--amber); }

/* ---- booking steps ---- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line-dim); border: 1px solid var(--line-dim); grid-template-columns: 1fr; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { background: var(--ground); padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-direction: column; gap: .55rem; }
.steps__n {
  font-family: var(--f-ui); font-weight: 700; font-size: var(--t-lg);
  color: var(--amber); line-height: 1; font-variant-numeric: tabular-nums;
}
.steps h3 { font-family: var(--f-serif); font-size: var(--t-md); }
.steps p { color: var(--soft); font-size: var(--t-sm); }

.rate { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem .9rem; }
.rate b { font-family: var(--f-ui); font-size: var(--t-xl); color: var(--amber); font-variant-numeric: tabular-nums; }
.rate__eur { color: var(--faint); font-family: var(--f-ui); }

/* ---- the honest list ---- */

.honest { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; max-width: 62ch; }
.honest li {
  padding: .85rem 0 .85rem 1.6rem; border-bottom: 1px solid var(--line-dim);
  color: var(--soft); font-size: var(--t-sm); position: relative;
}
.honest li::before {
  content: ""; position: absolute; left: 0; top: 1.25em;
  width: .55rem; height: 1px; background: var(--faint);
}
