/* =============================================================================
   PREMIER DRIVEWAYS — 2026 REBUILD
   Design direction: Editorial trade. Confident, architectural, honest.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. DESIGN TOKENS
   ----------------------------------------------------------------------------- */
:root {
    /* Palette ----------------------------------------------------------------- */
    --color-bg:           #F6F2EC;   /* warm paper */
    --color-bg-alt:       #F2EDE5;   /* barely-different paper tone, less yellow */
    --color-surface:      #FFFFFF;
    --color-ink:          #1A1815;   /* near-black, warm */
    --color-ink-soft:     #54524E;
    --color-ink-muted:    #87847F;
    --color-rule:         #D8D1C4;   /* borders on warm bg */
    --color-rule-soft:    #E8E2D5;

    --color-brand:        #C41E3A;   /* deeper, more considered red than #dc143c */
    --color-brand-deep:   #8E1528;
    --color-brand-wash:   rgba(196, 30, 58, 0.08);
    --color-clay:         #B85C3E;   /* warm secondary accent */

    /* Typography ------------------------------------------------------------- */
    --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --text-xs:    0.75rem;   /* 12 */
    --text-sm:    0.875rem;  /* 14 */
    --text-base:  1rem;      /* 16 */
    --text-lg:    1.125rem;  /* 18 */
    --text-xl:    1.375rem;  /* 22 */
    --text-2xl:   1.75rem;   /* 28 */
    --text-3xl:   2.25rem;   /* 36 */
    --text-4xl:   3rem;      /* 48 */
    --text-5xl:   4rem;      /* 64 */
    --text-6xl:   5.5rem;    /* 88 */

    /* Spacing scale (4/8 base) ---------------------------------------------- */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout --------------------------------------------------------------- */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  14px;
    --radius-xl:  24px;

    --shadow-sm:  0 1px 2px rgba(26, 24, 21, 0.06);
    --shadow-md:  0 4px 14px rgba(26, 24, 21, 0.08);
    --shadow-lg:  0 20px 40px -12px rgba(26, 24, 21, 0.18);

    --container:  76rem;   /* ~1216px */
    --container-narrow: 60rem;

    --header-h:   88px;

    /* Motion ---------------------------------------------------------------- */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* -----------------------------------------------------------------------------
   2. RESET & BASE
   ----------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

img, svg, picture, video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-ink);
}

p { text-wrap: pretty; }

::selection {
    background: var(--color-brand);
    color: var(--color-surface);
}

