@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --ivory-bg: #FFFAF0;
    --white-card: #FFFFFF;
    --coral-text: #8B2500;
    --coral-soft: #CD5C5C;
    --coral-electric: #E34234;
    --coral-deep: #DC143C;
    --peach-line: #FFDAB9;
    --peach-decor: #FFE4C4;
    --cream-decor: #FFF5EE;
    --shadow-warm: rgba(139, 37, 0, 0.12);
    --shadow-coral: rgba(227, 66, 52, 0.18);
    --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--coral-text);
    background: var(--ivory-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

strong, p, span, a, li, button, h1, h2, h3, h4, h5, h6 {
    color: inherit;
}

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

a {
    color: var(--coral-electric);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--coral-deep);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.pure-g {
    letter-spacing: normal;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-tight {
    padding: 56px 0;
}

.section-dark {
    background: var(--coral-text);
    color: var(--ivory-bg);
}

.section-dark strong, .section-dark p, .section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--ivory-bg);
}

.section-coral {
    background: var(--coral-electric);
    color: var(--ivory-bg);
}

.section-coral strong, .section-coral p, .section-coral h1, .section-coral h2, .section-coral h3, .section-coral h4 {
    color: var(--ivory-bg);
}

.section-cream {
    background: var(--cream-decor);
}

h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--coral-text);
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.15;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 16px;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.mono {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral-electric);
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--coral-electric);
    margin-bottom: 18px;
}

.lead {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    min-height: 52px;
    white-space: nowrap;
    line-height: 1.2;
}

.btn-primary {
    background: var(--coral-electric);
    color: var(--ivory-bg);
    box-shadow: 6px 6px 0 var(--coral-text);
    border: 2px solid var(--coral-electric);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--coral-text);
    color: var(--ivory-bg);
    background: var(--coral-deep);
}

.btn-secondary {
    background: var(--white-card);
    color: var(--coral-electric);
    border: 2px solid var(--coral-electric);
}

.btn-secondary:hover {
    background: var(--coral-electric);
    color: var(--ivory-bg);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--coral-text);
}

.btn-ghost {
    background: transparent;
    color: var(--coral-electric);
    border: 2px solid var(--coral-electric);
    padding: 14px 28px;
}

.btn-ghost:hover {
    background: var(--coral-electric);
    color: var(--ivory-bg);
}

.btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-row .btn {
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 250, 240, 0.97);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 3px solid var(--coral-electric);
}

.site-header .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 20px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--coral-electric), var(--coral-deep));
    color: var(--ivory-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    border-radius: 4px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-domain {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--coral-electric);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-name {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 800;
    color: var(--coral-text);
    letter-spacing: -0.01em;
}

.brand-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    color: var(--coral-soft);
    letter-spacing: 0.04em;
}

.primary-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

.primary-nav a {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--coral-text);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.primary-nav a:hover {
    background: var(--coral-electric);
    color: var(--ivory-bg);
}

.primary-nav .nav-cta {
    background: var(--coral-electric);
    color: var(--ivory-bg);
    margin-left: 8px;
    box-shadow: 3px 3px 0 var(--coral-text);
}

.primary-nav .nav-cta:hover {
    background: var(--coral-deep);
    color: var(--ivory-bg);
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--coral-text);
}

.burger-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: var(--white-card);
    border: 2px solid var(--coral-text);
    border-radius: 4px;
    cursor: pointer;
}

.burger-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--coral-text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--ivory-bg);
    background-image:
        linear-gradient(rgba(227, 66, 52, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 218, 185, 0.6) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 300;
    padding: 80px 24px 24px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-drawer.is-open {
    transform: translateY(0);
}

.mobile-drawer .close-drawer {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--coral-electric);
    color: var(--ivory-bg);
    font-size: 24px;
    font-weight: 800;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.mobile-drawer nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-drawer nav a {
    padding: 18px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--coral-text);
    border-bottom: 1px solid var(--peach-line);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.mobile-drawer.is-open nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-drawer nav a:nth-child(1) { transition-delay: 0.06s; }
.mobile-drawer nav a:nth-child(2) { transition-delay: 0.12s; }
.mobile-drawer nav a:nth-child(3) { transition-delay: 0.18s; }
.mobile-drawer nav a:nth-child(4) { transition-delay: 0.24s; }
.mobile-drawer nav a:nth-child(5) { transition-delay: 0.30s; }
.mobile-drawer nav a:nth-child(6) { transition-delay: 0.36s; }
.mobile-drawer nav a:nth-child(7) { transition-delay: 0.42s; }
.mobile-drawer nav a:nth-child(8) { transition-delay: 0.48s; }

.mobile-drawer nav a:hover {
    color: var(--coral-electric);
}

.mobile-drawer .drawer-cta {
    margin-top: 24px;
    padding: 16px 24px;
    background: var(--coral-electric);
    color: var(--ivory-bg);
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0.54s !important;
}

.hero-section {
    position: relative;
    min-height: auto;
    background: var(--ivory-bg);
    overflow: hidden;
    padding: 80px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(227, 66, 52, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 66, 52, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.025em;
    word-spacing: 0.04em;
    color: var(--coral-text);
    margin-bottom: 18px;
}

.hero-title .accent {
    color: var(--coral-electric);
    display: inline-block;
}

.hero-sub {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--coral-soft);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-lead {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 28px;
    color: var(--coral-text);
    max-width: 560px;
}

.hero-art {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--white-card);
    border: 2px solid var(--coral-electric);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 12px 12px 0 var(--peach-decor);
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--peach-line);
}

