/* =====================================================
   ShutterUp — Design System
   Florida's Custom Plantation Shutter Experts
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
    /* Palette */
    --ink:        #14110F;
    --ink-2:      #3A322C;
    --ink-3:      #6B5F54;
    --paper:      #FAF6F1;
    --paper-2:    #F1EAE0;
    --line:       #E2D8CB;
    --brand:      #8B1A1A;
    --brand-2:    #6E1313;
    --brand-3:    #3D0808;
    --accent:     #D4A24C;
    --accent-2:   #B6873A;
    --white:      #FFFFFF;
    --green:      #2E7D5B;

    /* Type */
    --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
    --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Layout */
    --container:    1240px;
    --container-narrow: 960px;
    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;

    /* Motion */
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast:       180ms;
    --t-med:        320ms;
    --t-slow:       560ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--ink-2);
    background: var(--paper);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, video, svg { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; }
::selection { background: var(--brand); color: var(--paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.08;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); line-height: 1.2; }
h4 { font-size: 1.15rem; line-height: 1.3; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content:"";
    width: 28px;
    height: 1px;
    background: var(--brand);
}

.lead {
    font-size: 1.18rem;
    line-height: 1.65;
    color: var(--ink-2);
    max-width: 60ch;
}

.italic-display {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}
.container--narrow { max-width: var(--container-narrow); }

section { position: relative; }
.section-pad      { padding: clamp(64px, 8vw, 128px) 0; }
.section-pad--sm  { padding: clamp(48px, 6vw, 88px) 0; }
.section-pad--lg  { padding: clamp(96px, 10vw, 168px) 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: transform var(--t-fast) var(--ease),
                background var(--t-med) var(--ease),
                color var(--t-med) var(--ease),
                border-color var(--t-med) var(--ease),
                box-shadow var(--t-med) var(--ease);
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--brand);
    color: var(--paper);
    box-shadow: 0 1px 0 0 rgba(0,0,0,.08), 0 12px 28px -10px rgba(139,26,26,.55);
}
.btn--primary:hover {
    background: var(--brand-2);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -12px rgba(139,26,26,.6);
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--ghost:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-2px);
}
.btn--ghost-light {
    background: transparent;
    color: var(--paper);
    border-color: rgba(255,255,255,.5);
}
.btn--ghost-light:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--lg { padding: 19px 34px; font-size: 16px; }

.btn .arrow { font-size: 16px; transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Underline link */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--brand);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: gap var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.text-link:hover { gap: 14px; color: var(--brand-2); }

/* ---------- Header ---------- */
.announcement-bar {
    background: var(--brand-3);
    color: var(--paper);
    font-size: 13px;
    text-align: center;
    padding: 10px 16px;
    letter-spacing: 0.01em;
}
.announcement-bar a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 6px;
    font-weight: 600;
}
.announcement-bar a:hover { color: var(--paper); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,246,241,0.92);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    border-bottom: 1px solid var(--line);
    transition: background var(--t-med) var(--ease);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand img { height: 44px; width: auto; }
.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand__tag {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand);
    margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}
.nav__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
    transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
    content:"";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--brand);
    transition: right var(--t-med) var(--ease);
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after { right: 0; }

.nav__cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    transition: color var(--t-fast) var(--ease);
}
.nav__phone:hover { color: var(--brand); }
.nav__phone i { color: var(--brand); font-size: 13px; }

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 20px;
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--paper);
    z-index: 200;
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
    padding: 28px;
    overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 40px;
}
.mobile-drawer__close {
    width: 44px; height: 44px; border-radius: 50%;
    color: var(--paper); font-size: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
}
.mobile-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer__link {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--paper);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: color var(--t-fast) var(--ease), padding-left var(--t-med) var(--ease);
}
.mobile-drawer__link:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer__cta {
    margin-top: auto;
    padding-top: 32px;
    display: flex; flex-direction: column; gap: 12px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: stretch;
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero__bg-img,
.hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1200ms var(--ease), transform 8000ms var(--ease);
}
.hero__bg-img.is-active {
    opacity: 1;
    transform: scale(1);
}
.hero__bg::after {
    content:""; position: absolute; inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(20,17,15,0.35) 0%, rgba(20,17,15,0.55) 60%, rgba(20,17,15,0.85) 100%),
        linear-gradient(90deg, rgba(20,17,15,0.7) 0%, rgba(20,17,15,0.15) 50%);
}

/* Hero slider meta (label + dots) */
.hero__slider-meta {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    right: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    pointer-events: auto;
}
.hero__slider-labels {
    position: relative;
    height: 22px;
    min-width: 200px;
    overflow: hidden;
}
.hero__slider-label {
    display: block;
    position: absolute;
    inset: 0;
    text-align: right;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
    white-space: nowrap;
}
.hero__slider-label.is-active {
    opacity: 1;
    transform: translateY(0);
}
.hero__dots {
    display: flex;
    gap: 8px;
}
.hero__dot {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(250,246,241,0.32);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 320ms var(--ease), width 320ms var(--ease);
}
.hero__dot.is-active {
    background: var(--accent);
    width: 44px;
}
.hero__dot:hover { background: rgba(250,246,241,0.6); }
.hero__dot.is-active:hover { background: var(--accent); }

@media (max-width: 640px) {
    .hero__slider-meta {
        bottom: 18px;
        right: 20px;
    }
    .hero__slider-label { font-size: 10.5px; }
    .hero__dot { width: 22px; }
    .hero__dot.is-active { width: 36px; }
}
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 140px 28px 80px;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 80px;
    align-items: center;
}
.hero__copy { max-width: 640px; }
.hero__eyebrow {
    color: var(--accent);
    margin-bottom: 24px;
}
.hero__eyebrow::before { background: var(--accent); }
.hero h1 {
    color: var(--paper);
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    margin-bottom: 28px;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-weight: 400;
}
.hero__sub {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(250,246,241,0.85);
    max-width: 52ch;
    margin-bottom: 38px;
}
.hero__ctas {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.hero__meta {
    display: flex;
    gap: 36px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.18);
    color: rgba(250,246,241,0.78);
    font-size: 13.5px;
    flex-wrap: wrap;
}
.hero__meta strong {
    display: block;
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--paper);
    font-weight: 400;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

