:root {
    --dark:    #1c1c1c;
    --charcoal:#2a2a2a;
    --orange:  #e85d00;
    --orange2: #ff7a1a;
    --white:   #f4f4f4;
    --muted:   #999;
    --border:  #3a3a3a;
    --radius:  6px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.65;
}

/* ── HEADER ──────────────────────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--dark);
    border-bottom: 3px solid var(--orange);
    transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
    color: var(--orange);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.logo-sub { color: #aaa; font-size: 0.7rem; letter-spacing: 0.12em; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    align-items: center;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.btn-nav {
    background: var(--orange) !important;
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 700;
}
.btn-nav:hover { background: var(--orange2) !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-dark { background: var(--dark); }
.btn-dark:hover { background: #333; }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* ── HERO ────────────────────────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111 0%, #2a1000 55%, #111 100%);
}

/* Animated diagonal stripe texture */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(232,93,0,0.04) 60px,
            rgba(232,93,0,0.04) 120px
        );
    animation: drift 30s linear infinite;
}
@keyframes drift {
    from { background-position: 0 0; }
    to   { background-position: 120px 120px; }
}

/* Radial glow center */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,93,0,0.12) 0%, transparent 70%);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    text-shadow: 0 3px 30px rgba(0,0,0,0.6);
}
.hero-content h1 span { color: var(--orange); }

.hero-sub {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    opacity: 0.75;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    z-index: 1;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS ────────────────────────────────────────────────────────── */
section { padding: 5.5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.dark-section   { background: var(--charcoal); color: var(--white); }
.orange-section { background: var(--orange);   color: #fff; }

h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.6rem;
}
h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--orange);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
h2.left { text-align: left; }
h2.left::after { margin-left: 0; }
.dark-section h2::after, .orange-section h2::after { background: #fff; }

.section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
    font-size: 1rem;
}
.dark-section .section-sub   { color: #aaa; }
.orange-section .section-sub { color: rgba(255,255,255,0.8); }

/* ── SERVICES CARDS ──────────────────────────────────────────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
}

.card {
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-top: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.card-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.card p  { font-size: 0.875rem; color: #555; line-height: 1.65; }

/* ── ABOUT ───────────────────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-text p { color: #444; margin-top: 1rem; }

/* ── GALLERY ─────────────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ── IMAGE PLACEHOLDER ───────────────────────────────────────────────── */
.img-placeholder {
    background: #2a2a2a;
    border: 2px dashed #555;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #888;
    font-size: 0.85rem;
    aspect-ratio: 4/3;
    text-align: center;
    padding: 1rem;
}
.dark-section .img-placeholder { background: #1a1a1a; }
.img-placeholder.large { aspect-ratio: unset; min-height: 320px; }
.img-placeholder small  { font-size: 0.75rem; color: #666; }

/* ── FORMS ───────────────────────────────────────────────────────────── */
.inquiry-form, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 680px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    background: rgba(0,0,0,0.25);
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}
input:focus, textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.35);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.45); }
textarea { resize: vertical; }

.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-align: center; }

/* Orange section — form inputs get dark treatment */
.orange-section input,
.orange-section textarea {
    background: rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}
.orange-section input:focus,
.orange-section textarea:focus {
    border-color: rgba(255,255,255,0.8);
}

/* ── HOURS ───────────────────────────────────────────────────────────── */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hours-table { padding-top: 0.5rem; }

table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
td {
    padding: 0.65rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}
td:last-child {
    text-align: right;
    color: var(--orange);
    font-weight: 600;
}

.contact-info { margin-top: 1.5rem; }
.contact-info p { margin-bottom: 0.5rem; font-size: 0.95rem; color: #444; }
.contact-info a { color: var(--orange); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3.5rem 2rem 1.5rem;
    border-top: 3px solid var(--orange);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-brand .logo-main { font-size: 0.85rem; }
.footer-brand span { color: var(--muted); font-size: 0.85rem; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.78rem;
}

/* ── TOAST ───────────────────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--charcoal);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    opacity: 0;
    transition: transform 0.35s, opacity 0.35s;
    z-index: 999;
    white-space: nowrap;
}
.toast.show    { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { border-color: #3a3; color: #8f8; }
.toast.error   { border-color: #933; color: #f88; }

/* ── SCROLL REVEAL ───────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .about-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
    .hours-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0; right: 0;
        background: var(--dark);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        border-bottom: 2px solid var(--orange);
    }
    .nav-links.open { display: flex; }
    .nav-toggle  { display: block; }
    .form-row    { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 2rem; }
}

@media (max-width: 480px) {
    section { padding: 4rem 1.25rem; }
    .hero-btns { flex-direction: column; align-items: center; }
}
