*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --y: #ff751f; --yd: #ff751f; --bk: #0d0d0d; --gr: #181818;
  --gr2: #222; --lt: #f0f0f0; --mu: #888; --white: #ffffff;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Barlow', sans-serif; background: var(--white); color: #111; }

/* ── Top Bar ── */
.topbar { background: #f9f6ee; border-bottom: 1px solid #e8e0c8; padding: 8px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar-left a, .topbar-left span { color: #555; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: #111; }
.topbar-left svg { width: 13px; height: 13px; stroke: var(--yd); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.topbar-right { color: #777; font-size: 0.75rem; }

/* ── Nav ── */
nav { background: var(--bk); border-bottom: 3px solid var(--y); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; position: sticky; top: 0; z-index: 200; }
.logo-wrap { display: flex; align-items: center; gap: 14px; padding: 14px 0; text-decoration: none; }
.logo-wrap svg { width: 38px; height: 38px; flex-shrink: 0; }
.brand { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: 1px; color: var(--lt); line-height: 1.1; }
.brand small { display: block; font-size: 0.58rem; font-weight: 600; color: var(--y); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; list-style: none; }
.nav-links li a { display: block; padding: 22px 16px; color: #aaa; text-decoration: none; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; border-bottom: 3px solid transparent; margin-bottom: -3px; }
.nav-links li a:hover { color: var(--y); border-bottom-color: var(--y); }
.nav-cta { background: var(--y); color: var(--bk); padding: 12px 22px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--yd); }

/* ── Nav Dropdown ── */
.has-dropdown { position: relative; }
.has-dropdown .dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.caret { font-size: 0.6rem; transition: transform 0.2s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #111; border: 1px solid #2a2a2a; border-top: 2px solid var(--y); min-width: 220px; z-index: 300; list-style: none; padding: 8px 0; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 10px 18px; color: #aaa; text-decoration: none; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.15s, background 0.15s; white-space: nowrap; }
.dropdown li a:hover { color: var(--y); background: #1a1a1a; }

/* ── Hamburger ── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 12px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--lt); border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px; height: 100vh; background: var(--bk); z-index: 500; transition: right 0.3s ease; overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,0.5); }
.mobile-menu.open { right: 0; }
.mobile-menu-inner { padding: 24px 24px 40px; display: flex; flex-direction: column; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid #222; }
.mobile-close { background: none; border: none; color: #aaa; font-size: 1.2rem; cursor: pointer; padding: 4px; transition: color 0.2s; }
.mobile-close:hover { color: var(--y); }
.mobile-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-section-label { font-size: 0.65rem; font-weight: 700; color: var(--y); text-transform: uppercase; letter-spacing: 2px; padding: 12px 0 6px; }
.mobile-link { display: block; padding: 11px 0; color: #ccc; text-decoration: none; font-size: 0.92rem; font-weight: 500; border-bottom: 1px solid #1a1a1a; transition: color 0.2s; }
.mobile-link:hover { color: var(--y); }
.mobile-divider { height: 1px; background: #2a2a2a; margin: 12px 0; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 499; pointer-events: none; }
.mobile-overlay.open { display: block; pointer-events: all; }

/* ── Hero ── */
.hero { background: var(--bk); color: var(--lt); display: grid; grid-template-columns: 1fr 1fr; height: 540px; }
.hero-content { padding: 72px 48px 64px 40px; display: flex; flex-direction: column; justify-content: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,200,0,0.12); color: var(--y); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; margin-bottom: 22px; border-left: 3px solid var(--y); width: fit-content; }
.hero-badge svg { width: 12px; height: 12px; stroke: var(--y); fill: none; stroke-width: 2.5; }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.6rem, 4.5vw, 4.2rem); font-weight: 800; line-height: 1; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 18px; }
.hero h1 em { color: var(--y); font-style: normal; }
.hero-sub { font-size: 0.97rem; color: #aaa; line-height: 1.75; margin-bottom: 30px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-y { background: var(--y); color: var(--bk); padding: 13px 28px; border: none; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
.btn-y:hover { background: var(--yd); }
.btn-w { background: transparent; color: var(--lt); padding: 13px 28px; border: 1px solid #444; font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-w:hover { border-color: var(--y); color: var(--y); }
.hero-image { position: relative; overflow: hidden; background: #111; height: 540px; }

/* ── Trust Bar ── */
.trust-bar { background: var(--y); padding: 16px 40px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-around; align-items: center; }
.t-item { display: flex; align-items: center; gap: 9px; color: var(--bk); }
.t-item svg { width: 17px; height: 17px; stroke: var(--bk); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.t-item span { font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Sections ── */
.sec { padding: 72px 40px; }
.sec-lbl { font-size: 0.7rem; font-weight: 700; color: var(--yd); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 6px; }
.sec-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 12px; color: #111; }
.sec-title.light { color: var(--lt); }
.sec-sub { color: #666; font-size: 0.96rem; line-height: 1.75; max-width: 600px; margin-bottom: 36px; }
.sec-sub.light { color: #aaa; }

/* ── Proof Section ── */
.proof-sec { background: #f9f6ee; border-top: 1px solid #e8e0c8; border-bottom: 1px solid #e8e0c8; }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: #ddd8c4; border: 1px solid #ddd8c4; margin-top: 8px; }
.proof-card { background: #fff; padding: 28px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.proof-icon { width: 40px; height: 40px; background: #fef9e7; border: 1px solid #e8e0c8; display: flex; align-items: center; justify-content: center; }
.proof-icon svg { width: 20px; height: 20px; stroke: var(--yd); fill: none; stroke-width: 2; }
.proof-val { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--yd); }
.proof-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #111; }
.proof-card p { font-size: 0.82rem; color: #666; line-height: 1.65; }

/* ── Services Section ── */
.services-sec { background: var(--bk); }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: #2a2a2a; border: 1px solid #2a2a2a; }
.svc-card { background: var(--gr); padding: 28px 22px; transition: background 0.2s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.svc-card:hover { background: #222; }
.svc-card:visited { color: inherit; }
.svc-icon { width: 44px; height: 44px; background: rgba(245,200,0,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.svc-icon svg { width: 21px; height: 21px; stroke: var(--y); fill: none; stroke-width: 2; }
.svc-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; color: var(--lt); }
.svc-card p { font-size: 0.84rem; color: var(--mu); line-height: 1.65; }
.svc-arrow { font-size: 0.75rem; color: var(--y); margin-top: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; opacity: 0; transition: opacity 0.2s; }
.svc-card:hover .svc-arrow { opacity: 1; }

/* ── Gallery Section ── */
.gallery-sec { background: #111; }
.gallery-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.gallery-note { font-size: 0.78rem; color: #555; font-style: italic; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-item { background: #1a1a1a; position: relative; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.78); padding: 6px 10px; font-size: 0.7rem; color: #bbb; text-transform: uppercase; letter-spacing: 0.5px; }
.gallery-view-all { display: flex; justify-content: center; margin-top: 24px; }

/* ── Service Area ── */
.area-sec { background: #f5f5f5; border-top: 1px solid #e5e5e5; }
.area-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.area-map { background: #e8e8e8; border: 1px solid #d5d5d5; aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #aaa; font-size: 0.8rem; text-align: center; padding: 20px; overflow: hidden; }
.area-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.area-towns h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: #111; margin-bottom: 14px; }
.town-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.town-tag { background: #fff; border: 1px solid #ddd; padding: 5px 12px; font-size: 0.8rem; color: #444; font-weight: 500; }
.town-tag.primary { border-color: var(--yd); color: var(--yd); background: #fff9e6; }
.area-note { font-size: 0.82rem; color: #888; line-height: 1.7; }

/* ── Contact Section ── */
.contact-sec { background: #111; color: var(--lt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 8px; }
.c-info-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; text-transform: uppercase; margin-bottom: 22px; color: var(--lt); }
.c-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.c-icon { width: 36px; height: 36px; background: var(--y); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 15px; height: 15px; stroke: var(--bk); fill: none; stroke-width: 2.5; }
.c-txt { font-size: 0.9rem; line-height: 1.5; }
.c-txt a { color: var(--y); text-decoration: none; }
.c-txt a:hover { text-decoration: underline; }
.c-txt small { color: var(--mu); font-size: 0.75rem; display: block; margin-top: 2px; }
.contact-tip { margin-top: 24px; padding: 18px; background: #1a1a1a; border-left: 3px solid var(--y); }
.contact-tip .tip-lbl { font-size: 0.68rem; color: var(--mu); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.contact-tip ul { font-size: 0.82rem; color: #888; line-height: 1.85; padding-left: 16px; }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; text-transform: uppercase; margin-bottom: 18px; color: var(--lt); }
.form-wrap { display: flex; flex-direction: column; gap: 10px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
input, select, textarea { background: var(--gr2); border: 1px solid #2a2a2a; color: var(--lt); padding: 11px 14px; font-family: 'Barlow', sans-serif; font-size: 0.88rem; width: 100%; outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--y); }
input::placeholder, textarea::placeholder { color: #444; }
select { cursor: pointer; }
select option { background: var(--gr2); color: var(--lt); }
textarea { min-height: 100px; resize: vertical; }
.sub-btn { background: var(--y); color: var(--bk); padding: 13px; border: none; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; width: 100%; transition: background 0.2s; margin-top: 4px; }
.sub-btn:hover { background: var(--yd); }
.confirm { display: none; background: rgba(245,200,0,0.1); border: 1px solid var(--y); padding: 12px; color: var(--y); font-size: 0.85rem; text-align: center; margin-top: 6px; }

/* ── Footer ── */
footer { background: #050505; border-top: 1px solid #1a1a1a; }
.footer-top { padding: 48px 40px 32px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand-col p { font-size: 0.83rem; color: #555; line-height: 1.75; margin-top: 12px; max-width: 280px; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #444; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.82rem; color: #555; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--y); }
.footer-bottom { padding: 16px 40px; border-top: 1px solid #111; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.75rem; color: #444; }
.footer-bottom a { color: var(--y); text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: span 2; } }
@media (max-width: 900px) { nav { padding: 0 16px; } .nav-links { display: none; } .hamburger { display: flex; } .nav-cta { display: none; } .hero { grid-template-columns: 1fr; height: auto; } .hero-content { padding: 48px 20px 40px; } .hero-image { height: 300px; max-height: 300px; min-height: unset; } .area-content { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; gap: 36px; } .topbar { padding: 8px 16px; } }
@media (max-width: 600px) { .sec { padding: 48px 16px; } .trust-bar { padding: 14px 16px; } .footer-top { padding: 32px 16px 20px; grid-template-columns: 1fr; } .footer-brand-col { grid-column: span 1; } .footer-bottom { padding: 14px 16px; } .form-row2 { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; } .hero h1 { font-size: 2.4rem; } }