/* Alpenroute Editorial — cold glacier palette, serif headings, square edges */

:root {
    --alp-teal: #0f6e6b;
    --alp-teal-d: #0a504e;
    --alp-teal-l: #e3efee;
    --alp-navy: #1a2430;
    --alp-navy-2: #2c3a4a;
    --alp-slate: #51616f;
    --alp-mist: #7c8b96;
    --alp-ice: #eef4f5;
    --alp-ice-2: #e2eaec;
    --alp-paper: #ffffff;
    --alp-ink: #14202a;
    --alp-ink-2: #38454f;
    --alp-line: #d7e0e2;
    --alp-line-2: #c2ced1;
    --alp-amber: #c87b1e;

    --alp-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
    --alp-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

    --alp-wrap: 1180px;
    --alp-narrow: 760px;
    --alp-r: 2px;
    --alp-r-lg: 4px;
    --alp-base: 18px;
    --alp-shadow: 0 1px 2px rgba(20, 32, 42, 0.05), 0 10px 30px rgba(20, 32, 42, 0.07);
    --alp-shadow-sm: 0 1px 4px rgba(20, 32, 42, 0.09);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--alp-sans);
    font-size: var(--alp-base);
    line-height: 1.7;
    color: var(--alp-ink-2);
    background: var(--alp-ice);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--alp-serif);
    color: var(--alp-ink);
    line-height: 1.22;
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.005em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.45rem); }
h3 { font-size: 1.3rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--alp-teal-d); text-decoration: none; }
a:hover { text-decoration: underline; }

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

strong { color: var(--alp-ink); }

:focus-visible {
    outline: 3px solid var(--alp-teal);
    outline-offset: 2px;
}

.alp-wrap {
    width: 100%;
    max-width: var(--alp-wrap);
    margin: 0 auto;
    padding: 0 1.6rem;
}

.alp-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--alp-navy);
    color: #fff;
    padding: 0.7rem 1.2rem;
    z-index: 200;
}
.alp-skip:focus { left: 1rem; top: 1rem; }

/* Eyebrow — uppercase sans label */
.alp-kicker {
    display: inline-block;
    font-family: var(--alp-sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--alp-teal-d);
    margin-bottom: 0.8rem;
}

.alp-lead {
    font-size: 1.18rem;
    line-height: 1.65;
    color: var(--alp-ink-2);
    max-width: 62ch;
}

/* ---------- Buttons: square, sharp ---------- */
.alp-btn {
    display: inline-block;
    font-family: var(--alp-sans);
    font-weight: 600;
    font-size: 0.96rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--alp-r);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.alp-btn--solid { background: var(--alp-teal); color: #fff; }
.alp-btn--solid:hover { background: var(--alp-teal-d); text-decoration: none; }
.alp-btn--line {
    background: transparent;
    color: var(--alp-ink);
    border-color: var(--alp-line-2);
}
.alp-btn--line:hover { border-color: var(--alp-teal); color: var(--alp-teal-d); text-decoration: none; }
.alp-btn--ghost {
    background: transparent;
    color: var(--alp-teal-d);
    padding: 0.85rem 0;
    border-bottom: 2px solid var(--alp-teal);
    border-radius: 0;
}
.alp-btn--ghost:hover { color: var(--alp-navy); text-decoration: none; }

/* ---------- Header ---------- */
.alp-head {
    background: var(--alp-paper);
    border-bottom: 1px solid var(--alp-line);
    position: sticky;
    top: 0;
    z-index: 100;
}
.alp-head__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}
.alp-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--alp-serif);
    font-weight: 600;
    font-size: 1.18rem;
    color: var(--alp-ink);
}
.alp-logo:hover { text-decoration: none; }
.alp-logo__mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: var(--alp-teal);
    color: #fff;
    font-family: var(--alp-sans);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--alp-r);
}

.alp-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.alp-menu__link {
    font-family: var(--alp-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--alp-ink-2);
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}
.alp-menu__link:hover { color: var(--alp-teal-d); text-decoration: none; }
.alp-menu__link--active { color: var(--alp-ink); border-bottom-color: var(--alp-teal); }

.alp-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.alp-toggle span {
    width: 24px;
    height: 2px;
    background: var(--alp-ink);
    display: block;
}