/* -----------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   ----------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: calc(var(--container) + var(--space-8));
    margin: 0 auto;
    padding-inline: var(--space-4);
}

@media (min-width: 768px) {
    .container { padding-inline: var(--space-8); }
}

.container--narrow {
    max-width: calc(var(--container-narrow) + var(--space-8));
}

.section {
    padding-block: var(--space-20);
}

@media (min-width: 768px) {
    .section { padding-block: var(--space-24); }
}

.section--tight {
    padding-block: var(--space-16);
}

.section-header {
    max-width: 38rem;
    margin-bottom: var(--space-12);
}

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

.section-header--full {
    max-width: none;
}

.section-header--full .section-intro {
    max-width: none;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brand);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.section-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--color-brand);
}

.section-title {
    font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.025em;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-brand);
}

.section-intro {
    margin-top: var(--space-6);
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--color-ink-soft);
    max-width: 36rem;
}

.section--alt {
    background: var(--color-bg-alt);
}

.section--dark {
    background: var(--color-ink);
    color: var(--color-bg);
}

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

/* -----------------------------------------------------------------------------
   4. BUTTONS
   ----------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.95rem 1.75rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: transform 0.3s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
    cursor: pointer;
    white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }

.btn--primary {
    background: var(--color-brand);
    color: var(--color-surface);
    border-color: var(--color-brand);
}

.btn--primary:hover {
    background: var(--color-brand-deep);
    border-color: var(--color-brand-deep);
    transform: translateY(-1px);
}

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

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

.btn--ghost {
    background: transparent;
    color: var(--color-ink);
    padding-inline: var(--space-2);
}

.btn--ghost:hover { color: var(--color-brand); }

.btn--on-dark.btn--outline {
    color: var(--color-bg);
    border-color: rgba(246, 242, 236, 0.4);
}

.btn--on-dark.btn--outline:hover {
    background: var(--color-bg);
    color: var(--color-ink);
    border-color: var(--color-bg);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-brand);
    padding-block: var(--space-2);
    position: relative;
}

.btn-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: currentColor;
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.btn-link:hover::after { transform: scaleX(0); transform-origin: right; }
.btn-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.btn-link:hover svg { transform: translateX(3px); }

/* -----------------------------------------------------------------------------
   5. HEADER / NAV
   ----------------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 242, 236, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

.header.is-scrolled { border-bottom-color: var(--color-rule); }

.header__inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.brand__mark {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-ink);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    line-height: 1;
}

.brand__mark em {
    color: var(--color-brand);
    font-style: normal;
}

.brand__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1;
    color: var(--color-ink);
}

.brand__tag {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ink-muted);
    font-weight: 500;
    margin-top: 3px;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-list a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-ink);
    padding-block: var(--space-2);
    position: relative;
    transition: color 0.25s;
}

.nav-list a:hover { color: var(--color-brand); }
.nav-list a.is-active { color: var(--color-brand); }
.nav-list a.is-active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--color-brand);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-ink);
    cursor: pointer;
    padding-block: var(--space-2);
    background: none;
    border: none;
    transition: color 0.25s;
}

.nav-dropdown__toggle:hover { color: var(--color-brand); }
.nav-dropdown__toggle svg { width: 12px; height: 12px; transition: transform 0.25s; }
.nav-dropdown.is-open .nav-dropdown__toggle svg { transform: rotate(180deg); }

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: var(--color-surface);
    border: 1px solid var(--color-rule);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2);
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.25s var(--ease);
}

.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown__menu a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-ink);
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown__menu a:hover {
    background: var(--color-brand-wash);
    color: var(--color-brand);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-ink);
}

.nav-phone svg { width: 14px; height: 14px; color: var(--color-brand); }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-ink);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
    .nav-list, .nav-phone { display: none; }
    .nav-toggle { display: flex; }

    .nav-mobile {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg);
        padding: var(--space-8);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 99;
    }

    .nav-mobile.is-open { transform: translateX(0); }

    .nav-mobile__list { display: flex; flex-direction: column; gap: var(--space-1); }

    .nav-mobile__list a {
        display: block;
        padding: var(--space-4) 0;
        font-family: var(--font-display);
        font-size: var(--text-2xl);
        font-weight: 400;
        letter-spacing: -0.015em;
        color: var(--color-ink);
        border-bottom: 1px solid var(--color-rule);
    }

    .nav-mobile__list a:hover { color: var(--color-brand); }

    .nav-mobile__section-label {
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--color-ink-muted);
        margin-top: var(--space-8);
        margin-bottom: var(--space-2);
    }

    .nav-mobile__footer {
        margin-top: var(--space-8);
        padding-top: var(--space-8);
        border-top: 1px solid var(--color-rule);
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
    }
}

@media (min-width: 1025px) {
    .nav-mobile { display: none; }
}

/* -----------------------------------------------------------------------------
   6. HERO
   ----------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding-block: var(--space-16) var(--space-20);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero { padding-block: var(--space-16) var(--space-24); }
}

.hero__stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.hero__intro {
    max-width: none;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-ink-soft);
    margin-bottom: var(--space-6);
}

.hero__eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--color-brand);
}

.hero__title {
    font-size: clamp(2.5rem, 6.5vw, var(--text-6xl));
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 300;
    max-width: 18ch;
}

.hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-brand);
}

.hero__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    background: var(--color-bg-alt);
}

@media (min-width: 768px) {
    .hero__media { aspect-ratio: 21 / 9; }
}

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

.hero__outro {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .hero__outro {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: var(--space-12);
    }
}

.hero__lead {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--color-ink-soft);
    max-width: 46rem;
    margin: 0;
}

@media (min-width: 768px) {
    .hero__lead { font-size: var(--text-xl); }
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    flex-shrink: 0;
}

.hero__badge {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    right: auto;
    max-width: calc(100% - var(--space-12));
    background: rgba(26, 24, 21, 0.82);
    backdrop-filter: blur(12px);
    color: var(--color-bg);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.hero__badge-rating {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--color-bg);
}

.hero__badge-rating em {
    font-style: normal;
    color: var(--color-brand);
}

.hero__badge-meta {
    font-size: var(--text-xs);
    line-height: 1.4;
    color: rgba(246, 242, 236, 0.75);
}

.hero__badge-meta strong {
    color: var(--color-bg);
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* -----------------------------------------------------------------------------
   7. MARQUEE TRUST BAR
   ----------------------------------------------------------------------------- */
.trust-bar {
    background: var(--color-ink);
    color: var(--color-bg);
    padding-block: var(--space-5);
    overflow: hidden;
    position: relative;
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(246, 242, 236, 0.85);
}

