:root {
    --ink: #0f172a;
    --ember: #f0a500;
    --ember-glow: #fbbf24;
    --steel: #1e3a5f;
    --smoke: #f5f5f0;
    --bone: #fafbfc;
    --slate: #334155;
    --ash: #64748b;
    --border-subtle: #e2e0db;
    --success: #15803d;
    --success-bg: #f0fdf4;
    --danger: #b91c1c;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 16px rgba(15, 23, 42, 0.05);
    --shadow-elevated: 0 4px 12px rgba(15, 23, 42, 0.08), 0 12px 40px rgba(15, 23, 42, 0.06);
    --shadow-modal: 0 20px 60px rgba(15, 23, 42, 0.2);
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', 'Consolas', 'Monaco', monospace;
    --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 320ms cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--bone);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.modal-open {
    overflow: hidden;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--ink);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition-fast);
}
.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: box-shadow var(--transition-smooth);
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--ink);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-icon svg {
    width: 22px;
    height: 22px;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.logo-text span {
    color: var(--ember);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav-list a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    font-size: 0.925rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}
.nav-list a:hover,
.nav-list a:focus-visible {
    color: var(--ink);
    background: rgba(15, 23, 42, 0.04);
}
.nav-list a.active-page {
    color: var(--ember);
    font-weight: 600;
}
.nav-cta {
    background: var(--ember) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 18px !important;
    border-radius: var(--radius-md) !important;
    transition: all var(--transition-smooth) !important;
}
.nav-cta:hover {
    background: #d99400 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(240, 165, 0, 0.35);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    color: var(--ink);
    transition: background var(--transition-fast);
}
.mobile-toggle:hover {
    background: rgba(15, 23, 42, 0.05);
}
.mobile-toggle svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 960px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 28px 24px;
        gap: 2px;
        border-bottom: 2px solid var(--border-subtle);
        box-shadow: var(--shadow-elevated);
        align-items: stretch;
    }
    .nav-list.open {
        display: flex;
    }
    .nav-list a {
        padding: 12px 16px;
        font-size: 1rem;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-cta {
        text-align: center;
        margin-top: 6px;
    }
}

main {
    flex: 1;
}

.section-outer {
    padding: 64px 28px;
}
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-section {
    background: linear-gradient(175deg, #0f172a 0%, #1a2740 40%, #1e3050 100%);
    color: #fff;
    padding: 80px 28px 90px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.13) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    color: #e2e8f0;
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: #fff;
}
.hero-title em {
    font-style: normal;
    color: var(--ember-glow);
    position: relative;
}
.hero-subtitle {
    font-size: 1.12rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 480px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    font-family: var(--font-body);
    white-space: nowrap;
}
.btn-primary {
    background: var(--ember);
    color: #0f172a;
}
.btn-primary:hover {
    background: #d99400;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240, 165, 0, 0.4);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1/1;
}
.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all var(--transition-smooth);
}
.hero-card:nth-child(1) {
    top: 5%;
    left: 5%;
    width: 55%;
    z-index: 3;
}
.hero-card:nth-child(2) {
    top: 28%;
    right: 5%;
    width: 50%;
    z-index: 2;
}
.hero-card:nth-child(3) {
    bottom: 8%;
    left: 18%;
    width: 48%;
    z-index: 1;
}
.hero-card .card-icon {
    width: 36px;
    height: 36px;
    background: rgba(240, 165, 0, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.hero-card .card-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}
.hero-card .card-stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ember-glow);
    line-height: 1;
}

@media (max-width: 860px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-card-stack {
        max-width: 280px;
        aspect-ratio: 1/1.1;
    }
    .hero-section {
        padding: 48px 20px 56px;
    }
    .hero-title {
        font-size: 1.9rem;
    }
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.bento-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-smooth);
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: #d4d0c8;
}
.bento-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    padding: 34px 28px;
}
.bento-card.featured:hover {
    border-color: var(--steel);
}
.bento-card.wide {
    grid-column: span 2;
}
.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    background: #fef3c7;
}
.bento-card.featured .bento-icon {
    background: rgba(240, 165, 0, 0.25);
}
.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
}
.bento-card.featured h3 {
    font-size: 1.5rem;
    color: #fff;
}
.bento-card p {
    font-size: 0.9rem;
    color: var(--ash);
    line-height: 1.5;
}
.bento-card.featured p {
    color: #cbd5e1;
}
.bento-link {
    text-decoration: none;
    color: var(--ember);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition-fast);
}
.bento-link:hover {
    gap: 8px;
}
.bento-card.featured .bento-link {
    color: var(--ember-glow);
}
@media (max-width: 900px) {
    .services-bento {
        grid-template-columns: 1fr 1fr;
    }
    .bento-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .bento-card.wide {
        grid-column: span 2;
    }
}
@media (max-width: 560px) {
    .services-bento {
        grid-template-columns: 1fr;
    }
    .bento-card.featured,
    .bento-card.wide {
        grid-column: span 1;
    }
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ember);
    margin-bottom: 8px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.section-desc {
    color: var(--ash);
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.6;
}
.section-header {
    margin-bottom: 40px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}
