@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

/* ===== TOKENS — LIGHT (default) ===== */
:root {
  --background: 36 28% 94%;
  --surface: 36 33% 97%;
  --foreground: 220 27% 7%;
  --card: 0 0% 100%;
  --muted: 36 22% 90%;
  --muted-foreground: 220 12% 38%;
  --accent: 14 82% 53%;
  --accent-foreground: 36 33% 97%;
  --sage: 156 22% 32%;
  --sage-foreground: 36 33% 97%;
  --border: 36 18% 84%;
  --radius: 4px;
}
.dark {
  --background: 220 27% 6%;
  --surface: 220 23% 9%;
  --foreground: 36 30% 94%;
  --card: 220 23% 10%;
  --muted: 220 18% 14%;
  --muted-foreground: 36 12% 65%;
  --accent: 14 87% 60%;
  --accent-foreground: 220 27% 6%;
  --sage: 156 24% 50%;
  --sage-foreground: 220 27% 6%;
  --border: 220 18% 16%;
}

* { box-sizing: border-box; border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; }
html, body { background: hsl(var(--background)); color: hsl(var(--foreground)); }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background-color .4s ease, color .4s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.font-display { font-family: 'Unbounded', system-ui, sans-serif; letter-spacing: -.02em; }
.font-serif-italic { font-family: 'Instrument Serif', serif; font-style: italic; letter-spacing: -.01em; color: hsl(var(--accent)); }
.text-accent { color: hsl(var(--accent)); }
.text-muted { color: hsl(var(--muted-foreground)); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section { padding: 80px 0; }
@media (min-width: 1024px) { .section { padding: 112px 0; } }
.section.tight { padding: 64px 0; }
@media (min-width: 1024px) { .section.tight { padding: 96px 0; } }
.section.no-pt { padding-top: 0; }
.section.no-pb { padding-bottom: 0; }
.section.surface { background: hsl(var(--surface)); border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); }
.section.ink { background: hsl(220 27% 7%); color: hsl(36 30% 94%); }
.dark .section.ink { background: hsl(220 30% 4%); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: hsl(var(--accent)); }
.eyebrow::before { content: ''; width: 32px; height: 1px; background: hsl(var(--accent)); }

h1, h2, h3 { margin: 0; }
.h1 { font-family: 'Unbounded', sans-serif; font-weight: 800; letter-spacing: -.02em; font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: .98; }
.h2 { font-family: 'Unbounded', sans-serif; font-weight: 700; letter-spacing: -.02em; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; }
.h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; letter-spacing: -.02em; }
.lead { font-size: 1.125rem; line-height: 1.7; color: hsl(var(--muted-foreground)); }
.section.ink .lead { color: hsl(36 30% 94% / .85); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; border: none;
  transition: transform .25s cubic-bezier(.22,1,.36,1), background-color .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.btn-accent:hover { background: hsl(var(--accent) / .9); }
.btn-ghost { background: hsl(0 0% 100% / .1); color: inherit; border: 1px solid hsl(0 0% 100% / .2); backdrop-filter: blur(6px); }
.btn-muted { background: hsl(var(--muted)); color: hsl(var(--foreground)); }
.btn-muted:hover { background: hsl(var(--border)); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled { background: hsl(var(--background) / .85); backdrop-filter: blur(20px); border-bottom: 1px solid hsl(var(--border)); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
@media (min-width: 768px) { .site-header .container { height: 80px; } }

.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { width: 40px; height: 40px; background: hsl(var(--foreground)); color: hsl(var(--background)); display: grid; place-items: center; border-radius: var(--radius); transition: background-color .2s, color .2s; }
.logo:hover .logo-mark { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.logo-brand { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em; }
.logo-sub { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--muted-foreground)); }

.main-nav { display: none; align-items: center; gap: 28px; }
@media (min-width: 1280px) { .main-nav { display: flex; } }
.nav-link { position: relative; font-size: .9rem; font-weight: 500; color: hsl(var(--muted-foreground)); transition: color .2s; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: hsl(var(--accent)); transition: width .35s ease; }
.nav-link:hover, .nav-link.active { color: hsl(var(--foreground)); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--radius); border: 1px solid hsl(var(--border)); background: hsl(var(--surface)); color: hsl(var(--foreground)); }
.header-call { display: none; }
@media (min-width: 768px) { .header-call { display: inline-flex; padding: 10px 16px; font-size: .9rem; } }
.menu-toggle { display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid hsl(var(--border)); background: hsl(var(--surface)); color: hsl(var(--foreground)); }
@media (min-width: 1280px) { .menu-toggle { display: none; } }

.mobile-menu { display: none; border-top: 1px solid hsl(var(--border)); background: hsl(var(--background)); }
.mobile-menu.open { display: block; }
.mobile-menu .container { display: flex; flex-direction: column; gap: 4px; padding: 16px; height: auto; }
.mobile-nav-link { padding: 12px; border-radius: var(--radius); font-weight: 500; }
.mobile-nav-link:hover { background: hsl(var(--muted)); }
.mobile-nav-link.active { background: hsl(var(--foreground)); color: hsl(var(--background)); }
.mobile-call { margin-top: 8px; justify-content: center; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: hsl(220 27% 7%); color: hsl(36 30% 94%); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .35; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,12,22,.94) 0%, rgba(8,12,22,.82) 50%, rgba(8,12,22,.6) 100%); }
.hero-radial { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 30%, rgba(234,88,12,.10), transparent 55%); }
.hero-inner { position: relative; padding: 140px 0 110px; }
@media (min-width: 768px) { .hero-inner { padding: 170px 0 130px; } }
.hero-tag { font-size: 12px; text-transform: uppercase; letter-spacing: .25em; color: hsl(var(--accent)); font-weight: 600; margin-bottom: 24px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 560px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 32px; margin-top: 56px; }
.hero-stats .v { font-family: 'Unbounded', sans-serif; font-size: 1.6rem; font-weight: 700; color: hsl(var(--accent)); }
.hero-stats .l { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; opacity: .7; margin-top: 6px; }

