/* =====================================================================
   Physio Digital - public site styles

   Built as a thin, opinionated layer on top of Bootstrap 5. Bootstrap
   provides the grid, the components and the responsive utilities; this file
   supplies the brand palette, the typography, and the section patterns the
   pages are composed from.

   Colours are derived from the client logo: the steel blue of the knee
   glyph (#4e93c4) and the near-black of the wordmark (#101418). Everything
   else is a tint or shade of those two, plus one teal accent used sparingly
   for confirmations.

   Contrast: body text, links and button labels are all at or above WCAG AA
   (4.5:1) against their backgrounds. The deep blues are used for text on
   light, the light tints for text on dark.
   ===================================================================== */

/* ----------------------------------------------------------- webfonts */

@font-face {
    font-family: 'Inter var';
    src: url('../fonts/inter-latin-var.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
        U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC,
        U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Source Serif var';
    src: url('../fonts/source-serif-4-latin-var.woff2') format('woff2');
    font-weight: 400 600;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
        U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC,
        U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ------------------------------------------------------------- tokens */

:root {
    /* Brand blue, from the logo glyph. */
    --pd-50:  #f1f7fb;
    --pd-100: #dfebf5;
    --pd-200: #bdd8ea;
    --pd-300: #92bedb;
    --pd-400: #689fc7;
    --pd-500: #4e93c4;
    --pd-600: #2f78ad;
    --pd-700: #235f8b;
    --pd-800: #1c4a6c;
    --pd-900: #163a55;
    --pd-950: #0f2739;

    /* Neutrals, from the logo wordmark. */
    --ink-900: #101418;
    --ink-800: #1b222b;
    --ink-700: #2a3340;
    --ink-600: #3e4a5a;
    --ink-500: #55606f;
    --ink-400: #74808f;
    --ink-300: #9aa4b2;
    --ink-200: #c7cfd9;
    --ink-100: #e2e8ee;
    --ink-50:  #f2f5f8;

    --accent-500: #0f9d8f;
    --accent-600: #0a7d72;
    --accent-50:  #e6f6f4;

    --warn-500: #b7791f;
    --warn-50:  #fdf6e7;
    --danger-500: #b42318;
    --danger-50:  #fdecea;

    --paper: #ffffff;
    --paper-alt: var(--pd-50);

    /* Typography */
    --font-sans: 'Inter var', -apple-system, BlinkMacSystemFont, 'Segoe UI',
        Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Source Serif var', Georgia, 'Times New Roman', serif;

    /* Spacing rhythm: a section is 5rem on mobile, 7rem from lg up. */
    --section-y: 4.5rem;
    --gutter: 1.25rem;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --shadow-xs: 0 1px 2px rgba(16, 20, 24, .06);
    --shadow-sm: 0 2px 8px rgba(22, 58, 85, .07);
    --shadow: 0 12px 32px -12px rgba(22, 58, 85, .22), 0 2px 6px rgba(22, 58, 85, .05);
    --shadow-lg: 0 28px 64px -24px rgba(22, 58, 85, .3), 0 4px 12px rgba(22, 58, 85, .06);

    --ring: 0 0 0 3px rgba(78, 147, 196, .35);

    /* Bootstrap variable overrides. */
    --bs-primary: var(--pd-700);
    --bs-primary-rgb: 35, 95, 139;
    --bs-body-color: var(--ink-700);
    --bs-body-bg: var(--paper);
    --bs-border-color: var(--ink-100);
    --bs-link-color: var(--pd-700);
    --bs-link-hover-color: var(--pd-800);
    --bs-font-sans-serif: var(--font-sans);
    --bs-border-radius: var(--radius-sm);
}

@media (min-width: 992px) {
    :root {
        --section-y: 6.5rem;
    }
}

/* ---------------------------------------------------------- base type */

html {
    scroll-behavior: smooth;
    /* Sticky header height, so an in-page anchor is not hidden under it. */
    scroll-padding-top: 100px;
}

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

body {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink-700);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, .display-serif {
    font-family: var(--font-serif);
    color: var(--ink-900);
    font-weight: 600;
    letter-spacing: -.012em;
    line-height: 1.18;
    text-wrap: balance;
}

h5, h6 {
    font-family: var(--font-sans);
    color: var(--ink-900);
    font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 1.55rem + 2.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 1.35rem + 1.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.1rem; }

a {
    color: var(--pd-700);
    text-decoration-color: rgba(35, 95, 139, .35);
    text-underline-offset: .18em;
    transition: color .15s ease, text-decoration-color .15s ease;
}

a:hover {
    color: var(--pd-800);
    text-decoration-color: currentColor;
}

/* Visible focus for keyboard users on every interactive element. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--pd-600);
    outline-offset: 2px;
    border-radius: 4px;
}

::selection {
    background: var(--pd-200);
    color: var(--ink-900);
}

img { max-width: 100%; height: auto; }

hr {
    border: 0;
    border-top: 1px solid var(--ink-100);
    opacity: 1;
    margin: 2rem 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--ink-900);
    color: #fff;
    padding: .7rem 1.1rem;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
    left: 0;
    color: #fff;
}

/* --------------------------------------------------------- utilities */

.container-pd {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section-sm { padding-block: calc(var(--section-y) * .62); }
.section-tint { background: var(--paper-alt); }
.section-ink { background: var(--pd-950); color: var(--pd-100); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-sans);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pd-700);
    margin-bottom: .85rem;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--pd-500);
    display: inline-block;
}