/* Hero form card */
.hero-form {
    background: var(--paper);
    color: var(--ink);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
    position: relative;
}
.hero-form__head {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.hero-form__head h3 {
    font-size: 1.55rem;
    margin-bottom: 6px;
}
.hero-form__head p {
    font-size: 14px;
    color: var(--ink-3);
}
.field { margin-bottom: 14px; }
.field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-size: 15px;
    transition: border var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: #B8AC9F; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(139,26,26,0.12);
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.btn-submit {
    width: 100%;
    padding: 17px;
    background: var(--brand);
    color: var(--paper);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
    transition: background var(--t-med) var(--ease), transform var(--t-fast) var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}
.btn-submit:hover { background: var(--brand-2); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; pointer-events: none; }
.btn-submit .spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--paper);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}
.btn-submit.loading .spinner { display: inline-block; }
.btn-submit.loading .label { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-trust {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 12px;
    color: var(--ink-3);
}
.form-trust span { display: inline-flex; align-items: center; gap: 5px; }
.form-trust i { color: var(--green); }

.form-error,
.form-success {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 12px;
    display: none;
}
.form-error { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.form-success {
    background: #E8F5EF;
    color: #1F5C45;
    border: 1px solid #A6D9C2;
    text-align: center;
    padding: 28px 18px;
}
.form-success i { font-size: 36px; color: var(--green); margin-bottom: 8px; display: block; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 6px; color: var(--ink); }

/* ---------- Sections / Components ---------- */

/* Trust strip */
.trust-strip {
    background: var(--ink);
    color: var(--paper);
    padding: 22px 0;
    border-top: 4px solid var(--brand);
}
.trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    font-size: 14px;
    letter-spacing: 0.02em;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(250,246,241,0.85);
}
.trust-item i { color: var(--accent); font-size: 18px; }
.trust-item strong { color: var(--paper); font-weight: 700; }

/* Section heading */
.s-head {
    max-width: 760px;
    margin-bottom: 64px;
}
.s-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.s-head--center .eyebrow { margin: 0 auto; }
.s-head h2 { margin-top: 18px; margin-bottom: 18px; }
.s-head p { font-size: 1.1rem; color: var(--ink-2); }

/* Intro / two-col */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper-2);
}
.split__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.split__media:hover img { transform: scale(1.04); }
.split__media--accent::before {
    content:"";
    position: absolute;
    inset: -16px -16px auto auto;
    width: 50%;
    height: 50%;
    background: var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}
.split__copy h2 { margin-top: 18px; margin-bottom: 24px; }
.split__copy p { margin-bottom: 16px; color: var(--ink-2); font-size: 1.05rem; }
.split__copy .btn { margin-top: 24px; }

/* Now-serving strip (inline city list) */
.serving-strip {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.serving-strip__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    flex-shrink: 0;
}
.serving-strip__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    margin: 0;
    padding: 0;
}
.serving-strip__list li {
    display: inline-flex;
    align-items: center;
}
.serving-strip__list li:not(:last-child)::after {
    content: "·";
    margin-left: 16px;
    color: var(--ink-3);
    font-weight: 700;
}
.serving-strip__list a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    transition: color var(--t-fast) var(--ease);
}
.serving-strip__list a:hover { color: var(--brand); }
.serving-strip__more {
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400 !important;
    color: var(--brand) !important;
    font-size: 14px !important;
}

/* Stats inline */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--brand);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.stat__label {
    font-size: 13px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Product grid (editorial) */
.products {
    background: var(--paper-2);
}
.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.product {
    position: relative;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
}
.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -25px rgba(20,17,15,0.25);
}
.product__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-2);
}
.product__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.product:hover .product__media img { transform: scale(1.05); }
.product__body {
    padding: 32px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}
.product__index {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brand);
    font-size: 14px;
}
.product__body h3 {
    font-size: 1.7rem;
    color: var(--ink);
}
.product__body p {
    color: var(--ink-2);
    flex-grow: 1;
}
.product__cta {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--brand);
    transition: gap var(--t-med) var(--ease);
}
.product:hover .product__cta { gap: 14px; }

/* Feature 4-up */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.feature {
    padding: 0 0 30px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--t-med) var(--ease),
                border-color var(--t-med) var(--ease),
                box-shadow var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
}
.feature:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 24px 50px -25px rgba(139,26,26,0.22);
}
.feature__media {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--paper-2);
    margin-bottom: 22px;
    position: relative;
}
.feature__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.feature:hover .feature__media img { transform: scale(1.06); }
.feature__icon {
    width: 56px; height: 56px;
    background: var(--brand);
    color: var(--paper);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin: 36px 28px 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px -8px rgba(139,26,26,0.35);
}
.feature__media + .feature__icon {
    margin-top: -50px;
    border: 4px solid var(--paper);
}
.feature h4 {
    font-size: 1.22rem;
    color: var(--ink);
    margin: 0 28px 10px;
    line-height: 1.25;
}
.feature p {
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: 1.6;
    margin: 0 28px;
}

/* Video card (lazy YouTube) */
.video-card {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--ink);
    box-shadow: 0 30px 80px -30px rgba(0,0,0,0.45);
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
    width: 100%;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 90px -30px rgba(0,0,0,0.55);
}
.video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    z-index: 4;
}
.video-card__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
    display: block;
    z-index: 1;
}
.video-card:hover .video-card__poster { transform: scale(1.04); }
.video-card::after {
    content:"";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease);
    z-index: 2;
}
.video-card.is-playing::after,
.video-card.is-playing .video-card__play,
.video-card.is-playing .video-card__caption,
.video-card.is-playing .video-card__poster { display: none; }
.video-card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 88px; height: 88px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--paper);
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 60px rgba(139,26,26,0.55), 0 0 0 0 rgba(139,26,26,0.4);
    transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
    z-index: 2;
    padding-left: 6px;
    animation: pulseRing 2.4s ease-out infinite;
}
.video-card:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--brand-2);
}
@keyframes pulseRing {
    0%   { box-shadow: 0 20px 60px rgba(139,26,26,0.55), 0 0 0 0 rgba(139,26,26,0.45); }
    70%  { box-shadow: 0 20px 60px rgba(139,26,26,0.55), 0 0 0 22px rgba(139,26,26,0); }
    100% { box-shadow: 0 20px 60px rgba(139,26,26,0.55), 0 0 0 0 rgba(139,26,26,0); }
}
.video-card__caption {
    position: absolute;
    bottom: 24px; left: 28px; right: 28px;
    z-index: 2;
    color: var(--paper);
    text-align: left;
}
.video-card__caption .eyebrow {
    color: var(--accent);
    font-size: 11px;
    margin-bottom: 8px;
}
.video-card__caption .eyebrow::before { background: var(--accent); }
.video-card__caption h4 {
    color: var(--paper);
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.2;
    font-weight: 500;
}
.video-card--full { aspect-ratio: 16/9; max-width: 100%; }