/* ===== Trust marquee ===== */
.marquee-wrap { border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); background: hsl(var(--surface)); padding: 20px 0; overflow: hidden; }
.marquee { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: marquee 40s linear infinite; font-size: .9rem; font-weight: 500; color: hsl(var(--muted-foreground)); }
.marquee span { display: inline-flex; align-items: center; gap: 8px; }
.marquee .dot { width: 6px; height: 6px; border-radius: 50%; background: hsl(var(--accent)); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Grids / Cards ===== */
.grid-lines { display: grid; gap: 1px; background: hsl(var(--border)); border: 1px solid hsl(var(--border)); }
.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .cols-2 { grid-template-columns: repeat(2,1fr); } .cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px) { .cols-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cols-3 { grid-template-columns: repeat(3,1fr); } .cols-4 { grid-template-columns: repeat(4,1fr); } }

.gap-grid { display: grid; gap: 24px; }
.gap-grid.cols2 { grid-template-columns: 1fr; }
.gap-grid.cols3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .gap-grid.cols2 { grid-template-columns: repeat(2,1fr); } .gap-grid.cols3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .gap-grid.cols3 { grid-template-columns: repeat(3,1fr); } }

.card { background: hsl(var(--card)); padding: 28px; height: 100%; }
.card-bordered { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); padding: 24px; height: 100%; transition: border-color .2s; }
.card-bordered:hover { border-color: hsl(var(--foreground)); }
.card-link { display: block; background: hsl(var(--card)); padding: 28px; height: 100%; transition: background-color .3s, color .3s; }
.card-link:hover { background: hsl(var(--foreground)); color: hsl(var(--background)); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; background: hsl(var(--muted)); border-radius: var(--radius); margin-bottom: 20px; transition: background-color .2s; }
.card-link:hover .card-icon { background: hsl(var(--accent)); }
.card-icon svg, .card-icon i { color: hsl(var(--foreground)); transition: color .2s; }
.card-link:hover .card-icon svg, .card-link:hover .card-icon i { color: hsl(var(--accent-foreground)); }
.card-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: .8rem; font-weight: 600; color: hsl(var(--accent)); }

