/* ============================================================
   PROMOFEM — Patrimonialista Catalunya
   Minimal black & white editorial layout
   ============================================================ */

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

:root {
    --black: #0a0a0a;
    --ink: #111111;
    --ink-2: #1a1a1a;
    --grey-900: #2a2a2a;
    --grey-700: #4a4a4a;
    --grey-500: #777777;
    --grey-300: #d4d4d4;
    --grey-200: #e8e8e8;
    --grey-100: #f4f4f2;
    --paper: #f8f7f4;
    --white: #ffffff;
    --accent: #c8a96a;

    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Fraunces', 'Times New Roman', serif;

    --container: 1280px;
    --gutter: clamp(20px, 4vw, 56px);

    --radius: 4px;
    --transition: 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ───── Typography ───── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--grey-700);
    margin-bottom: 1.25rem;
}

.section-eyebrow.light { color: var(--grey-300); }
.section-title { font-size: clamp(2rem, 4vw, 3.4rem); }
.section-title.light { color: var(--white); }
.section-lead {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--grey-700);
    max-width: 60ch;
    line-height: 1.55;
    margin-top: 1.25rem;
}

.section-head { margin-bottom: 3.5rem; max-width: 64rem; }
.section-head.center { text-align: center; margin: 0 auto 3.5rem; }

/* ───── Buttons ───── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
    line-height: 1;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-primary:hover {
    background: transparent;
    color: var(--black);
}

.btn-primary.btn-light {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}
.btn-primary.btn-light:hover {
    background: transparent;
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), padding var(--transition);
}
.nav.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom-color: var(--grey-200);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.15rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: padding var(--transition);
}
.nav.scrolled .nav-inner { padding-top: 0.85rem; padding-bottom: 0.85rem; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--black);
}
.nav-logo-mark { width: 56px; height: 24px; color: var(--black); }
.nav-logo-text {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.14em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--black);
    transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

.lang-switcher { display: flex; align-items: center; gap: 0.35rem; }
.lang-btn {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--grey-500);
    padding: 0.25rem;
    transition: color var(--transition);
}
.lang-btn.active, .lang-btn:hover { color: var(--black); }
.lang-sep { color: var(--grey-300); font-size: 0.8rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--black);
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 8rem 0 4rem;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(15%) brightness(0.6);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.78) 100%);
}
.hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
}
.hero .eyebrow { color: var(--accent); }
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.015em;
    margin-bottom: 1.75rem;
    max-width: 22ch;
}
.hero-title .accent {
    font-style: italic;
    color: var(--white);
    opacity: 0.92;
}
.hero-sub {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    max-width: 56ch;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -40px; left: 0;
    width: 100%; height: 40px;
    background: var(--white);
    animation: scrollDot 2.5s linear infinite;
}
@keyframes scrollDot {
    0% { top: -40px; }
    100% { top: 40px; }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
    padding: 5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
}
.intro-text {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
    line-height: 1.35;
    letter-spacing: -0.01em;
    max-width: 60ch;
    margin: 0;
    color: var(--ink);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat {
    border-left: 1px solid var(--grey-200);
    padding: 0.5rem 0 0.5rem 1.5rem;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--black);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--grey-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 7rem 0;
    background: var(--paper);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-points {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0;
}
.about-points li {
    padding: 1.1rem 0;
    border-top: 1px solid var(--grey-200);
    font-size: 1rem;
    color: var(--grey-700);
}
.about-points li:last-child { border-bottom: 1px solid var(--grey-200); }
.about-points strong { color: var(--black); font-weight: 600; }

.about-media { position: relative; }
.about-img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius);
}
.about-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.8s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--black);
    color: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    max-width: 240px;
}
.about-badge-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.about-badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 7rem 0; background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--grey-200);
    border: 1px solid var(--grey-200);
}
.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    transition: background var(--transition);
}
.service-card:hover { background: var(--paper); }
.service-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.service-title { margin-bottom: 1.2rem; }
.service-text {
    color: var(--grey-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.5rem;
    font-size: 0.92rem;
    color: var(--ink);
    border-top: 1px solid var(--grey-200);
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 1.05rem;
    width: 8px; height: 1px;
    background: var(--accent);
}

/* ============================================================
   ASSETS (dark)
   ============================================================ */
.assets {
    padding: 7rem 0;
    background: var(--black);
    color: var(--white);
}
.assets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.asset-card {
    background: var(--ink-2);
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform var(--transition);
}
.asset-card:hover { transform: translateY(-6px); }
.asset-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ink-2);
}
.asset-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.85);
    transition: transform 0.8s ease, filter 0.6s ease;
}
.asset-card:hover .asset-img img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1);
}
.asset-body { padding: 1.6rem 1.4rem 1.8rem; }
.asset-body h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}
.asset-body p {
    font-size: 0.9rem;
    color: var(--grey-300);
    line-height: 1.55;
    margin: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: 7rem 0; background: var(--paper); }
