/* ========================================================================
   Geoframe marketing page
   Earthy + modern. No SCSS, no CSS variables, no generic class names.
   Color hexes are literal so find/replace works cleanly.
   ======================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background: #f5efe4;
    color: #1f2d24;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

.bezel {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---- Header (crest) -------------------------------------------------- */
.crest {
    padding: 22px 0;
    border-bottom: 1px solid #e6dfcf;
    background: #f5efe4;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: rgba(245, 239, 228, 0.85);
}
.crest-bezel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: #1f2d24;
}
.brand-glyph {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}
.compass {
    display: flex;
    gap: 32px;
}
.compass a {
    text-decoration: none;
    font-size: 15px;
    color: #4a574d;
    transition: color 0.15s;
}
.compass a:hover { color: #b25a3a; }

/* ---- Hero (summit) --------------------------------------------------- */
.summit {
    padding: 96px 0 80px;
    text-align: center;
}
.summit-bezel { max-width: 880px; }

.summit-eyebrow {
    color: #b25a3a;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
}
.summit-peak {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #1f2d24;
    margin-bottom: 26px;
}
.summit-current {
    font-size: 19px;
    color: #4a574d;
    margin: 0 auto 36px;
    max-width: 680px;
    line-height: 1.55;
}
.summit-hand {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.summit-aside {
    margin-top: 18px;
    color: #6b6555;
    font-size: 14px;
}
.summit-canvas {
    margin-top: 64px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 28px 70px -22px rgba(31, 45, 36, 0.32);
    border: 1px solid #e6dfcf;
}

/* ---- CTA button (mark) ----------------------------------------------- */
.mark {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.01em;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.mark-primary {
    background: #b25a3a;
    color: #fbf7ef;
    box-shadow: 0 4px 14px -4px rgba(178, 90, 58, 0.5);
}
.mark-primary:hover {
    background: #9a4a2e;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px -4px rgba(178, 90, 58, 0.55);
}
.mark-quiet {
    background: transparent;
    color: #4a574d;
    border: 1px solid #d9d2c2;
}
.mark-quiet:hover {
    background: #efe7d6;
    border-color: #c4bba6;
}
.mark-large {
    padding: 18px 44px;
    font-size: 17px;
}

/* ---- Demo video (vista) --------------------------------------------- */
.vista {
    padding: 80px 0;
    background: #faf5ea;
}
.vista-bezel { max-width: 1040px; }
.vista-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #1f2d24;
    box-shadow: 0 20px 50px -16px rgba(31, 45, 36, 0.32);
    border: 1px solid #e6dfcf;
}
.vista-player {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
}

/* ---- Screenshot gallery (panorama) ---------------------------------- */
.panorama {
    padding: 100px 0;
}
.panorama-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.vignette {
    margin: 0;
    background: #fbf7ef;
    border: 1px solid #e6dfcf;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.vignette:hover {
    transform: translateY(-2px);
    border-color: #d9c9a7;
    box-shadow: 0 14px 32px -14px rgba(31, 45, 36, 0.22);
}
.vignette img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}
.vignette-caption {
    padding: 16px 20px 18px;
    color: #4a574d;
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid #efe7d6;
}

@media (max-width: 720px) {
    .panorama-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .vista { padding: 60px 0; }
    .panorama { padding: 60px 0; }
}

/* ---- Pulse (problem statement) --------------------------------------- */
.pulse { padding: 80px 0; text-align: center; }
.pulse-bezel { max-width: 760px; }
.pulse-line {
    font-family: Georgia, serif;
    font-size: 24px;
    line-height: 1.5;
    color: #4a574d;
    margin-bottom: 16px;
}
.pulse-strong {
    color: #1f2d24;
    font-weight: 500;
}

/* ---- Section primitives shared across feature/comparison/etc -------- */
.section-peak {
    font-family: Georgia, serif;
    font-size: 40px;
    text-align: center;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #1f2d24;
}
.section-tagline {
    text-align: center;
    color: #6b6555;
    font-size: 17px;
    margin: 12px 0 56px;
    font-style: italic;
}

/* ---- Features (tools) ------------------------------------------------ */
.tools {
    padding: 100px 0;
    background: #faf5ea;
}
.orchard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.glade {
    background: #fbf7ef;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid #e6dfcf;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.glade:hover {
    transform: translateY(-2px);
    border-color: #d9c9a7;
    box-shadow: 0 12px 28px -12px rgba(31, 45, 36, 0.18);
}
.glade-glyph {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1;
}
.glade-title {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1f2d24;
}
.glade-current {
    font-size: 15px;
    color: #4a574d;
    line-height: 1.6;
}

/* ---- Comparison (parallels) ------------------------------------------ */
.parallels { padding: 100px 0; }
.parallels-frame {
    border: 1px solid #e6dfcf;
    border-radius: 14px;
    overflow: hidden;
    background: #fbf7ef;
}
.parallels-grid {
    width: 100%;
    border-collapse: collapse;
}
.parallels-grid th,
.parallels-grid td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid #efe7d6;
    font-size: 15px;
    line-height: 1.55;
    vertical-align: top;
}
.parallels-grid thead th {
    background: #f0e8d8;
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    color: #1f2d24;
}
.parallels-grid thead th:nth-child(2) { color: #b25a3a; }
.parallels-grid tbody th {
    font-weight: 500;
    color: #4a574d;
    width: 220px;
    background: #f8f1e0;
}
.parallels-grid tr:last-child th,
.parallels-grid tr:last-child td { border-bottom: 0; }
.parallels-coda {
    margin: 36px auto 0;
    text-align: center;
    color: #4a574d;
    font-size: 16px;
    max-width: 720px;
    font-style: italic;
    line-height: 1.6;
}

/* ---- How it works (route) -------------------------------------------- */
.route {
    padding: 100px 0;
    background: #faf5ea;
}
.route-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    counter-reset: route-stepnum;
}
.route-step {
    text-align: center;
    padding: 0 8px;
}
.route-number {
    font-family: Georgia, serif;
    font-size: 44px;
    line-height: 1;
    color: #fff;
    background: #b25a3a;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(178, 90, 58, 0.25);
}
.route-step-title {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1f2d24;
}
.route-step p {
    color: #4a574d;
    font-size: 15px;
    line-height: 1.6;
}

