/* ============================================================
   INNER PAGES — Guildheim marketing inner pages
   Location: /public_html/css/inner.css

   Shared stylesheet for the marketing inner pages
   (about / getting-started / docs). Reuses the Cartographer's
   Scriptorium palette, fonts, and component vocabulary
   established in home.css, so the inner pages read as part of
   the same site as the homepage.

   Loaded standalone — it redeclares the design tokens it needs
   so an inner page only needs this one stylesheet plus the
   marketing nav/footer partials.

   Created: 2026-05-17 — Phase 14 (inner-page restyle)
   Palette: Deep Inkwell · Weathered Plank · Aged Vellum
            Amber Flame · Celestial Midnight · Antique Brass
   ============================================================ */

:root {
    --ink:      #1A1612;
    --ink-2:    #0f0c09;
    --plank:    #2D241E;
    --plank-2:  #3a2f26;
    --vellum:   #E8D9C3;
    --vellum-2: #d9c7ab;
    --vellum-3: #f0e5d3;
    --flame:    #D49B35;
    --flame-2:  #e8b249;
    --flame-3:  #a07420;
    --midnight: #3A4D5F;
    --brass:    #A68952;
    --brass-2:  #c4a468;

    --serif:    "Cormorant Garamond", "EB Garamond", Georgia, serif;
    --display:  "Cinzel", "Trajan Pro", serif;
    --journal:  "IM Fell English", "Cormorant Garamond", serif;

    --shadow-deep: 0 20px 60px rgba(0,0,0,0.6), 0 8px 20px rgba(0,0,0,0.4);
    --shadow-lift: 0 10px 30px rgba(0,0,0,0.5);
    --glow-flame:  0 0 40px rgba(212,155,53,0.35);
    --seam:        1px solid var(--brass);
}

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

body.inner-page {
    background: var(--ink);
    color: var(--vellum);
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(212,155,53,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(58,77,95,0.05) 0%, transparent 50%);
}


/* ==========================================================================
   NAVIGATION  (matches the homepage .nav, restyled onto the SSI partial)
   ========================================================================== */

.landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(15,12,9,0.92) 0%, rgba(15,12,9,0.6) 70%, transparent 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.landing-nav.scrolled {
    padding: 8px 48px;
    background: rgba(15,12,9,0.96);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.landing-nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.landing-nav-brand .logo-text {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    color: var(--vellum-3);
    text-transform: uppercase;
}

.landing-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.landing-nav-links a {
    color: var(--vellum);
    text-decoration: none;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color .3s ease;
}
.landing-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--flame);
    transition: width .35s ease;
    transform: translateX(-50%);
}
.landing-nav-links a:hover { color: var(--flame-2); }
.landing-nav-links a:hover::after { width: 100%; }

.landing-nav-cta {
    padding: 10px 22px !important;
    background: transparent;
    border: 1px solid var(--brass);
    color: var(--vellum) !important;
    transition: all .3s ease;
}
.landing-nav-cta::after { display: none !important; }
.landing-nav-cta:hover {
    background: var(--flame);
    border-color: var(--flame);
    color: var(--ink) !important;
    box-shadow: var(--glow-flame);
}

/* Mobile hamburger */
.landing-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.landing-nav-toggle span {
    width: 24px; height: 2px;
    background: var(--vellum);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}


/* ==========================================================================
   INNER HERO BAND
   ========================================================================== */

.inner-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 160px 32px 110px;
}
.inner-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/home/hero-1.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: innerDrift 28s ease-in-out infinite alternate;
}
@keyframes innerDrift {
    from { transform: scale(1.05) translate(0, 0); }
    to   { transform: scale(1.09) translate(-1%, -1%); }
}
.inner-hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 45%, transparent 25%, rgba(15,12,9,0.88) 92%),
        linear-gradient(to bottom, rgba(15,12,9,0.55) 0%, transparent 38%, rgba(15,12,9,0.96) 100%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    animation: innerRise 1.3s cubic-bezier(.2,.7,.2,1) both;
    animation-delay: .15s;
}
@keyframes innerRise {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

.inner-hero-eyebrow {
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: 0.5em;
    color: var(--brass-2);
    text-transform: uppercase;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.inner-hero-eyebrow::before,
.inner-hero-eyebrow::after {
    content: '';
    height: 1px;
    width: 56px;
    background: linear-gradient(to right, transparent, var(--brass));
}
.inner-hero-eyebrow::after {
    background: linear-gradient(to left, transparent, var(--brass));
}

.inner-hero h1 {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(36px, 5.4vw, 66px);
    line-height: 1.08;
    letter-spacing: 0.02em;
    color: var(--vellum-3);
    margin-bottom: 26px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.85);
}
.inner-hero h1 .accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    color: var(--flame-2);
}

