/* ===========================================================================
   BASE.CSS - shared skeleton for all five design variants
   Hand-written. No Bootstrap, no Tailwind, no third-party reset.
   Colours/fonts come from CSS custom properties set inline on <body>
   by BusinessDesign::cssVariables(), so a design can be re-themed from
   the admin panel without editing a single line of CSS.
   Breakpoints: 360 / 768 / 1024 / 1440  (mobile-first)
   =========================================================================== */

/* --- 1. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture, video, iframe { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- 2. Design tokens (fallbacks; overridden inline per business) -------- */
:root {
  --c-primary: #111827;
  --c-secondary: #6b7280;
  --c-accent: #2563eb;
  --c-bg: #ffffff;
  --c-surface: #f8fafc;
  --c-text: #111827;
  --c-muted: #64748b;
  --c-border: #e2e8f0;

  --font-heading: 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --btn-radius: 8px;

  /* 8px spacing scale */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --container: 1200px;
  --container-narrow: 820px;
  --gutter: 20px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.14);

  --ease: cubic-bezier(.22,.61,.36,1);
  --speed: 260ms;
}

/* --- 3. Base typography -------------------------------------------------- */
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { color: var(--c-text); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.section-title { margin-bottom: var(--sp-3); }
.section-title.center { text-align: center; }
.section-lead { color: var(--c-muted); font-size: 1.05rem; max-width: 62ch; }

/* --- 4. Layout ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--sp-7); position: relative; }
.section-head { margin-bottom: var(--sp-6); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--c-primary); color: #fff; padding: var(--sp-3) var(--sp-4);
}
.skip-link:focus { left: var(--sp-3); top: var(--sp-3); }

:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; }

/* --- 5. Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 13px 26px;
  border-radius: var(--btn-radius);
  font-weight: 600; font-size: .95rem; line-height: 1;
  border: 2px solid transparent;
  transition: transform var(--speed) var(--ease), background var(--speed) var(--ease),
              color var(--speed) var(--ease), border-color var(--speed) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { filter: brightness(.92); }
.btn-ghost { border-color: currentColor; color: var(--c-text); }
.btn-ghost:hover { background: var(--c-text); color: var(--c-bg); }

/* --- 6. Header ----------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--speed) var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); min-height: 68px;
}

.brand { display: flex; align-items: center; gap: var(--sp-3); }
.brand-mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  background: var(--c-accent); color: #fff;
  border-radius: var(--btn-radius);
  font-family: var(--font-heading); font-weight: 700;
}
.brand-logo { width: 40px; height: 40px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; }
.brand-tag { font-size: .72rem; color: var(--c-muted); }

.site-nav ul { display: flex; gap: var(--sp-5); }
.site-nav a { font-size: .93rem; font-weight: 500; padding-block: 6px; position: relative; }
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--c-accent); transition: width var(--speed) var(--ease);
}
.site-nav a:hover::after, .site-nav a.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--sp-4); }
.header-phone { font-weight: 600; font-size: .9rem; }

.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-text); transition: transform var(--speed) var(--ease), opacity var(--speed); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- 7. Hero ------------------------------------------------------------- */
.section-hero { position: relative; padding-block: var(--sp-9); overflow: hidden; }

/* Default: artwork sits beside the copy as a real image. */
.hero-inner { position: relative; z-index: 1; display: grid; gap: var(--sp-6); align-items: center; }
.hero-media img { width: 100%; height: auto; display: block; border-radius: var(--btn-radius); }
.hero-copy { max-width: 640px; }

/* Optional full-bleed variant. The overlay borrows the design's own background
   colour, so a light theme gets a light wash and a dark theme a dark one —
   the hero text stays readable in every variant without per-design overrides. */
.hero-bg .hero-backdrop {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-image, none);
  background-size: cover; background-position: center;
}
.hero-bg .hero-backdrop::after {
  content: ''; position: absolute; inset: 0;
  background: var(--c-bg);
  opacity: var(--hero-overlay, .78);
}
.hero-align-center .hero-copy { max-width: 760px; margin-inline: auto; text-align: center; }
.hero-align-center .hero-actions { justify-content: center; }
.hero-title { margin-bottom: var(--sp-4); }
.hero-sub { font-size: 1.15rem; color: var(--c-muted); margin-bottom: var(--sp-4); }
.hero-body { margin-bottom: var(--sp-5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero-scroll-hint { display: none; }

/* --- 8. Cards & grids ---------------------------------------------------- */
.card-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
.card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: calc(var(--btn-radius) * 1.5);
  overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-media img { width: 100%; height: 210px; object-fit: cover; }
.card-media.round img { height: auto; aspect-ratio: 1; border-radius: 50%; padding: var(--sp-4); }
.card-body { padding: var(--sp-5); }
.card-title { margin-bottom: var(--sp-2); }
.card-text { color: var(--c-muted); font-size: .95rem; }
.card-role { display: block; color: var(--c-accent); font-size: .85rem; margin-bottom: var(--sp-2); }
.card-link { display: inline-block; margin-top: var(--sp-3); font-weight: 600; color: var(--c-accent); }
.card-link::after { content: ' \2192'; }
.card-icon { display: block; width: 44px; height: 44px; border-radius: var(--btn-radius); background: var(--c-surface); margin-bottom: var(--sp-3); }

/* Simple geometric icon set - drawn in CSS, no icon font, no SVG dependency */
.icon-1 { background: linear-gradient(135deg, var(--c-accent) 0 50%, var(--c-surface) 50% 100%); }
.icon-2 { background: var(--c-surface); border: 3px solid var(--c-accent); border-radius: 50%; }
.icon-3 { background: repeating-linear-gradient(45deg, var(--c-accent) 0 4px, var(--c-surface) 4px 9px); }
.icon-4 { background: var(--c-accent); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.icon-5 { background: var(--c-accent); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.icon-6 { background: var(--c-surface); border: 3px solid var(--c-accent); }

/* --- 9. About ------------------------------------------------------------ */
.about-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; align-items: center; }
.about-media img { width: 100%; border-radius: calc(var(--btn-radius) * 2); object-fit: cover; }
.check-list { margin-block: var(--sp-4) var(--sp-5); display: grid; gap: var(--sp-3); }
.check-list li { position: relative; padding-left: 30px; color: var(--c-muted); }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 16px; height: 9px; border-left: 3px solid var(--c-accent); border-bottom: 3px solid var(--c-accent);
  transform: rotate(-45deg);
}

/* --- 10. Features & stats ------------------------------------------------ */
.feature-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
.feature { padding: var(--sp-5); background: var(--c-surface); border-radius: calc(var(--btn-radius) * 1.5); }
.feature h3 { margin-bottom: var(--sp-2); }
.feature p { color: var(--c-muted); font-size: .93rem; }
.feature-icon { display: block; width: 40px; height: 40px; margin-bottom: var(--sp-3); border-radius: var(--btn-radius); }

.section-stats { background: var(--c-surface); }
.stat-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(2, 1fr); text-align: center; }
.stat-value, .stat-suffix { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--c-accent); }
.stat-label { display: block; color: var(--c-muted); font-size: .88rem; margin-top: var(--sp-2); }