@media (max-width: 640px) {
    .video-card__play { width: 68px; height: 68px; font-size: 20px; }
    .video-card__caption { left: 18px; right: 18px; bottom: 16px; }
}

/* AlumaCore section */
.alumacore {
    position: relative;
    background: linear-gradient(160deg, var(--ink) 0%, var(--brand-3) 100%);
    color: var(--paper);
    padding: clamp(96px, 12vw, 168px) 0;
    overflow: hidden;
}
.alumacore__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(212,162,76,0.10) 0%, transparent 55%),
        radial-gradient(circle at 5% 90%, rgba(139,26,26,0.32) 0%, transparent 50%);
    pointer-events: none;
}
.alumacore__inner { position: relative; z-index: 2; }
.alumacore__head { max-width: 780px; margin-bottom: 72px; }
.alumacore__eyebrow { color: var(--accent); margin-bottom: 18px; }
.alumacore__eyebrow::before { background: var(--accent); }
.alumacore__brand {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.alumacore__name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.4vw, 4.8rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--paper);
    line-height: 1;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.alumacore__name sup {
    font-size: 0.32em;
    color: var(--accent);
    margin-left: 4px;
    vertical-align: super;
    font-weight: 400;
}
.alumacore__flag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border: 1px solid rgba(212,162,76,0.55);
    color: var(--accent);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.alumacore__flag i { font-size: 14px; }
.alumacore h2 {
    color: var(--paper);
    font-size: clamp(1.85rem, 3.2vw, 2.7rem);
    margin-bottom: 20px;
    line-height: 1.15;
}
.alumacore h2 em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-weight: 400;
}
.alumacore .lead { color: rgba(250,246,241,0.82); max-width: 60ch; }

.alumacore__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: stretch;
}
.alumacore__media {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
}
.alumacore__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.alumacore__media:hover img { transform: scale(1.05); }
.alumacore__stamp {
    position: absolute;
    bottom: 28px;
    left: 28px;
    width: 118px; height: 118px;
    background: var(--accent);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 14px 36px rgba(0,0,0,0.42);
    transform: rotate(-8deg);
    border: 4px solid var(--paper);
}
.alumacore__stamp i { font-size: 22px; margin-bottom: 4px; }
.alumacore__stamp span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.alumacore__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}
.spec {
    padding: 30px 28px;
    border: 1px solid rgba(212,162,76,0.35);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(250,246,241,0.07) 0%, rgba(250,246,241,0.025) 100%),
        rgba(0,0,0,0.30);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    transition: border-color var(--t-med) var(--ease), background var(--t-med) var(--ease), transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
    position: relative;
}
.spec:hover {
    border-color: var(--accent);
    background:
        linear-gradient(180deg, rgba(250,246,241,0.10) 0%, rgba(250,246,241,0.04) 100%),
        rgba(0,0,0,0.35);
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 24px 50px -25px rgba(212,162,76,0.35);
}
.spec__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.06em;
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 500;
}
.spec h4 {
    color: #FBF7F2;
    font-size: 1.18rem;
    margin-bottom: 12px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.005em;
}
.spec p {
    font-size: 14.5px;
    color: rgba(250,246,241,0.92);
    line-height: 1.65;
    font-weight: 400;
}

.alumacore__cta {
    margin-top: 72px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 48px;
    border-top: 1px solid rgba(212,162,76,0.18);
}
.alumacore__cta-meta {
    margin-left: auto;
    font-size: 13px;
    color: rgba(250,246,241,0.55);
    letter-spacing: 0.04em;
}
.alumacore__cta-meta strong { color: var(--paper); font-weight: 600; }

@media (max-width: 960px) {
    .alumacore__grid { grid-template-columns: 1fr; gap: 40px; }
    .alumacore__specs { grid-template-columns: 1fr; gap: 14px; }
    .alumacore__media { aspect-ratio: 3/2; }
    .alumacore__stamp { width: 96px; height: 96px; bottom: 18px; left: 18px; }
    .alumacore__cta { flex-direction: column; align-items: stretch; }
    .alumacore__cta-meta { margin-left: 0; text-align: center; }
}

/* Big quote / testimonials */
.testimonial {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
}
.testimonial__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(212,162,76,0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(139,26,26,0.18) 0%, transparent 50%);
    pointer-events: none;
}
.testimonial__inner { position: relative; max-width: 900px; margin: 0 auto; padding: 0 28px; text-align: center; }
.testimonial .quote-mark {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: -30px;
    display: block;
}
.testimonial blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.3;
    font-weight: 400;
    color: var(--paper);
    margin-bottom: 32px;
    letter-spacing: -0.005em;
}
.testimonial__author {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(250,246,241,0.7);
}
.testimonial__author strong { color: var(--paper); font-weight: 700; }