.pricing-card { background: hsl(var(--card)); padding: 32px; position: relative; }
.pricing-card .label { font-size: 10px; text-transform: uppercase; letter-spacing: .25em; color: hsl(var(--muted-foreground)); font-weight: 600; margin-bottom: 32px; }
.pricing-card .price { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.2rem); color: hsl(var(--accent)); }
.pricing-card .unit { font-family: 'Unbounded', sans-serif; font-size: .9rem; font-weight: 600; color: hsl(var(--muted-foreground)); margin-top: 6px; }
.pricing-card .note { font-size: .9rem; color: hsl(var(--muted-foreground)); border-top: 1px solid hsl(var(--border)); padding-top: 20px; margin-top: 24px; }
.pricing-card .bar { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: hsl(var(--accent)); transition: width .5s ease; }
.pricing-card:hover .bar { width: 100%; }

/* Fleet */
.fleet-card { border: 1px solid hsl(var(--border)); background: hsl(var(--card)); padding: 24px; transition: border-color .2s; height: 100%; }
.fleet-card:hover { border-color: hsl(var(--foreground)); }
.fleet-card img { height: 128px; object-fit: contain; margin: 0 auto 16px; }
.fleet-card h3 { font-size: 1.5rem; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: .9rem; margin-top: 12px; }
.fleet-specs span { color: hsl(var(--muted-foreground)); }
.fleet-best { margin-top: 16px; padding-top: 16px; border-top: 1px solid hsl(var(--border)); font-size: .8rem; color: hsl(var(--muted-foreground)); }

.fleet-page-card { border: 1px solid hsl(var(--border)); background: hsl(var(--card)); height: 100%; transition: border-color .2s; }
.fleet-page-card:hover { border-color: hsl(var(--foreground)); }
.fleet-page-card .img-wrap { background: hsl(var(--surface)); padding: 24px; }
.fleet-page-card .img-wrap img { height: 176px; object-fit: contain; margin: 0 auto; }
.fleet-page-card .body { padding: 24px 32px; }
.fleet-dl { display: grid; grid-template-columns: 1fr 1fr; row-gap: 12px; font-size: .9rem; margin-top: 24px; }
.fleet-dl dt { color: hsl(var(--muted-foreground)); }
.fleet-dl dd { margin: 0; font-weight: 600; text-align: right; }

/* Why-us bullets */
.bullet-grid { display: grid; gap: 16px; margin-top: 32px; }
@media (min-width: 640px) { .bullet-grid { grid-template-columns: 1fr 1fr; } }
.bullet { display: flex; gap: 12px; }
.bullet-icon { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: var(--radius); }
.bullet-title { font-family: 'Unbounded', sans-serif; font-weight: 700; }
.bullet-desc { font-size: .9rem; color: hsl(var(--muted-foreground)); }

/* Gallery / image zoom */
.img-zoom { overflow: hidden; border-radius: var(--radius); }
.img-zoom img { transition: transform 1.2s cubic-bezier(.22,1,.36,1); width: 100%; height: 100%; object-fit: cover; }
.img-zoom:hover img { transform: scale(1.06); }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4,1fr); } }
.gallery-grid .img-zoom { aspect-ratio: 1/1; background: hsl(var(--muted)); }

/* Reviews */
.review-card { border: 1px solid hsl(var(--border)); background: hsl(var(--card)); padding: 24px; height: 100%; }
.stars { display: flex; gap: 2px; color: hsl(var(--accent)); margin-bottom: 12px; }
.review-card .quote { color: hsl(var(--foreground) / .8); line-height: 1.7; }
.review-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid hsl(var(--border)); padding-top: 16px; margin-top: 20px; }
.review-foot .svc { font-size: .75rem; color: hsl(var(--muted-foreground)); }

.google-card { border: 1px solid hsl(var(--border)); background: hsl(var(--card)); padding: 20px; height: 100%; }
.google-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.google-avatar { width: 40px; height: 40px; border-radius: 50%; background: hsl(var(--accent) / .1); display: grid; place-items: center; font-family: 'Unbounded', sans-serif; font-weight: 700; color: hsl(var(--accent)); }

