/* ==========================================================================
   Matthew Switzerland — B2B
   Design language: Swiss typographic grid. Hairline rules, generous white
   space, one accent colour used sparingly, no decoration without a job.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    --paper:        #fbfaf8;
    --paper-2:      #f3f1ec;
    --white:        #ffffff;
    --ink:          #10131a;
    --ink-2:        #2c313c;
    --muted:        #626878;
    --muted-2:      #8b909d;
    --line:         #e2ded6;
    --line-strong:  #cec9be;

    --red:          #d8232a;
    --red-dark:     #ad1c22;
    --red-tint:     #fdf1f1;

    --green:        #1f6f4a;
    --amber:        #a86a15;

    --radius:       3px;
    --radius-lg:    5px;

    --shadow-sm:    0 1px 2px rgba(16, 19, 26, .05);
    --shadow-md:    0 2px 6px rgba(16, 19, 26, .06), 0 12px 28px -14px rgba(16, 19, 26, .18);
    --shadow-lg:    0 4px 10px rgba(16, 19, 26, .05), 0 26px 60px -28px rgba(16, 19, 26, .30);

    --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

    --wrap:         1240px;
    --wrap-narrow:  860px;
    --header-h:     76px;

    --ease:         cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16.5px;
    line-height: 1.65;
    font-feature-settings: "kern" 1, "liga" 1, "cv05" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.022em;
    margin: 0 0 .5em;
    text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 1.4rem + 3.2vw, 3.9rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.7rem, 1.15rem + 1.9vw, 2.6rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.18rem, 1.05rem + .5vw, 1.4rem); }
h4 { font-size: 1.02rem; letter-spacing: -.012em; }

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

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

strong { font-weight: 600; }

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

::selection { background: var(--ink); color: var(--paper); }

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
    border-radius: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--ink);
    color: #fff;
    padding: .8rem 1.2rem;
    font-size: .85rem;
}
.skip-link:focus { left: 8px; top: 8px; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: clamp(1.15rem, 4vw, 2.75rem);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 4.5vw, 4rem); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #eceef2; }
.section--white { background: var(--white); }
.section + .section--white,
.section--white + .section { border-top: 1px solid var(--line); }

.stack > * + * { margin-top: 1.1rem; }

.grid { display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); }
.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)); }

@media (max-width: 900px) {
    .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   4. Typographic details
   -------------------------------------------------------------------------- */
.eyebrow {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 1.1rem;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--red);
    flex: none;
}
.section--ink .eyebrow { color: #9aa1b1; }

.lead {
    font-size: clamp(1.02rem, .96rem + .35vw, 1.2rem);
    line-height: 1.6;
    color: var(--ink-2);
}
.section--ink .lead { color: #c3c8d3; }

.muted { color: var(--muted); }
.small { font-size: .87rem; }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
}
.section-head p { max-width: 56ch; }
.section-head > div { min-width: 0; }

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

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
    --btn-bg: var(--ink);
    --btn-fg: #fff;
    --btn-bd: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .92rem 1.6rem;
    background: var(--btn-bg);
    color: var(--btn-fg);
    border: 1px solid var(--btn-bd);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1.2;
    cursor: pointer;
    transition: background .18s var(--ease), color .18s var(--ease),
                border-color .18s var(--ease), transform .18s var(--ease);
    text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--red   { --btn-bg: var(--red); --btn-bd: var(--red); }
.btn--red:hover { --btn-bg: var(--red-dark); --btn-bd: var(--red-dark); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bd: var(--ink); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 1.9rem; font-size: .98rem; }
.btn--sm { padding: .6rem 1rem; font-size: .82rem; }

.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 2px;
    transition: border-color .18s var(--ease), color .18s var(--ease);
}
.link-arrow:hover { border-color: var(--red); color: var(--red); }
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--ink);
    color: #b9bfcc;
    font-size: .78rem;
    letter-spacing: .01em;
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 38px;
}
.topbar a { color: #e6e9ef; }
.topbar a:hover { color: #fff; }
.topbar__left, .topbar__right {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    min-width: 0;
}
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    white-space: nowrap;
}
.topbar__item svg { flex: none; opacity: .8; }

@media (max-width: 860px) {
    .topbar__left .topbar__item:not(.is-priority) { display: none; }
}
@media (max-width: 620px) {
    .topbar .wrap { justify-content: center; }
    .topbar__right { display: none; }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(251, 250, 248, .88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
}

/* Wordmark ------------------------------------------------------------- */
.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    flex: none;
}
.brand__mark {
    width: 34px;
    height: 34px;
    background: var(--red);
    border-radius: 2px;
    display: grid;
    place-items: center;
    flex: none;
}
.brand__mark::before {
    content: "";
    width: 16px;
    height: 16px;
    background: #fff;
    clip-path: polygon(40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%, 0 40%, 40% 40%);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
    font-family: var(--font-display);
    font-size: 1.06rem;
    font-weight: 650;
    letter-spacing: -.02em;
}
.brand__sub {
    font-family: var(--font-mono);
    font-size: .58rem;
    letter-spacing: .19em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
}

/* Navigation ------------------------------------------------------------ */
.nav { display: flex; align-items: center; gap: .1rem; }

.nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .55rem .72rem;
    font-size: .845rem;
    font-weight: 550;
    letter-spacing: .005em;
    color: var(--ink-2);
    border-radius: var(--radius);
    transition: color .16s var(--ease), background .16s var(--ease);
    white-space: nowrap;
}
.nav__link:hover { color: var(--ink); background: rgba(16, 19, 26, .045); }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after {
    content: "";
    position: absolute;
    left: .72rem;
    right: .72rem;
    bottom: .18rem;
    height: 1.5px;
    background: var(--red);
}