/* Reviews grid */
.reviews-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.reviews-meta__score {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--brand);
    font-weight: 400;
    line-height: 1;
}
.reviews-meta__stars { color: var(--accent); font-size: 22px; }
.reviews-meta__label { font-size: 14px; color: var(--ink-3); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.review {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 32px;
    border-radius: var(--radius);
    transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.review:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
}
.review__stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; }
.review__text {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-2);
    margin-bottom: 18px;
}
.review__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.review__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--paper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
}
.review__name {
    font-weight: 700;
    color: var(--ink);
    font-size: 14px;
}
.review__source {
    font-size: 12px;
    color: var(--ink-3);
}
.review__source i { color: #4285f4; margin-right: 5px; }

/* Locations / map area */
.locations {
    background: var(--paper);
    position: relative;
}
.locations__head { text-align: center; margin-bottom: 56px; }
.locations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.location-tag {
    padding: 18px 22px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-weight: 600;
    text-align: center;
    font-size: 14.5px;
    transition: all var(--t-med) var(--ease);
}
.location-tag:hover {
    background: var(--brand);
    color: var(--paper);
    border-color: var(--brand);
    transform: translateY(-2px);
}
.location-tag i { display: block; color: var(--brand); font-size: 18px; margin-bottom: 6px; transition: color var(--t-med) var(--ease); }
.location-tag:hover i { color: var(--accent); }

/* Process / steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: step;
}
.step {
    counter-increment: step;
    position: relative;
    display: flex;
    flex-direction: column;
}
.step__media {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper-2);
    margin-bottom: 24px;
    position: relative;
}
.step__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.step:hover .step__media img { transform: scale(1.05); }
.step__media::after {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: 16px; left: 22px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 64px;
    color: var(--paper);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.45);
    z-index: 2;
}
.step h4 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 10px;
}
.step p {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.6;
}

/* AlumaCore inline callout (sub-pages) */
.alumacore-callout {
    background: linear-gradient(135deg, var(--ink) 0%, var(--brand-3) 100%);
    color: var(--paper);
    padding: clamp(48px, 6vw, 72px) 0;
    border-top: 1px solid rgba(212,162,76,0.22);
    border-bottom: 1px solid rgba(212,162,76,0.22);
    position: relative;
    overflow: hidden;
}
.alumacore-callout::before {
    content:"";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 50%, rgba(212,162,76,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.alumacore-callout__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.alumacore-callout__brand { max-width: 720px; }
.alumacore-callout__eyebrow { color: var(--accent); margin-bottom: 12px; }
.alumacore-callout__eyebrow::before { background: var(--accent); }
.alumacore-callout h3 {
    color: var(--paper);
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin-bottom: 12px;
    line-height: 1.2;
}
.alumacore-callout__name {
    color: var(--accent);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-weight: 400;
}
.alumacore-callout__name sup {
    font-size: 0.42em;
    vertical-align: super;
    color: var(--accent);
    margin-left: 2px;
}
.alumacore-callout__brand p {
    color: rgba(250,246,241,0.82);
    font-size: 15.5px;
    line-height: 1.55;
    max-width: 60ch;
}
.alumacore-callout__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}
.alumacore-callout__flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(212,162,76,0.55);
    color: var(--accent);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
@media (max-width: 720px) {
    .alumacore-callout__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .alumacore-callout__cta { align-items: flex-start; }
}

/* Showroom section */
.showroom {
    background: var(--paper);
    position: relative;
    overflow: hidden;
}
.showroom__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.showroom__media {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper-2);
}
.showroom__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.showroom__media:hover img { transform: scale(1.04); }
.showroom__badge {
    position: absolute;
    top: 24px; left: 24px;
    background: var(--brand);
    color: var(--paper);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 30px -8px rgba(139,26,26,0.4);
}
.showroom__badge i { font-size: 12px; }
.showroom__copy h2 { margin-top: 18px; margin-bottom: 24px; }
.showroom__quote {
    background: var(--paper-2);
    border-left: 3px solid var(--brand);
    padding: 22px 26px;
    margin: 28px 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--ink);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.showroom__quote-author {
    display: block;
    margin-top: 12px;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.showroom__points {
    list-style: none;
    margin: 24px 0 28px;
    padding: 0;
    display: grid;
    gap: 14px;
}
.showroom__points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.55;
}
.showroom__points li i {
    color: var(--brand);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 14px;
    width: 22px;
    height: 22px;
    background: rgba(139,26,26,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.showroom__address {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 22px;
    background: var(--paper-2);
    border-radius: var(--radius);
    margin-top: 24px;
    border: 1px solid var(--line);
}
.showroom__address i {
    width: 44px; height: 44px;
    background: var(--brand);
    color: var(--paper);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.showroom__address-text { flex: 1; line-height: 1.4; }
.showroom__address-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 2px;
    font-weight: 500;
}
.showroom__address-text span { font-size: 13.5px; color: var(--ink-3); }

@media (max-width: 960px) {
    .showroom__inner { grid-template-columns: 1fr; gap: 48px; }
    .showroom__media { aspect-ratio: 16/10; }
}

/* Location map (locations / contact pages) */
.location-map {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 0;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px -34px rgba(20,17,15,0.22);
}
.location-map__frame {
    aspect-ratio: 16/11;
    position: relative;
    background: var(--paper-2);
}
.location-map__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.location-map__info {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}
.location-map__info .eyebrow {
    color: var(--brand);
    margin-bottom: 8px;
}
.location-map__info h3 {
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 4px;
}
.location-map__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.location-map__contact li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: flex-start;
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.5;
}
.location-map__contact li i {
    width: 36px; height: 36px;
    background: var(--brand);
    color: var(--paper);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.location-map__contact li strong {
    display: block;
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 2px;
}
.location-map__contact li a:hover { color: var(--brand); }
.location-map__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

@media (max-width: 880px) {
    .location-map { grid-template-columns: 1fr; }
    .location-map__frame { aspect-ratio: 4/3; }
    .location-map__info { padding: 32px 28px; }
}

/* Manufacturing gallery — multi-image editorial collage */
.mfg-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
    aspect-ratio: 4/5;
}
.mfg-gallery__item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--paper-2);
    position: relative;
}
.mfg-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.mfg-gallery__item:hover img {
    transform: scale(1.07);
}
.mfg-gallery__item--1 { grid-column: 1; grid-row: 1 / 3; }
.mfg-gallery__item--2 { grid-column: 2; grid-row: 1; }
.mfg-gallery__item--3 { grid-column: 2; grid-row: 2; }
.mfg-gallery__item--4 { grid-column: 1; grid-row: 3; }
.mfg-gallery__item--5 { grid-column: 2; grid-row: 3 / 5; }
.mfg-gallery__item--6 { grid-column: 1; grid-row: 4; }
.mfg-gallery__item--7 { grid-column: 1; grid-row: 5; }
.mfg-gallery__item--8 { grid-column: 2; grid-row: 5; }

@media (max-width: 640px) {
    .mfg-gallery {
        grid-template-rows: repeat(4, 1fr);
        aspect-ratio: 4/5;
    }
    .mfg-gallery__item--1 { grid-row: 1 / 3; }
    .mfg-gallery__item--2 { grid-row: 1; }
    .mfg-gallery__item--3 { grid-row: 2; }
    .mfg-gallery__item--4 { grid-row: 3; }
    .mfg-gallery__item--5 { grid-row: 3 / 5; }
    .mfg-gallery__item--6 { grid-row: 4; }
    .mfg-gallery__item--7,
    .mfg-gallery__item--8 { display: none; }
}