.process-timeline {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grey-300);
}
.process-step {
    position: relative;
    padding: 0 1rem 0 0;
}
.process-step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: var(--black);
}
.process-step p {
    font-size: 0.9rem;
    color: var(--grey-700);
    line-height: 1.55;
    margin: 0;
}

/* ============================================================
   WHY
   ============================================================ */
.why { padding: 7rem 0; background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
}
.why-item { text-align: left; }
.why-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.why-icon svg { width: 100%; height: 100%; }
.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--black);
}
.why-item p {
    font-size: 0.95rem;
    color: var(--grey-700);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
    padding: 5rem 0;
    background: var(--paper);
    text-align: center;
    border-top: 1px solid var(--grey-200);
}
.partners-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 300;
    max-width: 56ch;
    margin: 0 auto 2.5rem;
    line-height: 1.4;
}
.partners-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}
.partners-tags span {
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.55rem 1.2rem;
    border: 1px solid var(--grey-300);
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey-700);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    padding: 6rem 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}
.cta-inner h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
}
.cta-inner p {
    color: rgba(255,255,255,0.7);
    max-width: 50ch;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 7rem 0; background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}
.contact-info {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0;
}
.contact-info li {
    padding: 1.1rem 0;
    border-top: 1px solid var(--grey-200);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.contact-info li:last-child { border-bottom: 1px solid var(--grey-200); }
.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grey-500);
}
.contact-info a, .contact-info span:not(.contact-info-label) {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 500;
}

/* Form */
.contact-form {
    background: var(--paper);
    padding: 3rem;
    border-radius: var(--radius);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-700);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--grey-300);
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--black);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--grey-700);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.5;
}
.form-check input[type=checkbox] { margin-top: 0.25rem; }
.form-check a { text-decoration: underline; color: var(--black); }

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.2em;
}
.form-status.success { color: #1f6b3a; }
.form-status.error { color: #a02020; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--black);
    color: var(--grey-300);
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand { max-width: 320px; }
.footer-mark { width: 90px; height: 36px; margin-bottom: 1rem; }
.footer-brand-text {
    display: block;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.footer-tag {
    font-size: 0.9rem;
    color: var(--grey-300);
    line-height: 1.6;
    margin: 0;
}
.footer-col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.footer-col a, .footer-col span {
    font-size: 0.9rem;
    color: var(--grey-300);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--grey-900);
    padding-top: 2rem;
    font-size: 0.82rem;
    color: var(--grey-500);
    text-align: center;
}

/* ============================================================
   LEGAL PAGES (shared)
   ============================================================ */
.legal-hero {
    padding: 10rem 0 4rem;
    background: var(--paper);
    border-bottom: 1px solid var(--grey-200);
}
.legal-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    margin-bottom: 1rem;
    font-weight: 400;
}
.legal-hero p { color: var(--grey-700); margin: 0; }

.legal-body { padding: 4rem 0 6rem; }
.legal-body .container { max-width: 820px; }
.legal-body h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--black);
}
.legal-body h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin: 1.75rem 0 0.75rem;
}
.legal-body p, .legal-body li {
    font-size: 0.95rem;
    color: var(--grey-700);
    line-height: 1.7;
}
.legal-body ul, .legal-body ol { padding-left: 1.25rem; margin: 0 0 1em; }
.legal-body a { color: var(--black); text-decoration: underline; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .assets-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
    .process-timeline::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --gutter: 20px; }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem var(--gutter);
        gap: 1.5rem;
        border-bottom: 1px solid var(--grey-200);
        transform: translateY(-110%);
        transition: transform var(--transition);
        z-index: 90;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-link { font-size: 1rem; }
    .hamburger { display: flex; }

    .hero { padding-top: 7rem; min-height: 92vh; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .hero-scroll { display: none; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat { padding-left: 1rem; }

    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-badge { position: static; margin-top: 1.5rem; max-width: 100%; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2.2rem 1.5rem; }

    .assets-grid { grid-template-columns: 1fr; }

    .process-timeline { grid-template-columns: 1fr; gap: 2rem; }

    .why-grid { grid-template-columns: 1fr; gap: 2rem; }

    .contact-form { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .about { padding: 5rem 0; }
    .services, .assets, .process, .why, .contact { padding: 5rem 0; }
    .intro-strip { padding: 3rem 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