/* ---------- Hero: full-bleed background + overlay card ---------- */
.alp-hero {
    position: relative;
    background: var(--alp-navy);
    color: #dde6ea;
    overflow: hidden;
}
.alp-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}
.alp-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(20,32,42,0.92) 0%, rgba(20,32,42,0.55) 60%, rgba(20,32,42,0.25) 100%);
}
.alp-hero__inner {
    position: relative;
    padding: 5.5rem 0 6rem;
    max-width: 700px;
}
.alp-hero .alp-kicker { color: #7fd0cb; }
.alp-hero h1 { color: #fff; }
.alp-hero__lead {
    font-size: 1.2rem;
    line-height: 1.65;
    color: #cdd8de;
    max-width: 60ch;
    margin: 1.1rem 0 1.8rem;
}
.alp-hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.alp-hero__strip {
    position: relative;
    background: var(--alp-teal-d);
    color: #e6f4f3;
}
.alp-hero__strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.6rem 0;
}
.alp-fig { font-family: var(--alp-serif); font-size: 1.9rem; color: #fff; line-height: 1; }
.alp-fig + span { display: block; font-size: 0.86rem; color: #bfe2e0; margin-top: 0.35rem; }

/* ---------- Sections ---------- */
.alp-band { padding: 4.5rem 0; }
.alp-band--tight { padding: 3.2rem 0; }
.alp-band--paper { background: var(--alp-paper); }
.alp-band--ice { background: var(--alp-ice-2); }
.alp-band--navy { background: var(--alp-navy); color: #c8d3da; }
.alp-band--navy h2, .alp-band--navy h3 { color: #fff; }

.alp-head-block { max-width: 64ch; margin-bottom: 2.6rem; }
.alp-head-block--mid { margin-left: auto; margin-right: auto; text-align: center; }
.alp-center { text-align: center; }
.alp-mt { margin-top: 1.6rem; }

/* ---------- Grid + border-left cards ---------- */
.alp-grid { display: grid; gap: 1.5rem; }
.alp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.alp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.alp-grid--4 { grid-template-columns: repeat(4, 1fr); }

.alp-card {
    background: var(--alp-paper);
    border: 1px solid var(--alp-line);
    border-left: 4px solid var(--alp-teal);
    border-radius: var(--alp-r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.alp-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--alp-ice-2); }
.alp-card__media img { width: 100%; height: 100%; object-fit: cover; }
.alp-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.alp-card__tag {
    font-family: var(--alp-sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--alp-amber);
}
.alp-card__body p { color: var(--alp-ink-2); font-size: 0.97rem; }
.alp-card__link {
    margin-top: auto;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--alp-teal-d);
}

/* Plain-text card (no media) */
.alp-tile {
    background: var(--alp-paper);
    border: 1px solid var(--alp-line);
    border-radius: var(--alp-r);
    padding: 1.6rem;
}
.alp-tile h3 { margin-bottom: 0.5rem; }
.alp-tile p { font-size: 0.97rem; }

/* ---------- Two-column prose ---------- */
.alp-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.alp-split__media img { width: 100%; border-radius: var(--alp-r-lg); border: 1px solid var(--alp-line); }
.alp-prose p { margin-bottom: 1.1rem; }
.alp-prose h2 { margin-bottom: 1rem; }

/* ---------- Steps (numbered) ---------- */
.alp-steps { display: grid; gap: 1.3rem; counter-reset: step; }
.alp-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.2rem;
    background: var(--alp-paper);
    border: 1px solid var(--alp-line);
    padding: 1.4rem 1.6rem;
    border-radius: var(--alp-r);
}
.alp-step::before {
    counter-increment: step;
    content: counter(step);
    font-family: var(--alp-serif);
    font-size: 1.7rem;
    color: var(--alp-teal);
    line-height: 1;
}
.alp-step h3 { margin-bottom: 0.35rem; }
.alp-step p { font-size: 0.97rem; }

/* ---------- Stats row ---------- */
.alp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.alp-stat__n { font-family: var(--alp-serif); font-size: 2.4rem; color: var(--alp-teal); line-height: 1; }
.alp-stat__l { font-size: 0.92rem; color: var(--alp-ink-2); margin-top: 0.4rem; }
.alp-band--navy .alp-stat__n { color: #7fd0cb; }
.alp-band--navy .alp-stat__l { color: #c8d3da; }

/* ---------- FAQ ---------- */
.alp-faq { max-width: var(--alp-narrow); }
.alp-faq__item { border-bottom: 1px solid var(--alp-line); }
.alp-faq__q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 1.2rem 2.5rem 1.2rem 0;
    font-family: var(--alp-serif);
    font-size: 1.12rem;
    color: var(--alp-ink);
    cursor: pointer;
    position: relative;
}
.alp-faq__q::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 1.1rem;
    font-size: 1.5rem;
    color: var(--alp-teal);
    font-family: var(--alp-sans);
}
.alp-faq__q[aria-expanded="true"]::after { content: "\2212"; }
.alp-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.alp-faq__a-inner { padding: 0 0 1.3rem; color: var(--alp-ink-2); }

/* ---------- Table ---------- */
.alp-table-wrap { overflow-x: auto; border: 1px solid var(--alp-line); border-radius: var(--alp-r); }
.alp-table { width: 100%; border-collapse: collapse; min-width: 540px; background: var(--alp-paper); }
.alp-table th, .alp-table td { padding: 0.95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--alp-line); font-size: 0.95rem; }
.alp-table th { background: var(--alp-ice); font-family: var(--alp-sans); font-weight: 700; color: var(--alp-ink); }
.alp-table tr:last-child td { border-bottom: 0; }

/* ---------- Pricing ---------- */
.alp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.alp-plan {
    background: var(--alp-paper);
    border: 1px solid var(--alp-line);
    border-radius: var(--alp-r);
    padding: 2rem 1.7rem;
    display: flex;
    flex-direction: column;
}
.alp-plan--featured { border-color: var(--alp-teal); border-top: 4px solid var(--alp-teal); }
.alp-plan__name { font-family: var(--alp-serif); font-size: 1.35rem; color: var(--alp-ink); }
.alp-plan__price { font-family: var(--alp-serif); font-size: 2.4rem; color: var(--alp-teal-d); margin: 0.6rem 0 0.2rem; }
.alp-plan__price small { font-size: 0.9rem; color: var(--alp-mist); font-family: var(--alp-sans); }
.alp-plan__list { list-style: none; margin: 1.3rem 0; display: grid; gap: 0.7rem; }
.alp-plan__list li { padding-left: 1.5rem; position: relative; font-size: 0.96rem; }
.alp-plan__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--alp-teal); font-weight: 700; }
.alp-plan .alp-btn { margin-top: auto; text-align: center; }