.section-ink .eyebrow { color: var(--pd-300); }
.section-ink .eyebrow::before { background: var(--pd-400); }

.lead-pd {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink-600);
    max-width: 62ch;
}

.section-ink .lead-pd { color: var(--pd-100); }

.text-muted-pd { color: var(--ink-500); }

.measure { max-width: 68ch; }

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

.btn {
    --bs-btn-font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: -.005em;
    border-radius: var(--radius-pill);
    padding: .72rem 1.5rem;
    transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-pd {
    background: var(--pd-700);
    border: 1px solid var(--pd-700);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-pd:hover, .btn-pd:focus {
    background: var(--pd-800);
    border-color: var(--pd-800);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-pd-outline {
    background: transparent;
    border: 1px solid var(--pd-300);
    color: var(--pd-800);
}

.btn-pd-outline:hover, .btn-pd-outline:focus {
    background: var(--pd-50);
    border-color: var(--pd-500);
    color: var(--pd-900);
}

.section-ink .btn-pd-outline {
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
}

.section-ink .btn-pd-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

.btn-pd-light {
    background: #fff;
    border: 1px solid #fff;
    color: var(--pd-800);
}

.btn-pd-light:hover, .btn-pd-light:focus {
    background: var(--pd-50);
    border-color: var(--pd-50);
    color: var(--pd-900);
}

.btn-lg-pd { padding: .9rem 1.9rem; font-size: 1.05rem; }
.btn-sm-pd { padding: .5rem 1.1rem; font-size: .92rem; }

/* A text link with a moving arrow, used on cards. */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
}

.link-arrow i, .link-arrow svg { transition: transform .18s ease; }
.link-arrow:hover i, .link-arrow:hover svg { transform: translateX(3px); }

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

.topbar {
    background: var(--pd-950);
    color: var(--pd-200);
    font-size: .85rem;
}

.topbar a { color: var(--pd-100); text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }

.topbar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem 1.4rem;
    align-items: center;
    justify-content: space-between;
    padding-block: .55rem;
}

.topbar-links { display: flex; flex-wrap: wrap; gap: .35rem 1.25rem; align-items: center; }
.topbar-social { display: flex; gap: .55rem; align-items: center; }

.topbar-social a {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
    font-size: .9rem;
}

.topbar-social a:hover { background: var(--pd-600); text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ink-100);
    transition: box-shadow .2s ease;
}

.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.site-header .navbar { padding-block: .7rem; }

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.brand-logo img {
    height: 46px;
    width: auto;
    max-width: min(280px, 60vw);
    object-fit: contain;
}

@media (min-width: 992px) {
    .brand-logo img { height: 54px; max-width: 320px; }
}

.brand-logo-fallback {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--ink-900);
    text-decoration: none;
}