/* Accordion */
.accordion { border-top: 1px solid hsl(var(--border)); }
.accordion-item { border-bottom: 1px solid hsl(var(--border)); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 1rem; color: inherit;
}
.accordion-trigger:hover { color: hsl(var(--accent)); }
.accordion-trigger .chev { transition: transform .25s ease; flex-shrink: 0; }
.accordion-item.open .accordion-trigger .chev { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-panel-inner { padding-bottom: 20px; color: hsl(var(--muted-foreground)); line-height: 1.7; }

/* Process steps */
.process-num { font-family: 'Unbounded', sans-serif; font-size: 1.8rem; font-weight: 700; color: hsl(var(--accent)); margin-bottom: 12px; }

/* Forms */
.lead-form { display: grid; gap: 12px; }
.field {
  width: 100%; padding: 13px 16px; border-radius: var(--radius); border: 1px solid hsl(var(--border));
  background: hsl(var(--card)); color: hsl(var(--foreground)); font-family: inherit; font-size: .95rem; outline: none;
  transition: border-color .2s;
}
.field::placeholder { color: hsl(var(--muted-foreground)); }
.field:focus { border-color: hsl(var(--accent)); }
.field-dark { background: hsl(36 30% 94% / .05); border-color: hsl(36 30% 94% / .2); color: hsl(36 30% 94%); }
.field-dark::placeholder { color: hsl(36 30% 94% / .45); }
.field-dark:focus { border-color: hsl(14 87% 60%); }
.form-note { font-size: .75rem; color: hsl(var(--muted-foreground)); }
.section.ink .form-note { opacity: .6; }
.form-success { padding: 32px; border-radius: var(--radius); border: 1px solid hsl(var(--border)); background: hsl(var(--card)); }
.section.ink .form-success { background: hsl(0 0% 100% / .05); border-color: hsl(0 0% 100% / .15); color: hsl(36 30% 94%); }

/* Breadcrumbs */
.breadcrumbs { background: hsl(var(--surface)); border-bottom: 1px solid hsl(var(--border)); }
.breadcrumbs .container { padding-top: 16px; padding-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; font-size: .75rem; color: hsl(var(--muted-foreground)); align-items: center; }
.breadcrumbs a:hover { color: hsl(var(--accent)); }
.breadcrumbs .current { color: hsl(var(--foreground)); font-weight: 600; }

/* Footer */
.site-footer { background: hsl(220 27% 7%); color: hsl(36 30% 94%); margin-top: 96px; }
.dark .site-footer { background: hsl(220 30% 4%); }
.footer-grid { display: grid; gap: 40px; padding: 64px 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4,1fr); } }
.footer-grid h4 { font-family: 'Unbounded', sans-serif; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.footer-grid li { margin-bottom: 10px; font-size: .9rem; opacity: .8; }
.footer-grid a:hover { color: hsl(var(--accent)); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: .9rem; opacity: .8; }
.footer-bottom { border-top: 1px solid hsl(0 0% 100% / .1); }
.footer-bottom .container { padding: 24px 0; display: flex; flex-direction: column; gap: 8px; justify-content: space-between; font-size: .75rem; opacity: .6; }
@media (min-width: 768px) { .footer-bottom .container { flex-direction: row; } }

/* Mobile sticky CTA */
.mobile-sticky { display: none; position: fixed; bottom: 12px; left: 12px; right: 12px; z-index: 30; }
@media (max-width: 767px) { .mobile-sticky { display: block; } }
.mobile-sticky a { display: flex; align-items: center; justify-content: center; gap: 8px; background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); padding: 14px; border-radius: var(--radius); font-weight: 700; box-shadow: 0 10px 30px hsl(var(--accent)/.3); }

/* Floating contact */
.floating-contact { display: none; position: fixed; right: 20px; bottom: 24px; z-index: 40; }
@media (min-width: 768px) { .floating-contact { display: block; } }
.floating-toggle { width: 56px; height: 56px; border-radius: 50%; background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); display: grid; place-items: center; border: none; box-shadow: 0 10px 30px hsl(var(--accent)/.3); }
.floating-panel { position: absolute; bottom: 64px; right: 0; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); box-shadow: 0 20px 40px rgba(0,0,0,.15); border-radius: var(--radius); padding: 12px; display: none; flex-direction: column; gap: 8px; min-width: 230px; }
.floating-panel.open { display: flex; }
.floating-panel a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius); }
.floating-panel a:hover { background: hsl(var(--muted)); }
.floating-panel .ico { width: 36px; height: 36px; border-radius: var(--radius); display: grid; place-items: center; }
.floating-panel .lbl { font-size: 11px; color: hsl(var(--muted-foreground)); }
.floating-panel .val { font-size: .9rem; font-weight: 600; }