.trust-bar__item svg {
    width: 18px;
    height: 18px;
    color: var(--color-brand);
}

/* -----------------------------------------------------------------------------
   8. FEATURE GRID (Why Choose Premier Driveways — the NEW version, no stripes)
   ----------------------------------------------------------------------------- */
.features {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .features { grid-template-columns: repeat(3, 1fr); }
}

.feature {
    background: var(--color-surface);
    border: 1px solid var(--color-rule);
    padding: var(--space-8);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.feature:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.feature__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--color-brand-wash);
    color: var(--color-brand);
    border-radius: var(--radius-sm);
}

.feature__icon svg { width: 22px; height: 22px; }

.feature__number {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-ink-muted);
    letter-spacing: 0.02em;
}

.feature__heading {
    font-size: var(--text-xl);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--color-ink);
}

.feature__body {
    color: var(--color-ink-soft);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* -----------------------------------------------------------------------------
   9. INVEST SECTION (Why Invest in a Quality Driveway)
   ----------------------------------------------------------------------------- */
.invest-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .invest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .invest-grid { grid-template-columns: repeat(3, 1fr); }
}

.invest-card {
    background: var(--color-surface);
    border: 1px solid var(--color-rule);
    padding: var(--space-8);
    border-radius: 10px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
    position: relative;
}

.invest-card:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.invest-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: var(--color-brand-wash);
    color: var(--color-brand);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-5);
}

.invest-card__icon svg { width: 26px; height: 26px; }

.invest-card__heading {
    font-size: var(--text-xl);
    font-weight: 400;
    letter-spacing: -0.018em;
    margin-bottom: var(--space-3);
}

.invest-card__body {
    color: var(--color-ink-soft);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* -----------------------------------------------------------------------------
   10. SERVICES STRIP
   ----------------------------------------------------------------------------- */
.services-strip {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .services-strip { grid-template-columns: repeat(2, 1fr); }
}

.services-strip__item {
    background: var(--color-surface);
    border: 1px solid var(--color-rule);
    padding: var(--space-8);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    text-decoration: none;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
    position: relative;
    min-height: 220px;
}

.services-strip__item:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.services-strip__icon {
    color: var(--color-brand);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--color-brand-wash);
    border-radius: var(--radius-sm);
}

.services-strip__icon svg { width: 26px; height: 26px; }

.services-strip__title {
    font-size: var(--text-xl);
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--color-ink);
}

.services-strip__desc {
    font-size: var(--text-sm);
    color: var(--color-ink-soft);
    line-height: 1.55;
}

.services-strip__arrow {
    margin-top: auto;
    color: var(--color-ink-muted);
    transition: color 0.3s, transform 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.services-strip__item:hover .services-strip__arrow {
    color: var(--color-brand);
}

.services-strip__item:hover .services-strip__arrow svg {
    transform: translateX(4px);
}

.services-strip__arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

/* -----------------------------------------------------------------------------
   11. WORK / GALLERY PEEK
   ----------------------------------------------------------------------------- */
.work {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .work { grid-template-columns: repeat(6, 1fr); }
}

.work__tile {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-md);
    display: block;
}

.work__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.work__tile:hover img { transform: scale(1.04); }

.work__tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 24, 21, 0.55));
    opacity: 0;
    transition: opacity 0.4s;
}

.work__tile:hover::after { opacity: 1; }

.work__caption {
    position: absolute;
    inset: auto var(--space-4) var(--space-4) var(--space-4);
    color: var(--color-bg);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    z-index: 1;
}

.work__tile:hover .work__caption {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 640px) {
    .work__tile--lg { grid-column: span 3; grid-row: span 2; aspect-ratio: 1 / 1.1; }
    .work__tile--md { grid-column: span 3; aspect-ratio: 3 / 2; }
    .work__tile--sm { grid-column: span 2; aspect-ratio: 1 / 1; }
}

/* -----------------------------------------------------------------------------
   12. STATS / ABOUT STRIP
   ----------------------------------------------------------------------------- */
.about-strip {
    background: var(--color-ink);
    color: var(--color-bg);
    padding-block: var(--space-24);
    position: relative;
    overflow: hidden;
}

.about-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-brand), transparent);
}

.about-strip__grid {
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 900px) {
    .about-strip__grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-16);
    }
}

.about-strip__copy h2 {
    color: var(--color-bg);
    font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.025em;
}

.about-strip__copy h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-brand);
}

.about-strip__copy p {
    margin-top: var(--space-6);
    font-size: var(--text-lg);
    line-height: 1.65;
    color: rgba(246, 242, 236, 0.82);
    max-width: 34rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(246, 242, 236, 0.14);
    border: 1px solid rgba(246, 242, 236, 0.14);
}