.hero-meta-item {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--coral-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-meta-item strong {
    color: var(--coral-text);
    font-weight: 700;
    margin-left: 6px;
}

.section-head {
    text-align: left;
    margin-bottom: 48px;
    max-width: 720px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head p {
    font-size: 16px;
    color: var(--coral-soft);
    margin-top: 12px;
}

.stacking-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stack-card {
    background: var(--white-card);
    border: 1px solid var(--peach-line);
    border-radius: 4px;
    box-shadow: 0 16px 48px var(--shadow-warm);
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, z-index 0s, border-color 0.2s ease;
    position: relative;
}

.stack-card:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: var(--coral-electric);
    border-width: 2px;
    box-shadow: 0 24px 64px var(--shadow-coral);
    z-index: 10;
}

.stack-card .pure-g {
    align-items: stretch;
}

.stack-card .pure-u-md-2-5 {
    min-height: 280px;
}

.stack-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px;
}

.stack-card-body {
    padding: 32px 28px;
}

.stack-card-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--coral-electric);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.stack-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.stack-card p {
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--coral-soft);
}

.stack-card .price-tag {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--coral-electric);
    font-weight: 600;
    display: inline-block;
    padding: 6px 12px;
    background: var(--peach-decor);
    border-radius: 4px;
}

.editorial-cols {
    border-top: 1px solid var(--coral-electric);
    border-bottom: 1px solid var(--coral-electric);
}

.editorial-col {
    padding: 32px 24px;
    border-right: 1px solid var(--peach-line);
}

.editorial-col:last-child {
    border-right: none;
}

.editorial-col .num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--coral-electric);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.editorial-col h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.editorial-col p {
    font-size: 14px;
    color: var(--coral-soft);
}

.editorial-col:hover {
    background: var(--cream-decor);
    transform: scale(1.01);
    transition: transform 0.2s ease, background 0.2s ease;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.bento-cell {
    background: var(--white-card);
    border: 1px solid var(--peach-line);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 6px 6px 0 rgba(227, 66, 52, 0.08);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease, z-index 0s;
    position: relative;
    min-height: 200px;
}

.bento-cell:hover {
    transform: scale(1.03);
    border-color: var(--coral-electric);
    border-width: 2px;
    z-index: 10;
}

.bento-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-cell-text {
    padding: 24px 20px;
}

.bento-cell-text .mono {
    color: var(--coral-electric);
    margin-bottom: 8px;
    display: block;
}

.bento-cell-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.bento-cell-text p {
    font-size: 14px;
    color: var(--coral-soft);
}

.timeline {
    position: relative;
    padding-left: 32px;
    border-left: 2px solid var(--coral-electric);
    margin-left: 8px;
}

.timeline-step {
    position: relative;
    padding: 0 0 36px 24px;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--coral-electric);
    border: 3px solid var(--ivory-bg);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--coral-electric);
}

.timeline-step .step-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--coral-electric);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.timeline-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 14px;
    color: var(--coral-soft);
}

.split-screen {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.split-screen .sticky-pane {
    position: relative;
    height: 320px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid var(--coral-electric);
    box-shadow: 12px 12px 0 var(--peach-decor);
}

.split-screen .sticky-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-screen .scroll-pane {
    background: var(--white-card);
    padding: 32px 28px;
    border: 1px solid var(--peach-line);
    border-radius: 4px;
}

.split-screen .scroll-pane h3 {
    margin-top: 16px;
}

.split-screen .scroll-pane h3:first-child {
    margin-top: 0;
}

.flex-grow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.flex-card {
    background: var(--white-card);
    border: 1px solid var(--peach-line);
    border-radius: 4px;
    padding: 28px 24px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, border-color 0.2s ease, z-index 0s;
    position: relative;
    overflow: hidden;
}

.flex-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--coral-electric);
}

