:root {
    --dark: #0f0f0f;
    --charcoal: #1c1c1c;
    --white: #ffffff;
    --off-white: #f3f3f1;
    --mid-gray: #6a6a6a;
    --border: #2a2a2a;
    --border-light: #e0e0e0;
    --accent: #e85d2f;
    --accent-dk: #c44a24;
    --gold: #b8962e;
    --font-disp: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.section-title {
    font-family: var(--font-disp);
    font-size: clamp(52px, 9vw, 88px);
    line-height: 0.92;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: background 0.3s var(--ease);
}

.btn-primary:hover {
    background: var(--accent-dk);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

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

.btn-large {
    padding: 20px 48px;
    font-size: 17px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10000;
}

.loader-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    animation: load 1.2s var(--ease) forwards;
}

@keyframes load {
    0% { width: 0%; }
    40% { width: 70%; }
    100% { width: 100%; }
}

.loader.fade {
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: rgba(15, 15, 15, 0.96);
    z-index: 1000;
    transition: background 0.3s var(--ease);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-disp);
    font-size: 26px;
    letter-spacing: 0.02em;
    color: var(--white);
}

.logo span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-left: 8px;
}

.header-phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
    display: none;
}

.header-nav {
    display: none;
}

@media (min-width: 960px) {
    .header-phone {
        display: block;
    }
    .header-nav {
        display: flex;
        gap: 32px;
    }
    .header-nav a {
        font-size: 13px;
        font-weight: 500;
        color: rgba(255,255,255,0.7);
        letter-spacing: 0.04em;
        transition: color 0.3s var(--ease);
    }
    .header-nav a:hover {
        color: var(--white);
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

/* Nav Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--charcoal);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    padding: 80px 32px 32px;
}

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

.nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 8px;
}

.nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    color: var(--accent) !important;
    font-weight: 600;
    border-bottom-color: var(--accent) !important;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.55) 50%, rgba(15,15,15,0.2) 100%),
        linear-gradient(to top, rgba(15,15,15,0.8) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: calc(68px + 40px) clamp(20px, 5vw, 60px) clamp(52px, 8vh, 88px);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    max-width: 520px;
}

.hero-eyebrow {
    font-size: clamp(10px, 1.2vw, 12px);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-disp);
    font-size: clamp(80px, 18vw, 180px);
    line-height: 0.83;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 19px);
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 440px;
}

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

.hero-stats {
    display: none;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 640px) {
    .hero-stats {
        display: flex;
        gap: 0;
    }
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding-right: 40px;
}

.stat-n {
    font-family: var(--font-disp);
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1;
    color: var(--white);
}

.stat-l {
    font-size: clamp(11px, 1.3vw, 13px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
}

.stat-rule {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    align-self: center;
}

/* Contrast Strip */
.strip {
    background: var(--accent);
    padding: 14px 20px;
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: clamp(13px, 2.5vw, 15px);
    font-weight: 500;
    color: rgba(255,255,255,0.92);
}

.strip-inner i {
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--off-white);
}

.services .container {
    max-width: 1100px;
}

.services-list {
    border-top: 1px solid var(--border-light);
}

.svc-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .svc-row {
        grid-template-columns: 52px 1fr 1.4fr;
        align-items: center;
    }
}

.svc-num {
    font-family: var(--font-disp);
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1;
    color: var(--mid-gray);
    opacity: 0.4;
}