/* Cursor dot (desktop only) */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 24px; height: 24px; border-radius: 50%;
  background: hsl(var(--accent) / .35); pointer-events: none; mix-blend-mode: multiply; z-index: 9999;
  transform: translate(-50%,-50%); transition: width .2s, height .2s, background .2s; display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor-dot { display: block; } }
.dark .cursor-dot { mix-blend-mode: screen; }
.cursor-dot.lg { width: 60px; height: 60px; background: hsl(var(--accent) / .2); }

/* Driving truck strip */
.truck-strip { position: relative; width: 100%; height: 56px; overflow: hidden; }
.truck-strip .line { position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: hsl(var(--border)); }
.truck-strip .dashes { position: absolute; top: 50%; left: 0; right: 0; height: 0; border-top: 2px dashed hsl(var(--accent) / .3); }
.truck-strip svg { position: absolute; top: 50%; transform: translateY(-50%); animation: drive 14s linear infinite; }
@keyframes drive { 0% { left: -60px; } 100% { left: 100%; } }

/* Reveal-on-scroll animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* Kinetic text word reveal */
.kinetic-word { display: inline-block; overflow: hidden; vertical-align: top; margin-right: .25em; }
.kinetic-word span { display: inline-block; transform: translateY(115%); animation: kinetic-up .7s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes kinetic-up { to { transform: translateY(0); } }

/* Misc */
.checklist { display: grid; gap: 12px; font-size: .95rem; margin-top: 32px; opacity: .9; }
.checklist li { display: flex; align-items: center; gap: 12px; }
.contact-card { border: 1px solid hsl(var(--border)); background: hsl(var(--card)); padding: 32px; display: grid; gap: 24px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-ico { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; border-radius: var(--radius); background: hsl(var(--muted)); }
.contact-ico.accent { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: hsl(var(--muted-foreground)); }
.contact-value { font-weight: 700; font-size: 1.2rem; margin-top: 4px; }
.map-frame { border: 1px solid hsl(var(--border)); overflow: hidden; border-radius: var(--radius); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

.other-services-grid .card-link { padding: 24px; }

.blog-card { display: block; }
.blog-date { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: hsl(var(--muted-foreground)); margin-top: 16px; }
.blog-title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.25rem; margin-top: 8px; transition: color .2s; }
.blog-card:hover .blog-title { color: hsl(var(--accent)); }
.blog-excerpt { margin-top: 8px; font-size: .9rem; color: hsl(var(--muted-foreground)); }
.aspect-1610 { aspect-ratio: 16/10; }
.aspect-169 { aspect-ratio: 16/9; }

article.post p { font-size: 1.125rem; line-height: 1.8; color: hsl(var(--foreground) / .8); margin: 0 0 20px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: hsl(var(--accent)); margin-top: 48px; padding-top: 24px; border-top: 1px solid hsl(var(--border)); }

.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 140px 16px 80px; }
.notfound .code { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: clamp(4rem,14vw,8rem); color: hsl(var(--accent)); }

.theme-toggle svg.sun { display: none; }
.dark .theme-toggle svg.sun { display: block; }
.dark .theme-toggle svg.moon { display: none; }

@media (max-width: 1023px) { .hide-on-mobile { display: none !important; } }
@media (min-width: 1024px) { .show-on-desktop { display: inline-flex !important; } }

/* Icon sizes */
.ic { display: inline-block; flex-shrink: 0; }
.ic-3 { width: 12px; height: 12px; }
.ic-3-5 { width: 14px; height: 14px; }
.ic-4 { width: 16px; height: 16px; }
.ic-5 { width: 20px; height: 20px; }
.ic-6 { width: 24px; height: 24px; }
.ic-7 { width: 28px; height: 28px; }
.cursor-dot { display: none !important; }