.flex-card:hover {
    transform: scale(1.04);
    border-color: var(--coral-electric);
    border-width: 2px;
    background: var(--cream-decor);
    z-index: 10;
}

.flex-card .big-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 800;
    color: var(--coral-electric);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.flex-card h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.flex-card p {
    font-size: 14px;
    color: var(--coral-soft);
}

.hover-reveal-list {
    border-top: 1px solid var(--coral-electric);
}

.hover-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--peach-line);
    cursor: pointer;
    transition: color 0.2s ease, padding 0.2s ease;
    position: relative;
}

.hover-row:hover {
    color: var(--coral-electric);
    padding-left: 12px;
}

.hover-row-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hover-row-role {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--coral-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hover-row-card {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--white-card);
    border: 2px solid var(--coral-electric);
    border-radius: 4px;
    padding: 16px;
    box-shadow: 8px 8px 0 var(--coral-text);
    width: 280px;
    z-index: 20;
}

.hover-row:hover .hover-row-card {
    display: block;
}

.hover-row-card-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid var(--peach-line);
}

.hover-row-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.hover-row-card p {
    font-size: 12px;
    color: var(--coral-soft);
    margin-bottom: 4px;
}

.coverflow {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 24px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.coverflow::-webkit-scrollbar {
    height: 8px;
}

.coverflow::-webkit-scrollbar-track {
    background: var(--peach-decor);
}

.coverflow::-webkit-scrollbar-thumb {
    background: var(--coral-electric);
    border-radius: 4px;
}

.cover-card {
    flex: 0 0 88%;
    background: var(--white-card);
    border: 1px solid var(--peach-line);
    border-radius: 4px;
    padding: 28px 24px;
    box-shadow: 0 12px 32px var(--shadow-warm);
    scroll-snap-align: center;
    transition: transform 0.3s ease, border-color 0.2s ease;
}

.cover-card:hover {
    border-color: var(--coral-electric);
    transform: translateY(-4px);
}

.cover-card .quote-mark {
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1;
    color: var(--coral-electric);
    margin-bottom: 12px;
    display: block;
}

.cover-card blockquote {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
    color: var(--coral-text);
    font-style: italic;
}

.cover-card .stars {
    color: var(--coral-electric);
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.cover-card cite {
    font-style: normal;
    display: block;
}

.cover-card cite .name {
    font-weight: 700;
    color: var(--coral-text);
    display: block;
}

.cover-card cite .role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--coral-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accordion-item {
    background: var(--white-card);
    border: 1px solid var(--peach-line);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.accordion-item.is-open {
    border-color: var(--coral-electric);
    border-width: 2px;
}

.accordion-trigger {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--coral-text);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}

.accordion-trigger:hover {
    background: var(--cream-decor);
}

.accordion-icon {
    width: 28px;
    height: 28px;
    background: var(--coral-electric);
    color: var(--ivory-bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.accordion-item.is-open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.is-open .accordion-content {
    max-height: 400px;
}

.accordion-content-inner {
    padding: 0 24px 20px;
    color: var(--coral-soft);
    font-size: 14px;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-form {
    background: var(--white-card);
    padding: 32px 28px;
    border: 1px solid var(--peach-line);
    border-radius: 4px;
}

.contact-info {
    background: var(--coral-text);
    color: var(--ivory-bg);
    padding: 32px 28px;
    border-radius: 4px;
}

.contact-info strong, .contact-info p, .contact-info h3, .contact-info h4 {
    color: var(--ivory-bg);
}

.contact-info a {
    color: var(--peach-line);
}

.contact-info a:hover {
    color: var(--ivory-bg);
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--coral-electric);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--coral-text);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--peach-line);
    border-radius: 0;
    transition: border-color 0.2s ease;
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-bottom-color: var(--coral-electric);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--coral-soft);
    opacity: 0.6;
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
    padding-top: 12px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.form-success {
    display: none;
    padding: 32px;
    background: var(--cream-decor);
    border: 2px solid var(--coral-electric);
    border-radius: 4px;
    text-align: center;
}

.form-success.is-visible {
    display: block;
}

.form-success h3 {
    color: var(--coral-electric);
    margin-bottom: 12px;
}

.info-block {
    margin-bottom: 20px;
}

.info-block .label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--peach-line);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    display: block;
}

.info-block .value {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.info-block .value a {
    color: var(--ivory-bg);
}

.info-block .value a:hover {
    color: var(--peach-line);
}

.site-footer {
    background: var(--coral-electric);
    color: var(--ivory-bg);
    border-radius: 16px 16px 0 0;
    padding: 56px 0 24px;
    margin-top: 80px;
}

.site-footer strong, .site-footer p, .site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer a, .site-footer span, .site-footer li {
    color: var(--ivory-bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 13px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--peach-line);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 14px;
    color: var(--ivory-bg);
    text-decoration: none;
    transition: color 0.2s ease, padding 0.2s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--peach-line);
    padding-left: 4px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--ivory-bg);
    opacity: 0.9;
}

