/* ════════════════════════════════════════════════════════
   ROKA KLÍČE — INDUSTRIAL DESIGN
   v2.0 — Barlow Condensed + Brass/Charcoal
   ════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
    /* Palette */
    --ink:        #0D0D0D;
    --ink-2:      #181818;
    --ink-3:      #252525;
    --ink-4:      #333333;
    --steel:      #585858;
    --steel-2:    #8A8A8A;
    --steel-3:    #B0B0B0;
    --brass:      #C9913C;
    --brass-dk:   #A87528;
    --brass-lt:   #DFB068;
    --cream:      #F0EDE6;
    --cream-2:    #E8E4DC;
    --cream-3:    #DAD5CB;
    --white:      #FFFFFF;
    --text:       #1C1C1C;
    --text-2:     #4A4A4A;

    /* Typography */
    --f-display: 'Barlow Condensed', sans-serif;
    --f-body:    'Barlow', sans-serif;

    /* Layout */
    --max:   1260px;
    --pad:   clamp(20px, 5vw, 72px);
    --r:     2px;

    /* Motion */
    --ease:  cubic-bezier(0.4, 0, 0.2, 1);
    --slow:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--f-body);
    color: var(--text);
    background: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--slow), transform 0.6s var(--slow);
}
.reveal.in-view {
    opacity: 1;
    transform: none;
}
.reveal--delay1 { transition-delay: 0.1s; }
.reveal--delay2 { transition-delay: 0.2s; }

/* ── Layout Utility ────────────────────────────────────── */
.section-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(72px, 10vw, 120px) var(--pad);
}

.section-tag {
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 16px;
}

.section-head {
    margin-bottom: 56px;
}
.section-head h2 {
    font-family: var(--f-display);
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text);
}
.section-head--light h2 {
    color: var(--white);
}
.section-head--light .section-tag {
    color: var(--brass-lt);
}
.icon {
    filter: invert(63%) sepia(85%) saturate(394%) hue-rotate(354deg) brightness(84%) contrast(89%);;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: var(--r);
    transition: all 0.22s var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brass);
    color: var(--ink);
    border: 1.5px solid var(--brass);
}
.btn-primary:hover {
    background: var(--brass-dk);
    border-color: var(--brass-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 145, 60, 0.3);
}
.btn-primary:active { transform: none; box-shadow: none; }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* ══════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    border-bottom: 1px solid transparent;
    transition: background 0.35s var(--ease),
                border-color 0.35s var(--ease),
                box-shadow 0.35s var(--ease);
}
.nav.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--ink-3);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    flex-shrink: 0;
}
.nav-logo svg { color: var(--brass); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}
.nav-phone:hover { color: var(--white); }
.nav-phone svg { color: var(--brass); flex-shrink: 0; }

.btn-nav {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 18px;
    background: var(--brass);
    color: var(--ink);
    border-radius: var(--r);
    transition: background 0.2s;
}
.btn-nav:hover { background: var(--brass-dk); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    background-color: var(--ink);
    /* Subtle grid texture */
    background-image:
        
        linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3)),
        url("./img/slider_photo_dark-grey.jpg");
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px var(--pad) 72px;
    position: relative;
    overflow: hidden;
}

/* Large decorative watermark */
.hero::before {
    content: 'ROKA';
    position: absolute;
    right: -0.04em;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--f-display);
    font-size: clamp(160px, 24vw, 380px);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.022);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* Gold accent line at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--brass) 0%, transparent 65%);
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 24px;
}
.eyebrow-rule {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--brass);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--f-display);
    font-size: clamp(52px, 7.5vw, 104px);
    font-weight: 900;
    line-height: 0.93;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
}
.hero-headline em {
    font-style: italic;
    /* Polished brass shimmer */
    background: linear-gradient(90deg, var(--brass) 0%, var(--brass-lt) 40%, var(--brass) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    padding-right: 5px;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.hero-sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--steel-3);
    max-width: 500px;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Stats Column */
.hero-stats {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--steel-3);
    padding-left: 48px;
}

.stat-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--steel-3);
}
.stat-item:last-child { border-bottom: none; }

