/* ==========================================================================
   Horizon Quay — Hotel & Casino Resort, Queenstown, New Zealand
   Base stylesheet. Swiss modular grid · grotesque type · muted earth tones.
   ========================================================================== */

:root {
    --ink:          #191d21;
    --ink-2:        #232a30;
    --slate:        #3b464e;
    --slate-soft:   #6b757c;
    --slate-dim:    #939ba1;

    --stone:        #f5f3ef;
    --stone-2:      #ebe7e0;
    --stone-3:      #e0dbd1;
    --paper:        #ffffff;

    --clay:         #9a5c39;
    --clay-soft:    #b8764e;
    --clay-wash:    rgba(154, 92, 57, .09);
    --sage:         #5f6b5a;

    --line:         #dcd6cb;
    --line-soft:    #e8e3da;

    --font-body:    "Inter", "Helvetica Neue", Helvetica, "Segoe UI", Roboto, Arial, sans-serif;
    --font-head:    "Inter", "Helvetica Neue", Helvetica, "Segoe UI", Roboto, Arial, sans-serif;

    --wrap:         1220px;
    --wrap-narrow:  820px;
    --gap:          30px;
    --col:          minmax(0, 1fr);

    --shadow:       0 20px 50px rgba(25, 29, 33, .10);
    --shadow-sm:    0 2px 10px rgba(25, 29, 33, .06);
    --t:            .3s cubic-bezier(.22, .61, .36, 1);
}

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

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 120px;
    /* the mobile nav drawer parks off-screen to the right; clip it so it
       never creates a horizontal scrollbar. `clip` first as `hidden` would
       turn <html> into a scroll container and break the sticky header. */
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--slate);
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: .005em;
    -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

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

a {
    color: var(--clay);
    text-decoration: none;
    transition: color var(--t);
}
a:hover { color: var(--ink); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -.021em;
    margin: 0 0 .55em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.65rem); }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.5rem); }
h3 { font-size: clamp(1.18rem, 1.9vw, 1.42rem); }
h4 { font-size: 1.05rem; letter-spacing: -.01em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

strong { color: var(--ink); font-weight: 600; }

hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 48px 0;
}

::selection { background: var(--clay); color: #fff; }

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

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 26px;
}

.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(62px, 8vw, 108px) 0; }
.section-tight { padding: clamp(44px, 5vw, 68px) 0; }
.section-stone { background: var(--stone); }
.section-stone-2 { background: var(--stone-2); }
.section-ink { background: var(--ink); color: #cfd4d8; }
.section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }
.section-ink a { color: var(--clay-soft); }
.section-ink a:hover { color: #fff; }

.grid { display: grid; gap: var(--gap); }
.g-2 { grid-template-columns: repeat(2, var(--col)); }
.g-3 { grid-template-columns: repeat(3, var(--col)); }
.g-4 { grid-template-columns: repeat(4, var(--col)); }

.eyebrow {
    display: block;
    font-size: .705rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 16px;
}
.section-ink .eyebrow { color: var(--clay-soft); }

.lead {
    font-size: 1.11rem;
    line-height: 1.72;
    color: var(--slate);
}

.muted { color: var(--slate-soft); }
.small { font-size: .87rem; line-height: 1.65; }

.rule {
    width: 46px;
    height: 2px;
    background: var(--clay);
    margin: 0 0 26px;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .rule { margin-left: auto; margin-right: auto; }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 30px;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t);
}
.btn:hover { background: var(--clay); border-color: var(--clay); color: #fff; }

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

.btn-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-clay { background: var(--clay); border-color: var(--clay); }
.btn-clay:hover { background: var(--ink); border-color: var(--ink); }

.btn-sm { padding: 11px 22px; font-size: .72rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink);
}
.arrow-link::after { content: "→"; transition: transform var(--t); }
.arrow-link:hover { color: var(--clay); }
.arrow-link:hover::after { transform: translateX(5px); }

/* ==========================================================================
   Header
   ========================================================================== */