.main-nav .nav-link {
    font-weight: 500;
    font-size: .98rem;
    color: var(--ink-700);
    padding: .55rem .85rem;
    border-radius: var(--radius-sm);
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus { color: var(--pd-800); background: var(--pd-50); }

.main-nav .nav-link.active {
    color: var(--pd-800);
    font-weight: 600;
}

.main-nav .nav-item { position: relative; }

.main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: -.35rem;
    height: 2px;
    border-radius: 2px;
    background: var(--pd-500);
}

.main-nav .dropdown-menu {
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: .5rem;
    min-width: 16rem;
}

.main-nav .dropdown-item {
    border-radius: var(--radius-sm);
    padding: .55rem .75rem;
    font-size: .95rem;
    color: var(--ink-700);
    white-space: normal;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus { background: var(--pd-50); color: var(--pd-800); }
.main-nav .dropdown-item.active { background: var(--pd-100); color: var(--pd-900); }

/* Hover-open dropdowns on pointer devices only. */
@media (min-width: 992px) and (hover: hover) {
    .main-nav .nav-item.dropdown:hover > .dropdown-menu { display: block; }
}

.navbar-toggler {
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-sm);
    padding: .45rem .6rem;
}

.navbar-toggler:focus { box-shadow: var(--ring); }

.header-actions { display: flex; align-items: center; gap: .6rem; }

.header-phone {
    display: none;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    color: var(--ink-700);
    font-size: .92rem;
    line-height: 1.2;
}

.header-phone:hover { color: var(--pd-800); }

.header-phone .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--pd-50);
    color: var(--pd-700);
    font-size: 1.05rem;
}

.header-phone span small { display: block; color: var(--ink-400); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.header-phone span strong { font-weight: 600; }

@media (min-width: 1200px) { .header-phone { display: flex; } }

/* Mobile menu panel */
@media (max-width: 991.98px) {
    .main-nav {
        margin-top: .85rem;
        padding-top: .85rem;
        border-top: 1px solid var(--ink-100);
        max-height: min(70vh, 34rem);
        overflow-y: auto;
    }

    .main-nav .nav-link { padding: .7rem .5rem; font-size: 1.02rem; }
    .main-nav .nav-link.active::after { display: none; }
    .main-nav .dropdown-menu {
        box-shadow: none;
        border: 0;
        border-left: 2px solid var(--pd-100);
        border-radius: 0;
        margin: 0 0 .4rem .6rem;
        padding-left: .4rem;
    }
    .header-actions .btn { width: 100%; }
}

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

.hero {
    position: relative;
    background: linear-gradient(160deg, var(--pd-950) 0%, var(--pd-800) 55%, var(--pd-700) 100%);
    color: #fff;
    overflow: hidden;
}

/* A soft radial highlight, so a slide with no photograph still has depth. */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 520px at 82% -12%, rgba(146, 190, 219, .34), transparent 62%),
        radial-gradient(760px 420px at 8% 108%, rgba(15, 157, 143, .22), transparent 60%);
    pointer-events: none;
}

.hero-slide {
    position: relative;
    display: grid;
    align-items: center;
    min-height: clamp(30rem, 46vw + 14rem, 40rem);
    padding-block: clamp(3.5rem, 8vw, 6rem);
}

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

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

.hero-slide-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 39, 57, var(--scrim, .72)) 0%, rgba(15, 39, 57, calc(var(--scrim, .72) * .55)) 62%, rgba(15, 39, 57, .2) 100%);
}

.hero-slide-body { position: relative; z-index: 2; max-width: 42rem; }
.hero-slide[data-align="center"] .hero-slide-body { margin-inline: auto; text-align: center; }
.hero-slide[data-align="right"] .hero-slide-body { margin-left: auto; text-align: right; }

.hero-kicker {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pd-200);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius-pill);
    padding: .35rem 1rem;
    margin-bottom: 1.15rem;
}

.hero h1, .hero .hero-title {
    color: #fff;
    font-size: clamp(2.2rem, 1.4rem + 3.2vw, 3.75rem);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .88);
    max-width: 40rem;
    margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-slide[data-align="center"] .hero-actions { justify-content: center; }

/* Carousel chrome */
.hero .carousel-control-prev,
.hero .carousel-control-next { width: 4rem; opacity: .55; }
.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover { opacity: 1; }

.hero .carousel-indicators {
    margin-bottom: 1.6rem;
    gap: .45rem;
}

