/* =============================================================
   Gadsden Fence LLC: Sign-inspired refresh
   Brand colors derived from the company sign:
   - Black (#0B0B0C)
   - Signature red (#C8202B)
   - White / off-white / steel
   ============================================================= */

:root {
    /* Brand */
    --red:        #C8202B;
    --red-dark:   #A0151D;
    --red-soft:   #FCEFEF;
    --black:      #0B0B0C;
    --ink:        #1A1B1D;
    --charcoal:   #25272B;
    --slate:      #525861;
    --muted:      #757B85;
    --line:       #DDE0E3;
    --line-soft:  #ECEEF1;
    --gray-1:     #F6F7F8;
    --cream:      #FAF7F1;
    --white:      #FFFFFF;
    --steel:      #2A2D33; /* the deep grey of the sign's chainlink backdrop */

    /* Type */
    --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --font-display: "Oswald", "Arial Narrow", "Impact", sans-serif;

    /* Layout */
    --container:  1160px;
    --radius:     8px;
    --radius-lg:  14px;
    --shadow-sm:  0 1px 2px rgba(11,11,12,.06), 0 2px 6px rgba(11,11,12,.05);
    --shadow-md:  0 6px 22px rgba(11,11,12,.10), 0 2px 8px rgba(11,11,12,.06);
    --shadow-lg:  0 18px 45px rgba(11,11,12,.18), 0 4px 14px rgba(11,11,12,.10);
    --ease:       cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

/* Headings: Oswald, all-caps, tight tracking (matches the sign) */
h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .005em;
    line-height: 1.05;
    margin: 0 0 .5em;
    font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.005em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.2rem; letter-spacing: .02em; }
p  { margin: 0 0 1em; }

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

/* Section headers */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-head p {
    color: var(--slate);
    font-size: 1.05rem;
    font-family: var(--font-sans);
    margin-top: 14px;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    font-family: var(--font-sans);
    margin-bottom: 14px;
}
.section-kicker::before {
    content: "";
    display: inline-block;
    width: 22px; height: 2px;
    background: var(--red);
}
.section-kicker-dark { color: #ff9ea3; }
.section-kicker-dark::before { background: #ff9ea3; }
.h-light { color: var(--white) !important; }
.p-light { color: rgba(255,255,255,.78) !important; }

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--font-sans);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s var(--ease);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 1px 0 rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.10);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-ghost {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.btn-ghost:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-block { width: 100%; }

/* ============== TOP BAR ============== */
.topbar {
    background: var(--black);
    color: rgba(255,255,255,.86);
    font-size: .82rem;
    padding: 10px 0;
    border-bottom: 3px solid var(--red);
}
.topbar-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.topbar-info svg { color: var(--red); flex-shrink: 0; }
.topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white) !important;
    font-weight: 700;
    margin-left: auto;
    letter-spacing: .01em;
}
.topbar-phone svg { color: var(--red); }
.topbar-phone:hover { color: var(--red) !important; }
@media (max-width: 640px) {
    .topbar { padding: 8px 0; font-size: .78rem; }
    .topbar-hours { display: none; }
    .topbar-inner { gap: 12px; flex-wrap: nowrap; }
    .topbar-info { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .topbar-phone { white-space: nowrap; flex-shrink: 0; }
}
@media (max-width: 420px) {
    /* On smallest screens, hide the address so the phone gets full room */
    .topbar-info { display: none; }
    .topbar-phone { margin-left: 0; margin-right: auto; font-size: .85rem; }
    .topbar-inner { justify-content: center; }
}

/* ============== NAV ============== */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 0 rgba(0,0,0,0);
    transition: transform .3s var(--ease), box-shadow .25s var(--ease);
    will-change: transform;
}
.nav.is-hidden {
    transform: translateY(-100%);
}
.nav.is-scrolled {
    box-shadow: 0 2px 8px rgba(11,11,12,.08);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.brand-logo {
    height: 58px;
    width: auto;
    border-radius: 3px;
    display: block;
}
.nav-links {
    display: flex;
    gap: 4px;
    margin-left: auto;
}
.nav-links a {
    color: var(--charcoal);
    font-weight: 600;
    font-size: .9rem;
    padding: 10px 14px;
    border-radius: 6px;
    letter-spacing: .04em;
    text-transform: uppercase;
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 6px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 12px 22px !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .2s var(--ease);
}
.nav-cta:hover {
    background: var(--black);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.nav-burger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.nav-burger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--black);
    margin: 5px 0;
    border-radius: 2px;
    transition: all .2s var(--ease);
}
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 12px 0 16px;
    border-top: 1px solid var(--line);
    background: var(--white);
}
.nav-mobile a {
    color: var(--charcoal);
    padding: 14px 24px;
    font-weight: 600;
    border-bottom: 1px solid var(--line-soft);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .9rem;
}
.nav-mobile-cta {
    background: var(--red);
    color: var(--white) !important;
    margin: 12px 24px 0;
    border-radius: 6px;
    text-align: center;
}
@media (max-width: 920px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: block; }
    .nav-mobile { display: flex; }
    .nav-mobile[hidden] { display: none; }
    .nav-inner { height: 76px; }
    .brand-logo { height: 46px; }
}
@media (max-width: 480px) {
    .brand-logo { height: 40px; }
    .nav-inner { height: 68px; }
}