.topbar {
    background: var(--ink);
    color: #a9b1b7;
    font-size: .775rem;
    letter-spacing: .04em;
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 40px;
    flex-wrap: wrap;
}
.topbar a { color: #d5dadd; }
.topbar a:hover { color: #fff; }
.topbar-contacts {
    display: flex;
    gap: 6px 22px;
    flex-wrap: wrap;
    min-width: 0;
}
.topbar-contacts a { overflow-wrap: anywhere; }

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .705rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #e6d3c4;
}
.age-badge b {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid var(--clay-soft);
    color: var(--clay-soft);
    font-size: .68rem;
    letter-spacing: .08em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    /* no backdrop-filter here: it would make the header a containing block
       for the fixed mobile nav drawer, which then sizes to the header */
}
.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}

.logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.logo-mark {
    width: 38px;
    height: 38px;
    flex: none;
    border: 1.5px solid var(--clay);
    display: grid;
    place-items: center;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--clay);
}
.logo-text { line-height: 1.12; }
.logo-text b {
    display: block;
    font-size: 1.14rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--ink);
}
.logo-text span {
    display: block;
    font-size: .625rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--slate-dim);
    margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) {
    padding: 10px 13px;
    font-size: .805rem;
    font-weight: 500;
    letter-spacing: .045em;
    color: var(--slate);
    white-space: nowrap;
}
.nav a:not(.btn):hover, .nav a:not(.btn).is-active { color: var(--clay); }
.nav a:not(.btn).is-active { font-weight: 600; }

/* the Book Now inside <nav> belongs to the mobile drawer only */
.nav > .btn { display: none; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 40px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    padding: 0;
    position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    transform: translateX(-50%);
    transition: transform var(--t), opacity var(--t);
}
.nav-toggle span { top: 50%; margin-top: -.75px; }
.nav-toggle span::before { content: ""; top: -6px; left: 0; transform: none; }
.nav-toggle span::after  { content: ""; top: 6px;  left: 0; transform: none; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.is-open span::after  { transform: rotate(-45deg) translate(4px, -4px); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: var(--ink);
    overflow: hidden;
}
.hero picture, .hero > img {
    position: absolute;
    inset: 0;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* two scrims: one down the page, one across from the text side, so white
   type stays readable whatever the photograph does behind it */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 24, 27, .80) 0%, rgba(20, 24, 27, .46) 44%, rgba(20, 24, 27, .10) 100%),
        linear-gradient(180deg, rgba(20, 24, 27, .55) 0%, rgba(20, 24, 27, .28) 40%, rgba(20, 24, 27, .88) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-bottom: clamp(52px, 7vw, 92px); padding-top: 120px; }
.hero h1 { color: #fff; max-width: 15ch; margin-bottom: .3em; }
.hero .eyebrow { color: #e2c6ae; }
.hero-sub {
    max-width: 58ch;
    font-size: 1.09rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 32px;
}
.hero .btn-row { margin-bottom: 6px; }

.hero-sm { min-height: 440px; }
.hero-sm h1 { font-size: clamp(1.95rem, 4vw, 3rem); }
.hero-legal { min-height: 340px; }

.hero-facts {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    padding-top: 26px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .22);
}
.hero-facts div span {
    display: block;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
}
.hero-facts div b {
    font-size: 1.32rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.01em;
}

/* breadcrumbs */
.crumbs {
    font-size: .78rem;
    letter-spacing: .05em;
    color: var(--slate-dim);
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
}
.crumbs a { color: var(--slate-soft); }
.crumbs a:hover { color: var(--clay); }
.crumbs span { margin: 0 8px; opacity: .5; }

/* ==========================================================================
   Content blocks
   ========================================================================== */

/* two-column intro: heading left, text right (Swiss) */
.split {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(30px, 5vw, 74px);
    align-items: start;
}
.split-even { grid-template-columns: repeat(2, var(--col)); }

/* media + text row */
.media-row {
    display: grid;
    grid-template-columns: repeat(2, var(--col));
    gap: clamp(30px, 5vw, 66px);
    align-items: center;
}
.media-row + .media-row { margin-top: clamp(48px, 6vw, 88px); }
.media-row.reverse .media-figure { order: 2; }
.media-figure { position: relative; }
.media-figure img { width: 100%; height: 100%; object-fit: cover; }
.media-figure figcaption {
    font-size: .78rem;
    letter-spacing: .05em;
    color: var(--slate-dim);
    padding-top: 10px;
}
.media-body h2 { margin-bottom: .45em; }

.stat-tag {
    position: absolute;
    right: -1px;
    bottom: -1px;
    background: var(--paper);
    padding: 16px 22px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.stat-tag b { display: block; font-size: 1.4rem; color: var(--ink); line-height: 1.1; }
.stat-tag span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-dim); }