.footer-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--peach-line);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 250, 240, 0.25);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
}

.footer-bottom-links a {
    font-size: 12px;
    color: var(--peach-line);
}

.footer-bottom-links a:hover {
    color: var(--ivory-bg);
}

.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: min(460px, calc(100% - 32px));
    background: var(--coral-text);
    color: var(--ivory-bg);
    border: 2px solid var(--peach-line);
    border-radius: 4px;
    padding: 20px 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 999;
}

.cookie-banner strong, .cookie-banner p, .cookie-banner a, .cookie-banner span {
    color: var(--ivory-bg);
}

.cookie-banner p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.cookie-banner a {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-actions button {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    border: 2px solid var(--ivory-bg);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
}

.cookie-accept {
    background: var(--ivory-bg);
    color: var(--coral-text);
}

.cookie-accept:hover {
    background: var(--peach-line);
}

.cookie-decline {
    background: transparent;
    color: var(--ivory-bg);
}

.cookie-decline:hover {
    background: var(--coral-electric);
    color: var(--ivory-bg);
}

.legal-prose {
    max-width: 760px;
    margin: 0 auto;
}

.legal-prose h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.legal-prose h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--coral-electric);
}

.legal-prose p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--coral-text);
    margin-bottom: 14px;
}

.legal-prose ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-prose li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--coral-text);
}

.thank-card {
    background: var(--white-card);
    border: 2px solid var(--coral-electric);
    border-radius: 4px;
    padding: 56px 32px;
    text-align: center;
    box-shadow: 12px 12px 0 var(--peach-decor);
    max-width: 640px;
    margin: 0 auto;
}

.thank-card .check-mark {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--coral-electric);
    color: var(--ivory-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.scroll-indicator {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--coral-electric);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.scroll-indicator::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--coral-electric);
}

.banner-strip {
    background: var(--coral-text);
    color: var(--ivory-bg);
    padding: 12px 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.banner-strip p, .banner-strip span, .banner-strip strong {
    color: var(--ivory-bg);
    margin: 0;
}

.kpi-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--peach-line);
    border-bottom: 1px solid var(--peach-line);
}

.kpi {
    text-align: center;
}

.kpi .big {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 800;
    color: var(--coral-electric);
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.kpi .small {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--coral-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.notice-bar {
    background: var(--peach-decor);
    color: var(--coral-text);
    padding: 16px 20px;
    border-left: 4px solid var(--coral-electric);
    border-radius: 4px;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.6;
}

.notice-bar strong {
    color: var(--coral-electric);
    font-weight: 700;
}

.tag-pill {
    display: inline-block;
    padding: 4px 10px;
    background: var(--peach-decor);
    color: var(--coral-electric);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    margin-right: 6px;
    margin-bottom: 6px;
}

.divider-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--coral-electric);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

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

.spotlight {
    pointer-events: none;
    position: fixed;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 250, 240, 0.32) 0%, transparent 70%);
    box-shadow: inset 0 0 40px rgba(227, 66, 52, 0.1);
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.12s ease-out;
    display: none;
    mix-blend-mode: screen;
}

@media (min-width: 720px) {
    .container {
        padding: 0 32px;
    }

    .section {
        padding: 100px 0;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-section {
        padding: 100px 0;
    }

    .primary-nav {
        display: flex;
    }

    .burger-toggle {
        display: none;
    }

    .split-screen {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
    }

    .split-screen .sticky-pane {
        position: sticky;
        top: 120px;
        height: 480px;
        flex: 0 0 48%;
        max-width: 48%;
    }

    .split-screen .scroll-pane {
        flex: 1;
    }

    .contact-split {
        flex-direction: row;
        gap: 32px;
    }

    .contact-form, .contact-info {
        flex: 1;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-tall {
        grid-row: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .cover-card {
        flex: 0 0 48%;
    }

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

    .editorial-col {
        padding: 36px 28px;
    }

    .cookie-banner {
        left: 24px;
        right: auto;
        bottom: 24px;
    }

    .spotlight {
        display: block;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 120px 0;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 44px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-section {
        padding: 120px 0;
    }

    .flex-grow-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cover-card {
        flex: 0 0 32%;
    }

    .legal-prose h1 {
        font-size: 44px;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 72px;
    }

    h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 48px;
    }
}

.pure-g [class*="pure-u"] {
    font-family: inherit;
}