/* ---- Pricing (homestead) --------------------------------------------- */
.homestead { padding: 100px 0; }
.homestead-tile {
    max-width: 460px;
    margin: 0 auto;
    background: #fbf7ef;
    border: 1px solid #e6dfcf;
    border-radius: 18px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 18px 44px -14px rgba(31, 45, 36, 0.18);
    position: relative;
}
.homestead-tile::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b25a3a, #5e7c5b);
    border-radius: 18px 18px 0 0;
}
.homestead-name {
    font-family: Georgia, serif;
    font-size: 14px;
    color: #4a574d;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}
.homestead-price {
    font-family: Georgia, serif;
    font-size: 80px;
    font-weight: 400;
    color: #1f2d24;
    line-height: 1;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
}
.homestead-currency {
    font-size: 36px;
    color: #6b6555;
    margin-top: 14px;
}
.homestead-cycle {
    color: #6b6555;
    font-size: 15px;
    margin-bottom: 32px;
}
.homestead-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    color: #4a574d;
}
.homestead-list li {
    padding: 11px 0 11px 26px;
    border-bottom: 1px solid #f0e8d8;
    font-size: 15px;
    position: relative;
}
.homestead-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5e7c5b;
    font-weight: 600;
}
.homestead-list li:last-child { border-bottom: 0; }
.homestead-aside {
    margin-top: 24px;
    color: #6b6555;
    font-size: 13px;
    line-height: 1.5;
}