/* ---------- Team ---------- */
.alp-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.alp-member { background: var(--alp-paper); border: 1px solid var(--alp-line); border-radius: var(--alp-r); padding: 1.4rem; text-align: center; }
.alp-member img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 0.9rem; border: 2px solid var(--alp-line); }
.alp-member h3 { font-size: 1.1rem; }
.alp-member__role { font-family: var(--alp-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--alp-teal-d); font-weight: 700; margin-bottom: 0.6rem; }
.alp-member p { font-size: 0.9rem; color: var(--alp-ink-2); }

/* ---------- Timeline ---------- */
.alp-timeline { border-left: 2px solid var(--alp-line); padding-left: 1.6rem; display: grid; gap: 1.6rem; }
.alp-timeline__item { position: relative; }
.alp-timeline__item::before { content: ""; position: absolute; left: -1.95rem; top: 0.4rem; width: 11px; height: 11px; background: var(--alp-teal); border-radius: 50%; }
.alp-timeline__year { font-family: var(--alp-serif); color: var(--alp-teal-d); font-size: 1.15rem; }

/* ---------- Forms ---------- */
.alp-form { display: grid; gap: 1.1rem; }
.alp-field { display: grid; gap: 0.4rem; }
.alp-field label { font-family: var(--alp-sans); font-weight: 600; font-size: 0.9rem; color: var(--alp-ink); }
.alp-field input, .alp-field select, .alp-field textarea {
    font-family: var(--alp-sans);
    font-size: 1rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--alp-line-2);
    border-radius: var(--alp-r);
    background: var(--alp-paper);
    color: var(--alp-ink);
    width: 100%;
}
.alp-field input:focus, .alp-field select:focus, .alp-field textarea:focus {
    border-color: var(--alp-teal);
    outline: 2px solid var(--alp-teal-l);
}
.alp-field textarea { min-height: 140px; resize: vertical; }
.alp-form__consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--alp-slate); }
.alp-form__consent input { width: auto; margin-top: 0.25rem; }
.alp-form__status {
    display: none;
    padding: 0.85rem 1rem;
    background: var(--alp-teal-l);
    border-left: 4px solid var(--alp-teal);
    border-radius: var(--alp-r);
    color: var(--alp-teal-d);
    font-size: 0.95rem;
}
.alp-form__status--show { display: block; }

/* ---------- Info cards (contact) ---------- */
.alp-info { display: grid; gap: 1rem; }
.alp-info__item { background: var(--alp-paper); border: 1px solid var(--alp-line); border-radius: var(--alp-r); padding: 1.2rem 1.4rem; }
.alp-info__item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.alp-info__item p { font-size: 0.95rem; }