/* Tyler portrait inside the meet/founder card */
.meet__portrait {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 22px;
    border: 3px solid var(--accent);
    box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5);
}
.meet__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meet (founder + service map) */
.meet { background: var(--paper); }
.meet__head { max-width: 760px; margin-bottom: 56px; }
.meet__head h2 { margin-top: 18px; }
.meet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
}
.meet__story {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.meet__signature {
    background: linear-gradient(160deg, var(--ink) 0%, var(--brand-3) 100%);
    color: var(--paper);
    border-radius: var(--radius);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}
.meet__signature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(212,162,76,0.12) 0%, transparent 55%);
    pointer-events: none;
}
.meet__signature-eyebrow {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
}
.meet__signature-eyebrow::before {
    content:""; width: 28px; height: 1px; background: var(--accent);
}
.meet__signature-name {
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(2.4rem, 4.4vw, 3.4rem);
    line-height: 1;
    color: var(--paper);
    letter-spacing: -0.015em;
    margin-bottom: 8px;
    position: relative;
    font-weight: 400;
}
.meet__signature-role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(250,246,241,0.7);
    margin-bottom: 24px;
    display: block;
    position: relative;
}
.meet__signature p {
    color: rgba(250,246,241,0.88);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 14px;
    position: relative;
}
.meet__milestones {
    list-style: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(212,162,76,0.22);
    display: grid;
    gap: 14px;
    position: relative;
}
.meet__milestones li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: baseline;
}
.meet__milestones li span {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 400;
}
.meet__milestones li strong {
    font-weight: 500;
    color: var(--paper);
    font-size: 14.5px;
    line-height: 1.4;
}
.meet__story .btn { align-self: flex-start; }

.meet__map {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px -30px rgba(20,17,15,0.18);
}
.meet__map-frame {
    aspect-ratio: 4/3;
    width: 100%;
    background: var(--paper-2);
    position: relative;
}
.meet__map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.meet__map-meta {
    padding: 32px 32px 36px;
    background: var(--paper);
    border-top: 1px solid var(--line);
}
.meet__map-meta .eyebrow { color: var(--brand); margin-bottom: 12px; }
.meet__map-meta h3 {
    font-size: 1.4rem;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 18px;
}
.meet__cities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    padding: 0;
    margin-bottom: 22px;
}
.meet__cities li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-2);
    font-weight: 600;
}
.meet__cities li i { color: var(--brand); font-size: 12px; }

@media (max-width: 960px) {
    .meet__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Big CTA band */
.cta-band {
    background:
        linear-gradient(135deg, rgba(20,17,15,0.84) 0%, rgba(61,8,8,0.78) 100%),
        url("https://shutterup.com/wp-content/uploads/2025/04/S028B-PtB3-copy.jpg") center/cover no-repeat;
    color: var(--paper);
    padding: clamp(80px, 10vw, 140px) 0;
    text-align: center;
    position: relative;
}
.cta-band h2 {
    color: var(--paper);
    margin-bottom: 20px;
    max-width: 22ch;
    margin-inline: auto;
}
.cta-band h2 em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
}
.cta-band p {
    font-size: 1.1rem;
    color: rgba(250,246,241,0.85);
    max-width: 56ch;
    margin: 0 auto 36px;
}
.cta-band__ctas {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: rgba(250,246,241,0.78);
    padding: 88px 0 0;
    border-top: 4px solid var(--brand);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 64px;
}
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    transition: opacity var(--t-fast) var(--ease);
}
.footer-brand-link:hover { opacity: 0.85; }
.footer-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    box-shadow: none;
}
.footer-brand-mark img {
    height: 52px;
    width: auto;
    margin: 0;
    filter: none;
}
.footer-brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--paper);
    letter-spacing: -0.01em;
}
.footer-brand-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-top: 8px;
}
.footer-brand p { font-size: 14.5px; line-height: 1.65; max-width: 36ch; margin-bottom: 22px; }
.footer-brand .socials { display: flex; gap: 10px; }
.footer-brand .socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--paper);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background var(--t-med) var(--ease), transform var(--t-fast) var(--ease);
}
.footer-brand .socials a:hover { background: var(--brand); transform: translateY(-2px); }

.footer-col h5 {
    color: var(--paper);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-family: var(--font-body);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    font-size: 14.5px;
    color: rgba(250,246,241,0.7);
    transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: 14.5px; line-height: 1.7; margin-bottom: 12px; }
.footer-col p i { color: var(--brand); margin-right: 8px; width: 18px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(250,246,241,0.5);
}
.footer-bottom a { color: rgba(250,246,241,0.7); }
.footer-bottom a:hover { color: var(--paper); }

/* Page header (interior pages) */
.page-hero {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 96px);
    position: relative;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute; inset: 0;
    opacity: 0.28;
    z-index: 0;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
    content:""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,17,15,0.4) 0%, var(--ink) 100%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 880px; }
.page-hero .eyebrow { color: var(--accent); margin-bottom: 18px; }
.page-hero .eyebrow::before { background: var(--accent); }
.page-hero h1 {
    color: var(--paper);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    margin-bottom: 22px;
}
.page-hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-weight: 400;
}
.page-hero p {
    font-size: 1.18rem;
    color: rgba(250,246,241,0.8);
    line-height: 1.6;
    max-width: 56ch;
}
.breadcrumbs {
    font-size: 13px;
    color: rgba(250,246,241,0.55);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs a:hover { color: var(--paper); }
.breadcrumbs i { margin: 0 8px; font-size: 9px; vertical-align: middle; }

/* Option / spec card grid (for frame options, tilt styles, control options) */
.option-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.option-grid--3 { grid-template-columns: repeat(3, 1fr); }
.option-grid--5 { grid-template-columns: repeat(5, 1fr); }
.option-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--t-med) var(--ease),
                border-color var(--t-med) var(--ease),
                box-shadow var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
}
.option-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 18px 38px -22px rgba(20,17,15,0.18);
}
.option-card__media {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--paper-2);
}
.option-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.option-card:hover .option-card__media img { transform: scale(1.06); }
.option-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}
.option-card__index {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brand);
    font-size: 12px;
    margin-bottom: 2px;
}
.option-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.25;
    font-weight: 500;
}
.option-card__desc {
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.55;
}

