/* porvoosauna main.css. The source Webflow template rebuilt as our own theme: BEM blocks,
 * fluid tokens (tokens.css), four layers. Page-specific blocks live in pages.css (PAGES).
 * rem everywhere; px only for hairlines. Radius 0 except the round discs. No em dashes. */
@layer base, layout, components, utilities;

/* =========================================================================
   BASE: reset + typography
   ========================================================================= */
@layer base {
  *, *::before, *::after { box-sizing: border-box; }

  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--ps-nav-h) + 1rem);
  }
  html.lenis, html.lenis body { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto !important; }
  .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
  .lenis.lenis-stopped { overflow: hidden; }

  body {
    margin: 0;
    min-height: 100dvh;
    background: var(--ps-color-surface);
    color: var(--ps-color-text);
    font-family: var(--ps-font-body);
    font-size: var(--ps-fs-body);
    font-weight: var(--ps-fw-regular);
    line-height: var(--ps-lh-body);
    text-wrap: pretty;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
  }

  /* Italiana has one weight and no italic: never let bold or italic land on a heading */
  h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: var(--ps-color-heading);
    font-family: var(--ps-font-head);
    font-weight: var(--ps-fw-regular);
    font-style: normal;
    line-height: var(--ps-lh-heading);
    text-wrap: balance;
    /* normal, not break-word: a welded last pair that does not fit must overflow (app.js fitWelds()
       then un-welds it), never break inside a word */
    overflow-wrap: normal;
  }
  :is(h1, h2, h3, h4, h5, h6) :is(strong, b, em, i) { font-weight: inherit; font-style: normal; }
  p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
  ul[class], ol[class] { padding: 0; list-style: none; }

  a { color: inherit; text-decoration: none; }
  a:where(:not([class])) { color: var(--ps-color-text-strong); text-decoration: underline; text-underline-offset: 0.18em; text-decoration-color: var(--ps-color-olive-50); }
  a:where(:not([class])):hover { text-decoration-color: currentColor; }
  a[href^="tel:"], a[href^="mailto:"] { white-space: nowrap; }

  img, svg, video, picture { display: block; max-width: 100%; }
  img { height: auto; }
  picture > img { width: 100%; }
  /* a <picture> inside an aspect box must fill it, or the img's height:100% resolves to auto */
  :is(.intro__photo, .tila-card__image, .faq-split__photo, .blog-strip__media, .hero__panel-media, .card__image, .split__media, .booking-band__bg) > picture { height: 100%; }
  .hero__stage > picture { display: contents; }

  button, input, select, textarea {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    margin: 0;
  }
  button { background: none; border: 0; padding: 0; cursor: pointer; }
  button, [role="button"], a { touch-action: manipulation; }

  :focus-visible {
    outline: 2px solid var(--ps-color-olive);
    outline-offset: 3px;
  }
  .section--dark :focus-visible, .footer :focus-visible, .cta-band :focus-visible, .hero__panel :focus-visible, .hero__stage :focus-visible, .booking-band__panel--dark :focus-visible, .lightbox :focus-visible {
    outline-color: var(--ps-color-white);
  }

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

  em { font-style: normal; }
  strong, b { font-weight: var(--ps-fw-medium); }
  hr { border: 0; border-top: 1px solid var(--ps-color-border); margin: 0; }
  table { border-collapse: collapse; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }
}

/* =========================================================================
   LAYOUT: container, section, grid, split, actions
   ========================================================================= */