.hero .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border-radius: 3px;
    border: 0;
    background: rgba(255, 255, 255, .4);
    opacity: 1;
}

.hero .carousel-indicators .active { background: #fff; width: 46px; }

/* Page header for interior pages */
.page-hero {
    position: relative;
    background: linear-gradient(150deg, var(--pd-900), var(--pd-700));
    color: #fff;
    padding-block: clamp(3rem, 6vw, 4.75rem);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 340px at 88% 0%, rgba(146, 190, 219, .3), transparent 65%);
}

.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(22, 58, 85, .88), rgba(22, 58, 85, .58));
}

.page-hero-body { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero p { color: rgba(255, 255, 255, .85); max-width: 60ch; margin-bottom: 0; }

/* -------------------------------------------------------- breadcrumbs */

.breadcrumb-bar {
    background: var(--paper-alt);
    border-bottom: 1px solid var(--ink-100);
    font-size: .88rem;
}

.breadcrumb-bar .breadcrumb { margin: 0; padding-block: .8rem; flex-wrap: wrap; }
.breadcrumb-bar .breadcrumb-item { color: var(--ink-500); }
.breadcrumb-bar .breadcrumb-item a { color: var(--ink-600); text-decoration: none; }
.breadcrumb-bar .breadcrumb-item a:hover { color: var(--pd-700); text-decoration: underline; }
.breadcrumb-bar .breadcrumb-item.active { color: var(--ink-900); font-weight: 500; }
.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { content: '/'; color: var(--ink-300); }

/* In-hero breadcrumbs sit on the dark band. */
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255, 255, 255, .75); }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .5); }

/* -------------------------------------------------------------- cards */

.card-pd {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card-pd:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--pd-200);
}

.card-pd-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    background: var(--pd-50);
    color: var(--pd-700);
    margin-bottom: 1.15rem;
    flex: 0 0 auto;
}

.card-pd h3 { font-size: 1.22rem; margin-bottom: .6rem; }

.card-pd p {
    color: var(--ink-500);
    font-size: .98rem;
    margin-bottom: 1.1rem;
}

.card-pd .card-pd-footer { margin-top: auto; }

.card-pd-media {
    margin: -1.75rem -1.75rem 1.35rem;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--pd-100);
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .9rem;
    font-size: .82rem;
    color: var(--ink-400);
    margin-bottom: .8rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    padding: .25rem .7rem;
    border-radius: var(--radius-pill);
    background: var(--pd-50);
    color: var(--pd-800);
    border: 1px solid var(--pd-100);
}

.chip-accent { background: var(--accent-50); color: var(--accent-600); border-color: rgba(15, 157, 143, .2); }

/* ---------------------------------------------------------- key stats */

.stats-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--ink-100);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    overflow: hidden;
}

@media (min-width: 768px) {
    .stats-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stat-cell {
    background: #fff;
    padding: 1.6rem 1.25rem;
    text-align: center;
}

.stat-cell .stat-value {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.6rem);
    font-weight: 600;
    color: var(--pd-700);
    line-height: 1;
    display: block;
}

.stat-cell .stat-label {
    display: block;
    margin-top: .5rem;
    font-size: .88rem;
    color: var(--ink-500);
    line-height: 1.4;
}

/* ------------------------------------------------------ feature lists */

.feature-row {
    display: flex;
    gap: 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--ink-100);
}

.feature-row:last-child { border-bottom: 0; }

.feature-row .feature-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--pd-50);
    color: var(--pd-700);
    font-size: 1.15rem;
}

.feature-row h4 { font-size: 1.05rem; margin-bottom: .25rem; font-family: var(--font-sans); }
.feature-row p { font-size: .95rem; color: var(--ink-500); margin: 0; }

.tick-list { list-style: none; padding: 0; margin: 0; }

.tick-list li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: .7rem;
    color: var(--ink-600);
}

.tick-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .35em;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: var(--accent-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a7d72'%3E%3Cpath d='M13.5 4.5 6.4 11.6 2.5 7.7l1.1-1.1 2.8 2.8 6-6z'/%3E%3C/svg%3E") center / .8rem no-repeat;
}

/* ------------------------------------------------------------ process */