.inner-hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.55;
    color: var(--vellum-2);
    max-width: 620px;
    margin: 0 auto;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}


/* ==========================================================================
   ORNAMENTAL DIVIDER  (same as homepage)
   ========================================================================== */

.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 44px;
    gap: 28px;
}
.divider--footer { background-color: var(--ink-2); }
.divider-img {
    height: 56px;
    width: auto;
    opacity: 0.82;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.divider-line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brass), transparent);
}


/* ==========================================================================
   GENERIC SECTION
   ========================================================================== */

.inner-section {
    padding: 80px 48px;
    position: relative;
}
.inner-section--alt {
    background: var(--ink-2);
    border-top: 1px solid rgba(166,137,82,0.18);
    border-bottom: 1px solid rgba(166,137,82,0.18);
}

.section-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: 0.5em;
    color: var(--flame);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-title {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.15;
    color: var(--vellum-3);
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}
.section-title .italic {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    color: var(--flame-2);
    letter-spacing: 0;
}
.section-sub {
    font-family: var(--serif);
    font-size: 21px;
    font-style: italic;
    color: var(--vellum-2);
    line-height: 1.6;
}


/* ==========================================================================
   PROSE BLOCK  (centered narrative column)
   ========================================================================== */

.prose-block {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--journal);
    font-size: 20px;
    line-height: 1.75;
    color: var(--vellum-2);
}
.prose-block p { margin-bottom: 1.5rem; }
.prose-block p:last-child { margin-bottom: 0; }
.prose-block strong {
    color: var(--vellum-3);
    font-weight: 700;
}
.prose-block em { color: var(--vellum); }
.prose-block a {
    color: var(--flame-2);
    text-decoration: none;
    border-bottom: 1px solid rgba(212,155,53,0.4);
    transition: color .2s ease, border-color .2s ease;
}
.prose-block a:hover {
    color: var(--flame);
    border-bottom-color: var(--flame);
}

.prose-block h2,
.prose-block h3 {
    font-family: var(--display);
    color: var(--vellum-3);
    letter-spacing: 0.02em;
}
.prose-block h2 {
    font-size: 26px;
    font-weight: 500;
    margin: 2.6rem 0 1.1rem;
}
.prose-block h2:first-child { margin-top: 0; }
.prose-block h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--flame);
    margin: 2.1rem 0 0.9rem;
}

.prose-block ul {
    list-style: none;
    margin: 1.6rem 0;
}
.prose-block ul li {
    padding: 10px 0 10px 28px;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--vellum);
    position: relative;
    border-bottom: 1px dashed rgba(166,137,82,0.3);
}
.prose-block ul li:last-child { border-bottom: none; }
.prose-block ul li::before {
    content: '✦';
    position: absolute;
    left: 0; top: 13px;
    color: var(--flame);
    font-size: 14px;
}
.prose-block ul li strong { color: var(--vellum-3); }

.prose-block code {
    font-family: "Courier New", monospace;
    font-size: 0.85em;
    background: rgba(166,137,82,0.14);
    border: 1px solid rgba(166,137,82,0.28);
    color: var(--flame-2);
    padding: 1px 7px;
    border-radius: 3px;
}

/* Small italic metadata line at the end of a content section. */
.prose-meta {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--brass-2);
    text-align: center;
    max-width: 620px;
    margin: 2.6rem auto 0;
}

/* Left-aligned metadata line at the START of a prose block
   (e.g. "Last updated: …" on legal pages). */
.prose-block .content-meta {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--brass-2);
    margin: 0 0 1.8rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px dashed rgba(166,137,82,0.3);
}


/* ==========================================================================
   ICON CARD GRID  (design principles / feature cards)
   ========================================================================== */