@layer layout {
  .wrap {
    width: 100%;
    max-width: var(--ps-container);
    margin-inline: auto;
    padding-inline: var(--ps-gutter);
  }
  .wrap--narrow { max-width: var(--ps-container-narrow); }

  .section {
    position: relative;
    padding-block: var(--ps-section-pad);
  }
  .section--tight { padding-block: var(--ps-section-pad-tight); }
  .section--flush-top { padding-top: 0; }
  .section--flush-bottom { padding-bottom: 0; }
  .section--cream { background: var(--ps-color-surface); }
  .section--white { background: var(--ps-color-surface-alt); }
  .section--tint { background: var(--ps-color-surface-tint); }
  .section--dark {
    background: var(--ps-color-dark);
    color: var(--ps-color-on-dark-soft);
  }
  .section--dark :is(h1, h2, h3, h4, h5, h6) { color: var(--ps-color-on-dark); }
  .section--clip { overflow: clip; }
  .section > .wrap { position: relative; z-index: 1; }
  .section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .section__bg > img { width: 100%; height: 100%; object-fit: cover; }

  .grid {
    display: grid;
    gap: var(--ps-gap);
    grid-template-columns: 1fr;
  }
  .grid > * { min-width: 0; }
  .grid--gap-lg { gap: var(--ps-gap-lg); }
  .grid--gap-sm { gap: var(--ps-space-4); }
  /* card grids go multi-column at 992, not 767: Finnish titles cramp (SPEC 4b) */
  @media (min-width: 768px) {
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (min-width: 992px) {
    .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  }

  .split {
    display: grid;
    gap: var(--ps-gap-lg);
    align-items: center;
    grid-template-columns: 1fr;
  }
  .split > * { min-width: 0; }
  .split--top { align-items: start; }
  .split__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
  .split__media--wide { aspect-ratio: 5 / 4; }
  .split__media--square { aspect-ratio: 1; }
  .split__media--landscape { aspect-ratio: 16 / 10; }
  .split__media img, .split__image { width: 100%; height: 100%; object-fit: cover; }
  .split__content { display: flex; flex-direction: column; align-items: flex-start; gap: var(--ps-space-4); }
  .split__content > .eyebrow { margin-bottom: calc(-1 * var(--ps-space-1)); }
  .split__content > .actions { margin-top: var(--ps-space-4); }
  @media (min-width: 992px) {
    .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split--reverse .split__media { order: 2; }
    .split--reverse .split__content { order: 1; }
  }

  .actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--ps-space-4) var(--ps-space-5);
  }
  .actions--center { justify-content: center; }
  .actions--end { justify-content: flex-end; }
  @media (max-width: 479px) {
    .actions > .button { flex: 1 1 100%; }
  }

  .stack > * + * { margin-top: var(--ps-space-5); }
  .stack--sm > * + * { margin-top: var(--ps-space-3); }
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */
@layer components {
  /* ---- type ---- */
  .display-1 { font-family: var(--ps-font-head); font-size: var(--ps-fs-display-1); line-height: var(--ps-lh-display); }
  .heading-1 { font-family: var(--ps-font-head); font-size: var(--ps-fs-section); line-height: var(--ps-lh-heading); }
  .heading-1--md { font-size: clamp(2rem, 1.55rem + 1.85vw, 3.125rem); line-height: 1.08; } /* .section-heading.medium 50px/105% */
  .heading-2 { font-family: var(--ps-font-head); font-size: var(--ps-fs-h2); line-height: var(--ps-lh-heading); }
  .heading-3 { font-family: var(--ps-font-head); font-size: var(--ps-fs-h3); line-height: var(--ps-lh-heading); }
  .heading-4 { font-family: var(--ps-font-head); font-size: var(--ps-fs-h4); line-height: var(--ps-lh-heading); }
  .heading-5 { font-family: var(--ps-font-head); font-size: var(--ps-fs-h5); line-height: var(--ps-lh-heading); }
  :is(.display-1, .heading-1, .heading-2, .heading-3, .heading-4, .heading-5) {
    font-weight: var(--ps-fw-regular);
    text-wrap: balance;
    color: var(--ps-color-heading);
  }
  .heading--upper { text-transform: uppercase; letter-spacing: var(--ps-tracking-upper); }
  .heading--inverse, .section--dark :is(.display-1, .heading-1, .heading-2, .heading-3, .heading-4, .heading-5) { color: var(--ps-color-on-dark); }
  .text-lg { font-size: var(--ps-fs-lg); line-height: var(--ps-lh-body); }
  .text-sm { font-size: var(--ps-fs-sm); line-height: 1.55; }
  .text-xs { font-size: var(--ps-fs-xs); line-height: 1.5; }
  .lead { font-size: var(--ps-fs-lg); line-height: var(--ps-lh-body); color: var(--ps-color-text); max-width: var(--ps-measure-lead); }
  .label {
    font-size: var(--ps-fs-sm);
    font-weight: var(--ps-fw-medium);
    letter-spacing: var(--ps-tracking-label);
    text-transform: uppercase;
    line-height: 1.2;
  }
  .accent { color: var(--ps-color-accent); font-style: normal; }
  .eyebrow {
    display: block;
    margin-bottom: var(--ps-space-3);
    color: var(--ps-color-accent);
    font-family: var(--ps-font-body);
    font-size: var(--ps-fs-sm);
    font-weight: var(--ps-fw-medium);
    letter-spacing: var(--ps-tracking-eyebrow);
    text-transform: uppercase;
    line-height: 1.2;
  }
  .eyebrow--white, .section--dark .eyebrow { color: var(--ps-color-on-dark-soft); }
  .section--dark .accent, .cta-band .accent, .booking-band__panel--dark .accent { color: var(--ps-color-on-dark-soft); }

  .section-head {
    position: relative;
    max-width: var(--ps-measure-head);
    margin-bottom: var(--ps-block-gap);
  }
  .section-head--center { margin-inline: auto; text-align: center; }
  .section-head--center .actions { justify-content: center; }
  .section-head--center .section-head__text, .section-head--center .lead { margin-inline: auto; }
  .section-head__text { margin-top: var(--ps-space-4); font-size: var(--ps-fs-lg); line-height: var(--ps-lh-body); max-width: var(--ps-measure-lead); }
  .section-head__actions { margin-top: var(--ps-space-6); }
  .section-head > .actions { margin-top: var(--ps-space-6); }
  .section-head--row {
    max-width: none;
    display: grid;
    gap: var(--ps-space-6) var(--ps-gap-lg);
    align-items: end;
  }
  .section-head--row > * { min-width: 0; }
  .section-head--row > :first-child { max-width: var(--ps-measure-head); }
  .section-head--row .section-head__actions { margin-top: 0; }
  @media (min-width: 992px) {
    .section-head--row { grid-template-columns: minmax(0, 1fr) auto; }
    .section-head--row .section-head__actions { justify-content: flex-end; padding-bottom: 0.4rem; }
  }
  .section--dark .section-head__text, .section--dark .lead { color: var(--ps-color-on-dark-soft); }

  /* ---- buttons (template .site-button: 55px, 1px #e6e6dc, sentence case, corner ticks) ---- */
  .button {
    --_bg: var(--ps-color-olive);
    --_fg: var(--ps-color-white);
    --_bd: var(--ps-color-olive);
    --_bg-h: var(--ps-color-olive-deep);
    --_fg-h: var(--ps-color-white);
    --_bd-h: var(--ps-color-olive-deep);
    --_tick: var(--ps-color-white);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ps-space-3);
    min-height: var(--ps-button-h);
    padding: 0.5rem 1.375rem;
    border: var(--ps-border) solid var(--_bd);
    border-radius: var(--ps-radius);
    background: var(--_bg);
    color: var(--_fg);
    font-family: var(--ps-font-body);
    font-size: var(--ps-fs-body);
    font-weight: var(--ps-fw-medium);
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color var(--ps-dur), border-color var(--ps-dur), color var(--ps-dur);
  }
  /* the two 5px corner triangles (template .button-shape._01/_02) */
  .button::before, .button::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    pointer-events: none;
    transition: border-color var(--ps-dur);
  }
  .button::before { top: -1px; left: -1px; border-top-color: var(--_tick); border-left-color: var(--_tick); }
  .button::after { bottom: -1px; right: -1px; border-bottom-color: var(--_tick); border-right-color: var(--_tick); }
  .button:hover, .button:focus-visible {
    background: var(--_bg-h);
    border-color: var(--_bd-h);
    color: var(--_fg-h);
  }
  .button:disabled, .button[aria-disabled="true"] { opacity: 0.6; cursor: default; }
  .button--primary { /* defaults above */ }
  .button--secondary {
    --_bg: transparent;
    --_fg: var(--ps-color-black);
    --_bd: var(--ps-color-olive);
    --_bg-h: var(--ps-color-olive);
    --_fg-h: var(--ps-color-white);
    --_bd-h: var(--ps-color-olive);
    --_tick: var(--ps-color-olive);
  }
  .button--secondary:hover, .button--secondary:focus-visible { --_tick: var(--ps-color-white); }
  .button--ghost {
    --_bg: var(--ps-color-surface);
    --_fg: var(--ps-color-black);
    --_bd: var(--ps-color-border);
    --_bg-h: var(--ps-color-olive);
    --_fg-h: var(--ps-color-white);
    --_bd-h: var(--ps-color-olive);
    --_tick: var(--ps-color-olive);
  }
  .button--ghost:hover, .button--ghost:focus-visible { --_tick: var(--ps-color-white); }
  .button--white {
    --_bg: var(--ps-color-white);
    --_fg: var(--ps-color-black);
    --_bd: var(--ps-color-white);
    --_bg-h: var(--ps-color-cream);
    --_fg-h: var(--ps-color-olive);
    --_bd-h: var(--ps-color-cream);
    --_tick: var(--ps-color-olive);
  }
  .button--white-outline {
    --_bg: transparent;
    --_fg: var(--ps-color-white);
    --_bd: var(--ps-color-border);
    --_bg-h: var(--ps-color-white);
    --_fg-h: var(--ps-color-olive);
    --_bd-h: var(--ps-color-white);
    --_tick: var(--ps-color-border);
  }
  .button--white-outline:hover, .button--white-outline:focus-visible { --_tick: var(--ps-color-olive); }
  .button--small { min-height: var(--ps-button-h-sm); padding: 0.375rem 1rem; font-size: var(--ps-fs-sm); }
  .button--block { display: flex; width: 100%; }
  .button__label { display: inline-block; }
  .button__icon { width: 1.25em; height: 1.25em; flex: none; }
  @media (max-width: 479px) { .button { white-space: normal; max-width: 100%; } }

  /* round disc: socials, slider arrows, blog "read more", back to top (template .social-icon / .info-box) */
  .button-circle {
    --_size: 3.4375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: var(--_size);
    height: var(--_size);
    min-width: var(--ps-tap);
    min-height: var(--ps-tap);
    border: 1px solid var(--ps-color-border);
    border-radius: 50%;
    background: transparent;
    color: var(--ps-color-black);
    cursor: pointer;
    transition: background-color var(--ps-dur), border-color var(--ps-dur), color var(--ps-dur);
  }
  .button-circle .icon { width: 1.25rem; height: 1.25rem; }
  .button-circle:hover, .button-circle:focus-visible { background: var(--ps-color-olive); border-color: var(--ps-color-olive); color: var(--ps-color-white); }
  .button-circle--fill { background: var(--ps-color-olive); border-color: var(--ps-color-olive); color: var(--ps-color-white); }
  .button-circle--fill:hover, .button-circle--fill:focus-visible { background: var(--ps-color-olive-deep); border-color: var(--ps-color-olive-deep); }
  .button-circle--white, .section--dark .button-circle, .footer .button-circle, .booking-band__panel--dark .button-circle { border-color: var(--ps-color-border-soft); color: var(--ps-color-white); }
  .button-circle--white:hover, .button-circle--white:focus-visible, .section--dark .button-circle:hover, .footer .button-circle:hover { background: var(--ps-color-white); border-color: var(--ps-color-white); color: var(--ps-color-olive); }
  .button-circle--small { --_size: var(--ps-tap); }
  .button-circle--small .icon { width: 1rem; height: 1rem; }
  .button-circle--large { --_size: 6rem; }
  .button-circle--large .icon { width: 1.75rem; height: 1.75rem; }
  .button-circle:disabled { opacity: 0.35; cursor: default; }
  /* long thin arrows: the template's slider arrows (.info-box variant with the long arrow) */
  .button-circle--wide { --_size: 3.4375rem; width: 4.375rem; border-radius: var(--ps-radius-pill); }
  .button-circle--wide .icon { width: 1.5rem; height: 1.5rem; }

  /* text link with the animated underline (template .footer-link + .footer-link-divider) */
  .arrow-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--ps-space-2);
    min-height: var(--ps-tap);
    padding-bottom: 0.125rem;
    color: var(--ps-color-black);
    font-size: var(--ps-fs-body);
    font-weight: var(--ps-fw-medium);
    line-height: 1.3;
    text-decoration: none;
    transition: color var(--ps-dur);
  }
  .arrow-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(50% - 0.75em); /* the box is a 44px tap target, the rule stays under the text */
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ps-dur) var(--ps-ease);
  }
  .arrow-link:hover::after, .arrow-link:focus-visible::after { transform: scaleX(1); }
  .arrow-link .icon { width: 1.25em; height: 1.25em; transition: transform var(--ps-dur); }
  .arrow-link:hover .icon { transform: translateX(0.25em); }
  .arrow-link:hover { color: var(--ps-color-olive); }
  .arrow-link--white, .section--dark .arrow-link, .footer .arrow-link, .cta-band .arrow-link, .hero__panel .arrow-link { color: var(--ps-color-white); }
  .arrow-link--white:hover, .section--dark .arrow-link:hover, .footer .arrow-link:hover, .cta-band .arrow-link:hover, .hero__panel .arrow-link:hover { color: var(--ps-color-on-dark-soft); }

  /* ---- icon: the span is what gets sized, the svg fills it ---- */
  .icon { display: inline-block; width: 1em; height: 1em; flex: none; vertical-align: -0.125em; }
  .icon svg { width: 100%; height: 100%; display: block; }
  .icon--sm { width: 1rem; height: 1rem; }
  .icon--lg { width: 1.5rem; height: 1.5rem; }
  .icon--xl { width: 2rem; height: 2rem; }
  .icon--2xl { width: 3rem; height: 3rem; }
  .icon--accent { color: var(--ps-color-olive); }

  /* ---- card ---- */
  .card {
    position: relative;
    border: var(--ps-border) solid var(--ps-color-border);
    border-radius: var(--ps-radius);
    background: var(--ps-color-surface-alt);
    color: var(--ps-color-text);
    padding: var(--ps-card-pad);
  }
  .card--cream { background: var(--ps-color-surface); }
  .card--tint { background: var(--ps-color-surface-tint); border-color: var(--ps-color-surface-tint); }
  .card--flush { padding: 0; overflow: hidden; }
  .card--dark { background: var(--ps-color-dark); border-color: var(--ps-color-dark); color: var(--ps-color-on-dark-soft); }
  .card--dark :is(h1, h2, h3, h4, h5) { color: var(--ps-color-on-dark); }
  .card--hover { transition: transform var(--ps-dur), box-shadow var(--ps-dur), border-color var(--ps-dur); }
  .card--hover:hover { transform: translate3d(0, -4px, 0); box-shadow: var(--ps-shadow-2); }
  .card__image { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
  .card__image--tall { aspect-ratio: 3 / 4; }
  .card__image img { width: 100%; height: 100%; object-fit: cover; }
  .card__body { padding: var(--ps-card-pad); }
  .card__body > * + * { margin-top: var(--ps-space-3); }
  .card__title { font-family: var(--ps-font-head); font-size: var(--ps-fs-card-title); line-height: var(--ps-lh-heading); color: var(--ps-color-heading); }
  .section--dark .card:not(.card--dark) { color: var(--ps-color-text); }
  .section--dark .card:not(.card--dark) :is(h1, h2, h3, h4, h5) { color: var(--ps-color-heading); }

  /* ---- tila card (photo, icon, title, text): the template's service post, photo + cream body ---- */
  .tila-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: var(--ps-border) solid var(--ps-color-border);
    background: var(--ps-color-surface);
    color: var(--ps-color-text);
  }
  .tila-card__image { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--ps-color-olive-15); }
  .tila-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ps-ease); }
  .tila-card:hover .tila-card__image img { transform: scale3d(1.04, 1.04, 1); }
  .tila-card__body { display: flex; flex-direction: column; gap: var(--ps-space-3); padding: var(--ps-card-pad); flex: 1; }
  .tila-card__head { display: flex; align-items: center; justify-content: space-between; gap: var(--ps-space-4); }
  .tila-card__icon { display: grid; place-items: center; flex: none; width: 2.75rem; height: 2.75rem; border: 1px solid var(--ps-color-border); border-radius: 50%; color: var(--ps-color-olive); }
  .tila-card__icon .icon { width: 1.375rem; height: 1.375rem; }
  .tila-card__title { font-family: var(--ps-font-head); font-size: var(--ps-fs-card-title); line-height: var(--ps-lh-heading); color: var(--ps-color-heading); }
  .tila-card__text { font-size: var(--ps-fs-body); color: var(--ps-color-text); }
  .section--dark .tila-card { border-color: var(--ps-color-surface); }
  .section--dark .tila-card__title { color: var(--ps-color-heading); }

  /* ---- feature box (template .fancy-box-style-2: title + text left, line icon right) ---- */
  .feature-box {
    display: flex;
    align-items: center;
    gap: var(--ps-gap);
    min-height: clamp(14rem, 12rem + 5vw, 18.25rem);
    padding: var(--ps-card-pad);
    border: var(--ps-border) solid var(--ps-color-gray);
    background: var(--ps-color-surface);
  }
  .feature-box__body { flex: 1; min-width: 0; }
  .feature-box__title { font-family: var(--ps-font-head); font-size: var(--ps-fs-box-title); line-height: var(--ps-lh-heading); color: var(--ps-color-heading); margin-bottom: clamp(1.25rem, 1rem + 1.5vw, 3.75rem); }
  .feature-box__text { max-width: 20rem; font-size: var(--ps-fs-body); color: var(--ps-color-text); }
  .feature-box__icon { display: grid; place-items: center; flex: none; width: clamp(5rem, 4rem + 3vw, 7.5rem); height: clamp(5rem, 4rem + 3vw, 7.5rem); color: var(--ps-color-olive); }
  .feature-box__icon .icon { width: 100%; height: 100%; }
  .feature-box__icon .icon svg { stroke-width: 0.9; }
  @media (max-width: 479px) {
    .feature-box { flex-direction: column-reverse; align-items: flex-start; min-height: 0; }
    .feature-box__icon { width: 4rem; height: 4rem; }
  }
  .section--dark .feature-box { background: transparent; border-color: var(--ps-color-border-on-dark); }
  .section--dark .feature-box__title { color: var(--ps-color-on-dark); }
  .section--dark .feature-box__text { color: var(--ps-color-on-dark-soft); }
  .section--dark .feature-box__icon { color: var(--ps-color-on-dark); }

  /* ---- badge ---- */
  .badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--ps-color-olive);
    color: var(--ps-color-olive);
    background: transparent;
    font-size: var(--ps-fs-xs);
    font-weight: var(--ps-fw-medium);
    letter-spacing: var(--ps-tracking-label);
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: var(--ps-radius);
    white-space: nowrap;
  }
  .badge--fill { background: var(--ps-color-olive); color: var(--ps-color-white); }
  .badge--white { border-color: var(--ps-color-white); color: var(--ps-color-white); }

  /* ---- checkline / dot list (template .list-item + .list-dot) ---- */
  .checklist { display: grid; gap: var(--ps-space-3); }
  @media (min-width: 768px) { .checklist--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--ps-space-3) var(--ps-space-6); } }
  .checkline { display: flex; align-items: flex-start; gap: var(--ps-space-3); color: var(--ps-color-text-strong); line-height: 1.5; }
  .checkline__icon { display: grid; place-items: center; flex: none; width: 1.5rem; height: 1.5rem; color: var(--ps-color-olive); }
  .checkline__icon .icon { width: 1.125rem; height: 1.125rem; }
  .checkline__text { min-width: 0; }
  .section--dark .checkline, .card--dark .checkline { color: var(--ps-color-white); }
  .section--dark .checkline__icon { color: var(--ps-color-on-dark-soft); }
  .dot-list { display: grid; gap: var(--ps-space-3); }
  .dot-list > li { position: relative; padding-left: 1rem; color: var(--ps-color-text-strong); line-height: 1.5; }
  .dot-list > li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
  .section--dark .dot-list > li { color: var(--ps-color-white); }

  /* ---- accordion (FAQ): Italiana question, thin plus that turns into a minus ---- */
  .accordion { display: grid; gap: 0; border-top: 1px solid var(--ps-color-border); }
  .accordion__item { border-bottom: 1px solid var(--ps-color-border); }
  .accordion__title-wrap { margin: 0; font: inherit; }
  .accordion__head {
    display: flex; align-items: center; justify-content: space-between; gap: var(--ps-space-4);
    width: 100%; min-height: var(--ps-tap);
    padding: clamp(1rem, 0.75rem + 1vw, 1.5rem) 0;
    text-align: left; color: var(--ps-color-black);
    cursor: pointer;
    transition: color var(--ps-dur);
  }
  .accordion__head:hover { color: var(--ps-color-olive); }
  .accordion__title { font-family: var(--ps-font-head); font-size: var(--ps-fs-card-title); font-weight: var(--ps-fw-regular); line-height: var(--ps-lh-heading); text-wrap: balance; overflow-wrap: normal; }
  .accordion__num { display: inline-block; margin-right: 0.35em; }
  .accordion__icon {
    flex: none; position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 1.875rem; height: 1.875rem; margin-right: 0.625rem; color: var(--ps-color-plus);
  }
  .accordion__bar { position: absolute; background: currentColor; transition: transform 0.25s var(--ps-ease-inout), opacity 0.25s; }
  .accordion__bar--v { width: 1px; height: 1.125rem; }
  .accordion__bar--h { width: 1.125rem; height: 1px; }
  .accordion__item.is-open .accordion__bar--v { transform: rotate(90deg); opacity: 0; }
  .accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s var(--ps-ease-inout);
  }
  /* the grid child is a plain wrapper: no padding here, or a closed panel shows a clipped line */
  .accordion__panel > * { overflow: hidden; min-height: 0; padding: 0; }
  .accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
  .accordion__body { padding-bottom: clamp(1rem, 0.75rem + 1vw, 1.5rem); max-width: 40rem; color: var(--ps-color-text); opacity: 0; transform: translateY(0.75rem); transition: opacity 0.25s var(--ps-ease-inout), transform 0.3s var(--ps-ease-inout); }
  .accordion__item.is-open .accordion__body { opacity: 1; transform: none; }
  .accordion__body > * + * { margin-top: var(--ps-space-3); }
  .section--dark .accordion, .section--dark .accordion__item { border-color: var(--ps-color-border-on-dark); }
  .section--dark .accordion__head { color: var(--ps-color-white); }
  .section--dark .accordion__icon { color: var(--ps-color-white); }
  .section--dark .accordion__body { color: var(--ps-color-on-dark-soft); }

  /* ---- time list (template .time-item rows on the dark booking panel) ---- */
  .time-list { display: grid; gap: 0; }
  .time-item { display: flex; align-items: center; justify-content: space-between; gap: var(--ps-space-5); padding-block: clamp(1rem, 0.75rem + 1vw, 1.625rem); border-bottom: 1px solid #d9d9d940; color: var(--ps-color-on-dark-soft); }
  .time-item__label { flex: 1; min-width: 0; font-family: var(--ps-font-head); font-size: var(--ps-fs-row-label); line-height: var(--ps-lh-heading); color: var(--ps-color-white); }
  .time-item__value { flex: 0 1 auto; min-width: 0; max-width: 55%; text-align: right; font-size: var(--ps-fs-sm); }
  .time-list--light .time-item { border-bottom-color: var(--ps-color-border); color: var(--ps-color-text); }
  .time-list--light .time-item__label { color: var(--ps-color-heading); }
  .time-item__num { flex: none; width: 2.5rem; font-family: var(--ps-font-head); font-size: var(--ps-fs-row-label); color: var(--ps-color-olive); }

  /* ---- numbered step ---- */
  .steps { display: grid; gap: var(--ps-gap); }
  @media (min-width: 992px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
  .step { display: flex; flex-direction: column; gap: var(--ps-space-3); padding: var(--ps-card-pad); border: 1px solid var(--ps-color-border); background: var(--ps-color-surface); }
  .step__num { font-family: var(--ps-font-head); font-size: var(--ps-fs-h3); line-height: 1; color: var(--ps-color-olive); }
  .step__title { font-family: var(--ps-font-head); font-size: var(--ps-fs-card-title); line-height: var(--ps-lh-heading); color: var(--ps-color-heading); }
  .step__text { color: var(--ps-color-text); }

  /* ---- breadcrumbs ---- */
  .breadcrumbs { font-size: var(--ps-fs-xs); letter-spacing: 0.04em; color: var(--ps-color-text); }
  .breadcrumbs__list { display: flex; flex-wrap: wrap; align-items: center; gap: var(--ps-space-2) var(--ps-space-3); margin: 0; padding: 0; list-style: none; }
  .breadcrumbs__item { display: inline-flex; align-items: center; gap: var(--ps-space-3); }
  .breadcrumbs__item + .breadcrumbs__item::before { content: "/"; color: var(--ps-color-gray); }
  .breadcrumbs__link { color: inherit; transition: color var(--ps-dur); }
  .breadcrumbs__link:hover { color: var(--ps-color-olive); }
  .breadcrumbs__current { color: var(--ps-color-heading); }

  /* ---- forms (template .input-field: 60px, 1px olive/25, transparent) ---- */
  .form { display: block; }
  .form__grid { display: grid; gap: var(--ps-space-5) var(--ps-space-5); grid-template-columns: 1fr; }
  .form__grid > * { min-width: 0; }
  @media (min-width: 768px) {
    .form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .form-field--full { grid-column: 1 / -1; }
  }
  .form-field { display: flex; flex-direction: column; gap: var(--ps-space-2); }
  .form-field__label { font-size: var(--ps-fs-sm); font-weight: var(--ps-fw-medium); color: var(--ps-color-text-strong); }
  .form-field__label .req { color: var(--ps-color-olive); }
  .form-field__hint { font-size: var(--ps-fs-xs); color: var(--ps-color-text); }
  .form-field.is-invalid .form-field__hint { color: var(--ps-color-error); }
  .form-input, .form-textarea, .form-select {
    width: 100%;
    min-height: var(--ps-input-h);
    padding: 0.75rem 1.375rem;
    border: 1px solid var(--ps-color-olive-25);
    border-radius: var(--ps-radius);
    background: transparent;
    color: var(--ps-color-text-strong);
    font-size: var(--ps-fs-body);
    font-weight: var(--ps-fw-regular);
    line-height: 1.4;
    transition: border-color var(--ps-dur), color var(--ps-dur);
    -webkit-appearance: none;
    appearance: none;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--ps-color-text); opacity: 1; }
  .form-input:hover, .form-textarea:hover, .form-select:hover,
  .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--ps-color-olive-50); outline: none; }
  .form-input:focus-visible, .form-textarea:focus-visible, .form-select:focus-visible { outline: 2px solid var(--ps-color-olive); outline-offset: 1px; }
  .form-field.is-invalid :is(.form-input, .form-textarea, .form-select), :is(.form-input, .form-textarea, .form-select):user-invalid { border-color: var(--ps-color-error); }
  .form-textarea { min-height: 9.5rem; padding-top: 1.125rem; resize: vertical; }
  .form-select {
    padding-right: 3rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23585e48' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.125rem;
    cursor: pointer;
  }
  .form-select option { color: var(--ps-color-text-strong); background: var(--ps-color-white); }
  .form-input[type="date"], .form-input[type="time"] { min-height: var(--ps-input-h); }
  .form-check { display: flex; align-items: flex-start; gap: var(--ps-space-3); cursor: pointer; font-size: var(--ps-fs-sm); line-height: 1.5; color: var(--ps-color-text); }
  .form-check__input {
    appearance: none; -webkit-appearance: none;
    flex: none; width: 1.375rem; height: 1.375rem; margin-top: 0.05rem;
    border: 1px solid var(--ps-color-olive-50); background: transparent;
    border-radius: 0; cursor: pointer;
    display: inline-grid; place-content: center;
    transition: border-color var(--ps-dur), background-color var(--ps-dur);
  }
  .form-check__input:hover { border-color: var(--ps-color-olive); }
  .form-check__input::before { content: ""; width: 0.7rem; height: 0.7rem; background: var(--ps-color-white); clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); transform: scale(0); transition: transform var(--ps-dur); }
  .form-check__input:checked { border-color: var(--ps-color-olive); background: var(--ps-color-olive); }
  .form-check__input:checked::before { transform: scale(1); }
  .form-check__input[type="radio"], .form-check__input[type="radio"]::before { border-radius: 50%; clip-path: none; }
  .form__hp { position: absolute !important; left: -200vw !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
  .form__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--ps-space-4) var(--ps-space-5); margin-top: var(--ps-space-5); }
  .form__note { display: flex; align-items: center; gap: var(--ps-space-2); font-size: var(--ps-fs-sm); color: var(--ps-color-text); }
  .form__note .icon { width: 1rem; height: 1rem; color: var(--ps-color-olive); }
  .form__status { flex: 1 1 100%; min-height: 1.5em; font-size: var(--ps-fs-sm); font-weight: var(--ps-fw-medium); }
  .form__status:empty { display: none; }
  .form__status.is-ok { color: var(--ps-color-ok); }
  .form__status.is-error { color: var(--ps-color-error); }
  .form--card { padding: var(--ps-card-pad); border: 1px solid var(--ps-color-border); background: var(--ps-color-surface); }
  .form--dark .form-field__label, .form--dark .form-check { color: var(--ps-color-white); }
  .form--dark :is(.form-input, .form-textarea, .form-select) { color: var(--ps-color-white); border-color: var(--ps-color-border-soft); }
  .form--dark :is(.form-input, .form-textarea)::placeholder { color: var(--ps-color-on-dark-soft); }
  .form--dark .form-select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>"); }
  .form--dark .form-select option { color: var(--ps-color-text-strong); }
  .form--dark .form__status.is-ok { color: var(--ps-color-on-dark-soft); }
}