/* feature cards */
.card {
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.card:hover { border-color: var(--clay); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.card-media { overflow: hidden; }
.card-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}
.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .5em; }
.card-body p { font-size: .955rem; line-height: 1.7; }
.card-body .arrow-link { margin-top: auto; padding-top: 18px; }
.card-index {
    font-size: .68rem;
    letter-spacing: .2em;
    color: var(--clay);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* plain bordered panel */
.panel {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: clamp(26px, 3.4vw, 40px);
}
.panel-stone { background: var(--stone); border-color: var(--line-soft); }
.panel-ink { background: var(--ink); border-color: var(--ink-2); color: #c8ced3; }
.panel-ink h2, .panel-ink h3, .panel-ink h4 { color: #fff; }
.panel h3 { margin-bottom: .55em; }

/* list with markers */
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: .96rem;
    line-height: 1.65;
}
.list-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 12px;
    height: 1.5px;
    background: var(--clay);
}

.list-spec { list-style: none; padding: 0; margin: 0; }
.list-spec li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: .92rem;
}
.list-spec li:last-child { border-bottom: 0; }
.list-spec li span { color: var(--slate-dim); }
.list-spec li b { color: var(--ink); font-weight: 500; text-align: right; }

/* rooms */
.room-card { border: 1px solid var(--line); background: var(--paper); display: flex; flex-direction: column; }
.room-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.room-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.room-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.room-head h3 { margin: 0; }
.price {
    font-size: .82rem;
    letter-spacing: .07em;
    color: var(--clay);
    font-weight: 600;
    white-space: nowrap;
}
.price b { font-size: 1.06rem; }
.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--slate-dim);
    padding: 14px 0 16px;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 18px;
}
.room-body p { font-size: .95rem; }
.room-body .btn { margin-top: auto; align-self: flex-start; }

/* statistics band */
.stats {
    display: grid;
    grid-template-columns: repeat(5, var(--col));
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 1px solid rgba(255, 255, 255, .14);
}
.stats div {
    padding: 34px 24px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    text-align: center;
}
.stats b {
    display: block;
    font-size: clamp(1.7rem, 3.1vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.05;
    margin-bottom: 8px;
}
.stats span {
    font-size: .7rem;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .58);
}

/* local area tiles */
.tile { position: relative; overflow: hidden; background: var(--ink); }
.tile img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    opacity: .82;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1), opacity var(--t);
}
.tile:hover img { transform: scale(1.05); opacity: .68; }
.tile-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    background: linear-gradient(180deg, rgba(20, 24, 27, 0), rgba(20, 24, 27, .82));
    color: #fff;
}
.tile-cap b { display: block; font-size: 1.02rem; font-weight: 600; letter-spacing: -.01em; }
.tile-cap span { font-size: .78rem; color: rgba(255, 255, 255, .76); }

/* offer / promotion card */
.offer {
    border: 1px solid var(--line);
    background: var(--paper);
    display: flex;
    flex-direction: column;
}
.offer-media { position: relative; }
.offer-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.offer-flag {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--clay);
    color: #fff;
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    padding: 8px 14px;
}
.offer-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.offer-body h3 { margin-bottom: .4em; }
.offer-price {
    font-size: .84rem;
    color: var(--clay);
    font-weight: 600;
    letter-spacing: .06em;
    margin-bottom: 16px;
}
.offer-price b { font-size: 1.24rem; }
.offer-body ul { margin-bottom: 20px; }
.offer-body .btn { margin-top: auto; align-self: flex-start; }

/* quote / testimonial-free pull block */
.pull {
    border-left: 2px solid var(--clay);
    padding-left: 26px;
    font-size: 1.16rem;
    line-height: 1.65;
    color: var(--ink);
}

/* helpline strip */
.helpline {
    display: grid;
    grid-template-columns: repeat(4, var(--col));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.helpline div { background: var(--stone); padding: 22px 20px; }
.helpline b { display: block; font-size: 1.12rem; color: var(--ink); letter-spacing: -.01em; }
.helpline span { font-size: .78rem; color: var(--slate-soft); }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-grid { display: grid; grid-template-columns: repeat(2, var(--col)); gap: 20px 22px; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }

label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--slate-soft);
    margin-bottom: 8px;
}
label .req { color: var(--clay); }