.process-list {
    counter-reset: step;
    display: grid;
    gap: 1.1rem;
}

@media (min-width: 992px) {
    .process-list { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.35rem; }
}

.process-step {
    counter-increment: step;
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    padding: 1.6rem 1.25rem 1.35rem;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--pd-300);
    display: block;
    margin-bottom: .6rem;
    line-height: 1;
}

.process-step h4 { font-size: 1.02rem; font-family: var(--font-sans); margin-bottom: .3rem; }
.process-step p { font-size: .9rem; color: var(--ink-500); margin: 0; }

/* --------------------------------------------------------------- team */

.team-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}

.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.team-photo {
    aspect-ratio: 4 / 5;
    background: linear-gradient(150deg, var(--pd-100), var(--pd-200));
    display: grid;
    place-items: center;
    overflow: hidden;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-initials {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--pd-700);
    letter-spacing: .04em;
}

.team-body { padding: 1.25rem; flex: 1 1 auto; display: flex; flex-direction: column; }
.team-body h3 { font-size: 1.08rem; margin-bottom: .2rem; }
.team-role { color: var(--pd-700); font-size: .9rem; font-weight: 600; margin-bottom: .45rem; }
.team-creds { font-size: .82rem; color: var(--ink-400); margin-bottom: .7rem; }
.team-bio { font-size: .92rem; color: var(--ink-500); margin-bottom: .8rem; }

/* -------------------------------------------------------- testimonial */

.quote-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    padding: 1.9rem 1.75rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.quote-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    position: absolute;
    top: .35rem;
    right: 1.2rem;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--pd-100);
}

.quote-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.06rem;
    line-height: 1.6;
    color: var(--ink-700);
    margin: 0 0 1.2rem;
    position: relative;
    z-index: 1;
}

.quote-author { display: flex; align-items: center; gap: .8rem; margin-top: auto; }

.quote-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--pd-100);
    color: var(--pd-700);
    display: grid;
    place-items: center;
    font-weight: 600;
    overflow: hidden;
    flex: 0 0 auto;
}

.quote-avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-author strong { display: block; font-size: .95rem; color: var(--ink-900); }
.quote-author span { font-size: .84rem; color: var(--ink-400); }

.rating { color: #d99a2b; font-size: .9rem; letter-spacing: .1em; margin-bottom: .6rem; }

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

.cta-panel {
    position: relative;
    border-radius: var(--radius-lg);
    padding: clamp(2.25rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, var(--pd-900), var(--pd-700) 70%, var(--pd-600));
    color: #fff;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 92% 8%, rgba(146, 190, 219, .3), transparent 65%);
}

.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: #fff; }
.cta-panel p { color: rgba(255, 255, 255, .86); max-width: 54ch; }

/* --------------------------------------------------------------- FAQ */

.faq-item {
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    background: #fff;
    margin-bottom: .8rem;
    overflow: hidden;
}

.faq-item .accordion-button {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--ink-900);
    background: #fff;
    padding: 1.15rem 1.35rem;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) { background: var(--pd-50); color: var(--pd-900); }
.faq-item .accordion-button:focus { box-shadow: var(--ring); z-index: 2; }
.faq-item .accordion-body { padding: 0 1.35rem 1.35rem; color: var(--ink-600); }

/* ------------------------------------------------------------- prose */

.prose { font-size: 1.0625rem; color: var(--ink-700); }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }

.prose h2 {
    margin-top: 2.6rem;
    margin-bottom: .9rem;
    padding-bottom: .55rem;
    border-bottom: 1px solid var(--ink-100);
}

.prose h3 { margin-top: 2rem; margin-bottom: .7rem; }
.prose h4 { margin-top: 1.6rem; margin-bottom: .5rem; }

.prose ul, .prose ol { padding-left: 1.35rem; margin-bottom: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--pd-500); }

.prose blockquote {
    border-left: 3px solid var(--pd-400);
    background: var(--pd-50);
    margin: 1.7rem 0;
    padding: 1.1rem 1.35rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-serif);
    font-size: 1.08rem;
    color: var(--ink-700);
}

.prose blockquote p:last-child { margin-bottom: 0; }