/* --- 11. Gallery + lightbox ---------------------------------------------- */
.gallery { display: grid; gap: var(--sp-3); grid-template-columns: repeat(2, 1fr); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--btn-radius); transition: transform var(--speed) var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item { overflow: hidden; border-radius: var(--btn-radius); }
.gallery-item figcaption { font-size: .85rem; color: var(--c-muted); padding-top: var(--sp-2); }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.88);
  display: grid; place-items: center; padding: var(--sp-5);
}
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; }
.lightbox[hidden] { display: none; }
.lightbox-close { position: absolute; top: 16px; right: 22px; font-size: 2.4rem; color: #fff; line-height: 1; }

/* --- 12. Pricing --------------------------------------------------------- */
.pricing-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; align-items: start; }
.price-card {
  position: relative; padding: var(--sp-6) var(--sp-5);
  border: 1px solid var(--c-border); border-radius: calc(var(--btn-radius) * 1.5);
  background: var(--c-bg); text-align: center;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.price-card.is-featured { border-color: var(--c-accent); box-shadow: var(--shadow-md); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--c-accent); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}
.price-name { margin-bottom: var(--sp-3); }
.price-amount { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; line-height: 1; margin-bottom: var(--sp-4); }
.price-symbol { font-size: 1.2rem; vertical-align: super; }
.price-period { font-size: .85rem; color: var(--c-muted); font-weight: 400; }
.price-features { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-5); color: var(--c-muted); font-size: .93rem; }
.pricing-note { text-align: center; color: var(--c-muted); font-size: .85rem; margin-top: var(--sp-5); }