.stat-block {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
    transition: background var(--transition-fast);
}
.stat-block:last-child {
    border-right: none;
}
.stat-block:hover {
    background: #fefce8;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}
.stat-number .plus {
    color: var(--ember);
}
.stat-label {
    font-size: 0.88rem;
    color: var(--ash);
    margin-top: 6px;
}
@media (max-width: 700px) {
    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }
    .stat-block:nth-child(2) {
        border-right: none;
    }
}
@media (max-width: 400px) {
    .stats-strip {
        grid-template-columns: 1fr;
    }
    .stat-block {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }
    .stat-block:last-child {
        border-bottom: none;
    }
}

.testimonial-marquee-wrap {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}
.testimonial-track {
    display: flex;
    gap: 20px;
    animation: scroll-testimonials 40s linear infinite;
    width: max-content;
}
.testimonial-track:hover {
    animation-play-state: paused;
}
@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.testimonial-chip {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    min-width: 300px;
    max-width: 340px;
    flex-shrink: 0;
    transition: box-shadow var(--transition-fast);
}
.testimonial-chip:hover {
    box-shadow: var(--shadow-elevated);
}
.testimonial-chip .stars {
    color: #f0a500;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.testimonial-chip .quote {
    font-size: 0.93rem;
    color: var(--slate);
    line-height: 1.5;
    font-style: italic;
}
.testimonial-chip .author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    margin-top: 10px;
}
.testimonial-chip .location {
    font-size: 0.78rem;
    color: var(--ash);
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    background: var(--ink);
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: #fff;
}
.cta-split-content {
    padding: 44px 36px;
}
.cta-split-content .section-label {
    color: var(--ember-glow);
}
.cta-split-content h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin-bottom: 12px;
}
.cta-split-content p {
    color: #cbd5e1;
    margin-bottom: 22px;
    line-height: 1.6;
}
.cta-split-visual {
    background: linear-gradient(135deg, #1e3050 0%, #0f172a 100%);
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}
.cta-split-visual::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(240, 165, 0, 0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
@media (max-width: 700px) {
    .cta-split {
        grid-template-columns: 1fr;
    }
    .cta-split-visual {
        min-height: 160px;
        font-size: 3.5rem;
    }
}

.site-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 56px 28px 28px;
    margin-top: auto;
}
.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: 0.2px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}
.footer-col ul li a:hover {
    color: #fff;
}
.footer-address {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
}
.footer-address strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}
.footer-bottom {
    max-width: var(--max-width);
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: #64748b;
}
@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid var(--border-subtle);
    box-shadow: 0 -6px 30px rgba(15, 23, 42, 0.12);
    z-index: 9999;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner p {
    font-size: 0.9rem;
    color: var(--slate);
    max-width: 600px;
    line-height: 1.5;
}
.cookie-banner p a {
    color: var(--steel);
    font-weight: 600;
}
.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.btn-accept {
    background: var(--ink);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.btn-accept:hover {
    background: #1e293b;
}
.btn-decline {
    background: transparent;
    color: var(--ash);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.btn-decline:hover {
    border-color: #999;
    color: var(--slate);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    padding: 20px;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-dialog {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    max-width: 520px;
    width: 100%;
    box-shadow: var(--shadow-modal);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--ash);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.modal-close:hover {
    background: #f1f5f9;
    color: var(--ink);
}
.modal-dialog h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.modal-dialog .modal-subtitle {
    color: var(--ash);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 5px;
    color: var(--slate);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
    background: #fafbfc;
    color: var(--ink);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ember);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--ember);
    color: #0f172a;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-family: var(--font-body);
}
.submit-btn:hover {
    background: #d99400;
    box-shadow: 0 6px 20px rgba(240, 165, 0, 0.3);
}
.form-success {
    text-align: center;
    padding: 20px 0;
}
.form-success .check-circle {
    width: 60px;
    height: 60px;
    background: var(--success-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
}
.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 6px;
}
.form-success p {
    color: var(--ash);
    font-size: 0.9rem;
}

.page-header-mini {
    background: #f8f7f4;
    border-bottom: 1px solid var(--border-subtle);
    padding: 36px 28px;
    text-align: center;
}
.page-header-mini h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
@media (max-width: 700px) {
    .contact-row {
        grid-template-columns: 1fr;
    }
}
.contact-info-block {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.contact-info-block h3 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
}
.contact-info-block .info-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--slate);
}
.contact-info-block .info-line strong {
    color: var(--ink);
    min-width: 70px;
}

.page-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 28px 60px;
    line-height: 1.7;
}
.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 28px;
    margin-bottom: 10px;
}
.page-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 8px;
}
.page-content p,
.page-content li {
    color: var(--slate);
    margin-bottom: 10px;
}
.page-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}