.prose img {
    border-radius: var(--radius);
    margin-block: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.prose figure { margin-block: 1.8rem; }
.prose figcaption { font-size: .86rem; color: var(--ink-400); margin-top: .55rem; text-align: center; }

.prose table {
    width: 100%;
    margin-block: 1.6rem;
    border-collapse: collapse;
    font-size: .95rem;
}

.prose thead th {
    background: var(--pd-50);
    color: var(--ink-900);
    text-align: left;
    font-weight: 600;
    padding: .7rem .85rem;
    border-bottom: 2px solid var(--pd-200);
}

.prose td { padding: .7rem .85rem; border-bottom: 1px solid var(--ink-100); }

/* Wide content must scroll inside itself, never the page. */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.prose code {
    background: var(--ink-50);
    color: var(--pd-900);
    padding: .12em .38em;
    border-radius: 4px;
    font-size: .92em;
}

/* -------------------------------------------------------------- forms */

.form-label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink-700);
    margin-bottom: .4rem;
}

.form-label .req { color: var(--danger-500); }

.form-control, .form-select {
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-sm);
    padding: .7rem .9rem;
    font-size: 1rem;
    color: var(--ink-800);
    background-color: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--pd-400);
    box-shadow: var(--ring);
}

.form-control::placeholder { color: var(--ink-300); }

.form-control.is-invalid, .form-select.is-invalid { border-color: var(--danger-500); }

.form-text { font-size: .84rem; color: var(--ink-400); }
.invalid-feedback { font-size: .85rem; }

.form-check-input { border-color: var(--ink-300); }
.form-check-input:checked { background-color: var(--pd-700); border-color: var(--pd-700); }
.form-check-input:focus { box-shadow: var(--ring); border-color: var(--pd-400); }
.form-check-label { font-size: .95rem; color: var(--ink-600); }

.form-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    padding: clamp(1.35rem, 3vw, 2.25rem);
    box-shadow: var(--shadow-sm);
}

/* Honeypot: present in the DOM, invisible and off the tab order. */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* --------------------------------------------------- booking calendar */

.booking-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .booking-grid { grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); align-items: start; }
}

.calendar-card {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--ink-100);
    background: var(--paper-alt);
}

.calendar-head strong { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink-900); }

.calendar-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--ink-200);
    background: #fff;
    color: var(--ink-600);
    display: grid;
    place-items: center;
    transition: all .15s ease;
}

.calendar-nav:hover:not(:disabled) { background: var(--pd-700); border-color: var(--pd-700); color: #fff; }
.calendar-nav:disabled { opacity: .35; cursor: not-allowed; }

.calendar-table { width: 100%; table-layout: fixed; border-collapse: collapse; }

.calendar-table th {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-400);
    padding: .7rem .2rem .4rem;
    text-align: center;
}

.calendar-table td { padding: 2px; text-align: center; }

.day-btn {
    width: 100%;
    aspect-ratio: 1;
    min-height: 2.4rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--ink-700);
    font-size: .95rem;
    font-weight: 500;
    display: grid;
    place-items: center;
    position: relative;
    transition: all .12s ease;
}

.day-btn[data-status="available"] {
    background: var(--accent-50);
    border-color: rgba(15, 157, 143, .28);
    color: var(--accent-600);
    font-weight: 600;
    cursor: pointer;
}

.day-btn[data-status="available"]:hover {
    background: var(--accent-500);
    border-color: var(--accent-500);
    color: #fff;
}

.day-btn.is-selected,
.day-btn[data-status="available"].is-selected {
    background: var(--pd-700);
    border-color: var(--pd-700);
    color: #fff;
    box-shadow: var(--ring);
}

.day-btn[data-status="full"],
.day-btn[data-status="too_soon"] {
    background: var(--warn-50);
    color: var(--warn-500);
    border-color: rgba(183, 121, 31, .22);
    cursor: not-allowed;
}

.day-btn[data-status="off"] {
    background: var(--danger-50);
    color: var(--danger-500);
    border-color: rgba(180, 35, 24, .18);
    cursor: not-allowed;
}

.day-btn[data-status="closed"],
.day-btn[data-status="past"],
.day-btn[data-status="too_far"] {
    color: var(--ink-300);
    cursor: not-allowed;
}

.day-btn[data-status="past"] { text-decoration: line-through; }