/* ---------- Breadcrumb ---------- */
.alp-crumb { font-family: var(--alp-sans); font-size: 0.85rem; color: var(--alp-mist); padding: 1.1rem 0; }
.alp-crumb a { color: var(--alp-slate); }

/* ---------- Page banner (inner pages) ---------- */
.alp-banner { background: var(--alp-navy); color: #cdd8de; position: relative; overflow: hidden; }
.alp-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.alp-banner__shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,32,42,0.9), rgba(20,32,42,0.55)); }
.alp-banner__inner { position: relative; padding: 3.6rem 0 4rem; max-width: 720px; }
.alp-banner .alp-kicker { color: #7fd0cb; }
.alp-banner h1 { color: #fff; }
.alp-banner p { color: #cdd8de; font-size: 1.12rem; margin-top: 0.8rem; }

/* ---------- Prose article body (sitelinks) ---------- */
.alp-article { max-width: 820px; }
.alp-article h2 { margin: 2.2rem 0 0.9rem; }
.alp-article h3 { margin: 1.6rem 0 0.6rem; }
.alp-article ul, .alp-article ol { margin: 0 0 1.1rem 1.3rem; }
.alp-article li { margin-bottom: 0.5rem; }
.alp-article figure { margin: 1.8rem 0; }
.alp-article figure img { border-radius: var(--alp-r-lg); border: 1px solid var(--alp-line); }
.alp-article figcaption { font-size: 0.85rem; color: var(--alp-mist); margin-top: 0.5rem; }

.alp-callout {
    background: var(--alp-teal-l);
    border-left: 4px solid var(--alp-teal);
    padding: 1.2rem 1.4rem;
    border-radius: var(--alp-r);
    margin: 1.6rem 0;
}
.alp-callout strong { color: var(--alp-teal-d); }

/* ---------- CTA band ---------- */
.alp-cta { text-align: center; }
.alp-cta h2 { color: #fff; }
.alp-cta p { color: #c8d3da; max-width: 56ch; margin: 0.8rem auto 1.6rem; }

/* ---------- Footer ---------- */
.alp-foot { background: var(--alp-navy); color: #9fb0bc; padding: 3.6rem 0 2rem; }
.alp-foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.alp-foot__brand { display: flex; align-items: center; gap: 0.6rem; color: #fff; font-family: var(--alp-serif); font-size: 1.1rem; margin-bottom: 0.8rem; }
.alp-foot p { font-size: 0.9rem; line-height: 1.6; }
.alp-foot h5 { color: #fff; font-size: 0.95rem; margin-bottom: 0.9rem; font-family: var(--alp-sans); letter-spacing: 0.04em; }
.alp-foot__links { list-style: none; display: grid; gap: 0.5rem; }
.alp-foot__links a { color: #9fb0bc; font-size: 0.9rem; }
.alp-foot__links a:hover { color: #fff; }
.alp-foot__legal { border-top: 1px solid #2c3a4a; margin-top: 2.6rem; padding-top: 1.8rem; }
.alp-foot__legal address { font-style: normal; font-size: 0.88rem; color: #b6c4cd; line-height: 1.7; margin-bottom: 0.8rem; }
.alp-foot__legal strong { color: #fff; }
.alp-foot__legal p { font-size: 0.82rem; color: #7c8b96; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .alp-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--alp-paper);
        border-bottom: 1px solid var(--alp-line);
        padding: 0.5rem 1.6rem 1.2rem;
    }
    .alp-menu--open { display: flex; }
    .alp-menu__link { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--alp-line); }
    .alp-menu .alp-btn { margin-top: 0.8rem; width: 100%; text-align: center; }
    .alp-toggle { display: flex; }
    .alp-grid--3, .alp-grid--4, .alp-team, .alp-stats, .alp-plans { grid-template-columns: repeat(2, 1fr); }
    .alp-split { grid-template-columns: 1fr; gap: 2rem; }
    .alp-hero__strip-grid { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
}

@media (max-width: 720px) {
    .alp-grid--2 { grid-template-columns: 1fr; }
    .alp-plans { grid-template-columns: 1fr; }
    .alp-band { padding: 3.2rem 0; }
    .alp-foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .alp-grid--3, .alp-grid--4, .alp-team, .alp-stats { grid-template-columns: 1fr; }
    .alp-foot__grid { grid-template-columns: 1fr; }
    .alp-step { grid-template-columns: 40px 1fr; gap: 0.9rem; }
    :root { --alp-base: 17px; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
}