.nav__item { position: relative; }

.nav__caret { transition: transform .2s var(--ease); opacity: .55; }
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret { transform: rotate(180deg); }

/* Dropdown (TOURS) */
.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 306px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: .45rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__item:hover > .dropdown,
.nav__item:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown__link {
    display: flex;
    align-items: baseline;
    gap: .8rem;
    padding: .62rem .8rem;
    border-radius: var(--radius);
    transition: background .15s var(--ease);
}
.dropdown__link:hover { background: var(--paper-2); }
.dropdown__num {
    font-family: var(--font-mono);
    font-size: .66rem;
    color: var(--red);
    letter-spacing: .06em;
    flex: none;
    padding-top: .15rem;
}
.dropdown__name { font-size: .9rem; font-weight: 600; display: block; }
.dropdown__desc {
    display: block;
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.45;
    margin-top: 1px;
}
.dropdown__foot {
    border-top: 1px solid var(--line);
    margin-top: .4rem;
    padding: .7rem .8rem .35rem;
}

/* Header actions -------------------------------------------------------- */
.header-actions { display: flex; align-items: center; gap: .7rem; flex: none; }

.clock {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .4rem .7rem .4rem .55rem;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--white);
}
.clock__face { flex: none; }
.clock__face .hand { transform-origin: 12px 12px; }
.clock__time {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.clock__value {
    font-family: var(--font-mono);
    font-size: .82rem;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.01em;
    white-space: nowrap;
}
.clock__label {
    font-family: var(--font-mono);
    font-size: .53rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .9rem;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius);
    font-size: .84rem;
    font-weight: 600;
    transition: background .16s var(--ease), transform .16s var(--ease);
}
.wa-btn:hover { background: #1eb85a; transform: translateY(-1px); }
.wa-btn svg { flex: none; }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    padding: 0;
    place-items: center;
}
.nav-toggle span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    position: relative;
    transition: background .18s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .22s var(--ease);
}
.nav-toggle span::before { top: -5.5px; }
.nav-toggle span::after  { top: 5.5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 1120px) {
    .wa-btn span { display: none; }
    .wa-btn { padding: .55rem .62rem; }
}
@media (max-width: 1020px) {
    .nav-toggle { display: grid; }
    .nav {
        position: fixed;
        inset: calc(var(--header-h) + var(--topbar-h, 0px)) 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        padding: .6rem clamp(1.15rem, 4vw, 2.75rem) 1.6rem;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .nav.is-open { display: flex; }
    .nav__link {
        padding: .92rem .2rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        justify-content: space-between;
    }
    .nav__link.is-active::after { display: none; }
    .nav__link.is-active { color: var(--red); }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        padding: .3rem 0 .7rem .2rem;
        display: none;
        min-width: 0;
    }
    .nav__item.is-open .dropdown { display: block; }
    .nav__item.is-open .nav__caret { transform: rotate(180deg); }
    .dropdown__link { padding: .5rem .6rem; }
    .dropdown__foot { display: none; }
}
@media (max-width: 560px) {
    .clock { display: none; }
}