/* Inline 8-image work gallery (used on product pages) */
.work-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.work-gallery__item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--paper-2);
}
.work-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.work-gallery__item:hover img { transform: scale(1.07); }
.work-gallery__item--tall { grid-row: span 2; aspect-ratio: 1/2; }
.work-gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }

@media (max-width: 960px) {
    .option-grid,
    .option-grid--3,
    .option-grid--5 { grid-template-columns: repeat(2, 1fr); }
    .work-gallery { grid-template-columns: repeat(2, 1fr); }
    .work-gallery__item--tall { grid-row: auto; aspect-ratio: 1/1; }
    .work-gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
}
@media (max-width: 540px) {
    .option-grid,
    .option-grid--3,
    .option-grid--5 { grid-template-columns: 1fr; }
}

/* Bullet check list */
.checklist { list-style: none; margin: 24px 0; }
.checklist li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    color: var(--ink-2);
    line-height: 1.5;
}
.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0; top: -2px;
    width: 24px; height: 24px;
    background: var(--brand);
    color: var(--paper);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 14px; max-width: 880px; margin: 0 auto; }
.faq__item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--t-med) var(--ease);
}
.faq__item[open] { border-color: var(--brand); }
.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: var(--ink);
    line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 28px;
    line-height: 1;
    color: var(--brand);
    flex-shrink: 0;
    transition: transform var(--t-med) var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item .faq__a {
    padding: 0 28px 28px;
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.7;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
    grid-auto-rows: 220px;
}
.gallery__item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--paper-2);
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--lg { grid-column: span 6; grid-row: span 2; }
.gallery__item--md { grid-column: span 4; grid-row: span 1; }
.gallery__item--sm { grid-column: span 3; grid-row: span 1; }
.gallery__item--portrait { grid-column: span 4; grid-row: span 2; }

/* ========================================
   Pro Gallery — filterable masonry + lightbox
   ======================================== */
.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 56px;
}
.gallery-filter {
    padding: 11px 22px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 320ms var(--ease),
                border-color 320ms var(--ease),
                color 320ms var(--ease),
                transform 280ms var(--ease);
    font-family: var(--font-body);
    line-height: 1;
}
.gallery-filter:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-1px);
}
.gallery-filter.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--paper);
    box-shadow: 0 8px 24px -10px rgba(139,26,26,0.45);
}
.gallery-filter__count {
    font-size: 11px;
    opacity: 0.7;
    margin-left: 6px;
    font-weight: 500;
}

.gallery-pro {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 92px;
    gap: 12px;
    grid-auto-flow: dense;
}
.gallery-pro__item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--paper-2);
    position: relative;
    cursor: pointer;
    transition: opacity 420ms var(--ease),
                transform 420ms var(--ease);
}
.gallery-pro__item.is-hidden {
    display: none;
}
.gallery-pro__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
    display: block;
}
.gallery-pro__item:hover img { transform: scale(1.07); }
.gallery-pro__item::after {
    content:"";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,17,15,0.65) 0%, rgba(20,17,15,0.0) 55%);
    opacity: 0;
    transition: opacity 320ms var(--ease);
    pointer-events: none;
}
.gallery-pro__item:hover::after { opacity: 1; }
.gallery-pro__caption {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    color: var(--paper);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}
.gallery-pro__item:hover .gallery-pro__caption {
    opacity: 1;
    transform: translateY(0);
}
.gallery-pro__caption span {
    display: block;
    color: var(--accent);
    font-size: 10px;
    margin-bottom: 4px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: none;
}

/* Span variations */
.gallery-pro__item--a { grid-column: span 6; grid-row: span 5; }
.gallery-pro__item--b { grid-column: span 3; grid-row: span 5; }
.gallery-pro__item--c { grid-column: span 3; grid-row: span 3; }
.gallery-pro__item--d { grid-column: span 4; grid-row: span 4; }
.gallery-pro__item--e { grid-column: span 4; grid-row: span 3; }
.gallery-pro__item--f { grid-column: span 3; grid-row: span 4; }
.gallery-pro__item--g { grid-column: span 6; grid-row: span 3; }
.gallery-pro__item--h { grid-column: span 8; grid-row: span 4; }