.day-btn .dot {
    position: absolute;
    bottom: .3rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: .7;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .95rem;
    padding: .85rem 1.1rem 1.1rem;
    font-size: .78rem;
    color: var(--ink-500);
    border-top: 1px solid var(--ink-100);
}

.calendar-legend span { display: inline-flex; align-items: center; gap: .35rem; }

.legend-swatch {
    width: .8rem;
    height: .8rem;
    border-radius: 3px;
    border: 1px solid;
    display: inline-block;
}

.legend-available { background: var(--accent-50); border-color: rgba(15, 157, 143, .4); }
.legend-full { background: var(--warn-50); border-color: rgba(183, 121, 31, .4); }
.legend-off { background: var(--danger-50); border-color: rgba(180, 35, 24, .35); }
.legend-closed { background: #fff; border-color: var(--ink-200); }

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
    gap: .6rem;
}

.slot-btn {
    border: 1px solid var(--ink-200);
    background: #fff;
    border-radius: var(--radius-sm);
    padding: .7rem .5rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink-700);
    text-align: center;
    transition: all .12s ease;
    line-height: 1.3;
}

.slot-btn small { display: block; font-weight: 500; font-size: .74rem; color: var(--ink-400); margin-top: .15rem; }

.slot-btn:hover:not(:disabled) { border-color: var(--pd-400); background: var(--pd-50); color: var(--pd-800); }

.slot-btn.is-selected {
    background: var(--pd-700);
    border-color: var(--pd-700);
    color: #fff;
}

.slot-btn.is-selected small { color: rgba(255, 255, 255, .75); }

.slot-btn:disabled { opacity: .5; cursor: not-allowed; background: var(--ink-50); }

.booking-summary {
    background: var(--pd-50);
    border: 1px solid var(--pd-100);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
}

.booking-summary dl { margin: 0; display: grid; gap: .45rem; }
.booking-summary dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--pd-700); }
.booking-summary dd { margin: 0 0 .4rem; font-weight: 600; color: var(--ink-900); }

.rules-list { list-style: none; margin: 0; padding: 0; font-size: .9rem; }

.rules-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px dashed var(--ink-100);
}

.rules-list li:last-child { border-bottom: 0; }
.rules-list dt, .rules-list .k { color: var(--ink-400); }
.rules-list .v { font-weight: 600; color: var(--ink-800); text-align: right; }

.confirmation-panel {
    border: 1px solid rgba(15, 157, 143, .35);
    background: var(--accent-50);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
}

.confirmation-panel .ref {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-600);
    letter-spacing: .04em;
}

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

.contact-tile {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    background: #fff;
    height: 100%;
}

.contact-tile .icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: var(--pd-50);
    color: var(--pd-700);
    font-size: 1.2rem;
}

.contact-tile h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-400); font-family: var(--font-sans); margin-bottom: .3rem; }
.contact-tile a, .contact-tile p { color: var(--ink-800); font-weight: 500; margin: 0; text-decoration: none; word-break: break-word; }
.contact-tile a:hover { color: var(--pd-700); text-decoration: underline; }

.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--ink-100);
    aspect-ratio: 16 / 9;
    background: var(--ink-50);
}

.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

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

.site-footer {
    background: var(--pd-950);
    color: var(--pd-200);
    padding-top: clamp(3rem, 5vw, 4.5rem);
    font-size: .95rem;
}

.site-footer h2, .site-footer h3, .site-footer h4 { color: #fff; }

.footer-heading {
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pd-300);
    margin-bottom: 1.1rem;
}

.site-footer a { color: var(--pd-100); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-logo img {
    height: 48px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    /* The supplied logo is dark on transparent; invert it for the dark footer. */
    filter: brightness(0) invert(1);
    opacity: .95;
}

.footer-about { color: var(--pd-200); max-width: 34rem; margin-top: 1.1rem; }

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .6rem; }

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
    display: flex;
    gap: .7rem;
    margin-bottom: .85rem;
    align-items: flex-start;
}

.footer-contact i { color: var(--pd-400); margin-top: .2rem; }

.footer-social { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.25rem; }

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.05rem;
}

.footer-social a:hover { background: var(--pd-600); border-color: var(--pd-500); text-decoration: none; }

