/* ==========================================================================
   Other World Studios — Trionn-inspired editorial design
   ========================================================================== */

:root {
    --bg: #000000;
    --bg-soft: #080808;
    --text: #f2f2f2;
    --text-dim: rgba(242, 242, 242, 0.55);
    --text-muted: rgba(242, 242, 242, 0.32);
    --accent: #4d9fff;
    --accent-glow: rgba(77, 159, 255, 0.45);
    --line: rgba(255, 255, 255, 0.08);
    --line-bright: rgba(255, 255, 255, 0.18);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-h: 108px;
    --pad: clamp(1rem, 4vw, 2.5rem);
    --max: 1200px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
[hidden] { display: none !important; }

/* Film grain */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.marquee-wrap {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    padding: 0.4rem 0;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 2rem;
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem var(--pad);
    max-width: var(--max);
    margin: 0 auto;
    min-height: 72px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: 56px;
    width: auto;
    max-width: min(58vw, 280px);
    mix-blend-mode: lighten;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cta {
    display: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--line-bright);
    border-radius: 999px;
    transition: background 0.25s, border-color 0.25s;
}

.header-cta:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem;
}

.menu-btn-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.menu-btn-icon span {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-btn[aria-expanded="true"] .menu-btn-icon span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-btn-icon span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

/* Full-screen menu */
.site-menu {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.site-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.site-menu-inner {
    text-align: center;
    padding: var(--pad);
}

.menu-links {
    list-style: none;
    margin-bottom: 3rem;
}

.menu-links a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    padding: 0.35rem 0;
    color: var(--text-dim);
    transition: color 0.25s;
}

.menu-links a:hover {
    color: var(--text);
}

.menu-enquiry-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.menu-enquiry a {
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 1rem) var(--pad) 4rem;
    overflow: hidden;
    background: #000000;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 920px;
    width: 100%;
}

.hero-logo-wrap {
    max-width: min(96vw, 820px);
    margin: 0 auto -0.5rem;
    line-height: 0;
    position: relative;
}