/* --------------------------------------------------------------------------
   7. Hero + quote form (homepage)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(720px 420px at 88% -8%, rgba(216, 35, 42, .05), transparent 62%),
        radial-gradient(620px 380px at 4% 106%, rgba(16, 19, 26, .045), transparent 60%);
    pointer-events: none;
}
/* Two columns on desktop: proposition left, form right.
   The supporting proof sits in the left column, below the copy. */
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
    grid-template-rows: auto 1fr;
    gap: clamp(2.2rem, 5vw, 4.5rem);
    align-items: start;
    padding-block: clamp(2.6rem, 5vw, 4.6rem) clamp(3rem, 6vw, 5rem);
}
.hero__copy    { grid-column: 1; grid-row: 1; }
.hero__support { grid-column: 1; grid-row: 2; }
.hero .quote-card { grid-column: 2; grid-row: 1 / span 2; }

/* One column below 1040px: headline, then the FORM, then the proof.
   A trade buyer on a phone reaches the form without scrolling past the pitch. */
@media (max-width: 1040px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        gap: clamp(1.8rem, 4vw, 2.6rem);
    }
    .hero__copy,
    .hero__support,
    .hero .quote-card { grid-column: 1; grid-row: auto; }
    .hero__copy    { order: 1; }
    .hero .quote-card { order: 2; }
    .hero__support { order: 3; }
    .hero__copy    { max-width: none; }
    .hero__points, .hero__lead { max-width: none; }
}

.hero__copy { padding-top: clamp(.5rem, 2vw, 1.6rem); max-width: 40ch; }
.hero h1 { margin-bottom: .55rem; }
.hero h1 .accent {
    display: block;
    color: var(--red);
}
.hero__lead {
    font-size: clamp(1.05rem, .98rem + .4vw, 1.24rem);
    color: var(--ink-2);
    line-height: 1.55;
    max-width: 42ch;
    margin-bottom: 1.8rem;
}

.hero__points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: .78rem;
    max-width: 44ch;
}
.hero__points li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .95rem;
    color: var(--ink-2);
    margin: 0;
}
.hero__points svg { flex: none; margin-top: .28rem; color: var(--red); }

.hero__proof {
    display: flex;
    gap: clamp(1.5rem, 4vw, 2.8rem);
    flex-wrap: wrap;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
}
.stat__value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1;
}
.stat__label {
    font-size: .77rem;
    color: var(--muted);
    letter-spacing: .01em;
    margin-top: .35rem;
    max-width: 18ch;
}

/* The form card --------------------------------------------------------- */
.quote-card {
    background: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    scroll-margin-top: calc(var(--header-h) + 20px);
}
.quote-card__head {
    background: var(--ink);
    color: #fff;
    padding: 1.35rem clamp(1.25rem, 3vw, 1.9rem);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.2rem;
}
.quote-card__head h2 {
    font-size: 1.28rem;
    margin: 0 0 .3rem;
    letter-spacing: -.02em;
}
.quote-card__head p {
    margin: 0;
    font-size: .87rem;
    color: #adb4c2;
    line-height: 1.5;
}
.quote-card__badge {
    flex: none;
    font-family: var(--font-mono);
    font-size: .63rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 100px;
    padding: .34rem .7rem;
    white-space: nowrap;
}
.quote-card__body { padding: clamp(1.25rem, 3vw, 1.9rem); }
.quote-card__foot {
    border-top: 1px solid var(--line);
    background: var(--paper);
    padding: .95rem clamp(1.25rem, 3vw, 1.9rem);
    font-size: .8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .55rem;
}
.quote-card__foot svg { flex: none; color: var(--green); }

/* --------------------------------------------------------------------------
   8. Forms
   -------------------------------------------------------------------------- */
.form-section + .form-section { margin-top: 1.6rem; }

.form-section__title {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--font-mono);
    font-size: .67rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .95rem;
}
.form-section__title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.field { margin-bottom: .95rem; }
.field:last-child { margin-bottom: 0; }

.field__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
}
@media (max-width: 520px) {
    .field__row { grid-template-columns: minmax(0, 1fr); }
}

.field label {
    display: block;
    font-size: .81rem;
    font-weight: 600;
    letter-spacing: .005em;
    color: var(--ink-2);
    margin-bottom: .38rem;
}
.field label .req { color: var(--red); margin-left: 1px; }
.field label .opt {
    font-weight: 400;
    color: var(--muted-2);
    font-size: .76rem;
    margin-left: .3rem;
}

.input,
.select,
.textarea {
    width: 100%;
    padding: .74rem .85rem;
    font-family: inherit;
    font-size: .92rem;
    line-height: 1.45;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    transition: border-color .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}
.input::placeholder, .textarea::placeholder { color: #a9aebb; }

.input:hover, .select:hover, .textarea:hover { border-color: #b3ada1; }

.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(16, 19, 26, .09);
}

.textarea { resize: vertical; min-height: 96px; }

.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' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23626878' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .85rem center;
    padding-right: 2.2rem;
    cursor: pointer;
}

