/* ═══════════════════════════════════════════════════════════════
   Frantz Landing Page V2 - "Nordlys"
   Editorial journal · asymmetric grid · paper texture
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Nordlys palette */
    --c-ink: #0a0e27;
    --c-ink-soft: #1a1f3a;
    --c-paper: #f5f1e8;
    --c-paper-warm: #fff9ec;
    --c-accent: #ff6b35;
    --c-accent-deep: #d44d1c;
    --c-accent-soft: #fff4ec;
    --c-rule: #d4cdb8;
    --c-rule-soft: #e8e3d4;
    --c-text: #1a1a1a;
    --c-muted: #5a5550;

    /* Typography */
    --f-display: 'Newsreader', 'Times New Roman', serif;
    --f-body: 'Inter', system-ui, sans-serif;
    --f-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spatial */
    --content-max: 720px;
    --content-wide: 1180px;
    --hero-h: 100vh;
    --t: 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv11";
    position: relative;
}

/* Paper noise texture overlay - subtle character */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

a {
    color: var(--c-accent-deep);
    text-decoration-skip-ink: auto;
    transition: color var(--t);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

a:hover { color: var(--c-accent); }

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

/* ═══════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════ */
.fr-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 200;
    pointer-events: none;
    background: transparent;
}

.fr-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--c-accent);
    transition: width 0.1s linear;
    will-change: width;
}

/* ═══════════════════════════════════════
   SKIP LINK
   ═══════════════════════════════════════ */
.fr-skip {
    position: fixed;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 20px;
    background: var(--c-accent);
    color: var(--c-paper);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

.fr-skip:focus { top: 0; outline: none; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.fr-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--t), padding var(--t);
    color: var(--c-paper);
}

.fr-header--scrolled {
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    padding: 14px 32px;
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-rule);
}

.fr-header__brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    transition: opacity var(--t);
}

.fr-header__brand:hover { opacity: 0.85; }

.fr-header__logo {
    display: block;
    max-height: 32px;
    width: auto;
    /* Logo is dark — invert to white over dark hero */
    filter: brightness(0) invert(1);
    transition: filter var(--t), max-height var(--t);
}

.fr-header--scrolled .fr-header__logo {
    /* Restore original colors when header is solid */
    filter: none;
}

@media (min-width: 1024px) {
    .fr-header__logo { max-height: 38px; }
}

@media (min-width: 1440px) {
    .fr-header__logo { max-height: 44px; }
}

.fr-header__meta {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ═══════════════════════════════════════
   HERO - Full-bleed editorial cover
   ═══════════════════════════════════════ */
.fr-hero {
    position: relative;
    min-height: var(--hero-h);
    overflow: hidden;
    background: var(--c-ink);
    color: var(--c-paper);
    isolation: isolate;
}

.fr-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fr-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-pos, center);
    animation: kenburns 18s cubic-bezier(0.25, 0, 0.4, 1) forwards;
}

@keyframes kenburns {
    from { transform: scale(1.02); }
    to { transform: scale(1.10); }
}

.fr-hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(10, 14, 39, 0.55) 0%,
            rgba(10, 14, 39, 0.15) 20%,
            rgba(10, 14, 39, 0.15) 45%,
            rgba(10, 14, 39, 0.60) 80%,
            rgba(10, 14, 39, 0.92) 100%),
        linear-gradient(135deg,
            rgba(10, 14, 39, 0.35) 0%,
            rgba(10, 14, 39, 0) 50%);
}

/* Hero structural overlay - chapter num, year, signature */
.fr-hero__frame {
    position: relative;
    z-index: 2;
    min-height: var(--hero-h);
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: minmax(0, 1fr);
    padding: 88px 24px 32px;
}

.fr-hero__frame > * { min-width: 0; }

@media (min-width: 640px) {
    .fr-hero__frame { padding: 100px 32px 40px; }
}

.fr-hero__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--f-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.7);
}

.fr-hero__num {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.fr-hero__num-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.55);
}

.fr-hero__num-val {
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 500;
    font-style: italic;
    color: var(--c-accent);
}

.fr-hero__year {
    text-align: right;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.1;
    color: rgba(245, 241, 232, 0.55);
}