.card-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.icon-card {
    background: linear-gradient(180deg, rgba(45,36,30,0.92), rgba(26,22,18,0.96));
    border: 1px solid rgba(166,137,82,0.25);
    padding: 42px 30px 34px;
    text-align: center;
    position: relative;
    transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .5s ease, box-shadow .5s ease;
    overflow: hidden;
}
.icon-card::before,
.icon-card::after {
    content: '';
    position: absolute;
    width: 24px; height: 24px;
    border: 1px solid var(--brass);
    transition: all .4s ease;
}
.icon-card::before {
    top: 8px; left: 8px;
    border-right: none;
    border-bottom: none;
}
.icon-card::after {
    bottom: 8px; right: 8px;
    border-left: none;
    border-top: none;
}
.icon-card:hover {
    transform: translateY(-6px);
    border-color: var(--flame);
    box-shadow: var(--shadow-lift), 0 0 40px rgba(212,155,53,0.15);
}
.icon-card:hover::before,
.icon-card:hover::after {
    border-color: var(--flame-2);
    width: 32px; height: 32px;
}

.icon-card-img {
    height: 84px;
    width: auto;
    margin: 0 auto 22px;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.6));
    transition: transform .5s ease;
}
.icon-card:hover .icon-card-img {
    transform: scale(1.08) rotate(-3deg);
}

.icon-card-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.14em;
    color: var(--vellum-3);
    text-transform: uppercase;
    margin-bottom: 13px;
}
.icon-card-desc {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--vellum-2);
    line-height: 1.55;
}
.icon-card-desc strong { color: var(--vellum-3); }


/* ==========================================================================
   STEP LIST  (numbered walkthrough — getting-started)
   ========================================================================== */

.step-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.step-item {
    display: flex;
    gap: 26px;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(45,36,30,0.78), rgba(26,22,18,0.9));
    border: 1px solid rgba(166,137,82,0.22);
    padding: 30px 32px;
    position: relative;
    transition: border-color .4s ease, transform .4s ease;
}
.step-item:hover {
    border-color: rgba(212,155,53,0.55);
    transform: translateX(4px);
}
.step-number {
    flex-shrink: 0;
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 24px;
    color: var(--flame-2);
    background: rgba(212,155,53,0.08);
    border: 1px solid var(--brass);
    border-radius: 50%;
}
.step-body { flex: 1; }
.step-body h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.05em;
    color: var(--vellum-3);
    margin-bottom: 8px;
}
.step-body p {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.6;
    color: var(--vellum-2);
    margin-bottom: 0.8rem;
}
.step-body p:last-child { margin-bottom: 0; }
.step-body a {
    color: var(--flame-2);
    text-decoration: none;
    border-bottom: 1px solid rgba(212,155,53,0.4);
    transition: color .2s ease, border-color .2s ease;
}
.step-body a:hover { color: var(--flame); border-bottom-color: var(--flame); }
.step-body strong { color: var(--vellum-3); }


/* ==========================================================================
   CINEMATIC PANEL  (alternating text-over-image band)
   ========================================================================== */

.panel {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink-2);
}
.panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0.95;
    border-top: var(--seam);
    border-bottom: var(--seam);
}
.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45,36,30,0.96) 0%, rgba(45,36,30,0.78) 38%, rgba(45,36,30,0.15) 72%, transparent 100%);
}
.panel--right .panel-bg { background-position: center left; }
.panel--right .panel-overlay {
    background: linear-gradient(270deg, rgba(45,36,30,0.96) 0%, rgba(45,36,30,0.78) 38%, rgba(45,36,30,0.15) 72%, transparent 100%);
}

.panel-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 84px 48px;
}
.panel--right .panel-content {
    display: flex;
    justify-content: flex-end;
}
.panel-inner { max-width: 520px; }
.panel-inner .section-eyebrow { text-align: left; }
.panel-inner .section-title {
    text-align: left;
    font-size: clamp(28px, 3.4vw, 42px);
    margin-bottom: 18px;
}

.panel-body {
    font-family: var(--journal);
    font-size: 19px;
    line-height: 1.7;
    color: var(--vellum-2);
}
.panel-body p { margin-bottom: 1.2rem; }
.panel-body p:last-child { margin-bottom: 0; }
.dropcap {
    font-family: var(--display);
    font-weight: 700;
    float: left;
    font-size: 76px;
    line-height: 0.8;
    padding: 8px 14px 2px 0;
    color: var(--flame-2);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}


/* ==========================================================================
   CALL-TO-ADVENTURE BAND
   ========================================================================== */