.stat-number {
    font-family: var(--f-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.02em;
}
.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: var(--brass);
    margin-left: 1px;
}
.stat-unit {
    font-size: 24px;
    font-weight: 600;
    color: var(--brass);
    margin-left: 2px;
    letter-spacing: 0;
}
.stat-label {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel-3);
    margin-top: 5px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    right: var(--pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--steel);
}
.scroll-track {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--steel), transparent);
    animation: trackPulse 2.2s ease-in-out infinite;
}
@keyframes trackPulse {
    0%, 100% { opacity: 0.25; }
    50%       { opacity: 0.9; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.services {
    background: var(--cream);
}
.services .section-head h2 {
    color: var(--text);
}

.services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--cream-3);
}

.service-row {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 44px;
    align-items: start;
    padding: 52px 0;
    border-bottom: 1px solid var(--cream-3);
}

.service-num {
    font-family: var(--f-display);
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: var(--cream-2);
    letter-spacing: -0.02em;
    user-select: none;
    padding-top: 2px;
    transition: color 0.3s var(--ease);
}
.service-row:hover .service-num {
    color: var(--cream-3);
}

.service-icon {
    color: var(--brass);
    margin-bottom: 18px;
    transition: transform 0.3s var(--ease);
}
.service-row:hover .service-icon {
    transform: scale(1.08);
}

.service-body h3 {
    font-family: var(--f-display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 12px;
}
.service-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
    max-width: 520px;
    margin-bottom: 22px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-2);
}
.service-features li::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--brass);
    flex-shrink: 0;
}

.service-action {
    align-self: center;
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.service-photo {
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--r);
    opacity: 0.82;
    transition: opacity 0.3s var(--ease);
    display: block;
}
.service-row:hover .service-photo {
    opacity: 1;
}
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    padding: 11px 20px;
    border: 1.5px solid var(--text);
    border-radius: var(--r);
    white-space: nowrap;
    transition: all 0.22s var(--ease);
}
.btn-service:hover {
    background: var(--text);
    color: var(--cream);
}

/* ══════════════════════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════════════════════ */
.why-us {
    background: var(--ink-2);
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--ink-3);
    border-left: 1px solid var(--ink-3);
}

.why-item {
    display: flex;
    gap: 18px;
    padding: 36px;
    border-right: 1px solid var(--ink-3);
    border-bottom: 1px solid var(--ink-3);
    transition: background 0.25s var(--ease);
}
.why-item:hover { background: rgba(255, 255, 255, 0.02); }

.why-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    color: var(--brass);
    margin-top: 2px;
}
.why-icon svg { width: 100%; height: 100%; }

.why-item h4 {
    font-family: var(--f-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}
.why-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--steel-2);
}

/* ══════════════════════════════════════════════════════════
   LOCATIONS
   ══════════════════════════════════════════════════════════ */
.locations {
    background: var(--ink);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--ink-3);
    border: 1px solid var(--ink-3);
    overflow: hidden;
}

.location-card {
    background: var(--ink-2);
    padding: 48px;
    transition: background 0.25s var(--ease);
    overflow: hidden;
}
.location-card:hover { background: var(--ink-3); }

.location-photo {
    display: block;
    width: calc(100% + 96px);
    margin: -48px -48px 36px -48px;
    height: 250px;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.3s var(--ease);
}
.location-card:hover .location-photo {
    opacity: 0.9;
}

.location-badge {
    display: inline-block;
    font-family: var(--f-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    border: 1px solid var(--brass);
    padding: 3px 10px;
    margin-bottom: 18px;
}

.location-card h3 {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 28px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.loc-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--steel-2);
}
.loc-row img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--brass);
}
.loc-row a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.2s;
}
.loc-row a:hover { color: var(--brass); }

.location-hours {
    border-top: 1px solid var(--ink-3);
    padding-top: 24px;
}
.hours-label {
    font-family: var(--f-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 14px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--steel-2);
    margin-bottom: 10px;
}
.hours-row:last-child { margin-bottom: 0; }
.hours-row strong { color: var(--white); font-weight: 600; }
.hours-closed strong { color: var(--steel); }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials {
    background: var(--cream);
}
.testimonials .section-head h2 { color: var(--text); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--cream-3);
    border: 1px solid var(--cream-3);
    overflow: hidden;
}