input[type="date"].input { cursor: pointer; }
input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .55; }
input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

.field.has-error .input,
.field.has-error .select,
.field.has-error .textarea {
    border-color: var(--red);
    background: var(--red-tint);
}
.field__error {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: var(--red-dark);
    margin-top: .35rem;
    font-weight: 500;
}
.field__hint {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .35rem;
    line-height: 1.5;
}
.field__hint em { font-style: normal; color: var(--muted-2); }

/* Honeypot — hidden from people, visible to bots */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-submit {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.55;
}
.consent input { margin-top: .22rem; flex: none; accent-color: var(--red); width: 15px; height: 15px; }
.consent a { border-bottom: 1px solid var(--line-strong); }

/* Alerts ---------------------------------------------------------------- */
.alert {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .9rem 1rem;
    border: 1px solid var(--line);
    border-left: 3px solid var(--muted);
    border-radius: var(--radius);
    font-size: .88rem;
    line-height: 1.55;
    margin-bottom: 1.2rem;
    background: var(--white);
}
.alert svg { flex: none; margin-top: .15rem; }
.alert--error   { border-left-color: var(--red);   background: var(--red-tint); color: #7c1418; }
.alert--success { border-left-color: var(--green); background: #f1f8f3; color: #14532d; }
.alert--info    { border-left-color: var(--ink);   background: var(--paper-2); }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
a.card:hover, .card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.card__media {
    aspect-ratio: 16 / 10;
    background: var(--paper-2);
    overflow: hidden;
    position: relative;
}
.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.035); }
.card__body {
    padding: 1.25rem 1.35rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card__title { font-size: 1.1rem; margin-bottom: .45rem; }
.card__text {
    font-size: .89rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.card__foot {
    margin-top: auto;
    padding-top: .9rem;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .8rem;
    color: var(--muted);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--font-mono);
    font-size: .64rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink-2);
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: .26rem .62rem;
    white-space: nowrap;
}
.tag--red { color: var(--red-dark); background: var(--red-tint); border-color: #f3d6d7; }
.tag--solid { background: var(--ink); color: #fff; border-color: var(--ink); }

.card__media .tag {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(6px);
}

/* Numbered feature list ------------------------------------------------- */
.feature {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding-top: 1.4rem;
    border-top: 2px solid var(--ink);
}
.feature__num {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .13em;
    color: var(--red);
}
.feature h3 { font-size: 1.08rem; margin: 0; }
.feature p { font-size: .9rem; color: var(--muted); line-height: 1.62; margin: 0; }

.section--ink .feature { border-top-color: rgba(255, 255, 255, .3); }
.section--ink .feature p { color: #a8aebb; }

/* Split media block ----------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) {
    .split { grid-template-columns: minmax(0, 1fr); }
    .split--reverse .split__media { order: 0; }
}
.split__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--paper-2);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Definition rows (rates, specs) ---------------------------------------- */
.spec-list { border-top: 1px solid var(--line); }
.spec-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: baseline;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .92rem;
}
.spec-row dt { color: var(--muted); margin: 0; }
.spec-row dd {
    margin: 0;
    font-weight: 600;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Price table ----------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
table.data {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 560px;
}
table.data th, table.data td {
    padding: .85rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
table.data thead th {
    background: var(--paper-2);
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--paper); }
table.data td.num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }

/* --------------------------------------------------------------------------
   10. Page header (interior pages)
   -------------------------------------------------------------------------- */
.page-head {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding-block: clamp(2.4rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
}
.page-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(620px 300px at 92% 0%, rgba(216, 35, 42, .045), transparent 60%);
    pointer-events: none;
}
.page-head .wrap { position: relative; }
.page-head h1 { max-width: 20ch; margin-bottom: .6rem; }
.page-head .lead { max-width: 60ch; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { opacity: .5; }

/* Filter pills ---------------------------------------------------------- */
.filters {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}
.filter {
    padding: .5rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-size: .84rem;
    font-weight: 550;
    color: var(--ink-2);
    background: var(--white);
    transition: all .16s var(--ease);
    white-space: nowrap;
}
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* --------------------------------------------------------------------------
   11. Article body (news, tour detail)
   -------------------------------------------------------------------------- */
.prose { max-width: 68ch; }
.prose p { font-size: 1.02rem; line-height: 1.72; color: var(--ink-2); }
.prose h2 { font-size: 1.5rem; margin-top: 2.4rem; }
.prose h3 { font-size: 1.18rem; margin-top: 1.9rem; }
.prose ul li, .prose ol li { color: var(--ink-2); }
.prose img { border-radius: var(--radius-lg); margin-block: 1.8rem; border: 1px solid var(--line); }
.prose a { color: var(--red-dark); border-bottom: 1px solid currentColor; }

.article-meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
}
.article-meta time { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .06em; }

/* News list ------------------------------------------------------------- */
.news-row {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    gap: clamp(1.2rem, 3vw, 2.4rem);
    align-items: center;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--line);
    transition: background .18s var(--ease);
}
.news-row:first-child { border-top: 1px solid var(--line); }
.news-row:hover { background: var(--white); }
.news-row__media {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper-2);
    border: 1px solid var(--line);
}
.news-row__media img { width: 100%; height: 100%; object-fit: cover; }
.news-row h3 { font-size: 1.16rem; margin-bottom: .35rem; }
.news-row p { font-size: .9rem; color: var(--muted); margin: 0; max-width: 62ch; }
.news-row__date {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: .5rem;
}
.news-row__go { flex: none; color: var(--muted-2); transition: transform .2s var(--ease), color .2s var(--ease); }
.news-row:hover .news-row__go { transform: translateX(4px); color: var(--red); }