/* ---- FAQ (atlas) ---------------------------------------------------- */
.atlas {
    padding: 100px 0;
}
.atlas-bezel { max-width: 820px; }
.atlas-roll {
    background: #fbf7ef;
    border: 1px solid #e6dfcf;
    border-radius: 14px;
    overflow: hidden;
}
.folio {
    border-bottom: 1px solid #efe7d6;
}
.folio:last-child { border-bottom: 0; }
.folio[open] { background: #f8f1e0; }

.folio-question {
    list-style: none;
    cursor: pointer;
    padding: 22px 56px 22px 28px;
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    color: #1f2d24;
    position: relative;
    transition: color 0.15s;
    line-height: 1.45;
}
/* Hide default browser disclosure triangle */
.folio-question::-webkit-details-marker { display: none; }
.folio-question::marker { content: ""; }

/* Custom +/- indicator */
.folio-question::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: Georgia, serif;
    font-size: 24px;
    color: #b25a3a;
    line-height: 1;
    transition: transform 0.2s, color 0.15s;
}
.folio[open] .folio-question::after {
    content: "−";
    color: #1f2d24;
}
.folio-question:hover { color: #b25a3a; }

.folio-answer {
    padding: 0 28px 24px;
    color: #4a574d;
    line-height: 1.65;
    font-size: 15px;
}
.folio-answer p { margin-bottom: 12px; }
.folio-answer p:last-child { margin-bottom: 0; }
.folio-link {
    color: #b25a3a;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.folio-link:hover { color: #9a4a2e; }

@media (max-width: 540px) {
    .folio-question {
        padding: 18px 48px 18px 20px;
        font-size: 16px;
    }
    .folio-question::after { right: 18px; }
    .folio-answer { padding: 0 20px 20px; }
}

/* ---- Contact form (harbor) ------------------------------------------ */
.harbor {
    padding: 100px 0;
    background: #faf5ea;
}
.harbor-bezel { max-width: 720px; }
.harbor-form {
    background: #fbf7ef;
    border: 1px solid #e6dfcf;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 12px 32px -16px rgba(31, 45, 36, 0.18);
}
.harbor-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.harbor-field {
    display: block;
    margin-bottom: 18px;
}
.harbor-row .harbor-field { margin-bottom: 0; }
.harbor-tag {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #4a574d;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.harbor-form input[type="text"],
.harbor-form input[type="email"],
.harbor-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: #f5efe4;
    border: 1px solid #d9d2c2;
    border-radius: 8px;
    color: #1f2d24;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.5;
    transition: border-color 0.15s, background 0.15s;
}
.harbor-form input:focus,
.harbor-form textarea:focus {
    outline: none;
    border-color: #b25a3a;
    background: #fbf7ef;
}
.harbor-form textarea {
    resize: vertical;
    min-height: 120px;
}
.harbor-form button {
    margin-top: 6px;
    cursor: pointer;
    border: none;
    width: 100%;
}
.harbor-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ---- Newsletter (beacon) -------------------------------------------- */
.beacon { padding: 80px 0; }
.beacon-bezel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #1f2d24;
    color: #f5efe4;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 16px 40px -16px rgba(31, 45, 36, 0.3);
}
.beacon-title {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fbf7ef;
    letter-spacing: -0.01em;
}
.beacon-current {
    color: #c9c2b1;
    font-size: 15px;
    line-height: 1.55;
}
.beacon-row {
    display: flex;
    gap: 10px;
}
.beacon-form input[type="email"] {
    flex: 1;
    padding: 14px 16px;
    background: #2a3b32;
    border: 1px solid #3d4f44;
    border-radius: 8px;
    color: #fbf7ef;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
}
.beacon-form input[type="email"]::placeholder { color: #8b9489; }
.beacon-form input[type="email"]:focus {
    outline: none;
    border-color: #b25a3a;
    background: #2f4138;
}
.beacon-form button {
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

/* ---- Form status (shared by harbor + beacon) ----------------------- */
.form-status {
    margin-top: 14px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
    line-height: 1.4;
}
.form-status-ok { color: #5e7c5b; }
.form-status-error { color: #b25a3a; }
/* On the dark beacon background, OK/error use lighter tones. */
.form-status-light.form-status-ok { color: #a3c79f; }
.form-status-light.form-status-error { color: #e09474; }

/* ---- Sub-page hero (page-summit, canyon) ---------------------------- */
.page-summit {
    padding: 80px 0 48px;
    text-align: center;
    border-bottom: 1px solid #e6dfcf;
}
.page-summit-bezel { max-width: 760px; }
.page-peak {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #1f2d24;
    margin: 18px 0 18px;
}
.page-current {
    font-size: 17px;
    color: #6b6555;
    line-height: 1.6;
}
.page-current time { font-style: italic; }

.canyon { padding: 80px 0 100px; }
.canyon-bezel { max-width: 760px; }
.canyon-narrow { max-width: 720px; }

/* ---- Guide page (jump nav, sections, lessons, credit list) --------- */
.guide-jump {
    margin-top: 28px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.guide-jump a {
    padding: 8px 18px;
    background: #fbf7ef;
    border: 1px solid #d9d2c2;
    border-radius: 999px;
    color: #4a574d;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.guide-jump a:hover {
    background: #efe7d6;
    color: #b25a3a;
    border-color: #c4bba6;
}
.canyon-tinted { background: #faf5ea; }
.guide-section-peak {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #1f2d24;
    margin-bottom: 8px;
}
.guide-section-current {
    color: #6b6555;
    font-size: 16px;
    margin-bottom: 36px;
    font-style: italic;
}

.lesson {
    padding: 28px 0;
    border-bottom: 1px solid #efe7d6;
}
.lesson:last-child { border-bottom: 0; }
.lesson-number {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #b25a3a;
    background: #f5efe4;
    border: 1px solid #e6dfcf;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.lesson-peak {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #1f2d24;
    margin-bottom: 12px;
    letter-spacing: -0.005em;
}
.lesson p {
    color: #4a574d;
    margin-bottom: 12px;
    line-height: 1.65;
}
.lesson p:last-child { margin-bottom: 0; }
.lesson-tips .lesson-number {
    color: #5e7c5b;
    background: #f0f3eb;
    border-color: #cad4c2;
}

.credit-list {
    list-style: none;
    padding: 0;
}
.credit-list li {
    padding: 14px 0;
    border-bottom: 1px solid #f0e8d8;
    line-height: 1.55;
}
.credit-list li:last-child { border-bottom: 0; }
.credit-list strong {
    color: #1f2d24;
    font-size: 15px;
}
.credit-meta {
    display: inline-block;
    margin-left: 8px;
    font-size: 11px;
    color: #b25a3a;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}
.credit-line {
    display: block;
    margin-top: 4px;
    color: #4a574d;
    font-size: 14px;
}

/* ---- Privacy meadows ------------------------------------------------ */
.meadow {
    padding: 28px 0;
    border-bottom: 1px solid #efe7d6;
}
.meadow:last-child { border-bottom: 0; }
.meadow-peak {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #1f2d24;
    margin-bottom: 14px;
    letter-spacing: -0.005em;
}
.meadow p {
    color: #4a574d;
    margin-bottom: 12px;
    line-height: 1.65;
}
.meadow p:last-child { margin-bottom: 0; }
.meadow-list {
    list-style: none;
    padding: 0;
}
.meadow-list li {
    padding: 8px 0 8px 22px;
    color: #4a574d;
    line-height: 1.6;
    position: relative;
}
.meadow-list li::before {
    content: "·";
    position: absolute;
    left: 6px;
    top: 4px;
    color: #b25a3a;
    font-size: 22px;
    line-height: 1;
}
.meadow code {
    background: #efe7d6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 13px;
    color: #1f2d24;
}
.meadow-link {
    color: #b25a3a;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.meadow-link:hover { color: #9a4a2e; }

/* Founder/personal-note variant of a meadow — softer card, signature line. */
.meadow-note {
    background: #fbf7ef;
    border: 1px solid #e6dfcf;
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 24px;
}
.meadow-note p { font-size: 16px; }
.meadow-signoff {
    margin-top: 18px !important;
    font-style: italic;
    color: #6b6555;
    font-family: Georgia, serif;
    font-size: 16px !important;
}

/* ---- Changelog cairns ------------------------------------------------ */
.cairn-stack {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cairn {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid #efe7d6;
}
.cairn:first-child { padding-top: 0; }
.cairn:last-child { border-bottom: 0; }
.cairn-marker {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}
.cairn-version {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #1f2d24;
    letter-spacing: -0.01em;
}
.cairn-date {
    font-size: 13px;
    color: #6b6555;
    letter-spacing: 0.04em;
}
.cairn-upcoming .cairn-version { color: #b25a3a; }
.cairn-upcoming .cairn-date {
    color: #b25a3a;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    font-size: 11px;
}
.cairn-title {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #1f2d24;
    margin-bottom: 10px;
    letter-spacing: -0.005em;
}
.cairn-body p {
    color: #4a574d;
    margin-bottom: 16px;
    line-height: 1.6;
}
.cairn-subhead {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6b6555;
    margin-top: 18px;
    margin-bottom: 10px;
}
.cairn-list {
    list-style: none;
    padding: 0;
}
.cairn-list li {
    padding: 6px 0 6px 22px;
    color: #4a574d;
    line-height: 1.55;
    position: relative;
    font-size: 15px;
}
.cairn-list li::before {
    content: "·";
    position: absolute;
    left: 6px;
    top: 2px;
    color: #b25a3a;
    font-size: 22px;
    line-height: 1;
}
.cairn-note {
    margin-top: 48px;
    text-align: center;
    color: #6b6555;
    font-style: italic;
}

@media (max-width: 640px) {
    .cairn {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .cairn-marker { padding-top: 0; }
    .page-peak { font-size: 32px; }
}

/* ---- Footer (delta) -------------------------------------------------- */
.delta {
    padding: 48px 0 36px;
    background: #1f2d24;
    color: #d8d2c2;
}
.delta-bezel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}
.delta-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.delta-glyph {
    width: 24px;
    height: 24px;
    border-radius: 5px;
}
.delta-links {
    display: flex;
    gap: 28px;
    justify-content: center;
}
.delta-links a {
    text-decoration: none;
    font-size: 14px;
    color: #d8d2c2;
    transition: color 0.15s;
}
.delta-links a:hover { color: #fbf7ef; }
.delta-coda {
    font-size: 13px;
    color: #8b8478;
}

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 880px) {
    .summit-peak { font-size: 42px; }
    .pulse-line { font-size: 19px; }
    .orchard,
    .route-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .compass { display: none; }
    .delta-bezel {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .delta-brand { justify-content: center; }
    .delta-links { justify-content: center; }
}

@media (max-width: 540px) {
    .bezel { padding: 0 20px; }
    .summit { padding: 60px 0 40px; }
    .summit-peak { font-size: 32px; line-height: 1.15; }
    .summit-current { font-size: 16px; }
    .summit-canvas { margin-top: 40px; border-radius: 10px; }
    .pulse, .tools, .parallels, .route, .homestead {
        padding: 60px 0;
    }
    .section-peak { font-size: 28px; }
    .section-tagline { font-size: 15px; margin-bottom: 36px; }
    .parallels-grid th,
    .parallels-grid td {
        padding: 12px 14px;
        font-size: 13px;
    }
    .parallels-grid tbody th { width: 130px; }
    .homestead-tile { padding: 36px 24px; }
    .homestead-price { font-size: 60px; }
    .homestead-currency { font-size: 28px; margin-top: 10px; }
    .summit-hand { flex-direction: column; align-items: stretch; }
    .mark { text-align: center; }
}