.stat {
    background: var(--color-ink);
    padding: var(--space-8);
}

.stat__num {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--color-bg);
}

.stat__num em {
    font-style: normal;
    color: var(--color-brand);
}

.stat__label {
    margin-top: var(--space-3);
    font-size: var(--text-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(246, 242, 236, 0.55);
    font-weight: 500;
}

/* -----------------------------------------------------------------------------
   13. REVIEWS
   ----------------------------------------------------------------------------- */
.reviews {
    display: grid;
    gap: var(--space-6);
}

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

.review {
    background: var(--color-surface);
    border: 1px solid var(--color-rule);
    padding: var(--space-8);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.review__stars {
    color: var(--color-brand);
    display: flex;
    gap: 2px;
}

.review__stars svg { width: 16px; height: 16px; fill: currentColor; }

.review__quote {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    flex: 1;
}

.review__quote::before {
    content: "\201C";
    display: block;
    font-size: 2.5rem;
    line-height: 0.8;
    color: var(--color-brand);
    margin-bottom: var(--space-2);
}

.review__attr {
    font-size: var(--text-sm);
    color: var(--color-ink-muted);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-rule);
}

.review__attr strong {
    display: block;
    color: var(--color-ink);
    font-weight: 600;
    margin-bottom: 2px;
}

/* -----------------------------------------------------------------------------
   14. CTA FINAL
   ----------------------------------------------------------------------------- */
.cta-final {
    background: var(--color-brand);
    color: var(--color-bg);
    padding-block: var(--space-24);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-final__stack {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-final__heading {
    font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 300;
    color: var(--color-bg);
}

.cta-final__heading em {
    font-style: italic;
    font-weight: 400;
}

.cta-final__lead {
    margin-top: var(--space-5);
    font-size: var(--text-lg);
    color: rgba(246, 242, 236, 0.85);
    line-height: 1.55;
    max-width: 34rem;
    margin-inline: auto;
}

.cta-final__actions {
    margin-top: var(--space-10);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.cta-final .btn--primary {
    background: var(--color-bg);
    color: var(--color-ink);
    border-color: var(--color-bg);
}

.cta-final .btn--primary:hover {
    background: var(--color-ink);
    color: var(--color-bg);
    border-color: var(--color-ink);
}

.cta-final .btn--outline {
    color: var(--color-bg);
    border-color: rgba(246, 242, 236, 0.5);
}

.cta-final .btn--outline:hover {
    background: var(--color-bg);
    color: var(--color-ink);
    border-color: var(--color-bg);
}

/* -----------------------------------------------------------------------------
   15. FOOTER
   ----------------------------------------------------------------------------- */
.footer {
    background: var(--color-ink);
    color: rgba(246, 242, 236, 0.68);
    padding-block: var(--space-20) var(--space-8);
}

.footer__grid {
    display: grid;
    gap: var(--space-12);
    padding-bottom: var(--space-16);
    border-bottom: 1px solid rgba(246, 242, 236, 0.14);
}

@media (min-width: 640px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; } }
@media (min-width: 960px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer__brand .brand__mark {
    background: var(--color-bg);
    color: var(--color-ink);
}

.footer__brand .brand__name { color: var(--color-bg); }
.footer__brand .brand__tag { color: rgba(246, 242, 236, 0.45); }

.footer__about {
    margin-top: var(--space-5);
    font-size: var(--text-sm);
    line-height: 1.6;
    max-width: 26rem;
}

.footer__col h4 {
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
}

.footer__col ul { display: flex; flex-direction: column; gap: var(--space-3); }

.footer__col a {
    font-size: var(--text-sm);
    color: rgba(246, 242, 236, 0.68);
    transition: color 0.2s;
}

.footer__col a:hover { color: var(--color-brand); }

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    font-size: var(--text-sm);
}

.footer__contact-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.footer__contact-row svg {
    width: 16px;
    height: 16px;
    color: var(--color-brand);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__bottom {
    padding-top: var(--space-6);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-4);
    font-size: var(--text-xs);
    color: rgba(246, 242, 236, 0.5);
}

.footer__bottom a { color: rgba(246, 242, 236, 0.65); }
.footer__bottom a:hover { color: var(--color-brand); }

/* -----------------------------------------------------------------------------
   16. UTILITIES & MOTION
   ----------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

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

/* small visual details */
.rule {
    height: 1px;
    background: var(--color-rule);
    border: 0;
    margin-block: var(--space-16);
}