/* --- 13. Testimonials + slider ------------------------------------------ */
.testimonial { padding: var(--sp-5); background: var(--c-surface); border-radius: calc(var(--btn-radius) * 1.5); height: 100%; }
.testimonial blockquote { font-size: 1.02rem; margin-block: var(--sp-3); }
.rating .star { color: var(--c-border); }
.rating .star.is-on { color: var(--c-accent); }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-4); }
.testimonial-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-author small { display: block; color: var(--c-muted); font-size: .8rem; }

.slider { overflow: hidden; }
.slider-track { display: flex; transition: transform 420ms var(--ease); }
.slide { flex: 0 0 100%; padding-inline: var(--sp-2); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-5); }
.slider-btn { width: 42px; height: 42px; border: 1px solid var(--c-border); border-radius: 50%; }
.slider-btn:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.slider-dots { display: flex; gap: var(--sp-2); }
.slider-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--c-border); }
.slider-dots button.is-active { background: var(--c-accent); width: 26px; border-radius: 999px; }

/* --- 14. Accordion ------------------------------------------------------- */
.accordion-item { border-bottom: 1px solid var(--c-border); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) 0; text-align: left; font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem;
}
.accordion-icon { position: relative; width: 16px; height: 16px; flex: none; }
.accordion-icon::before, .accordion-icon::after {
  content: ''; position: absolute; background: var(--c-accent); transition: transform var(--speed) var(--ease);
}
.accordion-icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.accordion-icon::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: scaleY(0); }
.accordion-panel { padding-bottom: var(--sp-4); color: var(--c-muted); }

/* --- 15. CTA ------------------------------------------------------------- */
.section-cta { background: var(--c-primary); color: #fff; }
.section-cta .cta-title, .section-cta p { color: #fff; }
.cta-inner { display: grid; gap: var(--sp-5); text-align: center; justify-items: center; }
.cta-phone { display: block; margin-top: var(--sp-3); font-size: .9rem; opacity: .85; }

/* --- 16. Contact form ---------------------------------------------------- */
.contact-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
.contact-list { display: grid; gap: var(--sp-3); margin-top: var(--sp-5); }
.contact-list li { display: grid; gap: 2px; }
.contact-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--c-muted); }

.contact-form { background: var(--c-surface); padding: var(--sp-5); border-radius: calc(var(--btn-radius) * 1.5); }
.field { display: grid; gap: 6px; margin-bottom: var(--sp-4); }
.field-row { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
.field label { font-size: .85rem; font-weight: 600; }
.field .req { color: #dc2626; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--c-border); border-radius: var(--btn-radius);
  background: var(--c-bg); transition: border-color var(--speed) var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--c-accent); outline: none; }