/* =========================================================================
   COMPONENTS 2: chrome and home blocks
   ========================================================================= */
@layer components {
  /* ---- skip link ---- */
  .skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: var(--ps-z-skip);
    padding: 0.75rem 1rem;
    background: var(--ps-color-olive);
    color: var(--ps-color-white);
    font-weight: var(--ps-fw-medium);
    transform: translateY(-200%);
    transition: transform var(--ps-dur);
  }
  .skip-link:focus { transform: none; outline-color: var(--ps-color-white); }

  /* ---- site nav: cream sticky bar, never transparent (template .main-header-1) ---- */
  .site-nav {
    position: sticky;
    top: 0;
    z-index: var(--ps-z-nav);
    background: var(--ps-color-surface);
    color: var(--ps-color-black);
    border-bottom: 1px solid var(--ps-color-border);
    transition: transform 0.45s var(--ps-ease), box-shadow var(--ps-dur);
  }
  .site-nav.is-hidden { transform: translateY(-100%); }
  .site-nav.is-scrolled { box-shadow: var(--ps-shadow-1); }
  .site-nav__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ps-space-6);
    min-height: var(--ps-nav-h);
    padding-block: var(--ps-space-3);
  }
  /* wordmark, sized by height like the template's 40px Italiana logo */
  .site-nav__brand { --_logo-h: clamp(1.75rem, 1.4rem + 1vw, 2.375rem); display: flex; align-items: center; flex: none; min-height: var(--ps-tap); color: var(--ps-color-text-strong); }
  .site-nav__brand .logo__svg, .site-nav__brand img { height: var(--_logo-h); width: auto; }
  .site-nav__menu { display: flex; align-items: center; gap: var(--ps-space-6); flex: 1; justify-content: center; min-width: 0; }
  .site-nav__list { display: flex; align-items: center; gap: clamp(1.25rem, 0.5rem + 1.2vw, 2rem); }
  .site-nav__item { position: relative; }
  .site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: var(--ps-tap);
    color: var(--ps-color-text-strong);
    font-size: var(--ps-fs-body);
    font-weight: var(--ps-fw-regular);
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--ps-dur);
  }
  .site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.6rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ps-dur) var(--ps-ease);
  }
  .site-nav__link:hover, .site-nav__link[aria-current="page"] { color: var(--ps-color-black); }
  .site-nav__link:hover::after, .site-nav__link[aria-current="page"]::after { transform: scaleX(1); }
  .site-nav__end { display: flex; align-items: center; gap: var(--ps-space-4); flex: none; }

  /* round burger with two lines (template .hamburger-menu / .hamburger-menu-mobile) */
  .site-nav__burger {
    display: none;
    position: relative;
    flex: none;
    width: var(--ps-tap);
    height: var(--ps-tap);
    border: 1px solid var(--ps-color-border);
    border-radius: 50%;
    color: var(--ps-color-black);
    transition: background-color var(--ps-dur), border-color var(--ps-dur), color var(--ps-dur);
  }
  .site-nav__burger:hover { background: var(--ps-color-olive); border-color: var(--ps-color-olive); color: var(--ps-color-white); }
  .site-nav__burger-line {
    position: absolute;
    left: 50%;
    width: 1.125rem;
    height: 1px;
    background: currentColor;
    transform: translateX(-50%);
    transition: transform var(--ps-dur), top var(--ps-dur);
  }
  .site-nav__burger-line:nth-child(1) { top: calc(50% - 0.25rem); }
  .site-nav__burger-line:nth-child(2) { top: calc(50% + 0.25rem); }
  .is-open .site-nav__burger-line:nth-child(1) { top: 50%; transform: translateX(-50%) rotate(45deg); }
  .is-open .site-nav__burger-line:nth-child(2) { top: 50%; transform: translateX(-50%) rotate(-45deg); }

  @media (max-width: 1199px) and (min-width: 992px) {
    .site-nav__list { gap: 1rem; }
    .site-nav__link { font-size: var(--ps-fs-sm); }
  }
  @media (max-width: 991px) {
    .site-nav__burger { display: block; }
    .site-nav__cta { display: none; }
    /* the popup panel under the bar (template .menu-popup-wrap) */
    .site-nav__menu {
      position: fixed;
      top: var(--ps-nav-h);
      left: 0;
      right: 0;
      bottom: 0;
      z-index: var(--ps-z-drawer);
      display: block;
      overflow-y: auto;
      overscroll-behavior: contain;
      padding: var(--ps-space-7) var(--ps-gutter) calc(var(--ps-space-8) + var(--ps-callbar-h));
      background: var(--ps-color-surface);
      color: var(--ps-color-black);
      border-top: 1px solid var(--ps-color-border);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-0.75rem);
      transition: opacity var(--ps-dur), transform var(--ps-dur), visibility 0s linear var(--ps-dur);
    }
    .site-nav.is-open .site-nav__menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
    .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
    .site-nav__item { border-bottom: 1px solid var(--ps-color-border); }
    .site-nav__link { width: 100%; justify-content: space-between; padding: var(--ps-space-4) 0; font-family: var(--ps-font-head); font-size: var(--ps-fs-h4); color: var(--ps-color-text); }
    .site-nav__link::after { display: none; }
    .site-nav__link:hover, .site-nav__link[aria-current="page"] { color: var(--ps-color-black); }
    .site-nav__drawer-end { display: grid; gap: var(--ps-space-4); margin-top: var(--ps-space-6); }
    .site-nav__drawer-end .button { width: 100%; }
    .site-nav__drawer-note { font-size: var(--ps-fs-sm); color: var(--ps-color-text); }
  }
  @media (min-width: 992px) {
    .site-nav__drawer-end { display: none; }
  }
  body.nav-open { overflow: hidden; }

  /* ---- hero, home: olive panel + photo stage (template .hero-section) ---- */
  .hero { position: relative; }
  .hero--home {
    display: flex;
    min-height: calc(100svh - var(--ps-nav-h));
    background: var(--ps-color-olive-deep);
    color: var(--ps-color-white);
  }
  .hero__panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--ps-space-8);
    flex: none;
    width: 100%;
    max-width: var(--ps-hero-panel);
    padding: 3.75rem 2.5rem 2.5rem;
    background: var(--ps-color-olive);
    color: var(--ps-color-white);
  }
  .hero__panel-top { display: flex; flex-direction: column; align-items: flex-start; gap: var(--ps-space-5); }
  .hero__panel .eyebrow { margin-bottom: calc(-1 * var(--ps-space-2)); color: var(--ps-color-on-dark-soft); }
  /* a body-length Finnish paragraph: Jost, not the hairline display face (the template's panel text is a
     five-word Italiana heading; six lines of Italiana at 22px read thin) */
  .hero__sub { font-family: var(--ps-font-body); font-size: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem); font-weight: var(--ps-fw-regular); line-height: 1.6; color: var(--ps-color-on-dark-soft); max-width: 32ch; text-wrap: pretty; }
  .hero__panel .actions { margin-top: var(--ps-space-1); }
  .hero__panel-media { position: relative; overflow: hidden; aspect-ratio: 5 / 4; max-height: 24rem; background: var(--ps-color-olive-deep); }
  .hero__panel-media img { width: 100%; height: 100%; object-fit: cover; }
  .hero__stage {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
  }
  .hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
  .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
  .hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgb(var(--ps-scrim-rgb) / 0.62) 0%, rgb(var(--ps-scrim-rgb) / 0.38) 45%, rgb(var(--ps-scrim-rgb) / 0.55) 100%); }
  .hero__top { padding: 3.75rem 1.75rem 1.875rem; }
  .hero__title { max-width: 50rem; color: var(--ps-color-white); }
  .hero--home .hero__title .accent { color: var(--ps-color-on-dark-soft); }
  /* the frosted info strip: three columns with hairline dividers */
  .hero__strip { position: relative; z-index: 1; padding: 1.875rem 1.75rem; color: var(--ps-color-white); }
  .hero__strip::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgb(0 0 0 / 0.22); -webkit-backdrop-filter: blur(25px); backdrop-filter: blur(25px); }
  .hero__strip-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--ps-space-5); max-width: 81.25rem; }
  .hero__strip-inner > * { min-width: 0; }
  .hero__fact { flex: 1; }
  .hero__fact-title { display: block; margin-bottom: var(--ps-space-2); font-size: 1.125rem; font-weight: var(--ps-fw-medium); line-height: var(--ps-lh-body); color: var(--ps-color-white); }
  .hero__fact-text { color: var(--ps-color-on-dark-soft); font-size: var(--ps-fs-body); }
  /* the hairline between facts is drawn by the fact itself (no divider child: the reveal group then holds
     only facts, all on one top line, and the rule still sits vertically centred like the template's) */
  .hero__fact + .hero__fact { position: relative; padding-left: 2.5rem; }
  .hero__fact + .hero__fact::before { content: ""; position: absolute; left: 0; top: 50%; width: 1px; height: 4.375rem; transform: translateY(-50%); background: var(--ps-color-border); opacity: 0.5; }
  @media (min-width: 1440px) { .hero__top { padding-inline: 2.5rem; } .hero__strip { padding-inline: 2.5rem; } }
  @media (max-width: 991px) {
    .hero--home { display: block; min-height: 0; }
    .hero__panel {
      max-width: 100%;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--ps-space-5);
      align-items: end;
      padding: 2.5rem var(--ps-gutter);
    }
    .hero__panel-media { max-height: none; aspect-ratio: 4 / 3; }
    .hero__stage { min-height: 42.5rem; }
    .hero__top { padding: 3rem var(--ps-gutter) 1.5rem; }
    .hero__strip { padding: 1.5rem var(--ps-gutter); }
  }
  @media (max-width: 767px) {
    .hero__panel { grid-template-columns: 1fr; }
    .hero__sub { max-width: none; }
    .hero__stage { min-height: 0; }
    .hero__top { min-height: 24rem; display: flex; align-items: flex-start; }
    .hero__strip::before { background: rgb(var(--ps-scrim-rgb) / 0.55); }
    .hero__strip-inner { flex-direction: column; align-items: stretch; gap: var(--ps-space-5); }
    .hero__fact + .hero__fact { padding-left: 0; }
    .hero__fact + .hero__fact::before { display: none; }
  }

  /* ---- hero, inner pages (PAGES uses; cream, no photo) ---- */
  .hero--page { background: var(--ps-color-surface); color: var(--ps-color-text); padding-block: var(--ps-section-pad-tight) var(--ps-space-8); }
  .hero--page .hero__content { display: flex; flex-direction: column; align-items: flex-start; gap: var(--ps-space-4); max-width: var(--ps-measure-head); }
  .hero--page .hero__eyebrow { margin-bottom: calc(-1 * var(--ps-space-1)); }
  .hero--page .hero__title { color: var(--ps-color-heading); max-width: none; }
  .hero--page .hero__title .accent { color: var(--ps-color-accent); }
  .hero--page .hero__lead { color: var(--ps-color-text); }
  .hero--page .hero__media { position: relative; overflow: hidden; aspect-ratio: 16 / 9; margin-top: var(--ps-block-gap); }
  .hero--page .hero__media img { width: 100%; height: 100%; object-fit: cover; }
  .hero--page.hero--center .hero__content { align-items: center; text-align: center; margin-inline: auto; }

  /* ---- hero, inner pages, photo variant (the template's page-title band: dark stage, the page photo
     left, the uppercase Italiana H1 right with the lead beneath it). The stage is the same photo
     blurred behind an olive scrim, so every inner page opens on the client's own room. ---- */
  .hero--page--photo { --_title-max: 5rem; position: relative; isolation: isolate; overflow: clip; background: var(--ps-color-olive-deep); color: var(--ps-color-on-dark-soft); padding-block: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem) clamp(3.5rem, 2.25rem + 3.75vw, 7.5rem); }
  .hero--page--photo .hero__backdrop { position: absolute; inset: -2.5rem; z-index: -2; background: var(--_hero-bg, none) center / cover no-repeat var(--ps-color-olive-deep); filter: blur(28px) saturate(0.7); }
  .hero--page--photo .hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgb(var(--ps-scrim-rgb) / 0.88), rgb(var(--ps-scrim-rgb) / 0.8) 45%, rgb(var(--ps-scrim-rgb) / 0.9)); }
  .hero--page--photo .breadcrumbs { margin-bottom: clamp(1.75rem, 1.25rem + 1.75vw, 3.25rem); color: var(--ps-color-on-dark-soft); }
  .hero--page--photo .breadcrumbs__current { color: var(--ps-color-white); }
  .hero--page--photo .breadcrumbs__link:hover { color: var(--ps-color-white); }
  .hero--page--photo .breadcrumbs__item + .breadcrumbs__item::before { color: var(--ps-color-on-dark-muted); }
  .hero__photo-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2rem, 1.5rem + 2vw, 3rem) clamp(2.5rem, 1rem + 4.5vw, 5rem); align-items: stretch; }
  .hero__photo-grid > * { min-width: 0; }
  /* the photo box is at least 4:3 (16:10 beside the title) and stretches to the text column's height */
  .hero--page--photo .hero__media { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); overflow: hidden; margin: 0; aspect-ratio: auto; background: var(--ps-color-olive); }
  .hero--page--photo .hero__media::before { content: ""; grid-area: 1 / 1; padding-top: 75%; }
  .hero--page--photo .hero__media > * { grid-area: 1 / 1; display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; }
  .hero--page--photo .hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .hero--page--photo .hero__content { container-type: inline-size; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: var(--ps-space-3); max-width: none; }
  .hero--page--photo .hero__eyebrow { margin-bottom: 0; color: var(--ps-color-on-dark-soft); }
  /* the title is sized so its widest unbreakable run (a long word or a welded tail, measured server-side
     into --_em) always fits the column. Cap 80px, not the home hero's 90: the template's two-word English
     titles become four- and five-word Finnish ones here, and at 90px they ran five lines tall. */
  .hero--page--photo .hero__title { width: 100%; color: var(--ps-color-white); max-width: none; font-size: clamp(1.75rem, 100cqw / var(--_em, 8), min(var(--ps-fs-display-1), var(--_title-max))); line-height: var(--ps-lh-display); }
  .hero--page--photo .hero__title .accent { color: var(--ps-color-on-dark-soft); }
  .hero--page--photo .hero__lead { color: var(--ps-color-on-dark-soft); max-width: 30rem; }
  .hero--page--photo .hero__title + .hero__lead { margin-top: auto; padding-top: var(--ps-space-4); }
  .hero--page--photo .hero__content > .actions { margin-top: var(--ps-space-4); }
  .hero--page--photo .hero__content a:not(.button):not(.badge) { color: var(--ps-color-white); }
  @media (min-width: 992px) {
    .hero__photo-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .hero--page--photo .hero__media::before { padding-top: 62.5%; }
  }

  /* ---- intro split (template case-row _01: text left, two photos + quote right) ---- */
  .intro { display: grid; gap: var(--ps-gap-lg) var(--ps-gap); grid-template-columns: 1fr; align-items: start; }
  .intro > * { min-width: 0; }
  .intro__text { display: flex; flex-direction: column; align-items: flex-start; gap: var(--ps-space-5); }
  .intro__text .section-head { margin-bottom: 0; }
  .intro__text .lead { font-size: var(--ps-fs-body); }
  .intro__media { display: flex; flex-direction: column; gap: var(--ps-space-8); padding-top: 0.75rem; }
  .intro__photos { display: flex; align-items: center; gap: var(--ps-gap); }
  .intro__photo { position: relative; overflow: hidden; background: var(--ps-color-olive-15); }
  .intro__photo img { width: 100%; height: 100%; object-fit: cover; }
  .intro__photo--small { flex: none; width: clamp(7.5rem, 5rem + 8vw, 11.875rem); aspect-ratio: 19 / 30; }
  .intro__photo--main { flex: 1; aspect-ratio: 43 / 39; }
  .intro__quote { font-family: var(--ps-font-head); font-size: clamp(1.5rem, 1.3rem + 0.85vw, 2rem); line-height: var(--ps-lh-heading); color: var(--ps-color-heading); text-wrap: balance; }
  .intro__cite { display: block; margin-top: var(--ps-space-6); font-style: normal; color: var(--ps-color-text); }
  @media (min-width: 992px) { .intro { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

  /* ---- kenelle (template Why Choose Us) ---- */
  .kenelle__grid { display: grid; gap: var(--ps-gap); grid-template-columns: 1fr; }
  .kenelle__grid > * { min-width: 0; }
  @media (min-width: 992px) { .kenelle__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

  /* ---- booking band (template .booking-section: dark photo panel | tint panel) ---- */
  .booking-band { display: grid; grid-template-columns: 1fr; background: var(--ps-color-surface-tint); }
  .booking-band > * { min-width: 0; }
  .booking-band__panel { position: relative; display: flex; justify-content: center; align-items: flex-start; padding: clamp(4rem, 3rem + 5vw, 10.625rem) var(--ps-gutter); }
  .booking-band__panel--dark { isolation: isolate; color: var(--ps-color-on-dark-soft); background: var(--ps-color-olive-deep); }
  .booking-band__bg { position: absolute; inset: 0; z-index: -2; }
  .booking-band__bg img { width: 100%; height: 100%; object-fit: cover; }
  .booking-band__scrim { position: absolute; inset: 0; z-index: -1; background: rgb(0 0 0 / 0.66); }
  .booking-band__panel--tint { background: var(--ps-color-surface-tint); color: var(--ps-color-text); }
  .booking-band__inner { width: 100%; max-width: 40.625rem; display: flex; flex-direction: column; gap: var(--ps-space-6); }
  .booking-band__panel--tint .booking-band__inner { max-width: 43.125rem; }
  .booking-band__title { text-align: center; color: var(--ps-color-white); }
  .booking-band__panel--tint .booking-band__title { color: var(--ps-color-heading); }
  .booking-band__text { text-align: center; max-width: 36rem; margin-inline: auto; }
  .booking-band__note { display: flex; align-items: center; gap: var(--ps-space-4); color: var(--ps-color-on-dark-soft); font-size: var(--ps-fs-sm); }
  .booking-band__note-icon { display: grid; place-items: center; flex: none; width: 2.25rem; height: 2.25rem; color: var(--ps-color-white); }
  .booking-band__note-icon .icon { width: 1.75rem; height: 1.75rem; }
  .booking-band .actions { justify-content: center; }
  @media (min-width: 992px) { .booking-band { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

  /* ---- FAQ split (template .faqs-section: accordion left, two overlapping photos right) ---- */
  .faq-split { display: grid; grid-template-columns: 1fr; gap: var(--ps-gap-lg); align-items: center; }
  .faq-split > * { min-width: 0; }
  .faq-split__text { width: 100%; max-width: 41.25rem; }
  .faq-split__text .section-head { margin-bottom: clamp(1.5rem, 1rem + 1.6vw, 2.625rem); }
  .faq-split__media { position: relative; padding-left: clamp(3rem, 1rem + 9vw, 8.75rem); }
  .faq-split__photo { position: relative; overflow: hidden; background: var(--ps-color-olive-15); }
  .faq-split__photo img { width: 100%; height: 100%; object-fit: cover; }
  .faq-split__photo--main { aspect-ratio: 3 / 4; }
  .faq-split__photo--small { position: absolute; z-index: 2; left: 0; top: 50%; width: clamp(9rem, 6rem + 12vw, 20rem); aspect-ratio: 16 / 25; transform: translateY(-50%); box-shadow: var(--ps-shadow-2); }
  @media (min-width: 992px) {
    .faq-split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--ps-gap); }
    .faq-split__text { justify-self: end; padding-right: var(--ps-space-6); }
  }
  @media (max-width: 479px) { .faq-split__photo--small { display: none; } .faq-split__media { padding-left: 0; } }

  /* ---- blog strip (template .blog-section: photo left, tint panel with cards right) ---- */
  .blog-strip { display: grid; grid-template-columns: 1fr; background: var(--ps-color-surface-tint); overflow: clip; }
  .blog-strip > * { min-width: 0; }
  .blog-strip__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--ps-color-olive-15); }
  .blog-strip__media img { width: 100%; height: 100%; object-fit: cover; }
  .blog-strip__body { display: flex; flex-direction: column; justify-content: center; gap: var(--ps-block-gap); padding: clamp(4rem, 3rem + 4vw, 7.5rem) var(--ps-gutter); }
  .blog-strip__body .section-head { margin-bottom: 0; }
  .blog-strip__foot { display: flex; align-items: center; gap: var(--ps-gap); margin-top: var(--ps-block-gap); }
  .blog-strip__foot .slider__rule { flex: 1; }
  .blog-strip__arrows { display: flex; gap: var(--ps-space-3); }
  .blog-strip__rule { flex: 1; height: 1px; background: var(--ps-color-gray); }
  @media (min-width: 992px) {
    .blog-strip { grid-template-columns: 45fr 55fr; }
    .blog-strip__media { aspect-ratio: auto; min-height: 100%; }
    .blog-strip__media img { position: absolute; inset: 0; }
    .blog-strip__body { padding-left: var(--ps-space-8); padding-right: 0; }
    .blog-strip__foot { padding-right: var(--ps-gutter); }
  }

  /* ---- slider: translateX track on desktop, native scroll-snap on touch ---- */
  .slider { position: relative; }
  .slider__viewport { overflow: clip visible; cursor: grab; }
  @media (min-width: 992px) { .slider__viewport { touch-action: pan-y; } }
  .slider__viewport.is-dragging { cursor: grabbing; user-select: none; }
  .slider__slide img { -webkit-user-drag: none; user-select: none; }
  .slider__track { display: flex; gap: var(--ps-gap); will-change: transform; transition: transform 0.7s var(--ps-ease); }
  .slider__slide { flex: 0 0 auto; width: min(37.5rem, calc(100vw - 2 * var(--ps-gutter))); min-width: 0; }
  .slider__nav { display: flex; align-items: center; gap: var(--ps-space-4); margin-top: var(--ps-block-gap); }
  .slider__nav.blog-strip__foot { margin-top: var(--ps-block-gap); }
  .slider__rule { flex: 1; height: 1px; background: var(--ps-color-gray); }
  .slider__count { font-size: var(--ps-fs-sm); color: var(--ps-color-text); font-variant-numeric: tabular-nums; }
  @media (max-width: 991px) {
    .slider__viewport { overflow-x: auto; overflow-y: hidden; touch-action: pan-x pan-y; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(-1 * var(--ps-gutter)); padding-inline: var(--ps-gutter); scroll-padding-inline: var(--ps-gutter); -webkit-overflow-scrolling: touch; }
    .slider__viewport::-webkit-scrollbar { display: none; }
    .slider__track { transition: none; transform: none !important; gap: var(--ps-space-4); }
    .slider__track::after { content: ""; flex: 0 0 calc(var(--ps-gutter) - var(--ps-space-4)); }
    .slider__slide { scroll-snap-align: start; width: min(26rem, 84vw); }
  }

  /* ---- CTA band (olive over the theme photo) ---- */
  .cta-band {
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding-block: var(--ps-section-pad);
    background-color: var(--ps-color-olive);
    color: var(--ps-color-on-dark-soft);
  }
  .cta-band__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../img/cta-tila.webp");
    background-size: cover;
    background-position: 50%;
  }
  @media (max-width: 800px) { .cta-band__bg { background-image: url("../img/cta-tila-800.webp"); } }
  .cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, #585e48 0%, #585e48f2 45%, #585e48cc 100%); }
  .cta-band__content { position: relative; max-width: 40rem; display: flex; flex-direction: column; align-items: flex-start; gap: var(--ps-space-4); }
  .cta-band__content .eyebrow { margin-bottom: calc(-1 * var(--ps-space-1)); color: var(--ps-color-on-dark-soft); }
  .cta-band__title { color: var(--ps-color-white); }
  .cta-band__text { color: var(--ps-color-on-dark-soft); font-size: var(--ps-fs-lg); }
  .cta-band__content .actions { margin-top: var(--ps-space-4); }
  .cta-band--center .cta-band__content { margin-inline: auto; align-items: center; text-align: center; }
  .cta-band--center .cta-band__bg::after { background: #585e48e6; }

  /* ---- footer (olive; brand + about + socials, link columns, hairline, copyright + back to top) ---- */
  .footer { position: relative; background: var(--ps-color-olive); color: var(--ps-color-on-dark-soft); overflow: clip; }
  .footer__main { padding-block: clamp(4rem, 3rem + 5vw, 10.3125rem) clamp(3rem, 2rem + 3vw, 5.625rem); }
  .footer__grid { display: grid; gap: var(--ps-gap-lg) var(--ps-gap); grid-template-columns: 1fr; }
  .footer__grid > * { min-width: 0; }
  @media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (min-width: 992px) { .footer__grid { grid-template-columns: 1.5fr 0.7fr 1fr 1.1fr; gap: var(--ps-gap); } }
  .footer__brand { display: inline-flex; align-items: center; height: clamp(1.75rem, 1.4rem + 1vw, 2.375rem); color: var(--ps-color-white); }
  .footer__brand .logo__svg, .footer__brand img { height: 100%; width: auto; }
  .footer__about { margin-top: 1.125rem; max-width: 22.5rem; color: var(--ps-color-on-dark-soft); font-size: var(--ps-fs-body); }
  .footer__about > * + * { margin-top: var(--ps-space-3); }
  .footer__socials { display: flex; gap: var(--ps-space-3); margin-top: clamp(1.5rem, 1rem + 2vw, 3.125rem); }
  .footer__title { display: block; margin-bottom: 1.875rem; font-family: var(--ps-font-head); font-size: var(--ps-fs-card-title); line-height: var(--ps-lh-heading); color: var(--ps-color-white); }
  .footer__links { display: grid; gap: 0.625rem; justify-items: start; }
  .footer__link { position: relative; display: inline-flex; align-items: center; gap: var(--ps-space-2); padding-bottom: 0.1875rem; color: var(--ps-color-on-dark-soft); font-size: var(--ps-fs-body); line-height: 1.5; transition: color var(--ps-dur); }
  .footer__link::after { content: ""; position: absolute; left: 0; bottom: 0.1875rem; width: 100%; height: 1px; background: var(--ps-color-white); transform: scaleX(0); transform-origin: left; transition: transform var(--ps-dur) var(--ps-ease); }
  .footer__link:hover, .footer__link[aria-current="page"] { color: var(--ps-color-white); }
  .footer__link:hover::after { transform: scaleX(1); }
  .footer__contact { display: grid; gap: var(--ps-space-3); color: var(--ps-color-on-dark-soft); font-size: var(--ps-fs-body); line-height: 1.5; }
  .footer__contact-row { display: flex; align-items: flex-start; gap: var(--ps-space-3); min-width: 0; }
  .footer__contact-icon { display: grid; place-items: center; flex: none; width: 1.5rem; height: 1.5rem; color: var(--ps-color-white); }
  .footer__contact-icon .icon { width: 1.125rem; height: 1.125rem; }
  .footer__contact-row > span:last-child { min-width: 0; overflow-wrap: anywhere; }
  .footer__cta-text { margin-bottom: 1.375rem; color: var(--ps-color-on-dark-soft); max-width: 22.5rem; }
  .footer__bottom { border-top: 1px solid var(--ps-color-border-on-dark); padding-block: 2.125rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--ps-space-4) var(--ps-space-6); font-size: var(--ps-fs-sm); color: var(--ps-color-on-dark-soft); }
  .footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: var(--ps-space-2) var(--ps-space-5); }
  .footer__legal a { color: var(--ps-color-on-dark-soft); transition: color var(--ps-dur); }
  .footer__legal a:hover { color: var(--ps-color-white); }
  .footer__top { display: inline-flex; align-items: center; gap: var(--ps-space-3); color: var(--ps-color-on-dark-soft); transition: color var(--ps-dur); }
  .footer__top:hover { color: var(--ps-color-white); }
  @media (max-width: 767px) { body { padding-bottom: var(--ps-callbar-h); } .footer__bottom { justify-content: center; text-align: center; } }

  /* ---- mobile call bar: the primary CTA only, no phone (none verified) ---- */
  .call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--ps-z-callbar);
    display: none;
    grid-template-columns: minmax(0, 1fr);
    background: var(--ps-color-olive);
    padding-bottom: env(safe-area-inset-bottom, 0);
    transition: transform var(--ps-dur);
  }
  .call-bar__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ps-space-3);
    min-height: var(--ps-callbar-h);
    min-width: 0;
    padding: 0.75rem var(--ps-gutter);
    color: var(--ps-color-white);
    font-size: var(--ps-fs-body);
    font-weight: var(--ps-fw-medium);
    white-space: nowrap;
    background: var(--ps-color-olive);
  }
  .call-bar__item .icon { width: 1.25rem; height: 1.25rem; flex: none; }
  .call-bar__item > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  .call-bar__item--primary { background: var(--ps-color-olive-deep); }
  @media (max-width: 767px) { .call-bar { display: grid; } body.nav-open .call-bar { transform: translateY(100%); } }

  /* ---- error page (template 404: big Italiana number, heading, button) ---- */
  .error-page { display: grid; gap: var(--ps-space-5); justify-items: center; text-align: center; max-width: 40rem; margin-inline: auto; }
  .error-page__code { font-family: var(--ps-font-head); font-size: clamp(6rem, 4rem + 12vw, 15rem); line-height: 0.9; color: var(--ps-color-olive); }
  .error-page .actions { justify-content: center; }
  .error-page__links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--ps-space-2) var(--ps-space-5); }
  .error-page__link { font-size: var(--ps-fs-sm); color: var(--ps-color-text-strong); transition: color var(--ps-dur); }
  .error-page__link:hover { color: var(--ps-color-olive); }

  /* ---- lightbox (gallery, no library) ---- */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--ps-z-lightbox);
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(3.5rem, 2rem + 5vw, 5rem) var(--ps-gutter);
    background: rgb(var(--ps-scrim-rgb) / 0.96);
    color: var(--ps-color-white);
  }
  .lightbox.is-open { display: flex; }
  .lightbox__figure { position: relative; display: flex; flex-direction: column; align-items: center; gap: var(--ps-space-4); max-width: 100%; max-height: 100%; margin: 0; }
  .lightbox__img { max-width: min(100%, 90vw); max-height: calc(100svh - 12rem); width: auto; height: auto; object-fit: contain; background: var(--ps-color-olive-deep); }
  .lightbox__caption { font-size: var(--ps-fs-sm); color: var(--ps-color-on-dark-soft); text-align: center; }
  .lightbox__count { position: absolute; top: 1rem; left: var(--ps-gutter); font-size: var(--ps-fs-sm); color: var(--ps-color-on-dark-soft); font-variant-numeric: tabular-nums; }
  .lightbox__close { position: absolute; top: 0.75rem; right: var(--ps-gutter); }
  .lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); }
  .lightbox__prev { left: var(--ps-gutter); }
  .lightbox__next { right: var(--ps-gutter); }
  @media (max-width: 767px) {
    .lightbox__prev, .lightbox__next { top: auto; bottom: 0.75rem; transform: none; }
  }
  body.lightbox-open { overflow: hidden; }

  /* ---- reveal start states (JS only; ?nofx and no-JS render settled) ---- */
  html.js:not(.nofx) [data-reveal]:not(.is-in) { opacity: 0; }
  html.js:not(.nofx) [data-reveal="up"]:not(.is-in), html.js:not(.nofx) [data-reveal=""]:not(.is-in) { transform: translate3d(0, 2.5rem, 0); }
  html.js:not(.nofx) [data-reveal="down"]:not(.is-in) { transform: translate3d(0, -2.5rem, 0); }
  html.js:not(.nofx) [data-reveal="left"]:not(.is-in) { transform: translate3d(-2.5rem, 0, 0); }
  html.js:not(.nofx) [data-reveal="right"]:not(.is-in) { transform: translate3d(2.5rem, 0, 0); }
  html.js:not(.nofx) [data-reveal="pop"]:not(.is-in) { transform: scale3d(0.9, 0.9, 1); }
  /* grouped cards rise TOGETHER (the group carries the offset) and only the opacity staggers per item */
  html.js:not(.nofx) [data-reveal-group]:not(.is-in) { transform: translate3d(0, 2rem, 0); }
  html.js:not(.nofx) [data-reveal-group]:not(.is-in) > [data-reveal-item] { opacity: 0; }
  html.js:not(.nofx) [data-hero-in]:not(.is-in) > * { opacity: 0; transform: translate3d(0, 1.5rem, 0); }
  html.js.no-gsap [data-reveal], html.js.no-gsap [data-reveal-group], html.js.no-gsap [data-reveal-group] > [data-reveal-item], html.js.no-gsap [data-hero-in] > * { opacity: 1 !important; transform: none !important; }

  /* ---- logo ---- */
  .logo__svg { display: block; }
  .logo-text { display: inline-block; font-family: var(--ps-font-head); font-size: 1em; line-height: 1; text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; color: inherit; }
  .site-nav__brand .logo-text, .footer__brand .logo-text { font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem); padding-top: 0.08em; /* optical: caps sit high in the line box */ }
}

/* =========================================================================
   UTILITIES
   ========================================================================= */
@layer utilities {
  .u-nowrap { white-space: nowrap; }
  .u-visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; border: 0 !important; }
  .u-text-center { text-align: center; }
  .u-mt-0 { margin-top: 0 !important; }
  .u-mb-0 { margin-bottom: 0 !important; }
  .u-muted { color: var(--ps-color-text); }
  .u-flow > * + * { margin-top: var(--ps-space-4); }
  @media (max-width: 767px) { .u-hide-mobile { display: none !important; } }
  @media (min-width: 992px) { .u-hide-desktop { display: none !important; } }
  /* the visible client placeholder: olive tint, never a new hue */
  .u-todo { background: var(--ps-color-olive-15); color: var(--ps-color-text-strong); padding: 0 0.3em; font-weight: var(--ps-fw-medium); box-decoration-break: clone; -webkit-box-decoration-break: clone; }
  :is(.section--dark, .footer, .cta-band, .hero__panel, .hero__stage, .hero--page--photo, .booking-band__panel--dark, .card--dark) .u-todo { background: #fffef633; color: var(--ps-color-white); }
}