.newsletter-form { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }

.newsletter-form .form-control {
    flex: 1 1 12rem;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

.newsletter-form .form-control::placeholder { color: rgba(255, 255, 255, .55); }
.newsletter-form .form-control:focus { background: rgba(255, 255, 255, .12); color: #fff; }

.footer-bottom {
    margin-top: clamp(2.25rem, 4vw, 3.25rem);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-block: 1.4rem;
    font-size: .86rem;
    color: var(--pd-300);
}

.footer-bottom a { color: var(--pd-200); }

.footer-legal { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; }

/* --------------------------------------------------- floating actions */

.float-actions {
    position: fixed;
    bottom: 1.15rem;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    align-items: center;
}

.float-actions[data-position="right"] { right: 1.15rem; }
.float-actions[data-position="left"] { left: 1.15rem; }

.wa-btn {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    box-shadow: 0 8px 22px rgba(37, 211, 102, .38);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.wa-btn:hover { transform: scale(1.06); color: #fff; box-shadow: 0 12px 28px rgba(37, 211, 102, .5); }

/* A gentle pulse, once, so it is noticed without nagging. */
.wa-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .6);
    animation: wa-pulse 2.4s ease-out 3;
    pointer-events: none;
}

@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: .8; }
    100% { transform: scale(1.65); opacity: 0; }
}

.wa-wrap { position: relative; }

.to-top {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    border: 1px solid var(--ink-200);
    background: #fff;
    color: var(--ink-600);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}

.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--pd-700); border-color: var(--pd-700); color: #fff; }

@media (max-width: 575.98px) {
    .float-actions { bottom: .85rem; }
    .float-actions[data-position="right"] { right: .85rem; }
    .float-actions[data-position="left"] { left: .85rem; }
    .wa-btn { width: 3.1rem; height: 3.1rem; font-size: 1.5rem; }
}

/* ------------------------------------------------------ cookie banner */

.cookie-bar {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(64rem, calc(100vw - 1.6rem));
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.15rem 1.35rem;
    z-index: 1060;
    display: none;
}

.cookie-bar.is-open { display: block; }
.cookie-bar h2 { font-size: 1.05rem; font-family: var(--font-sans); margin-bottom: .35rem; }
.cookie-bar p { font-size: .92rem; color: var(--ink-500); margin-bottom: 0; }

.cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }

@media (min-width: 768px) {
    .cookie-inner { display: flex; gap: 1.5rem; align-items: center; justify-content: space-between; }
    .cookie-actions { flex: 0 0 auto; }
}

/* ------------------------------------------------------------- alerts */

.alert {
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: .95rem 1.15rem;
    font-size: .96rem;
}

.alert-success { background: var(--accent-50); border-color: rgba(15, 157, 143, .3); color: #0a6b62; }
.alert-danger { background: var(--danger-50); border-color: rgba(180, 35, 24, .28); color: #8d1c14; }
.alert-warning { background: var(--warn-50); border-color: rgba(183, 121, 31, .3); color: #8a5b13; }
.alert-info { background: var(--pd-50); border-color: var(--pd-200); color: var(--pd-900); }

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

.divider-dots {
    display: flex;
    gap: .4rem;
    justify-content: center;
    margin-block: 1.5rem;
}

.divider-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--pd-300); }

.badge-soft {
    background: var(--pd-50);
    color: var(--pd-800);
    border: 1px solid var(--pd-100);
    font-weight: 600;
    border-radius: var(--radius-pill);
    padding: .3rem .75rem;
    font-size: .8rem;
}

.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    border: 1px dashed var(--ink-200);
    border-radius: var(--radius);
    background: var(--paper-alt);
    color: var(--ink-500);
}

.empty-state i { font-size: 2rem; color: var(--ink-300); display: block; margin-bottom: .75rem; }

/* Reveal-on-scroll. Anything not observed stays visible, so the page is
   readable with JavaScript disabled. */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------ print */

@media print {
    .site-header, .site-footer, .float-actions, .cookie-bar, .topbar,
    .breadcrumb-bar, .hero-actions, .btn { display: none !important; }

    body { font-size: 11pt; color: #000; }
    a { color: #000; text-decoration: underline; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
    .section { padding-block: 1rem; }
}