input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="number"], select, textarea {
    font-family: var(--font-body);
    font-size: .96rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 13px 15px;
    width: 100%;
    transition: border-color var(--t), box-shadow var(--t);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b757c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}
textarea { min-height: 132px; resize: vertical; line-height: 1.65; }

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--clay);
    box-shadow: 0 0 0 3px var(--clay-wash);
}
input.is-error, select.is-error, textarea.is-error { border-color: #b0473a; }

.check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .87rem;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: 13px;
    cursor: pointer;
}
.check input {
    flex: none;
    width: 17px;
    height: 17px;
    margin: 3px 0 0;
    accent-color: var(--clay);
    cursor: pointer;
}
.check span .req { color: var(--clay); }

.form-note {
    font-size: .8rem;
    color: var(--slate-dim);
    line-height: 1.6;
    margin-top: 16px;
}

.form-msg {
    display: none;
    margin-top: 20px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    background: var(--stone);
    font-size: .93rem;
}
.form-msg.is-visible { display: block; }
.form-msg.is-ok { border-color: var(--sage); color: var(--ink); }
.form-msg.is-bad { border-color: #b0473a; color: #8d3b31; }

/* contact detail list */
.contact-lines { list-style: none; padding: 0; margin: 0; }
.contact-lines li { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.contact-lines li:last-child { border-bottom: 0; }
.contact-lines span {
    display: block;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--slate-dim);
    margin-bottom: 5px;
}
.contact-lines b { color: var(--ink); font-weight: 500; font-size: 1rem; }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal { padding: clamp(50px, 6vw, 80px) 0 clamp(60px, 7vw, 96px); }
.legal h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-top: 2em; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.06rem; margin-top: 1.7em; }
.legal p, .legal li { font-size: .985rem; }
.legal .updated {
    font-size: .8rem;
    letter-spacing: .06em;
    color: var(--slate-dim);
    padding-bottom: 26px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--line);
}
.legal table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0 30px;
    font-size: .9rem;
}
.legal th, .legal td {
    text-align: left;
    padding: 13px 15px;
    border: 1px solid var(--line);
    vertical-align: top;
}
.legal th {
    background: var(--stone);
    color: var(--ink);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.toc {
    background: var(--stone);
    border: 1px solid var(--line-soft);
    padding: 24px 28px;
    margin-bottom: 40px;
}
.toc h4 { margin-bottom: .8em; }
.toc ol { margin: 0; padding-left: 1.3em; font-size: .92rem; }
.toc li { margin-bottom: .3em; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--ink);
    color: #9aa2a8;
    font-size: .9rem;
    padding-top: clamp(54px, 6vw, 82px);
}
.site-footer a { color: #c4cbd0; }
.site-footer a:hover { color: var(--clay-soft); }
.site-footer h4 {
    color: #fff;
    font-size: .73rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.35fr;
    gap: clamp(28px, 4vw, 56px);
    padding-bottom: 52px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 11px; }

.footer-brand .logo-mark { border-color: var(--clay-soft); color: var(--clay-soft); }
.footer-brand .logo-text b { color: #fff; }
.footer-brand .logo-text span { color: #7b848a; }
.footer-brand p { margin-top: 20px; font-size: .89rem; line-height: 1.7; max-width: 34ch; }

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 34px 0;
    font-size: .82rem;
    line-height: 1.75;
    color: #838c92;
}
.footer-disclaimer p { max-width: 96ch; }
.footer-disclaimer strong { color: #cdd3d8; font-weight: 500; }

.footer-help {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-help span { color: #b6bdc2; }
.footer-help b { color: #fff; font-weight: 600; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: #767f85;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--clay-soft);
    color: var(--clay-soft);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .01em;
    flex: none;
}

/* ==========================================================================
   Age gate
   ========================================================================== */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(16, 19, 22, .96);
}
.age-gate.is-open { display: flex; }
.age-gate-box {
    width: 100%;
    max-width: 540px;
    background: var(--paper);
    border-top: 3px solid var(--clay);
    padding: clamp(30px, 4vw, 48px);
    text-align: center;
}
.age-gate-box .logo { justify-content: center; margin-bottom: 26px; }
.age-gate-box h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); }
.age-gate-box p { font-size: .95rem; color: var(--slate); }
.age-gate-box .btn-row { justify-content: center; margin-top: 26px; }
.age-gate-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
    font-size: .8rem;
    color: var(--slate-dim);
}
.age-gate-denied { display: none; }
.age-gate.is-denied .age-gate-ask { display: none; }
.age-gate.is-denied .age-gate-denied { display: block; }

/* ==========================================================================
   Cookie banner
   ========================================================================== */

.cookie {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    display: none;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 40px rgba(25, 29, 33, .13);
}
.cookie.is-open { display: block; }
.cookie .wrap {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}
.cookie-text { flex: 1 1 420px; font-size: .89rem; line-height: 1.65; }
.cookie-text b { display: block; color: var(--ink); font-size: .96rem; margin-bottom: 4px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-settings { display: none; border-top: 1px solid var(--line-soft); background: var(--stone); }
.cookie-settings.is-open { display: block; }
.cookie-settings .wrap { padding-top: 24px; padding-bottom: 24px; display: block; }
.cookie-opt {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
}
.cookie-opt:last-of-type { border-bottom: 0; }
.cookie-opt input { flex: none; width: 17px; height: 17px; margin-top: 4px; accent-color: var(--clay); }
.cookie-opt b { display: block; color: var(--ink); font-size: .93rem; }
.cookie-opt span { font-size: .84rem; color: var(--slate-soft); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
    .nav a:not(.btn) { padding: 10px 9px; font-size: .78rem; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 940px) {
    .g-4 { grid-template-columns: repeat(2, var(--col)); }
    .g-3 { grid-template-columns: repeat(2, var(--col)); }
    .stats { grid-template-columns: repeat(3, var(--col)); }
    .helpline { grid-template-columns: repeat(2, var(--col)); }

    .nav-toggle { display: block; }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(330px, 86vw);
        z-index: 120;
        background: var(--paper);
        border-left: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 96px 26px 40px;
        transform: translateX(102%);
        transition: transform .34s cubic-bezier(.22, .61, .36, 1);
        overflow-y: auto;
    }
    .nav.is-open { transform: translateX(0); }
    .nav a:not(.btn) {
        padding: 15px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--line-soft);
    }
    .nav > .btn {
        display: inline-flex;
        margin-top: 24px;
        padding: 15px 24px;
        color: #fff;
    }
    .nav > .btn:hover { color: #fff; }
    .nav-backdrop {
        position: fixed;
        inset: 0;
        /* below the sticky header (z-index 90): the drawer lives inside the
           header's stacking context, so a higher value would dim it too */
        z-index: 80;
        background: rgba(18, 21, 24, .5);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--t), visibility var(--t);
    }
    .nav-backdrop.is-open { opacity: 1; visibility: visible; }
    .header-cta .btn { display: none; }
}

@media (max-width: 760px) {
    body { font-size: 16px; }
    .split, .split-even, .media-row, .form-grid { grid-template-columns: minmax(0, 1fr); }
    .media-row.reverse .media-figure { order: 0; }
    .g-2 { grid-template-columns: minmax(0, 1fr); }
    .topbar .wrap { justify-content: center; text-align: center; min-height: auto; padding-top: 8px; padding-bottom: 8px; }
    .topbar-contacts { justify-content: center; gap: 16px; }
    .hero { min-height: 540px; }
    .hero .wrap { padding-top: 90px; }
    .hero-facts { gap: 22px; }
    .site-header .wrap { min-height: 68px; }
    .stat-tag { position: static; border: 1px solid var(--line); border-top: 0; }
    .cookie .wrap { gap: 16px; }
    .cookie-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 560px) {
    .g-3, .g-4, .helpline { grid-template-columns: minmax(0, 1fr); }
    .stats { grid-template-columns: repeat(2, var(--col)); }
    .btn { padding: 13px 22px; }
    .logo-text b { font-size: 1.02rem; }
    .wrap { padding: 0 18px; }
}

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

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, .61, .36, 1); }
.reveal.is-in { opacity: 1; transform: none; }

/* print */
@media print {
    .site-header, .topbar, .cookie, .age-gate, .hero, .site-footer nav, .nav-toggle { display: none !important; }
    body { color: #000; font-size: 11pt; }
}