.call {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.call-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/home/background-room.webp');
    background-size: cover;
    background-position: center;
    border-top: var(--seam);
    border-bottom: var(--seam);
}
.call-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(15,12,9,0.18) 0%, rgba(15,12,9,0.72) 70%, rgba(15,12,9,0.9) 100%);
}
.call-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 100px 48px;
}
.call h2 {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(32px, 4.4vw, 54px);
    line-height: 1.12;
    color: var(--vellum-3);
    margin-bottom: 22px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.9);
}
.call h2 .accent {
    font-family: var(--serif);
    font-style: italic;
    color: var(--flame-2);
    font-weight: 500;
}
.call-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 21px;
    color: var(--vellum-2);
    margin-bottom: 40px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}


/* ==========================================================================
   BUTTONS  (same vocabulary as homepage)
   ========================================================================== */

.cta-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
    padding: 16px 34px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all .35s ease;
    border: none;
}
.btn-primary {
    background: linear-gradient(to bottom, var(--flame-2), var(--flame-3));
    color: var(--ink);
    box-shadow: 0 4px 0 var(--flame-3), 0 10px 24px rgba(0,0,0,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--flame-3), 0 14px 32px rgba(212,155,53,0.4);
    color: var(--ink);
}
.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--flame-3), 0 4px 8px rgba(0,0,0,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--vellum);
    border: 1px solid var(--brass);
}
.btn-secondary:hover {
    background: rgba(166,137,82,0.12);
    border-color: var(--flame-2);
    color: var(--flame-2);
}


/* ==========================================================================
   FOOTER  (matches the homepage footer, restyled onto the SSI partial)
   ========================================================================== */

.landing-footer {
    background: var(--ink-2);
    border-top: 1px solid rgba(166,137,82,0.2);
    padding: 64px 48px 26px;
}
.landing-footer .landing-container {
    max-width: 1180px;
    margin: 0 auto;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 0;
}
.footer-brand-block {
    max-width: 300px;
}
.footer-brand {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}
.footer-brand .logo-text {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--vellum-3);
    text-transform: uppercase;
}
.footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--brass-2);
    line-height: 1.55;
}

.footer-links-group {
    display: contents;
}
.footer-col { text-align: left; }
.footer-col-title {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--flame);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col-links a {
    color: var(--vellum-2);
    text-decoration: none;
    font-family: var(--serif);
    font-size: 16px;
    transition: color .2s ease;
}
.footer-col-links a:hover { color: var(--flame-2); }

.footer-bottom {
    max-width: 1180px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(166,137,82,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--serif);
    font-size: 14px;
    color: var(--brass);
    font-style: italic;
}
.footer-copyright a {
    color: var(--brass-2);
    text-decoration: none;
}
.footer-copyright a:hover { color: var(--flame-2); }
.footer-legal-links {
    display: flex;
    gap: 20px;
}
.footer-legal-links a {
    color: var(--brass);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-legal-links a:hover { color: var(--flame-2); }


/* ==========================================================================
   SCROLL-REVEAL  (progressive enhancement)
   Content is visible by default. The hidden start-state only applies once
   JS adds .js-reveal to <body> — so if JS fails, cards never stay invisible.
   ========================================================================== */

.js-reveal .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.js-reveal .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 960px) {
    .landing-nav { padding: 12px 20px; }
    .landing-nav.scrolled { padding: 10px 20px; }
    .landing-nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(15,12,9,0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(166,137,82,0.3);
        padding: 12px 0;
    }
    .landing-nav-links.open { display: flex; }
    .landing-nav-links a {
        width: 100%;
        padding: 14px 24px;
    }
    .landing-nav-links a::after { display: none; }
    .landing-nav-cta {
        margin: 8px 24px;
        text-align: center;
        justify-content: center;
    }
    .landing-nav-toggle { display: flex; }

    .inner-hero { padding: 130px 24px 80px; min-height: 52vh; }
    .inner-section { padding: 60px 24px; }
    .inner-hero-eyebrow::before,
    .inner-hero-eyebrow::after { width: 30px; }

    .card-grid--2,
    .card-grid--3,
    .card-grid--4 { grid-template-columns: 1fr; }

    .panel-content { padding: 60px 24px; }
    .panel--right .panel-content { justify-content: flex-start; }
    .panel-overlay,
    .panel--right .panel-overlay {
        background: linear-gradient(180deg, rgba(15,12,9,0.78) 0%, rgba(15,12,9,0.92) 100%);
    }

    .step-item { padding: 24px 22px; gap: 18px; }
    .step-number { width: 48px; height: 48px; font-size: 20px; }

    .footer-content { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-row { flex-direction: column; }
    .cta-row .btn-primary,
    .cta-row .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