/* ============== HERO ============== */
.hero {
    position: relative;
    background: var(--black);
    min-height: 640px;
    padding: 0;
    overflow: hidden;
    border-bottom: 6px solid var(--red);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg,
            rgba(11,11,12,.92) 0%,
            rgba(11,11,12,.78) 35%,
            rgba(11,11,12,.40) 65%,
            rgba(11,11,12,.10) 100%),
            linear-gradient(180deg,
            rgba(11,11,12,.30) 0%,
            rgba(11,11,12,.10) 30%,
            rgba(11,11,12,.40) 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 96px 24px 120px;
    flex: 1;
    display: flex;
    align-items: center;
}
.hero-text {
    max-width: 620px;
    color: var(--white);
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    letter-spacing: -.005em;
    margin-bottom: 0;
    text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero h1 .accent {
    color: var(--red);
    display: inline-block;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,32,43,.18);
    color: #ffd5d8;
    padding: 8px 16px 8px 14px;
    border-radius: 99px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255,200,205,.30);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(200,32,43,.30);
}
.hero-lede {
    font-size: 1.13rem;
    color: rgba(255,255,255,.88);
    margin: 22px 0 36px;
    max-width: 560px;
    line-height: 1.6;
}
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.hero-phone-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--white);
    font-size: .98rem;
}
.hero-phone-text svg { color: var(--red); }
.hero-phone-text:hover { color: var(--red); }

/* Stat stripe at the bottom of the hero (full-width black bar) */
.hero-stripe {
    position: relative;
    z-index: 2;
    background: rgba(11,11,12,.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stripe-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.hero-stripe-item {
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}
.hero-stripe-item:last-child { border-right: none; }
.hero-stripe-item strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.1;
}
.hero-stripe-item span {
    font-size: .76rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 920px) {
    .hero { min-height: 540px; }
    .hero-inner { padding: 64px 24px 80px; }
    /* Shift photo focal point to the darker right-side fence on mobile */
    .hero-photo img { object-position: 70% 40%; }
    /* Much stronger overlay on mobile so text always reads */
    .hero-overlay {
        background:
                linear-gradient(180deg,
                rgba(11,11,12,.78) 0%,
                rgba(11,11,12,.72) 45%,
                rgba(11,11,12,.86) 100%);
    }
    /* Headline text-shadow for extra insurance */
    .hero h1 { text-shadow: 0 2px 12px rgba(0,0,0,.55); }
    .hero-lede { text-shadow: 0 1px 6px rgba(0,0,0,.55); }
    .hero-stripe-inner { grid-template-columns: 1fr 1fr; }
    .hero-stripe-item {
        border-right: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .hero-stripe-item:nth-child(2n) { border-right: none; }
    .hero-stripe-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
    .hero-inner { padding: 48px 20px 60px; }
    .hero-stripe-item { padding: 16px 12px; }
    .hero-stripe-item strong { font-size: 1.05rem; }
}

/* ============== SECTION BLOCKS ============== */
.block {
    padding: 96px 0;
    background: var(--white);
}
.block-alt {
    background: var(--gray-1);
}
.block-clients {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.block-clients::before {
    /* subtle red diagonal accent */
    content: "";
    position: absolute;
    top: 0; right: 0; width: 30%; height: 6px;
    background: linear-gradient(90deg, transparent, var(--red));
}
.block-clients::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; width: 30%; height: 6px;
    background: linear-gradient(90deg, var(--red), transparent);
}
@media (max-width: 760px) { .block { padding: 64px 0; } }

/* ============== SERVICES (editorial alternating rows) ============== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.service-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
}
.service-row-reverse .service-row-photo { order: -1; }

.service-row-copy {
    max-width: 480px;
}
.service-row-copy h3 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    margin-bottom: 16px;
    color: var(--black);
    position: relative;
    padding-bottom: 14px;
}
.service-row-copy h3::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 48px; height: 3px;
    background: var(--red);
}
.service-row-copy p {
    color: var(--slate);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.service-row-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}
.service-row-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}
.service-row:hover .service-row-photo img {
    transform: scale(1.04);
}
.service-row-photo::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--red);
    z-index: 2;
}
.service-row-reverse .service-row-photo::before {
    left: auto; right: 0;
}

@media (max-width: 860px) {
    .services-list { gap: 56px; }
    .service-row,
    .service-row-reverse {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .service-row-reverse .service-row-photo { order: initial; }
    .service-row-copy { max-width: none; }
}

/* ============== ABOUT ============== */
.about-block {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.about-block .section-kicker {
    margin-bottom: 18px;
}
.about-block .section-kicker::before { display: none; }
.about-block .section-kicker::after { display: none; }
.about-block h2 {
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    margin-bottom: 22px;
}
.about-block .lede {
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 20px;
}
.about-block p {
    color: var(--slate);
    font-size: 1.04rem;
    line-height: 1.7;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}
.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}
.about-stat strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--red);
    line-height: 1;
}
.about-stat span {
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
}
@media (max-width: 600px) {
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
    .about-stat strong { font-size: 1.7rem; }
}