.svc-name {
    font-family: var(--font-disp);
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.svc-desc {
    font-size: clamp(14px, 1.6vw, 16px);
    color: var(--mid-gray);
    line-height: 1.5;
}

/* About Section */
.about {
    background: var(--white);
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
}

@media (min-width: 768px) {
    .about-wrap {
        grid-template-columns: 55fr 45fr;
        min-height: 640px;
    }
}

.about-img-col {
    position: relative;
    min-height: 320px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.about-text-col {
    padding: clamp(52px, 8vw, 80px) clamp(24px, 6vw, 60px);
}

.about-heading {
    font-family: var(--font-disp);
    font-size: clamp(38px, 6vw, 56px);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.about-lead {
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text-col p {
    color: var(--mid-gray);
    margin-bottom: 16px;
}

.about-quote {
    font-family: var(--font-disp);
    font-size: clamp(22px, 3.5vw, 32px);
    line-height: 1.2;
    color: var(--accent);
    margin-top: 32px;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

/* Stats Bar */
.stats-bar {
    background: var(--dark);
    padding: clamp(48px, 8vw, 72px) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}

.stat-item {
    text-align: center;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
    .stat-item:not(:last-child) {
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
    }
}

.stat-number {
    font-family: var(--font-disp);
    font-size: clamp(48px, 8vw, 72px);
    line-height: 1;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: clamp(11px, 1.4vw, 13px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    display: block;
}

/* Reviews Section */
.reviews {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--off-white);
}

.reviews .container {
    max-width: 1100px;
}

.featured-review {
    margin-bottom: 48px;
}

.featured-review blockquote {
    font-family: var(--font-disp);
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.2;
    color: var(--dark);
    padding-left: 24px;
    border-left: 4px solid var(--accent);
    margin-bottom: 16px;
}

.featured-review cite {
    font-style: normal;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-left: 28px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--border-light);
}

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

.review-card {
    padding: 28px 24px;
    border-bottom: 1px solid var(--border-light);
}

.review-card:last-child {
    border-bottom: none;
}

@media (min-width: 640px) {
    .review-card:nth-child(odd) {
        border-right: 1px solid var(--border-light);
    }
    .review-card:nth-child(n+3) {
        border-top: none;
    }
}

.review-card p {
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.65;
    color: var(--dark);
    margin-bottom: 16px;
}

.review-card cite {
    font-style: normal;
    font-size: clamp(12px, 1.3vw, 13px);
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Location Section */
.location {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
}

@media (min-width: 768px) {
    .location {
        grid-template-columns: 1fr 1fr;
        min-height: 560px;
    }
}

.location-info {
    padding: clamp(52px, 8vw, 64px) clamp(24px, 6vw, 60px);
    background: var(--white);
}

.location-heading {
    font-family: var(--font-disp);
    font-size: clamp(42px, 7vw, 64px);
    line-height: 0.92;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.location-block {
    margin-bottom: 28px;
}

.location-block h3 {
    font-family: var(--font-disp);
    font-size: clamp(18px, 2.5vw, 22px);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.location-block p {
    font-size: clamp(15px, 1.7vw, 17px);
    color: var(--mid-gray);
    line-height: 1.5;
}

.location-block a {
    transition: color 0.3s var(--ease);
}

.location-block a:hover {
    color: var(--accent);
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 24px;
    font-size: clamp(14px, 1.6vw, 16px);
    color: var(--mid-gray);
}

.hours-grid span:nth-child(odd) {
    font-weight: 500;
    color: var(--dark);
}

.location-map {
    min-height: 360px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* CTA Section */
.cta-section {
    background: var(--dark);
    padding: clamp(64px, 10vw, 100px) 0;
    text-align: center;
}

.cta-heading {
    font-family: var(--font-disp);
    font-size: clamp(42px, 8vw, 72px);
    line-height: 1;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 56px 0 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

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

.footer-logo {
    font-family: var(--font-disp);
    font-size: 28px;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-logo span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-left: 6px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

.footer-col h4 {
    font-family: var(--font-disp);
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-col a {
    transition: color 0.3s var(--ease);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1100px;
    margin: 48px auto 0;
    padding: 24px clamp(20px, 5vw, 40px) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* Mobile Bar */
.mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    z-index: 999;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

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

.mobile-bar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.mobile-bar-link i {
    font-size: 18px;
}

.mobile-bar-link span:first-of-type {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    opacity: 0.9;
}

body {
    padding-bottom: 60px;
}

@media (min-width: 960px) {
    body {
        padding-bottom: 0;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}