.testimonial {
    background: var(--white);
    padding: 44px;
    transition: background 0.25s var(--ease);
}
.testimonial:hover { background: #fafafa; }

.t-stars {
    color: var(--brass);
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.testimonial p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 24px;
}
.testimonial footer {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}
.testimonial footer span {
    font-weight: 400;
    text-transform: none;
    color: var(--text-2);
}

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq {
    background: var(--ink-2);
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
}

.faq-list {
    border-top: 1px solid var(--ink-3);
}

.faq-item {
    border-bottom: 1px solid var(--ink-3);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 26px 0;
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
details[open] .faq-q { color: var(--brass); }

.faq-toggle {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: 1px solid var(--ink-4);
    border-radius: 50%;
    position: relative;
    transition: border-color 0.2s;
}
.faq-q:hover .faq-toggle { border-color: var(--steel); }
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--brass);
}
.faq-toggle::before {
    width: 10px; height: 1.5px;
    transform: translate(-50%, -50%);
}
.faq-toggle::after {
    width: 1.5px; height: 10px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease);
}
details[open] .faq-toggle::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-a {
    padding: 0 0 28px 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--steel-2);
    max-width: 720px;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 580px;
}

.contact-info-panel {
    background: var(--ink);
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 64px 64px;
    display: flex;
    align-items: center;
    position: relative;
}
/* Gold accent on right edge */
.contact-info-panel::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--brass-dk), transparent);
}

.contact-info-inner {
    padding: clamp(44px, 6vw, 88px);
    max-width: 440px;
}

.contact-info-inner h2 {
    font-family: var(--f-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
    margin-top: 10px;
}
.contact-info-inner > p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--steel-2);
    margin-bottom: 44px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--ink-3);
}
.channel-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--ink-3);
    transition: opacity 0.2s;
}
.channel-item:hover { opacity: 0.75; }
.channel-label {
    font-family: var(--f-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 3px;
}

.contact-notes {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-note {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.5;
}
.contact-note a {
    color: var(--brass);
    font-weight: 600;
}

.locations-grid--single {
    grid-template-columns: 1fr;
    max-width: 520px;
}
.channel-value {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}

/* Form Panel */
.contact-form {
    background: var(--cream);
    padding: clamp(44px, 6vw, 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.form-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-field label {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--cream-3);
    border-radius: var(--r);
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--brass);
    box-shadow: 0 0 0 3px rgba(201, 145, 60, 0.14);
}
.form-field textarea { resize: vertical; }

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 32px;
    background: var(--text);
    color: var(--cream);
    border: 1.5px solid var(--text);
    border-radius: var(--r);
    cursor: pointer;
    transition: all 0.22s var(--ease);
    align-self: flex-start;
}
.btn-submit:hover {
    background: transparent;
    color: var(--text);
}
.btn-submit:active { transform: scale(0.98); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    border-top: 1px solid var(--ink-3);
}
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 26px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}
.footer-brand svg { color: var(--brass); }

.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-nav a {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-copy {
    font-size: 12px;
    color: var(--steel);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .hero-stats {
        flex-direction: row;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--ink-3);
        padding-top: 36px;
    }
    .stat-item {
        flex: 1;
        padding: 0 24px;
        border-bottom: none;
        border-right: 1px solid var(--ink-3);
        text-align: center;
    }
    .stat-item:last-child { border-right: none; }

    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; }
    .contact-info-panel::after { display: none; }
}

@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-phone { display: none; }

    .hero::before { opacity: 0; }
    .hero-scroll { display: none; }

    .service-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-num {
        font-size: 48px;
        color: var(--cream-3);
    }
    .service-action { align-self: flex-start; }

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

    .form-pair { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero-stats {
        flex-direction: column;
        gap: 0;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--ink-3);
        padding: 16px 0;
        text-align: left;
    }
    .stat-item:last-child { border-bottom: none; }

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

    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }

    .section-head h2 { font-size: clamp(36px, 9vw, 52px); }

    .location-card { padding: 32px 24px; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