@media (max-width: 1024px) {
    .gallery-pro { grid-template-columns: repeat(8, 1fr); }
    .gallery-pro__item--a { grid-column: span 8; grid-row: span 4; }
    .gallery-pro__item--b { grid-column: span 4; grid-row: span 5; }
    .gallery-pro__item--c { grid-column: span 4; grid-row: span 3; }
    .gallery-pro__item--d { grid-column: span 4; grid-row: span 4; }
    .gallery-pro__item--e { grid-column: span 4; grid-row: span 3; }
    .gallery-pro__item--f { grid-column: span 4; grid-row: span 4; }
    .gallery-pro__item--g { grid-column: span 8; grid-row: span 3; }
    .gallery-pro__item--h { grid-column: span 8; grid-row: span 4; }
}
@media (max-width: 640px) {
    .gallery-pro { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; gap: 8px; }
    .gallery-pro__item--c,
    .gallery-pro__item--b,
    .gallery-pro__item--d,
    .gallery-pro__item--e,
    .gallery-pro__item--f { grid-column: span 1; grid-row: span 2; }
    .gallery-pro__item--a,
    .gallery-pro__item--g,
    .gallery-pro__item--h { grid-column: span 2; grid-row: span 3; }
    .gallery-pro__caption {
        opacity: 1;
        transform: translateY(0);
        bottom: 10px; left: 12px; right: 12px;
        font-size: 10px;
        letter-spacing: 0.14em;
    }
    .gallery-pro__item::after { opacity: 1; }
    .gallery-filter { padding: 9px 16px; font-size: 12px; }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 10, 0.94);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: lightboxIn 320ms var(--ease);
}
.lightbox.is-open { display: flex; }
@keyframes lightboxIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__inner {
    max-width: 1280px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox__inner img {
    max-width: 88vw;
    max-height: 82vh;
    border-radius: var(--radius);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    object-fit: contain;
    display: block;
}
.lightbox__caption {
    margin-top: 18px;
    color: rgba(250,246,241,0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
}
.lightbox__caption #lightboxCat { color: var(--accent); margin-right: 12px; }
.lightbox__caption #lightboxCap { color: rgba(250,246,241,0.88); }
.lightbox__close {
    position: absolute;
    top: 24px; right: 24px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--paper);
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.lightbox__close:hover {
    background: rgba(255,255,255,0.15);
    transform: rotate(90deg);
}
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--paper);
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms var(--ease);
    z-index: 5;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

@media (max-width: 640px) {
    .lightbox { padding: 60px 12px 80px; }
    .lightbox__close { width: 42px; height: 42px; font-size: 18px; top: 12px; right: 12px; }
    .lightbox__nav { width: 42px; height: 42px; font-size: 16px; }
    .lightbox__nav--prev { left: 6px; }
    .lightbox__nav--next { right: 6px; }
    .lightbox__caption { font-size: 10px; }
    .lightbox__inner img { max-height: 72vh; }
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile sticky CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--paper);
    box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.18);
    padding: 10px;
    gap: 8px;
}
.mobile-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
}
.mobile-cta__call { background: var(--ink); color: var(--paper); }
.mobile-cta__form { background: var(--brand); color: var(--paper); }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
    .nav__list { gap: 18px; }
    .nav__link { font-size: 13.5px; }
    .brand__tag { display: none; }
}
@media (max-width: 1180px) {
    .nav__list { display: none; }
    .nav__toggle { display: inline-flex; }
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-col:nth-child(4) { grid-column: span 3; }
}
@media (max-width: 960px) {
    .hero { min-height: auto; }
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 88px 24px 64px;
    }
    .hero__copy { max-width: none; }
    .split { grid-template-columns: 1fr; gap: 56px; }
    .split--reverse { direction: ltr; }
    .split__media { aspect-ratio: 5/4; }
    .products__grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
    .locations__grid { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-col:nth-child(4) { grid-column: span 2; }
    .gallery { grid-auto-rows: 160px; }
    .gallery__item--lg { grid-column: span 12; grid-row: span 2; }
    .gallery__item--md { grid-column: span 6; }
    .gallery__item--sm { grid-column: span 6; }
    .gallery__item--portrait { grid-column: span 6; grid-row: span 2; }
    .nav__list { display: none; }
    .nav__phone span { display: none; }
    .nav__toggle { display: inline-flex; }
}
@media (max-width: 640px) {
    body { padding-bottom: 76px; font-size: 16px; }
    .container { padding: 0 20px; }
    .site-header__inner { height: 68px; gap: 16px; }
    .brand img { height: 38px; }
    .brand__name { font-size: 18px; }
    .brand__tag { display: none; }
    .nav__cta .btn { padding: 11px 16px; font-size: 13px; }
    .nav__cta .nav__phone { display: none; }
    .announcement-bar { font-size: 11.5px; padding: 8px 14px; }
    .field-row { grid-template-columns: 1fr; }
    .hero-form { padding: 28px 24px; }
    .hero__meta { gap: 24px; }
    .features-grid, .locations__grid, .steps { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-col:nth-child(4) { grid-column: span 1; }
    .stats-row { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .gallery { grid-auto-rows: 140px; }
    .mobile-cta { display: flex; }
    .mobile-drawer__link { font-size: 28px; }
    .testimonial blockquote { font-size: 1.4rem; }
    .product__body { padding: 24px 24px 28px; }
    .product__body h3 { font-size: 1.4rem; }
}
@media (max-width: 420px) {
    .brand__text { display: none; }
    .nav__cta .btn { padding: 10px 14px; font-size: 12px; letter-spacing: 0; }
}

/* ========================================
   Mobile Polish — comprehensive responsive fixes
   ======================================== */

/* Tablet breakpoint refinements */
@media (max-width: 960px) {
    /* Tighten oversized type a touch */
    h1 { letter-spacing: -0.02em; }

    /* Alumacore section */
    .alumacore { padding: clamp(72px, 9vw, 120px) 0; }
    .alumacore__head { margin-bottom: 48px; }
    .alumacore__brand { gap: 14px; }
    .alumacore__name { font-size: clamp(2.4rem, 6vw, 3.6rem); }
    .alumacore__grid { grid-template-columns: 1fr; gap: 36px; }
    .alumacore__media { aspect-ratio: 5/4; }
    .alumacore__specs { grid-template-columns: 1fr 1fr; gap: 14px; }
    .spec { padding: 22px 22px; }

    /* Showroom split */
    .showroom__inner { grid-template-columns: 1fr; gap: 40px; }
    .showroom__media { aspect-ratio: 16/10; }

    /* Manufacturing intro split media */
    .split__media--accent::before { width: 40%; height: 40%; }

    /* Option-grid--5: smoother step from 5 → 3 → 2 → 1 */
    .option-grid--5 { grid-template-columns: repeat(3, 1fr); }

    /* Tyler portrait nudge */
    .meet__portrait { width: 80px; height: 80px; }
    .meet__signature { padding: 32px 28px; }
    .meet__signature-name { font-size: clamp(2rem, 5vw, 2.8rem); }

    /* Contact page two-column */
    .contact-grid { gap: 40px !important; }
}

/* Phone breakpoint */
@media (max-width: 640px) {
    /* Page hero tighter padding & h1 fits */
    .page-hero { padding: 56px 0 56px; }
    .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); }
    .page-hero p { font-size: 1rem; }
    .breadcrumbs { margin-bottom: 22px; font-size: 12px; }

    /* Hero slider — move dots/labels to bottom-center */
    .hero__slider-meta {
        bottom: 14px;
        right: 50%;
        transform: translateX(50%);
        align-items: center;
    }
    .hero__slider-labels {
        text-align: center;
        min-width: 0;
    }
    .hero__slider-label { text-align: center; font-size: 10px; }
    .hero__inner {
        padding: 64px 20px 64px;
        gap: 36px;
    }
    .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); margin-bottom: 18px; }
    .hero__sub { font-size: 0.98rem; margin-bottom: 26px; }
    .hero__ctas .btn { width: 100%; }
    .hero__meta {
        margin-top: 36px;
        padding-top: 18px;
        gap: 16px 24px;
    }
    .hero__meta strong { font-size: 22px; }
    .hero__meta div { font-size: 12px; }

    /* Hero form */
    .hero-form { padding: 24px 20px; }
    .hero-form__head h3 { font-size: 1.3rem; }

    /* Section padding compression */
    section .container { padding-left: 20px; padding-right: 20px; }
    .s-head { margin-bottom: 36px; }
    .s-head--center { margin-bottom: 36px; }

    /* Trust strip — stack tighter */
    .trust-strip__inner { gap: 16px 28px; font-size: 13px; }
    .trust-item i { font-size: 16px; }

    /* Split media accent block too big at mobile */
    .split__media--accent::before { display: none; }

    /* AlumaCore section */
    .alumacore { padding: 64px 0 72px; }
    .alumacore__head { margin-bottom: 40px; }
    .alumacore__brand { gap: 12px; flex-direction: column; align-items: flex-start; }
    .alumacore__name { font-size: 2.4rem; }
    .alumacore__flag { font-size: 10.5px; padding: 7px 14px; }
    .alumacore h2 { font-size: 1.65rem; }
    .alumacore__specs { grid-template-columns: 1fr; gap: 12px; }
    .spec { padding: 22px 20px; }
    .spec h4 { font-size: 1.1rem; }
    .alumacore__cta { margin-top: 36px; padding-top: 28px; }

    /* AlumaCore callout (sub-pages) */
    .alumacore-callout { padding: 40px 0; }
    .alumacore-callout__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
    .alumacore-callout__cta { align-items: flex-start; }
    .alumacore-callout h3 { font-size: 1.35rem; }

    /* Meet (founder + map) */
    .meet__head { margin-bottom: 36px; }
    .meet__signature { padding: 28px 22px; }
    .meet__signature-name { font-size: 1.9rem; }
    .meet__milestones li {
        grid-template-columns: 60px 1fr;
        gap: 12px;
    }
    .meet__milestones li span { font-size: 1rem; }
    .meet__milestones li strong { font-size: 13.5px; }
    .meet__map-meta { padding: 24px 22px 28px; }
    .meet__map-meta h3 { font-size: 1.15rem; }
    .meet__cities { grid-template-columns: 1fr 1fr; gap: 6px 14px; }
    .meet__cities li { font-size: 13px; }
    .meet__portrait { width: 72px; height: 72px; margin-bottom: 18px; }

    /* Showroom section */
    .showroom__quote { padding: 18px 20px; font-size: 1rem; }
    .showroom__points li { font-size: 14.5px; }
    .showroom__address { padding: 16px 18px; gap: 12px; }
    .showroom__address i { width: 38px; height: 38px; font-size: 16px; }
    .showroom__address-text strong { font-size: 0.98rem; }

    /* Option grids */
    .option-grid,
    .option-grid--3,
    .option-grid--5 { grid-template-columns: 1fr 1fr; gap: 12px; }
    .option-card__body { padding: 14px 16px 18px; }
    .option-card__title { font-size: 0.95rem; }
    .option-card__desc { font-size: 12.5px; }

    /* Work gallery */
    .work-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }

    /* Manufacturing gallery */
    .mfg-gallery::before { display: none; }

    /* Stat cards centered */
    .stats-row { padding-top: 24px; }
    .stat__num { font-size: 2rem; }

    /* Reviews */
    .reviews-meta__score { font-size: 36px; }
    .review { padding: 22px; }
    .review__text { font-size: 14.5px; }

    /* CTA band */
    .cta-band { padding: 56px 0 68px; }
    .cta-band h2 { font-size: 1.8rem; }
    .cta-band p { font-size: 0.98rem; }
    .cta-band__ctas .btn { width: 100%; }

    /* Final CTA - stack buttons */
    .hero__ctas { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero__ctas .btn { justify-content: center; }
    .cta-band__ctas { flex-direction: column; gap: 12px; max-width: 320px; margin: 0 auto; }

    /* Buttons — ensure 44px+ tap target */
    .btn--sm { padding: 12px 18px; }

    /* FAQ */
    .faq__item summary { padding: 18px 20px; font-size: 1rem; gap: 16px; }
    .faq__item .faq__a { padding: 0 20px 22px; font-size: 14.5px; }

    /* Testimonial */
    .testimonial { padding: 64px 0; }
    .testimonial .quote-mark { font-size: 80px; margin-bottom: -18px; }
    .testimonial blockquote { font-size: 1.25rem; line-height: 1.35; }

    /* Final CTA section */
    .final-cta-content h2 { font-size: 1.8rem; }

    /* Footer compaction */
    .site-footer { padding: 56px 0 0; }
    .footer-top { margin-bottom: 36px; }
    .footer-brand p { font-size: 14px; max-width: none; }

    /* Location map */
    .location-map__info { padding: 24px 22px 28px; }
    .location-map__info h3 { font-size: 1.35rem; }

    /* Page hero specifically */
    .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); margin-bottom: 14px; }

    /* Reveal less aggressive on phones */
    .reveal { transform: translateY(16px); }
}