.fr-hero__year strong {
    display: block;
    margin-top: 2px;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--c-paper);
}

.fr-hero__content {
    align-self: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
}

.fr-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--f-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 20px;
}

.fr-hero__kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--c-accent);
}

.fr-hero__title {
    font-family: var(--f-display);
    font-size: clamp(4rem, 16vw, 11rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: var(--c-paper);
    text-wrap: balance;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 28px;
}

.fr-hero__tagline {
    font-family: var(--f-display);
    font-size: clamp(1.25rem, 2.6vw, 2rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--c-paper);
    max-width: 28ch;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(20px);
    animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.55s forwards;
}

.fr-hero__tagline em {
    font-style: italic;
    color: var(--c-accent);
    font-weight: 500;
}

.fr-hero__title em {
    font-style: italic;
    color: var(--c-accent);
    font-weight: 500;
}

.fr-hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fr-hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.fr-hero__title-line:nth-child(2) { animation-delay: 0.25s; }
.fr-hero__title-line:nth-child(3) { animation-delay: 0.4s; }

@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}

.fr-hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.fr-hero__loc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-paper);
}

.fr-hero__loc svg {
    width: 18px;
    height: 18px;
    color: var(--c-accent);
}

.fr-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--c-paper);
    font-family: var(--f-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--c-accent);
    transition: gap var(--t);
}

.fr-hero__scroll:hover {
    color: var(--c-paper);
    gap: 16px;
}

.fr-hero__scroll svg { animation: drift 2s ease-in-out infinite; }

@keyframes drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.fr-hero__sig {
    display: none;
    text-align: right;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.55);
}

@media (min-width: 640px) {
    .fr-hero__sig { display: block; }
}

.fr-hero__sig strong {
    display: block;
    color: var(--c-paper);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: none;
    font-family: var(--f-display);
    font-style: italic;
}

/* ═══════════════════════════════════════
   CONTAINERS
   ═══════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 28px;
}

.container--wide {
    max-width: var(--content-wide);
}

.section { padding: 56px 0; }

/* ═══════════════════════════════════════
   CHAPTER MARKER (signature element)
   ═══════════════════════════════════════ */
.chapter {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    font-family: var(--f-mono);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-ink);
}

.chapter::before {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--c-accent);
}

/* ═══════════════════════════════════════
   INTRO - Editorial with dropcap
   ═══════════════════════════════════════ */
.intro {
    padding: 64px 0 56px;
    border-bottom: 1px solid var(--c-rule);
}

@media (min-width: 768px) {
    .intro { padding: 80px 0 64px; }
}

.intro__lead {
    font-family: var(--f-display);
    font-size: clamp(1.65rem, 3.6vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--c-ink);
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: 32px;
    max-width: 28ch;
}

.intro__lead em {
    font-style: italic;
    color: var(--c-accent-deep);
}

.intro__body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--c-text);
    max-width: 56ch;
}

.intro__body p + p { margin-top: 16px; }

/* ═══════════════════════════════════════
   FULL-BLEED IMAGE
   ═══════════════════════════════════════ */
.fullimg {
    width: 100%;
    margin: 0 auto;
}

.fullimg img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 70vh;
    object-fit: cover;
    background: var(--c-ink);
}

@media (min-width: 640px) { .fullimg img { aspect-ratio: 16 / 9; } }
@media (min-width: 1024px) { .fullimg img { aspect-ratio: 21 / 9; max-height: 600px; } }
@media (min-width: 1400px) {
    .fullimg { max-width: 1600px; padding: 0 32px; }
    .fullimg img { aspect-ratio: 16 / 9; max-height: 720px; border-radius: 8px; }
}

.fullimg__cap {
    display: block;
    max-width: var(--content-max);
    margin: 14px auto 0;
    padding: 0 28px;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--c-muted);
    text-align: center;
}

@media (min-width: 1024px) { .fullimg__cap { font-size: 1.1rem; margin-top: 18px; } }

/* ═══════════════════════════════════════
   CTA STRIP - Editorial
   ═══════════════════════════════════════ */
.cta-strip {
    background: var(--c-ink);
    color: var(--c-paper);
    padding: 56px 0;
}