.hero-logo-wrap::after {
    content: '';
    position: absolute;
    inset: -8%;
    background: radial-gradient(ellipse 70% 55% at 50% 42%, rgba(77, 159, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: lighten;
    -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 46%, #000 55%, transparent 100%);
    mask-image: radial-gradient(ellipse 92% 88% at 50% 46%, #000 55%, transparent 100%);
}

.hero-est {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 1.25rem;
}

.hero-line {
    display: block;
    font-size: clamp(2.75rem, 12vw, 5.5rem);
    color: var(--text);
}

.hero-line--accent {
    color: var(--text-dim);
    font-weight: 600;
}

.hero-desc {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    color: var(--text-dim);
    max-width: 420px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-hint {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: opacity 0.4s;
}

.hero-hint.is-hidden { opacity: 0; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
    min-width: 200px;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn--primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn--line {
    background: transparent;
    color: var(--text);
    border-color: var(--line-bright);
}

.btn--line:hover {
    border-color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

/* Sections */
.section {
    padding: clamp(4rem, 12vw, 7rem) var(--pad);
    max-width: var(--max);
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.section-meta { margin-bottom: 1rem; }

.section-spark {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.section-lead {
    font-size: 1rem;
    color: var(--text-dim);
    margin: -1.5rem 0 2rem;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* About */
.about-section {
    border-top: 1px solid var(--line);
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    max-width: 900px;
    margin-bottom: 2rem;
}

.about-body {
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.about-body p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dim);
    line-height: 1.3;
}

/* Clients */
.clients-section {
    border-top: 1px solid var(--line);
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.client-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem 1.25rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    transition: background 0.25s var(--ease);
}

.client-card:hover {
    background: var(--bg-soft);
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.client-name {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.client-work {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.client-url {
    font-size: 0.8rem;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.client-arrow {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.25s var(--ease), color 0.25s;
}

.client-card:hover .client-arrow {
    transform: translateX(4px);
    color: var(--accent);
}

.clients-empty {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* Pillars ticker */
.pillars {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.25rem 0;
}

.pillars-track {
    display: flex;
    width: max-content;
    animation: marquee 18s linear infinite;
}

.pillars-track span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    padding: 0 1.5rem;
    white-space: nowrap;
}

/* Services — editorial rows */
.services-section {
    border-top: 1px solid var(--line);
}

.service-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem 1.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--line);
}

.service-row:first-of-type { padding-top: 0; }

.service-index {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    padding-top: 0.25rem;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 520px;
}

.service-content ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.service-content li {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Facts */
.facts-section {
    border-top: 1px solid var(--line);
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.fact-card {
    background: var(--bg);
    padding: 2rem 1.5rem;
}

.fact-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fact-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.55;
    max-width: 280px;
}

/* CTA band */
.cta-band {
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(77, 159, 255, 0.06) 0%, transparent 100%);
}

.cta-band-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.cta-band-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    max-width: 440px;
    margin: 0 auto 1.75rem;
    line-height: 1.65;
}

/* Process */
.process-section { border-top: 1px solid var(--line); }

.process-list {
    list-style: none;
    max-width: 640px;
}

.process-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
}

.process-item:last-child { border-bottom: none; }

.process-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
}

.process-item h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.process-item p {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Panels */
.panel {
    border: 1px solid var(--line);
    background: var(--bg-soft);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 520px;
}

.booking-section,
.contact-section {
    border-top: 1px solid var(--line);
}

.booking-panel { margin: 0 auto; text-align: center; }

.booking-button-wrap {
    display: flex;
    justify-content: center;
    min-height: 48px;
}

.booking-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.booking-note a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-panel { margin: 0 auto; }

.contact-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 1.25rem 0 0.4rem;
}

.contact-form label:first-child { margin-top: 0; }

.contact-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--text);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.contact-input[aria-invalid="true"] {
    border-color: rgba(255, 100, 100, 0.6);
}

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

.contact-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-select option { background: #111; }

.contact-submit {
    width: 100%;
    margin-top: 1.5rem;
}

.contact-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

.contact-book-link { width: 100%; }

.contact-email {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.copy-email-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.copy-email-btn {
    background: none;
    border: 1px solid var(--line);
    color: var(--text-dim);
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color 0.2s;
}

.copy-email-btn:hover { border-color: var(--line-bright); }

.copy-email-feedback {
    font-size: 0.75rem;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.2s;
}

.copy-email-feedback.visible { opacity: 1; }

.form-confirmation,
.form-error {
    padding: 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid;
}

.form-confirmation {
    background: rgba(77, 159, 255, 0.08);
    border-color: rgba(77, 159, 255, 0.25);
}

.form-error {
    background: rgba(200, 80, 80, 0.08);
    border-color: rgba(200, 80, 80, 0.3);
}

.form-confirmation:empty,
.form-error:empty { display: none; }

.field-error {
    display: block;
    font-size: 0.8rem;
    color: #f88;
    margin-top: 0.25rem;
}

.field-error:empty { display: none; }

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 3rem var(--pad) calc(5rem + env(safe-area-inset-bottom));
}

.footer-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.footer-brand img {
    height: 48px;
    width: auto;
    margin-bottom: 0.75rem;
    opacity: 0.85;
    mix-blend-mode: lighten;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-label {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.footer-enquiry a {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.footer-nav a {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text); }

/* Mobile CTA bar */
.mobile-cta-bar {
    display: flex;
    gap: 0.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.65rem var(--pad);
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    transform: translateY(100%);
    transition: transform 0.35s var(--ease);
}

.mobile-cta-bar.is-visible { transform: translateY(0); }

.mobile-cta-btn {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0.5rem;
    font-size: 0.7rem;
}

/* Tablet+ */
@media (min-width: 640px) {
    .header-cta { display: inline-flex; }

    .header-logo img {
        height: 68px;
        max-width: 340px;
    }

    .hero-logo-wrap {
        max-width: min(88vw, 860px);
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .footer-nav { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
    .hero-logo-wrap {
        max-width: 820px;
        margin-bottom: -1rem;
    }

    .service-row {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }

    .facts-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 2fr 1fr;
    }

    .footer-nav {
        grid-column: auto;
        flex-direction: column;
        align-items: flex-end;
    }

    .mobile-cta-bar { display: none; }

    .site-footer {
        padding-bottom: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee,
    .pillars-track { animation: none; }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-scroll-line { animation: none; }
}

/* About page */
.page-hero {
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.page-hero .section-title {
    margin-bottom: 1rem;
}

.about-prose {
    max-width: 760px;
}

.about-prose h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 2.5rem 0 1rem;
}

.about-prose h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.75rem 0 0.6rem;
}

.about-prose p,
.about-prose li {
    font-size: 0.98rem;
    color: var(--text-dim);
    line-height: 1.75;
}

.about-prose p { margin-bottom: 1rem; }

.about-prose ul,
.about-prose ol {
    padding-left: 1.2rem;
    margin-bottom: 1.25rem;
}

.about-prose li { margin-bottom: 0.45rem; }

.about-prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.faq-item {
    border: 1px solid var(--line);
    background: var(--bg-soft);
    padding: 1.25rem 1.4rem;
}

.faq-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--text);
}

.faq-item p {
    margin: 0;
    font-size: 0.9rem;
}

.geo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
    list-style: none;
    padding: 0;
}

.geo-pills li {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--line);
    padding: 0.4rem 0.7rem;
}