.field.has-error input, .field.has-error textarea { border-color: #dc2626; }
.field-error { font-size: .78rem; color: #dc2626; min-height: 1em; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: var(--sp-3); font-size: .9rem; }
.form-status.is-ok { color: #15803d; }
.form-status.is-error { color: #dc2626; }

/* --- 17. Map ------------------------------------------------------------- */
.map-frame { height: var(--map-height, 420px); margin-top: var(--sp-5); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { height: 100%; display: grid; place-items: center; background: var(--c-surface); color: var(--c-muted); }

/* --- 18. Footer ---------------------------------------------------------- */
.site-footer { background: var(--c-surface); padding-top: var(--sp-7); margin-top: var(--sp-7); }
.footer-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
.footer-brand { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; display: block; margin-bottom: var(--sp-3); }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--c-muted); margin-bottom: var(--sp-3); }
.footer-col p { color: var(--c-muted); font-size: .93rem; }
.footer-links { display: grid; gap: var(--sp-2); font-size: .93rem; color: var(--c-muted); }
.footer-links a:hover { color: var(--c-accent); }
.social-list { display: flex; gap: var(--sp-2); margin-top: var(--sp-4); }
.social-list a {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--c-border); border-radius: 50%; font-size: .75rem; font-weight: 700;
}
.social-list a:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between;
  border-top: 1px solid var(--c-border); margin-top: var(--sp-6);
  padding-block: var(--sp-4); font-size: .85rem; color: var(--c-muted);
}

/* --- 19. Design switcher ------------------------------------------------- */
.design-switcher { position: fixed; right: 16px; bottom: 16px; z-index: 150; }
.switcher-toggle {
  background: var(--c-primary); color: #fff; padding: 11px 18px;
  border-radius: 999px; font-size: .82rem; font-weight: 600; box-shadow: var(--shadow-md);
}
.switcher-panel {
  position: absolute; right: 0; bottom: 52px; width: 240px;
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: 12px; padding: var(--sp-4); box-shadow: var(--shadow-lg);
}
.switcher-title { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--c-muted); }
.switcher-panel ul { margin-top: var(--sp-3); display: grid; gap: 2px; }
.switcher-panel a { display: flex; align-items: center; gap: var(--sp-3); padding: 8px; border-radius: 8px; font-size: .88rem; }
.switcher-panel a:hover { background: var(--c-surface); }
.switcher-panel a.is-current { background: var(--c-accent); color: #fff; }
.switcher-num { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .72rem; }

/* --- 20. Scroll reveal --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* --- 21. Breakpoints ----------------------------------------------------- */
@media (min-width: 768px) {
  .section { padding-block: var(--sp-8); }
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .field-row { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .cta-inner { grid-template-columns: 1.6fr 1fr; text-align: left; align-items: center; justify-items: start; }
  .cta-actions { justify-self: end; }
}

@media (min-width: 1024px) {
  .section { padding-block: var(--sp-9); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .section-hero { padding-block: var(--sp-10); }
  .hero-panel .hero-inner { grid-template-columns: 1.05fr .95fr; gap: var(--sp-8); }
}

@media (min-width: 1440px) {
  :root { --container: 1320px; --gutter: 32px; }
}

/* Mobile navigation */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .site-nav {
    position: fixed; inset: 68px 0 auto 0;
    background: var(--c-bg); border-bottom: 1px solid var(--c-border);
    padding: var(--sp-5) var(--gutter);
    transform: translateY(-120%); transition: transform 320ms var(--ease);
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; gap: var(--sp-1); }
  .site-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--c-border); }
}

/* Print */
@media print {
  .site-header, .site-footer, .design-switcher, .hero-media, .btn { display: none !important; }
  .section { padding-block: 12px; }
}

/* An author `display` rule beats the UA stylesheet's [hidden] { display:none },
   so guard it globally. Without this, anything toggled via the `hidden`
   attribute (lightbox, modals, toasts) stays visible and blocks the page. */
[hidden] { display: none !important; }

/* ==========================================================================
   22. Parent-brand utility bar (AjonTec)
   Deliberately uses its own fixed palette, not the design tokens, so it stays
   recognisable as the agency bar on all 300 sites and in every variant.
   ========================================================================== */