.cta-strip__inner {
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-strip__inner { grid-template-columns: 1fr auto; gap: 48px; }
}

.cta-strip__hook {
    font-family: var(--f-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 24ch;
    text-wrap: balance;
}

.cta-strip__hook em {
    font-style: italic;
    color: var(--c-accent);
}

.cta-strip__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.cta-strip__actions .btn { width: 100%; }

@media (min-width: 640px) {
    .cta-strip__actions {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
    }
    .cta-strip__actions .btn { width: auto; }
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 28px;
    font-family: var(--f-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid transparent;
    background: none;
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
    text-decoration: none;
    line-height: 1;
    color: inherit;
}

.btn::after {
    content: '\2192';
    font-family: var(--f-display);
    font-size: 1.15rem;
    transition: transform var(--t);
}

.btn:hover::after { transform: translateX(4px); }

.btn--primary {
    background: var(--c-accent);
    color: var(--c-ink);
    border-color: var(--c-accent);
}

.btn--primary:hover {
    background: var(--c-accent-deep);
    border-color: var(--c-accent-deep);
    color: var(--c-paper);
}

.btn--ghost {
    background: transparent;
    color: var(--c-paper);
    border-color: rgba(245, 241, 232, 0.4);
}

.btn--ghost:hover {
    border-color: var(--c-paper);
    background: rgba(245, 241, 232, 0.08);
}

.btn--outline {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-ink);
}

.btn--outline:hover {
    background: var(--c-ink);
    color: var(--c-paper);
}

/* ═══════════════════════════════════════
   CONTENT (Om stillingen)
   ═══════════════════════════════════════ */
.content {
    padding: 64px 0;
    background: var(--c-paper-warm);
    border-bottom: 1px solid var(--c-rule);
}

@media (min-width: 768px) {
    .content { padding: 80px 0; }
}

.content__sidebar { display: none; }

.content__sidebar-label {
    display: block;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 16px;
}

.content__sidebar-summary {
    font-family: var(--f-display);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--c-muted);
}

.prose {
    font-family: var(--f-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--c-text);
    max-width: 65ch;
}

.prose p { margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }

.prose h2 {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 500;
    color: var(--c-ink);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 72px 0 24px;
    text-wrap: balance;
}

.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--c-accent-deep); }

.prose h3 {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--c-ink);
    margin: 56px 0 16px;
    padding-top: 32px;
    border-top: 1px solid var(--c-rule);
    line-height: 1.15;
    text-wrap: balance;
}

.prose h3:first-of-type {
    padding-top: 0;
    border-top: none;
    margin-top: 40px;
}

.prose ul { list-style: none; padding: 0; margin-bottom: 24px; }

.prose li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    line-height: 1.65;
}

.prose li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 14px;
    height: 1px;
    background: var(--c-accent);
    opacity: 0.5;
}

.prose li.key::before {
    width: 22px;
    height: 2px;
    top: 12px;
    opacity: 1;
}

.prose li.key strong {
    color: var(--c-ink);
    font-weight: 600;
}

.prose li.key strong + * {
    color: var(--c-muted);
}

.ps-note {
    margin: 64px 0 0;
    padding-top: 32px;
    border-top: 1px solid var(--c-rule);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: baseline;
}

.ps-note__label {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--c-accent);
    letter-spacing: -0.01em;
    line-height: 1;
}

.ps-note p {
    margin: 0;
    font-family: var(--f-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--c-text);
    max-width: 56ch;
}

@media (max-width: 639px) {
    .ps-note {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ═══════════════════════════════════════
   META / FOOTER
   ═══════════════════════════════════════ */
.meta {
    padding: 64px 0;
    background: var(--c-paper);
}

.meta__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    row-gap: 14px;
    align-items: baseline;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--c-rule);
}

.meta__item {
    display: contents;
}

.meta__label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-muted);
    white-space: nowrap;
}

.meta__value {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--c-ink);
    text-align: right;
}

@media (min-width: 768px) {
    .meta__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .meta__item { display: block; padding: 0 28px; border-right: 1px solid var(--c-rule); }
    .meta__item:first-child { padding-left: 0; }
    .meta__item:last-child { padding-right: 0; border-right: none; }

    .meta__label { display: block; margin-bottom: 6px; }
    .meta__value { text-align: left; font-size: 1.2rem; }
}