/* Small phone */
@media (max-width: 420px) {
    body { font-size: 15.5px; }
    h1 { letter-spacing: -0.015em; }
    .container { padding: 0 16px; }
    .hero__inner { padding: 56px 16px 56px; }
    .hero h1 { font-size: 2rem; }
    .nav__cta .btn { padding: 9px 12px; font-size: 11.5px; }
    .top-bar-cta, .top-bar-call { padding: 8px 12px !important; font-size: 10.5px !important; }

    /* Cards */
    .product__body { padding: 20px 20px 24px; }
    .feature h4, .feature p { margin-left: 22px; margin-right: 22px; }
    .feature__icon { margin-left: 22px; }

    /* Page hero */
    .page-hero { padding: 48px 0 48px; }

    /* Trust strip — vertical */
    .trust-strip__inner { gap: 12px 18px; font-size: 12px; }

    /* Option grids — single column */
    .option-grid,
    .option-grid--3,
    .option-grid--5 { grid-template-columns: 1fr; }
    .work-gallery { grid-template-columns: 1fr; }
    .work-gallery__item { aspect-ratio: 4/3; }

    /* Spec cards single col */
    .alumacore__specs { grid-template-columns: 1fr; }

    /* Cities split column */
    .meet__cities { grid-template-columns: 1fr; }

    /* AlumaCore name smaller */
    .alumacore__name { font-size: 2rem; }

    /* Tighter form */
    .hero-form { padding: 22px 18px; }
    .field input, .field select, .field textarea { padding: 12px 14px; font-size: 14.5px; }
    .btn-submit { padding: 15px; font-size: 14px; }

    /* Footer brand */
    .footer-brand-mark img { height: 44px; }
    .footer-brand-name { font-size: 22px; }

    /* Hero form trust badges stack */
    .form-trust { flex-direction: column; gap: 6px; }
}
