:root {
--void: #0A0A0C; --graphite: #17181B; --shield: #303032; --steel: #8B9099; --paper: #ECEBE7; --muted: #C9CBCF; --white: #FFFFFF;
--red: #C1121F;
--red-deep: #8E0E16;
--red-bright: #E23B47;
--line: rgba(139,144,153,.22);
--line-strong: rgba(139,144,153,.38);
--hatch-dark: repeating-linear-gradient(63deg, rgba(10,10,12,.24) 0 2px, transparent 2px 7px);
--hatch-light: repeating-linear-gradient(63deg, rgba(255,255,255,.14) 0 2px, transparent 2px 7px);
--font: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
--container: 1220px;
--radius: 4px;
--notch: 12px;
--shadow-sm: 0 2px 16px rgba(0,0,0,.4);
--shadow-md: 0 16px 40px rgba(0,0,0,.5);
--shadow-lg: 0 26px 64px rgba(0,0,0,.6);
--header-h: 84px;
} *, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
margin: 0;
font-family: var(--font);
font-variation-settings: "wdth" 100;
color: var(--paper);
background: var(--void);
line-height: 1.62;
-webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; } svg { width: 20px; height: 20px; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
font-family: var(--font);
font-variation-settings: "wdth" 114;
font-weight: 800;
letter-spacing: -.015em;
line-height: 1.08;
margin: 0 0 .5em;
color: var(--paper);
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
.container {
width: 100%;
max-width: var(--container);
margin: 0 auto;
padding: 0 24px;
}
.visually-hidden {
position: absolute; width: 1px; height: 1px; overflow: hidden;
clip: rect(0 0 0 0); white-space: nowrap;
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
font-family: var(--font);
font-variation-settings: "wdth" 108;
font-size: 15px;
font-weight: 800;
letter-spacing: .005em;
padding: 15px 28px;
border: 2px solid transparent;
clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%);
transition: background .18s ease, border-color .18s ease, color .18s ease;
white-space: nowrap;
}
.btn-primary {
background: var(--red);
color: var(--white);
border-color: var(--red);
}
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-outline {
background: transparent;
color: var(--paper);
border-color: rgba(236,235,231,.35);
}
.btn-outline:hover { background: rgba(236,235,231,.09); border-color: var(--paper); }
.btn-dark {
background: var(--void);
color: var(--white);
border-color: var(--void);
}
.btn-dark:hover { background: #000; border-color: #000; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 13px; --notch: 8px; } .site-header {
position: sticky;
top: 0;
left: 0;
right: 0;
z-index: 500;
background: rgba(10,10,12,.9);
border-bottom: 1px solid var(--line); isolation: isolate;
}
.site-header::before {
content: ''; position: absolute; inset: 0; z-index: -1;
backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.topbar {
background: transparent;
color: var(--steel);
font-size: 13px;
border-bottom: 1px solid var(--line);
}
.topbar .container {
display: flex;
align-items: center;
justify-content: space-between;
height: 38px;
}
.topbar-info { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-info a { color: var(--steel); display: inline-flex; align-items: center; gap: 6px; }
.topbar-info a:hover { color: var(--red-bright); }
.topbar-info svg { width: 14px; height: 14px; flex: none; }
.topbar-hours { color: var(--steel); display: flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: var(--steel); }
.topbar-social a:hover { color: var(--red-bright); }
.topbar-social svg { width: 15px; height: 15px; }
.navbar { height: var(--header-h); display: flex; align-items: center; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; } .brand img {
height: 44px; width: auto; background: var(--white); padding: 6px 10px; border-radius: 3px;
}
.brand-fallback {
display: flex; align-items: center; font-family: var(--font);
font-variation-settings: "wdth" 116; font-weight: 800; font-size: 24px; letter-spacing: -.01em;
}
.brand-fallback .mark {
background: var(--red); color: var(--white); padding: 4px 9px; margin-right: 8px; border-radius: 3px;
}
.brand-fallback .word { color: var(--paper); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
font-family: var(--font);
font-size: 15px;
font-weight: 600;
color: var(--paper);
position: relative;
padding: 6px 0;
}
.nav-links a::after {
content: '';
position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
background: var(--red); transition: width .2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red-bright); }
.nav-links .dropdown { position: relative; }
.dropdown-caret { display: none; }
.nav-links .dropdown-panel {
position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
background: var(--graphite); box-shadow: var(--shadow-md); border: 1px solid var(--line); border-radius: var(--radius);
padding: 14px; width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 22px;
opacity: 0; visibility: hidden; translate: 0 8px; transition: all .18s ease;
border-top: 3px solid var(--red);
}
.nav-links .dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; translate: 0 0; }
.dropdown-panel .col-title {
font-size: 11px; letter-spacing: .08em; color: var(--steel); padding: 8px 10px 2px;
font-family: var(--font); font-weight: 700;
}
.dropdown-panel a {
display: block; padding: 7px 10px; font-size: 13.5px;
font-family: var(--font); font-weight: 500; color: var(--muted);
border-radius: 3px;
}
.dropdown-panel a::after { display: none; }
.dropdown-panel a:hover { background: rgba(193,18,31,.14); color: var(--red-bright); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
font-family: var(--font); font-weight: 700; font-size: 16px; color: var(--paper);
display: flex; align-items: center; gap: 8px;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--red-bright); }
.nav-toggle {
display: none; background: none; border: none; width: 34px; height: 26px; position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
content: ''; position: absolute; left: 0; right: 0; height: 2.5px; background: var(--paper);
transition: all .2s ease;
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle::before { top: 3px; }
.nav-toggle::after { bottom: 3px; }
.nav-toggle.open span { opacity: 0; }
.nav-toggle.open::before { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.open::after { transform: rotate(-45deg) translate(5px, -6px); }
@media (max-width: 980px) {
.topbar-hours { display: none; } .nav-links { position: absolute; top: 100%; left: 0; right: 0; height: 100vh;
background: var(--void); flex-direction: column; align-items: stretch; gap: 0;
padding: 10px 24px 30px; overflow-y: auto; transform: translateX(100%);
transition: transform .25s ease; box-shadow: var(--shadow-lg);
}
.nav-links.open { transform: translateX(0); } .nav-links > li > a { display: block; width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); } .nav-links > li > a::after { display: none; }
.nav-links .dropdown { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.nav-links .dropdown.active { border-bottom-color: var(--red); }
.nav-links .dropdown a { border-bottom: none; flex: 1; }
.dropdown-caret {
display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
background: none; border: none; color: var(--paper); flex: none;
}
.dropdown-caret svg { width: 18px; height: 18px; transition: transform .2s ease; }
.nav-links .dropdown.open .dropdown-caret svg { transform: rotate(90deg); }
.nav-links .dropdown-panel {
position: static; transform: none; box-shadow: none; width: 100%; display: none;
grid-template-columns: 1fr; border-top: none; border: none; background: transparent;
padding: 4px 0 4px 14px; opacity: 1; visibility: visible;
}
.nav-links .dropdown.open .dropdown-panel { display: grid; }
.nav-phone span.phone-text { display: none; }
.nav-toggle { display: block; }
.nav-cta .btn-primary { display: none; }
}
@media (max-width: 560px) {
.brand img { height: 36px; }
.brand-fallback { font-size: 18px; }
} .hero-slider {
position: relative;
height: 86vh;
min-height: 560px;
max-height: 820px;
overflow: hidden;
background: var(--void);
}
.hero-slide {
position: absolute; inset: 0;
opacity: 0; transition: opacity 1.1s ease;
display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-slide::before {
content: '';
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(90deg, rgba(10,10,12,.92) 0%, rgba(10,10,12,.62) 45%, rgba(10,10,12,.3) 100%);
}
.hero-content {
position: relative; z-index: 2; color: var(--paper); max-width: 640px; padding: 0 24px;
margin: 0 auto; width: 100%;
}
.hero-content .eyebrow {
display: inline-flex; align-items: center; gap: 10px; color: var(--steel);
font-family: var(--font); font-weight: 600; font-size: 15px; margin-bottom: 18px;
}
.hero-content .eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--red); flex: none; }
.hero-content .hero-title { font-size: clamp(34px, 5.4vw, 62px); color: var(--paper); margin-bottom: 18px; font-family: var(--font); font-variation-settings: "wdth" 114; font-weight: 800; letter-spacing: -.015em; line-height: 1.08; }
.hero-content .hero-title em { color: var(--red-bright); font-style: normal; }
.hero-content p.lead { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-slider .container { position: relative; z-index: 2; height: 100%; }
.hero-inner { height: 100%; display: flex; align-items: center; }
.hero-dots {
position: absolute; bottom: 28px; left: 0; right: 0; z-index: 3;
display: flex; justify-content: center; gap: 10px;
}
.hero-dots button {
width: 34px; height: 4px; background: rgba(236,235,231,.3); border: none; padding: 0; border-radius: 2px;
transition: background .2s ease;
}
.hero-dots button.active { background: var(--red); }
.hero-arrows button {
position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(236,235,231,.35);
background: rgba(10,10,12,.4); color: var(--paper); display: flex; align-items: center; justify-content: center;
}
.hero-arrows button:hover { background: var(--red); border-color: var(--red); }
.hero-arrows .prev { left: 24px; }
.hero-arrows .next { right: 24px; }
@media (max-width: 700px) { .hero-arrows { display: none; } } .page-hero {
position: relative;
padding: 46px 0 30px;
background: radial-gradient(120% 90% at 82% 8%, #202124 0%, transparent 62%), var(--void);
color: var(--paper);
overflow: hidden;
border-bottom: 1px solid var(--line);
}
.page-hero::after {
content: '';
position: absolute; right: -80px; top: -60px; width: 380px; height: 380px;
background: radial-gradient(circle, var(--red) 0%, transparent 70%); opacity: .16;
}
.page-hero .breadcrumbs { font-size: 13px; color: var(--steel); margin-bottom: 14px; }
.page-hero .breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; list-style: none; margin: 0; padding: 0; }
.page-hero .breadcrumbs li { display: flex; align-items: center; }
.page-hero .breadcrumbs li[aria-current="page"] { color: var(--muted); }
.page-hero .breadcrumbs li + li::before { content: '/'; margin: 0 8px; color: var(--line-strong); }
.page-hero .breadcrumbs a:hover { color: var(--red-bright); }
.page-hero h1 { color: var(--paper); font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 10px; }
.page-hero p { color: var(--muted); max-width: 640px; font-size: 16.5px; } .section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--graphite); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 700px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow-label {
display: inline-flex; align-items: center; gap: 10px; color: var(--steel);
font-family: var(--font); font-weight: 600; font-size: 15px; margin-bottom: 14px;
}
.eyebrow-label::before { content: ''; width: 26px; height: 2px; background: var(--red); flex: none; }
.section-head.center .eyebrow-label::before { display: none; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); }
.section-head p { color: var(--muted); font-size: 16px; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } } .stat-strip {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
background: var(--graphite); color: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
padding: 40px 20px; margin-top: -110px; position: relative; z-index: 5;
box-shadow: var(--shadow-lg);
}
.stat-strip .stat { text-align: center; padding: 0 10px; border-right: 1px solid var(--line); }
.stat-strip .stat:last-child { border-right: none; }
.stat-strip .stat .num { font-family: var(--font); font-variation-settings: "wdth" 112; font-weight: 800; font-size: 38px; color: var(--red-bright); line-height: 1; margin-bottom: 6px; }
.stat-strip .stat .label { font-size: 13px; color: var(--steel); letter-spacing: .02em; }
@media (max-width: 780px) {
.stat-strip { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
.stat-strip .stat { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
} .split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 34px; } } .photo-collage { position: relative; align-self: start; }
.photo-collage img {
border-radius: var(--radius); box-shadow: var(--shadow-md); object-fit: cover;
}
.photo-collage .main { width: 100%; height: 420px; }
.photo-collage .accent {
position: absolute; width: 46%; height: 190px; bottom: -34px; right: -28px;
border: 6px solid var(--void);
}
.photo-collage .tag-corner {
position: absolute; top: 16px; right: 16px; z-index: 2;
}
@media (max-width: 640px) {
.photo-collage .accent { display: none; }
.photo-collage .main { height: 300px; }
}
.check-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 15px; color: var(--muted); }
.check-list svg { flex: none; width: 20px; height: 20px; color: var(--red); margin-top: 1px; } .owner-profile {
display: flex; gap: 40px; align-items: flex-start;
background: var(--graphite); border: 1px solid var(--line); border-radius: var(--radius);
padding: 40px;
}
.owner-profile .owner-photo { flex: none; width: 260px; }
.owner-profile .owner-photo img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.owner-profile .owner-bio { flex: 1; min-width: 0; }
.owner-profile.no-photo .owner-bio { max-width: 720px; margin: 0 auto; }
.owner-profile .owner-name { font-size: 24px; margin-bottom: 2px; }
.owner-profile .owner-title {
color: var(--red-bright); font-family: var(--font); font-weight: 700; font-size: 13.5px;
letter-spacing: .02em; margin-bottom: 20px;
}
.owner-profile .owner-bio p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 780px) {
.owner-profile { flex-direction: column; padding: 28px; gap: 24px; }
.owner-profile .owner-photo { width: 100%; max-width: 260px; margin: 0 auto; }
} .category-card {
background: var(--graphite); border: 1px solid var(--line); border-radius: var(--radius);
padding: 34px 26px; transition: all .2s ease; height: 100%;
}
.category-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.category-card .icon-wrap {
width: 58px; height: 58px; border-radius: 50%; background: rgba(193,18,31,.14);
display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--red-bright);
transition: all .2s ease;
}
.category-card:hover .icon-wrap { background: var(--red); color: var(--white); }
.category-card .icon-wrap svg { width: 28px; height: 28px; }
.category-card h3 { font-size: 19px; margin-bottom: 8px; }
.category-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.category-card ul { margin-bottom: 18px; }
.category-card ul li {
font-size: 14px; color: var(--muted); padding: 6px 0 6px 18px; position: relative;
border-top: 1px dashed var(--line);
}
.category-card ul li:first-child { border-top: none; }
.category-card ul li::before { content: '›'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.category-card .cat-link { font-family: var(--font); font-weight: 700; font-size: 13.5px; color: var(--red-bright); display: inline-flex; align-items: center; gap: 6px; }
.category-card .cat-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.category-card:hover .cat-link svg { transform: translateX(4px); }
.service-card {
background: var(--graphite); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
transition: all .2s ease; display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.service-card .thumb { height: 190px; position: relative; display: block; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-card .thumb .tag {
position: absolute; top: 14px; left: 14px; background: var(--red); color: var(--white);
font-family: var(--font); font-weight: 700; font-size: 11px; letter-spacing: .03em;
padding: 5px 10px; border-radius: 3px;
}
.service-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { color: var(--red-bright); }
.service-card p { font-size: 14px; color: var(--muted); flex: 1; margin-bottom: 16px; }
.service-card .more { font-family: var(--font); font-weight: 700; font-size: 13.5px; color: var(--red-bright); display: inline-flex; align-items: center; gap: 6px; }
.service-card .more svg { width: 14px; height: 14px; } .seal-row { display: flex; gap: 26px; flex-wrap: wrap; align-items: flex-start; }
.seal-row.center { justify-content: center; }
.seal { display: flex; flex-direction: column; align-items: center; text-align: center; width: 168px; }
.seal-octagon-clip { clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); }
.seal-shape {
width: 168px; height: 168px; padding: 3px; background: var(--red);
clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.seal-shape-inner {
width: 100%; height: 100%; padding: 8px 14px;
background: linear-gradient(160deg, var(--graphite), var(--void));
clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.seal-icon-circle {
width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: var(--white);
display: flex; align-items: center; justify-content: center; flex: none;
}
.seal-icon-circle svg { width: 22px; height: 22px; }
.seal-title { font-family: var(--font); font-weight: 800; font-size: 22px; color: var(--paper); line-height: 1; }
.seal-title-sm { font-size: 16px; letter-spacing: .04em; }
.seal-caption { margin-top: 14px; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.seal-caption strong { display: block; color: var(--paper); font-weight: 800; font-size: 14px; margin-bottom: 2px; } .seal-shape-circle {
width: 168px; height: 168px; border-radius: 50%; background: var(--white);
border: 3px solid var(--red); padding: 14px; display: flex; align-items: center; justify-content: center;
}
.seal-shape-circle img { width: 100%; height: 100%; object-fit: contain; } .tag-badge {
display: inline-flex; align-items: center; gap: 7px;
background: rgba(193,18,31,.16); border: 1px solid var(--red); color: var(--red-bright);
font-family: var(--font); font-weight: 700; font-size: 12.5px; letter-spacing: .01em;
padding: 7px 14px 7px 10px; border-radius: 999px; white-space: nowrap;
}
.tag-badge svg { width: 15px; height: 15px; }
.page-hero .tag-badge, .hero-content .tag-badge { margin-bottom: 16px; }
.corner-ribbon {
position: absolute; top: 28px; left: -54px; width: 220px; z-index: 5;
background: var(--red); color: var(--white); text-align: center;
font-family: var(--font); font-weight: 800; font-size: 12.5px; letter-spacing: .02em;
padding: 8px 0; transform: rotate(-45deg); box-shadow: 0 4px 12px rgba(0,0,0,.4);
} .brands-strip { background: var(--void); padding: 46px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); } .brands-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.brand-chip {
display: flex; align-items: center; justify-content: center; height: 72px;
flex: 1 1 150px; max-width: 190px;
background: var(--graphite); border: 1px solid var(--line); border-radius: var(--radius);
color: var(--muted); font-family: var(--font); font-weight: 700; letter-spacing: -.005em;
font-size: 15px; transition: all .2s ease; text-align: center; padding: 6px 10px;
}
@media (max-width: 560px) { .brand-chip { flex-basis: 42%; } }
.brand-chip:hover { border-color: var(--red); color: var(--paper); background: rgba(193,18,31,.1); } .reviews-wrap { position: relative; }
.reviews-track {
display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px;
scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
scroll-snap-align: start; flex: 0 0 340px; background: var(--graphite); border: 1px solid var(--line);
border-radius: var(--radius); padding: 26px;
}
.review-card .stars { color: #F5A623; display: flex; gap: 2px; margin-bottom: 12px; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card p.text { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; min-height: 96px; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
width: 40px; height: 40px; border-radius: 50%; background: var(--void); color: var(--paper);
display: flex; align-items: center; justify-content: center; font-family: var(--font); font-weight: 800; font-size: 15px;
}
.review-card .who .name { font-weight: 700; font-size: 14px; color: var(--paper); }
.review-card .who .via { font-size: 12px; color: var(--steel); display: flex; align-items: center; gap: 5px; }
.review-card .who .via svg { width: 13px; height: 13px; }
.reviews-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.reviews-nav { display: flex; gap: 10px; }
.reviews-nav button {
width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--graphite); color: var(--paper);
display: flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.reviews-nav button:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.google-rating-summary { display: flex; align-items: center; gap: 12px; }
.google-rating-summary .g-logo { font-family: var(--font); font-weight: 800; font-size: 20px; color: var(--paper); }
.google-rating-summary .g-logo span:nth-child(1){color:#4285F4}
.google-rating-summary .score { font-family: var(--font); font-weight: 800; font-size: 22px; color: var(--paper); }
.google-rating-summary .stars { color: #F5A623; display: flex; gap: 2px; }
.google-rating-summary .stars svg { width: 16px; height: 16px; }
.google-rating-summary .count { color: var(--steel); font-size: 13.5px; } .cta-banner {
background: var(--red);
color: var(--white); border-radius: var(--radius); padding: 54px 50px;
display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
position: relative; overflow: hidden;
}
.cta-banner::after { content: ''; position: absolute; inset: 0; background: var(--hatch-dark); pointer-events: none; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 8px; font-size: clamp(22px,3vw,32px); }
.cta-banner p { color: rgba(255,255,255,.88); margin: 0; }
.cta-banner .btn-dark { background: var(--void); color: var(--white); border-color: var(--void); }
.cta-banner .btn-dark:hover { background: #000; border-color: #000; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.14); border-color: var(--white); } .map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 440px; border: 0; filter: grayscale(1) contrast(1.05) brightness(.82); } .contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card {
background: var(--graphite); color: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
}
.info-card h3 { color: var(--paper); font-size: 18px; }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.info-row:first-of-type { border-top: none; }
.info-row svg { width: 20px; height: 20px; color: var(--red-bright); flex: none; margin-top: 2px; }
.info-row .label { font-size: 12px; letter-spacing: .04em; color: var(--steel); margin-bottom: 3px; }
.info-row .val { font-size: 14.5px; color: var(--paper); }
.info-row a.val:hover { color: var(--red-bright); }
.hours-table { width: 100%; font-size: 14px; }
.hours-table td { padding: 5px 0; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--paper); font-weight: 600; }
.contact-form { background: var(--graphite); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
border: 1px solid var(--line-strong); border-radius: 3px; padding: 12px 14px; font-family: var(--font);
font-size: 14.5px; background: var(--void); color: var(--paper);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--steel); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(193,18,31,.25);
} .contact-form .wpcf7-form-control-wrap { display: block; width: 100%; }
.contact-form .wpcf7-form-control-wrap .wpcf7-form-control { width: 100%; }
.contact-form .wpcf7-not-valid-tip { color: var(--red-bright); font-size: 12.5px; margin-top: 4px; }
.contact-form .wpcf7-response-output {
margin: 0 0 20px; padding: 14px 16px; border-radius: 4px; font-size: 14.5px;
}
.contact-form form.sent .wpcf7-response-output { background: rgba(34,197,94,.15); border: 1px solid #22c55e; color: #86efac; }
.contact-form form.failed .wpcf7-response-output,
.contact-form form.aborted .wpcf7-response-output,
.contact-form form.spam .wpcf7-response-output { background: rgba(193,18,31,.15); border: 1px solid var(--red); color: var(--red-bright); }
.contact-form form.invalid .wpcf7-response-output { background: rgba(245,166,35,.15); border: 1px solid #f5a623; color: #f5c877; }
.contact-form .wpcf7-spinner { margin-left: 10px; } .site-footer { background: var(--void); color: var(--muted); border-top: 1px solid var(--line); } .footer-top { padding-top: 70px; padding-bottom: 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } } .footer-brand img {
height: 46px; margin-bottom: 16px; background: var(--white); padding: 8px 14px;
border-radius: 3px;
}
.footer-brand p { color: var(--steel); font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); color: var(--paper);
display: flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
color: var(--paper); font-size: 14px; letter-spacing: .02em; margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: var(--steel); font-size: 14px; }
.footer-col ul a:hover { color: var(--red-bright); }
.footer-col .info-row { border: none; padding: 0 0 14px; }
.footer-col .info-row .val { color: var(--muted); }
.footer-bottom {
border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 22px; font-size: 13px; color: var(--steel);
display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--red-bright); } .booking-modal-overlay {
position: fixed; inset: 0; background: rgba(5,5,7,.82); z-index: 1000;
display: none; align-items: center; justify-content: center; padding: 20px;
backdrop-filter: blur(4px);
}
.booking-modal-overlay.open { display: flex; }
.booking-modal {
background: var(--paper); width: 100%; max-width: 880px; height: 86vh; max-height: 780px;
position: relative; box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column;
}
.booking-modal-head {
display: flex; align-items: center; justify-content: space-between; padding: 16px 22px;
border-bottom: 1px solid var(--line); background: var(--void);
}
.booking-modal-head h3 { color: var(--paper); font-size: 16px; margin: 0; }
.booking-modal-head .close-btn {
background: none; border: 1px solid rgba(236,235,231,.35); color: var(--paper); width: 32px; height: 32px; border-radius: 50%;
display: flex; align-items: center; justify-content: center; transition: background .2s ease, border-color .2s ease;
}
.booking-modal-head .close-btn:hover { background: var(--red); border-color: var(--red); }
.booking-modal-head .close-btn svg { width: 18px; height: 18px; }
.booking-modal iframe { flex: 1; width: 100%; border: 0; background: var(--paper); }
body.modal-open { overflow: hidden; } .js-lightbox { cursor: zoom-in; }
.lightbox-overlay {
position: fixed; inset: 0; background: var(--void); z-index: 1000;
display: none; align-items: center; justify-content: center; padding: 60px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-image {
max-width: 100%; max-height: 100%; object-fit: contain;
border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-arrow {
position: fixed; background: rgba(23,24,27,.7); border: 1px solid rgba(236,235,231,.35); color: var(--paper);
border-radius: 50%; display: flex; align-items: center; justify-content: center;
transition: background .2s ease, border-color .2s ease; z-index: 1001;
}
.lightbox-close:hover, .lightbox-arrow:hover { background: var(--red); border-color: var(--red); }
.lightbox-close { top: 24px; right: 24px; width: 42px; height: 42px; }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox-arrow svg { width: 22px; height: 22px; }
.lightbox-arrow.prev { left: 24px; }
.lightbox-arrow.next { right: 24px; }
.lightbox-counter {
position: fixed; bottom: 24px; left: 0; right: 0; text-align: center;
color: var(--steel); font-family: var(--font); font-weight: 600; font-size: 13px; letter-spacing: .04em;
}
@media (max-width: 640px) {
.lightbox-overlay { padding: 20px; }
.lightbox-close { top: 14px; right: 14px; width: 36px; height: 36px; }
.lightbox-arrow { width: 42px; height: 42px; }
.lightbox-arrow.prev { left: 10px; }
.lightbox-arrow.next { right: 10px; }
} .service-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 50px; }
@media (max-width: 940px) { .service-detail-grid { grid-template-columns: 1fr; } }
.service-detail-grid .lead { font-size: 18px; color: var(--paper); }
.detail-block { margin-bottom: 34px; }
.detail-block h2 { font-size: 20px; margin-bottom: 14px; }
.included-list li, .signs-list li {
display: flex; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--muted);
}
.included-list li:first-child, .signs-list li:first-child { border-top: none; }
.included-list svg { width: 18px; height: 18px; color: var(--red-bright); flex: none; margin-top: 2px; }
.signs-list svg { width: 18px; height: 18px; color: var(--steel); flex: none; margin-top: 2px; }
.sidebar-card {
background: var(--graphite); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 22px;
}
.sidebar-card h3 { font-size: 15px; margin-bottom: 14px; }
.sidebar-card.dark { background: var(--void); border-color: var(--line-strong); }
.sidebar-card.dark p { color: var(--muted); font-size: 14px; }
.sidebar-services li { border-top: 1px solid var(--line); }
.sidebar-services li:first-child { border-top: none; }
.sidebar-services a {
display: flex; justify-content: space-between; align-items: center; padding: 11px 2px; font-size: 14px; color: var(--muted);
}
.sidebar-services a:hover { color: var(--red-bright); }
.sidebar-services a.active { color: var(--red-bright); font-weight: 600; }
.sidebar-services svg { width: 14px; height: 14px; } .divider { height: 1px; background: var(--line); border: none; margin: 0; }
.text-red { color: var(--red-bright); }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.back-to-top {
position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%;
background: var(--graphite); border: 1px solid var(--line-strong); color: var(--paper);
display: flex; align-items: center; justify-content: center;
box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
transition: all .25s ease; z-index: 400;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red); border-color: var(--red); }
.back-to-top svg { transform: rotate(-90deg); } .screen-reader-text {
position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; top: -60px; left: 0; z-index: 2000; background: var(--red); color: var(--white); padding: 12px 20px; }
.skip-link:focus { top: 0; }
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--steel); margin-top: 8px; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content a:not(.btn) { color: var(--red-bright); text-decoration: underline; text-underline-offset: 2px; }
.entry-content img { border-radius: var(--radius); }
.entry-content ul, .entry-content ol { margin: 0 0 1em; padding-left: 1.4em; list-style: revert; }
.entry-content ul li, .entry-content ol li { color: var(--muted); }