@media (max-width: 780px) {
    .news-row { grid-template-columns: 120px minmax(0, 1fr); }
    .news-row__go { display: none; }
}
@media (max-width: 520px) {
    .news-row { grid-template-columns: minmax(0, 1fr); }
    .news-row__media { display: none; }
}

/* --------------------------------------------------------------------------
   12. Reviews strip
   -------------------------------------------------------------------------- */
.reviews { background: var(--ink); color: #e8eaef; }
.reviews .section-head h2 { color: #fff; }

.review {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.6rem;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    height: 100%;
}
.review__stars { display: flex; gap: 2px; color: #f0b429; }
.review__quote {
    font-size: .95rem;
    line-height: 1.68;
    color: #d6dae2;
    margin: 0;
    flex: 1;
}
.review__author {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.review__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    flex: none;
}
.review__name { font-size: .89rem; font-weight: 600; color: #fff; line-height: 1.3; }
.review__role { font-size: .78rem; color: #969db0; line-height: 1.4; margin-top: 2px; }

/* --------------------------------------------------------------------------
   13. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-block: clamp(2.4rem, 4vw, 3.4rem);
    flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.05rem); margin-bottom: .4rem; max-width: 22ch; }
.cta-band p { color: var(--muted); margin: 0; max-width: 48ch; font-size: .95rem; }
/* flex: 0 1 auto (not `none`) so the row can shrink and wrap on a narrow phone
   instead of pushing the page sideways. */
.cta-band__actions {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    flex: 0 1 auto;
    max-width: 100%;
}
@media (max-width: 460px) {
    .cta-band__actions { width: 100%; }
    .cta-band__actions .btn { flex: 1 1 100%; }
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: #9aa1b1;
    font-size: .87rem;
    padding-top: clamp(3rem, 5vw, 4.5rem);
}
.site-footer a { color: #c8cdd8; }
.site-footer a:hover { color: #fff; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
    gap: clamp(1.8rem, 4vw, 3rem);
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

.footer-grid h4 {
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #6f7688;
    margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-links li { margin: 0; }

.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: #6f7688; }
.footer-brand p { max-width: 34ch; line-height: 1.65; color: #8f96a8; }

.footer-contact { display: grid; gap: .6rem; margin-top: 1.2rem; }
.footer-contact a, .footer-contact span {
    display: inline-flex;
    align-items: flex-start;
    gap: .6rem;
}
.footer-contact svg { flex: none; margin-top: .22rem; opacity: .6; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-block: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
    font-size: .8rem;
    color: #767d90;
}
.footer-bottom__links { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* Floating WhatsApp ----------------------------------------------------- */
.wa-float {
    position: fixed;
    right: clamp(1rem, 3vw, 1.7rem);
    bottom: clamp(1rem, 3vw, 1.7rem);
    z-index: 80;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 22px rgba(37, 211, 102, .38);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 8px 28px rgba(37, 211, 102, .5); }
@media (max-width: 560px) { .wa-float { width: 50px; height: 50px; } }

/* --------------------------------------------------------------------------
   15. Utilities and motion
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex-row { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   16. Print
   -------------------------------------------------------------------------- */
@media print {
    .site-header, .topbar, .wa-float, .cta-band, .site-footer, .reviews { display: none !important; }
    body { background: #fff; font-size: 11pt; }
    .section { padding-block: 1rem; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