/* ============== MEET JOSH ============== */
.block-meet {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.block-meet::before {
    /* sign-inspired red bars decoration */
    content: "";
    position: absolute;
    top: 50%; right: -40px;
    transform: translateY(-50%);
    width: 90px; height: 220px;
    background:
            linear-gradient(var(--red), var(--red)) 0 0 / 100% 12px no-repeat,
            linear-gradient(var(--red), var(--red)) 0 24px / 100% 12px no-repeat,
            linear-gradient(var(--red), var(--red)) 0 48px / 100% 12px no-repeat;
    opacity: .15;
}
.meet-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.meet-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 440px;
    background: var(--black);
    box-shadow: var(--shadow-lg);
}
.meet-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.meet-photo::before {
    /* black frame accent at top (like a sign mount) */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--red);
    z-index: 2;
}
.meet-photo-tag {
    position: absolute;
    top: 18px; left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--black);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 3;
    border: 1px solid rgba(255,255,255,.1);
}
.meet-photo-tag svg { color: var(--red); }
.meet-text { max-width: 560px; }
.meet-text .lede {
    font-size: 1.13rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 18px;
}
.meet-text p { color: var(--slate); }
.meet-ctas {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}
@media (max-width: 920px) {
    .meet-inner { grid-template-columns: 1fr; gap: 44px; }
    .meet-photo { max-width: 380px; margin: 0 auto; }
    .block-meet::before { display: none; }
}

/* ============== CLIENTS / TRUSTED BY ============== */
.clients-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.client-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.client-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s var(--ease);
}
.client-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.18);
    transform: translateY(-3px);
}
.client-card:hover::before { transform: scaleY(1); }
.client-card-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.client-card strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: .03em;
    text-transform: uppercase;
}
.client-card span {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
}
.clients-footnote {
    text-align: center;
    color: rgba(255,255,255,.55);
    font-size: .92rem;
    margin: 36px 0 0;
    font-style: italic;
}
@media (max-width: 860px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .clients-grid { grid-template-columns: 1fr; } }

/* ============== CONTACT ============== */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-list-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-list-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: .96rem;
}
.contact-list-text a,
.contact-list-text strong {
    color: var(--black);
    font-weight: 700;
    font-size: 1.02rem;
}
.contact-list-text a:hover { color: var(--red); }
.contact-list-text span {
    color: var(--slate);
    font-size: .9rem;
}

/* form */
.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.contact-form::before {
    content: "";
    position: absolute;
    top: -1px; left: 32px; right: 32px;
    height: 3px;
    background: var(--red);
    border-radius: 0 0 3px 3px;
}
.contact-form h3 {
    margin-bottom: 4px;
    color: var(--black);
}
.form-sub {
    color: var(--slate);
    font-size: .94rem;
    margin-bottom: 22px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: .02em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: .96rem;
    font-family: inherit;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200,32,43,.12);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-full { grid-column: 1 / -1; }
.form-note {
    text-align: center;
    font-size: .82rem;
    color: var(--muted);
    margin: 8px 0 0;
}
.form-success {
    background: var(--red-soft);
    color: var(--red-dark);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: .92rem;
    border-left: 3px solid var(--red);
}
@media (max-width: 860px) {
    .contact-inner { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============== FOOTER ============== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,.65);
    padding: 64px 0 32px;
    text-align: center;
    border-top: 6px solid var(--red);
}
.footer-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.footer-logo {
    height: 72px;
    width: auto;
    border-radius: 3px;
    display: block;
}
.footer-tag {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer-tag strong { color: var(--white); font-weight: 600; }
.footer p { margin: 6px 0; font-size: .94rem; }
.footer-links {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin: 22px 0 28px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255,255,255,.8);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-links a:hover { color: var(--red); }
.footer-sub {
    font-size: .82rem;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5);
}

/* ============== LIGHTBOX ============== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(11,11,12,.93);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 70px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none; }
.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.15);
}
.lightbox-caption {
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--white);
    font-size: .9rem;
}
.lightbox-tag {
    background: var(--red);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
}
.lightbox-counter { color: rgba(255,255,255,.6); }
.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s var(--ease);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--red);
    border-color: var(--red);
}
.lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(2px); }
@media (max-width: 540px) {
    .lightbox { padding: 50px 12px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* ============== REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}