.subscribe {
    text-align: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--c-rule);
}

.subscribe__heading {
    font-family: var(--f-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--c-muted);
    margin-bottom: 20px;
}

.subscribe .btn { width: 100%; }
@media (min-width: 640px) { .subscribe .btn { width: auto; } }

.contact { padding: 56px 0; }

.contact__title {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 20px;
}

.contact__body { font-size: 1rem; line-height: 1.75; color: var(--c-text); }
.contact__body p { margin-bottom: 6px; }
.contact__body strong { color: var(--c-ink); }

/* ═══════════════════════════════════════
   SHARE
   ═══════════════════════════════════════ */
.share {
    display: flex;
    gap: 0;
    padding: 32px 0 8px;
    border-top: 1px solid var(--c-rule);
    align-items: center;
}

.share__label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-right: 20px;
}

.share__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--c-muted);
    font-size: 0.95rem;
    cursor: pointer;
    transition: color var(--t), background var(--t), border-color var(--t);
    border: 1px solid var(--c-rule);
    background: transparent;
    margin-left: -1px;
}

.share__btn:first-of-type { margin-left: 0; }

.share__btn:hover, .share__btn:focus-visible {
    color: var(--c-paper);
    background: var(--c-ink);
    border-color: var(--c-ink);
    z-index: 1;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
    padding: 64px 0;
    background: var(--c-ink);
    color: var(--c-paper);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about { padding: 80px 0; }
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, var(--c-accent) 0%, transparent 70%);
    opacity: 0.08;
    pointer-events: none;
}

.about__eyebrow {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 20px;
}

.about__heading {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--c-paper);
    margin-bottom: 28px;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.about__heading em {
    font-style: italic;
    color: var(--c-accent);
}

.about__body {
    color: rgba(245, 241, 232, 0.85);
    max-width: 60ch;
    line-height: 1.75;
}

.about__body p + p { margin-top: 16px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--c-paper);
    border-top: 1px solid var(--c-rule);
    padding: 48px 32px;
    text-align: center;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    text-decoration: none;
    transition: opacity var(--t);
}

.footer__brand:hover { opacity: 0.75; }

.footer__logo {
    display: block;
    max-height: 32px;
    width: auto;
}

.footer__tag {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 24px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__links a {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
    text-decoration: none;
}

.footer__links a:hover { color: var(--c-accent-deep); }

/* ═══════════════════════════════════════
   STICKY CTA (mobile only)
   ═══════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--c-ink);
    color: var(--c-paper);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
    padding: 8px 16px;
}

.sticky-cta--visible { transform: translateY(0); pointer-events: auto; }

.sticky-cta__inner { display: flex; gap: 12px; }
.sticky-cta .btn { flex: 1; min-height: 44px; }
.sticky-cta .btn--primary { color: var(--c-ink); }

@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* ═══════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .fr-hero__title-line { opacity: 1; transform: none; animation: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (min-width: 1024px) {
    .fr-hero__frame { padding: 120px 56px 56px; }
    .container { padding: 0 56px; }
    .section { padding: 96px 0; }

    .content .container--wide {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 80px;
        align-items: start;
    }

    .content__sidebar { display: block; position: sticky; top: 120px; }
}

@media (min-width: 1440px) {
    :root { --content-max: 800px; --content-wide: 1280px; }
    body { font-size: 18px; }
    .fr-hero__frame { padding: 140px 80px 64px; }
    .container { padding: 0 80px; }
    .section { padding: 112px 0; }
}

/* ═══════════════════════════════════════
   PRINT
   ═══════════════════════════════════════ */
@media print {
    body::before, .fr-progress, .sticky-cta, .share { display: none !important; }
    .fr-hero { min-height: auto; background: none !important; color: var(--c-ink); }
    .fr-hero__veil, .fr-hero__media { display: none; }
    .fr-hero__title, .fr-hero__eyebrow, .fr-hero__loc, .fr-hero__num { color: var(--c-ink) !important; }
    .about, .cta-strip { background: none; color: var(--c-ink); }
    .btn { border: 1px solid var(--c-ink); color: var(--c-ink) !important; background: none !important; }
}