.brandbar {
  background: #0d1017;
  color: #c6cddd;
  font-size: .8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 60;
}
.brandbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
  padding-block: 6px;
}
.brandbar-home { display: flex; align-items: center; gap: 8px; flex: none; }
.brandbar-mark {
  width: 24px; height: 24px; flex: none;
  display: grid; place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #3d5afe, #7b3dff);
  color: #fff; font-weight: 800; font-size: .78rem;
}
.brandbar-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brandbar-copy strong { color: #fff; font-size: .84rem; letter-spacing: .01em; }
.brandbar-copy small  { color: #7d879d; font-size: .66rem; }

.brandbar-nav { display: flex; gap: 18px; flex: 1 1 auto; flex-wrap: wrap; }
.brandbar-nav a { color: #c6cddd; transition: color .15s ease; }
.brandbar-nav a:hover { color: #fff; text-decoration: underline; }

.brandbar-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.brandbar-call { color: #c6cddd; font-variant-numeric: tabular-nums; }
.brandbar-call:hover { color: #fff; }
.brandbar-cta {
  background: #25d366;
  color: #06240f;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .74rem;
}
.brandbar-cta:hover { background: #1fbb59; }

@media (max-width: 900px) {
  .brandbar-nav { display: none; }
  .brandbar-inner { justify-content: space-between; }
}

/* Agency credit line in every business footer */
.footer-credit { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-credit a { text-decoration: underline; text-underline-offset: 3px; }
.footer-credit strong { font-weight: 700; }

/* Demo sample ribbon — shown above the brand bar on every sample site. */
.demo-flag {
  background: #fff4d6;
  border-bottom: 1px solid #f0dfa8;
  color: #6b5310;
  font-size: .78rem;
  text-align: center;
  padding: 7px 16px;
  line-height: 1.5;
  position: relative;
  z-index: 61;
}
.demo-flag a { color: #6b5310; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   23. Section layout variants
   The planner assigns these per design variant, so the same content renders
   with a different structure on each of the five sites.
   ========================================================================== */

/* --- Background rhythm --------------------------------------------------- */
.tone-surface { background: var(--c-surface); }

/* --- About --------------------------------------------------------------- */
.about-grid { display: grid; gap: var(--sp-6); align-items: center; }
.about-media img { width: 100%; height: auto; display: block; border-radius: var(--btn-radius); }
.about-centered { max-width: 68ch; margin-inline: auto; text-align: center; }
.about-centered .check-list { display: inline-grid; text-align: left; }
.about-wide { margin-top: var(--sp-7); }
.about-wide img { width: 100%; height: auto; border-radius: var(--btn-radius); display: block; }

/* --- Services: numbered index ------------------------------------------- */
.service-index { display: grid; gap: 0; border-top: 1px solid var(--c-border); }
.service-index li {
  display: grid; grid-template-columns: auto 1fr auto; gap: var(--sp-5);
  align-items: start; padding-block: var(--sp-5);
  border-bottom: 1px solid var(--c-border);
}
.service-index h3 { font-size: 1.15rem; margin-bottom: 6px; }
.service-index p { color: var(--c-muted); max-width: 62ch; }
.service-index a { align-self: center; font-size: 1.3rem; color: var(--c-accent); }
.service-num {
  font-family: var(--font-heading);
  font-size: .9rem; font-weight: 700; color: var(--c-accent);
  letter-spacing: .06em;
}

/* --- Services: alternating editorial rows -------------------------------- */
.service-rows { display: grid; gap: var(--sp-8); }
.service-row { display: grid; gap: var(--sp-5); align-items: center; }
.service-row-media img { width: 100%; height: auto; display: block; border-radius: var(--btn-radius); }
.service-row-copy h3 { font-size: 1.4rem; margin-block: 8px 10px; }
.service-row-copy p { color: var(--c-muted); margin-bottom: var(--sp-3); }

/* --- Services: sparse list ----------------------------------------------- */
.service-list { display: grid; gap: var(--sp-6); max-width: 62ch; margin-inline: auto; text-align: center; }
.service-list li { padding-bottom: var(--sp-5); border-bottom: 1px solid var(--c-border); }
.service-list h3 { font-size: 1.2rem; margin-bottom: 8px; font-weight: 400; letter-spacing: .04em; }
.service-list p { color: var(--c-muted); }

/* --- Features ------------------------------------------------------------ */
.feature-grid { display: grid; gap: var(--sp-5); }
.features-inline .feature-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.features-numbered .feature { border-top: 2px solid var(--c-text); padding-top: var(--sp-4); }
.feature-num {
  display: block; font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 800; color: var(--c-accent);
  line-height: 1; margin-bottom: var(--sp-3);
}
.features-split-grid { display: grid; gap: var(--sp-7); align-items: start; }
.features-split-grid .section-head { margin-bottom: 0; }

/* --- Stats --------------------------------------------------------------- */
.stat-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stats-inline .stat-grid { border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding-block: var(--sp-6); }
.stats-boxed .stat { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--btn-radius); padding: var(--sp-5); text-align: center; }
.stats-oversized .stat-value { font-size: clamp(2.6rem, 7vw, 4.6rem); }
.stat-suffix { font-size: .7em; }

/* --- Testimonials: single pull quote ------------------------------------- */
.pull-quote { max-width: 68ch; margin-inline: auto; text-align: center; }
.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  line-height: 1.45; margin-bottom: var(--sp-5);
}
.pull-quote blockquote::before { content: '\201C'; }
.pull-quote blockquote::after  { content: '\201D'; }
.pull-quote figcaption { color: var(--c-muted); font-size: .9rem; }
.pull-quote figcaption strong { display: block; color: var(--c-text); }

/* --- Gallery variants ---------------------------------------------------- */
.gallery-mode-feature .gallery { grid-template-columns: repeat(3, 1fr); }
.gallery-mode-feature .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-mode-feature .gallery-item:first-child img { height: 100%; }
.gallery-masonry .gallery-item:nth-child(3n) img { aspect-ratio: 3 / 4; }
.gallery-masonry .gallery-item:nth-child(4n) img { aspect-ratio: 16 / 10; }

/* --- FAQ two-column ------------------------------------------------------ */
.faq-two-column .accordion { display: grid; gap: var(--sp-4); }

/* --- Blog list ----------------------------------------------------------- */
.blog-list .card-grid { grid-template-columns: 1fr; }
.blog-list .card { display: grid; grid-template-columns: 200px 1fr; align-items: center; }
.blog-list .card-media img { height: 100%; min-height: 140px; }

/* --- CTA variants -------------------------------------------------------- */
.cta-split .cta-inner { display: grid; gap: var(--sp-5); align-items: center; text-align: left; }
.cta-boxed .cta-inner { border-radius: calc(var(--btn-radius) * 2); padding: var(--sp-8) var(--sp-6); }

/* --- Contact centred ----------------------------------------------------- */
.contact-centered .contact-grid { grid-template-columns: 1fr; max-width: 60ch; margin-inline: auto; }

/* --- Breakpoints for the new layouts ------------------------------------- */
@media (min-width: 768px) {
  .about-split-right .about-grid { grid-template-columns: 1fr 1fr; }
  .about-split-right .about-media { order: 2; }
  .about-split-left  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-stacked .about-grid { grid-template-columns: 1fr; max-width: 70ch; }

  .service-row { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .service-row.is-flipped .service-row-media { order: 2; }

  .features-split-grid { grid-template-columns: .8fr 1.2fr; }
  .features-inline .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .features-numbered .feature-grid,
  .features-grid .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .features-split-grid .feature-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-split .cta-inner { grid-template-columns: 1.4fr auto; }
}

@media (min-width: 1024px) {
  .features-grid .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .features-numbered .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-two-column .accordion { grid-template-columns: 1fr 1fr; column-gap: var(--sp-6); }
}

@media (max-width: 767px) {
  .service-index li { grid-template-columns: auto 1fr; }
  .service-index a { display: none; }
  .blog-list .card { grid-template-columns: 1fr; }
  .gallery-mode-feature .gallery-item:first-child { grid-column: span 2; grid-row: auto; }
}

/* --- Components that previously had no styling of their own -------------- */
.about-copy { min-width: 0; }
.about-copy .check-list { margin-block: var(--sp-4) var(--sp-5); }

.contact-info { min-width: 0; }
.contact-info .contact-list { margin-top: var(--sp-5); }

.cta-copy { min-width: 0; }
.cta-copy .cta-title { margin-bottom: var(--sp-3); }
.cta-copy p { opacity: .85; max-width: 56ch; }

.post-card .card-body { display: flex; flex-direction: column; gap: var(--sp-2); }
.post-date {
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 600;
}
.blog-feature .card-grid > .post-card:first-child { grid-column: 1 / -1; }
.blog-feature .card-grid > .post-card:first-child .card-media img { height: 320px; }

.team-card { text-align: center; }
.team-card .card-media.round img {
  width: 128px; height: 128px; border-radius: 50%;
  object-fit: cover; margin-inline: auto;
}
.team-card .card-role { color: var(--c-accent); font-size: .84rem; font-weight: 600; }
.team-row .card-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.section-html > .container,
.section-map  > .container { min-width: 0; }

/* --- Pricing variants ---------------------------------------------------- */
.pricing-compact .pricing-grid { gap: var(--sp-3); }
.pricing-compact .price-card { padding: var(--sp-5) var(--sp-4); }
.pricing-compact .price-amount { font-size: 2rem; }
.pricing-table .price-card { text-align: left; }
.pricing-table .price-amount { text-align: left; }
.pricing-table .price-features { text-align: left; }

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   24. Professional chrome: utility bar, dropdown nav, hero slider, icons
   ========================================================================== */

/* --- Inline icons, drawn as CSS masks so they inherit colour -------------- */
.ico {
  display: inline-block; width: 1em; height: 1em;
  vertical-align: -.125em; margin-right: .45em;
  background: currentColor; flex: none;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
}
.ico-phone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.6 10.8a15 15 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11.4 11.4 0 0 0 3.6.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.4 11.4 0 0 0 .57 3.6 1 1 0 0 1-.25 1z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.6 10.8a15 15 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11.4 11.4 0 0 0 3.6.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.4 11.4 0 0 0 .57 3.6 1 1 0 0 1-.25 1z'/%3E%3C/svg%3E"); }
.ico-mail  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 4-8 5-8-5V6l8 5 8-5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 4-8 5-8-5V6l8 5 8-5z'/%3E%3C/svg%3E"); }
.ico-clock { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m1 10.4V6h-2v7.4l5 3 1-1.7z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m1 10.4V6h-2v7.4l5 3 1-1.7z'/%3E%3C/svg%3E"); }
.ico-check { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m-1.4 14.6-4.2-4.2 1.4-1.4 2.8 2.8 6-6 1.4 1.4z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m-1.4 14.6-4.2-4.2 1.4-1.4 2.8 2.8 6-6 1.4 1.4z'/%3E%3C/svg%3E"); }
.topbar-social .ico { margin: 0; width: 1.05em; height: 1.05em; }
.ico-facebook  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M13 22v-9h3l.5-3.5H13V7.3c0-1 .3-1.7 1.7-1.7H17V2.4A24 24 0 0 0 14.5 2C12 2 10 3.5 10 6.9v2.6H7V13h3v9z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M13 22v-9h3l.5-3.5H13V7.3c0-1 .3-1.7 1.7-1.7H17V2.4A24 24 0 0 0 14.5 2C12 2 10 3.5 10 6.9v2.6H7V13h3v9z'/%3E%3C/svg%3E"); }
.ico-instagram { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5m5 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10m0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6m5.5-3.2a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5m5 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10m0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6m5.5-3.2a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4'/%3E%3C/svg%3E"); }
.ico-youtube   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M23 12s0-3.8-.5-5.6a3 3 0 0 0-2.1-2.1C18.6 3.8 12 3.8 12 3.8s-6.6 0-8.4.5a3 3 0 0 0-2.1 2.1C1 8.2 1 12 1 12s0 3.8.5 5.6a3 3 0 0 0 2.1 2.1c1.8.5 8.4.5 8.4.5s6.6 0 8.4-.5a3 3 0 0 0 2.1-2.1C23 15.8 23 12 23 12M9.8 15.4V8.6l5.7 3.4z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M23 12s0-3.8-.5-5.6a3 3 0 0 0-2.1-2.1C18.6 3.8 12 3.8 12 3.8s-6.6 0-8.4.5a3 3 0 0 0-2.1 2.1C1 8.2 1 12 1 12s0 3.8.5 5.6a3 3 0 0 0 2.1 2.1c1.8.5 8.4.5 8.4.5s6.6 0 8.4-.5a3 3 0 0 0 2.1-2.1C23 15.8 23 12 23 12M9.8 15.4V8.6l5.7 3.4z'/%3E%3C/svg%3E"); }
.ico-linkedin  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4.98 3.5A2.5 2.5 0 1 0 5 8.5a2.5 2.5 0 0 0 0-5M3 9h4v12H3zm7 0h3.8v1.7h.05A4.2 4.2 0 0 1 17.6 8.7c4 0 4.7 2.6 4.7 6V21h-4v-5.6c0-1.3 0-3-1.9-3s-2.1 1.4-2.1 2.9V21h-4z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4.98 3.5A2.5 2.5 0 1 0 5 8.5a2.5 2.5 0 0 0 0-5M3 9h4v12H3zm7 0h3.8v1.7h.05A4.2 4.2 0 0 1 17.6 8.7c4 0 4.7 2.6 4.7 6V21h-4v-5.6c0-1.3 0-3-1.9-3s-2.1 1.4-2.1 2.9V21h-4z'/%3E%3C/svg%3E"); }

/* --- Utility bar --------------------------------------------------------- */
.topbar {
  background: var(--c-primary);
  color: #fff;
  font-size: .82rem;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); min-height: 40px; flex-wrap: wrap; }
.topbar-contact { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.topbar-contact a, .topbar-hours { display: inline-flex; align-items: center; color: rgba(255,255,255,.92); }
.topbar-contact a:hover { color: #fff; }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { color: rgba(255,255,255,.85); }
.topbar-social a:hover { color: #fff; }

/* --- Header -------------------------------------------------------------- */
.site-header { background: var(--c-bg); border-bottom: 1px solid var(--c-border); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { border-radius: 8px; object-fit: contain; }
.brand-mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--c-primary); color: var(--c-bg);
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.12rem; }
.brand-tag  { font-size: .74rem; color: var(--c-muted); }

/* --- Nav with dropdowns -------------------------------------------------- */
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 6px;
  font-size: .93rem; font-weight: 500;
  transition: color .15s ease, background .15s ease;
}
.nav-item > a:hover, .nav-item > a.is-active { color: var(--c-accent); background: var(--c-surface); }
.nav-caret {
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: .6; transition: transform .18s ease;
}
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.nav-expand { display: none; }

.nav-drop {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop a { display: block; padding: 9px 12px; border-radius: 6px; font-size: .9rem; }
.nav-drop a:hover, .nav-drop a.is-active { background: var(--c-surface); color: var(--c-accent); }

/* --- Header actions ------------------------------------------------------ */
.header-actions { display: flex; align-items: center; gap: var(--sp-4); }
.header-phone { display: flex; align-items: center; gap: 10px; }
.header-phone .ico { width: 1.5em; height: 1.5em; color: var(--c-accent); margin: 0; }
.header-phone small { display: block; font-size: .68rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .1em; }
.header-phone strong { display: block; font-size: .96rem; font-family: var(--font-heading); }

/* --- Hero slider --------------------------------------------------------- */
.section-hero { position: relative; overflow: hidden; }
.hero-track { position: relative; }
.hero-slide { display: none; }
.hero-slide.is-active { display: block; animation: heroIn .7s var(--ease) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.hero-panel .hero-slide { padding-block: var(--sp-9); }
.hero-background .hero-slide { position: relative; padding-block: var(--sp-10); }
.hero-backdrop {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-backdrop::after {
  content: ''; position: absolute; inset: 0;
  background: var(--c-bg); opacity: var(--hero-overlay, .6);
}
.hero-background .hero-inner { position: relative; z-index: 1; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--c-bg); border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md); cursor: pointer; z-index: 3;
  display: grid; place-items: center;
}
.hero-arrow::before {
  content: ''; width: 10px; height: 10px;
  border-top: 2px solid var(--c-text); border-left: 2px solid var(--c-text);
}
.hero-prev { left: 16px; }
.hero-prev::before { transform: rotate(-45deg); margin-left: 3px; }
.hero-next { right: 16px; }
.hero-next::before { transform: rotate(135deg); margin-right: 3px; }

.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; z-index: 3; }
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--c-muted); opacity: .4; transition: all .2s ease;
}
.hero-dots button.is-active { opacity: 1; width: 26px; border-radius: 999px; background: var(--c-accent); }

/* --- Hero trust strip ---------------------------------------------------- */
.hero-facts { border-top: 1px solid var(--c-border); background: var(--c-surface); position: relative; z-index: 2; }
.hero-facts-inner { display: grid; gap: var(--sp-4); padding-block: var(--sp-5); }
.hero-fact { display: flex; gap: 12px; align-items: flex-start; }
.hero-fact .ico { color: var(--c-accent); width: 1.35em; height: 1.35em; margin: 0; }
.hero-fact strong { display: block; font-size: .95rem; font-family: var(--font-heading); }
.hero-fact small  { color: var(--c-muted); font-size: .82rem; }

/* --- Breakpoints --------------------------------------------------------- */
@media (min-width: 768px) {
  .hero-facts-inner { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
}

@media (max-width: 1024px) {
  .header-phone { display: none; }
}

@media (max-width: 900px) {
  .topbar-contact { gap: var(--sp-3); font-size: .76rem; }
  .topbar-hours { display: none; }

  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: var(--c-bg); border-left: 1px solid var(--c-border);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .28s var(--ease);
    padding: 88px var(--sp-4) var(--sp-5); overflow-y: auto; z-index: 70;
  }
  .site-nav.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-item > a { padding: 13px 12px; font-size: 1rem; }
  .nav-caret { display: none; }
  .nav-expand {
    display: block; position: absolute; top: 6px; right: 6px;
    width: 40px; height: 40px; background: none; border: 0; cursor: pointer;
  }
  .nav-expand::before, .nav-expand::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 12px; height: 2px; background: var(--c-muted); transform: translate(-50%, -50%);
  }
  .nav-expand::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s ease; }
  .nav-item.is-open .nav-expand::after { transform: translate(-50%, -50%) rotate(0); }

  .nav-drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--c-border);
    border-radius: 0; margin-left: 12px; padding: 0 0 0 8px;
    display: none;
  }
  .nav-item.is-open .nav-drop { display: block; }

  .hero-arrow { width: 38px; height: 38px; }
  .hero-prev { left: 8px; } .hero-next { right: 8px; }
}
