/* =========================================================================
   najamvozila.com — main.css
   1. Design tokens (:root)
   2. Reset / base
   3. Layout (container, grid)
   4. Buttons + links
   5. Header / nav / top bar
   6. Hero + quote form
   7. Trust signals / Open Now
   8. Cards + silo grids
   9. FAQ accordion
   10. CTA banner
   11. Testimonials
   12. E-E-A-T (author box, fact-check, projects, credentials, awards, team, guarantees, freshness)
   13. Breadcrumbs / prose / blog
   14. Footer + mobile sticky bar
   15. Utilities / a11y / motion
   16. Booking wizard (2-step lead form)
   17. Consumer-automotive profile overrides (dp-* axes)
   18. Wizard + mobile polish
   ====================================================================== */

/* 1. TOKENS ------------------------------------------------------------- */
:root{
	/* Brand palette — "consumer-automotive" profile. The Customizer overrides
	   --color-primary/-accent/-text (+ their *-hover). Graphite navy grounds
	   the brand; a vivid orange accent carries every CTA — friendly, high-energy
	   rent-a-car conversion colors on cool light-grey surfaces. */
	--color-primary:#0E1726;        /* graphite navy: brand ink, secondary CTA fill, active states */
	--color-accent:#FF5A1F;         /* vivid orange: every primary CTA, eyebrows, accents */
	--color-text:#111827;           /* cool near-black body text on light */
	--color-primary-hover:#1B2940;  /* lifted navy for hover on navy fills */
	--color-accent-hover:#E04C12;   /* deeper orange for hover on orange fills */

	/* Navy is dark enough that a WHITE label clears AA on the fill;
	   primary-strong keeps one source of truth for "navy fill" surfaces. */
	--color-primary-strong:#0E1726;
	/* Ink placed ON orange fills — near-black (#10141D on #FF5A1F ~= 5.9:1).
	   Orange itself fails as small text on white, so it never carries body copy. */
	--color-accent-ink:#10141D;
	/* Inline link / interactive ink on light surfaces — navy, AA-safe. */
	--color-primary-ink:#0E1726;

	--color-muted:#5B6472;          /* cool slate secondary text (AA on white) */
	--color-surface:#F7F8FA;        /* cool light-grey section wash */
	--color-surface-2:#EEF1F5;      /* deeper grey wash (alternate band) */
	--color-border:#E2E7EE;         /* cool hairline border */
	--color-white:#ffffff;
	--color-page:#ffffff;           /* page background */
	--color-star:#F59E0B;           /* amber rating stars */
	--color-success:#1F8A5D;        /* green success cue (distinct from brand) */

	/* Dark surface family — graphite navy floor for the hero, the mid-page
	   feature band and the footer, with orange accents. */
	--color-dark:#0E1726;           /* graphite navy surface (hero, feature band, footer) */
	--color-dark-2:#0A101C;         /* deeper navy (footer floor, gradients) */
	--color-on-dark:#F3F5F9;        /* light text on dark surfaces (>=12:1) */
	--color-on-dark-muted:#9AA6B8;  /* muted light on dark (>=4.5:1) */
	--color-dark-border:#26334A;    /* hairline borders on dark surfaces */

	/* Type scale — 1.25 ratio above base (rounded-friendly, larger x-height). */
	--text-xs:0.75rem; --text-sm:0.875rem; --text-base:1rem; --text-lg:1.125rem;
	--text-xl:1.25rem; --text-2xl:1.5625rem; --text-3xl:1.953rem; --text-4xl:2.441rem;
	--text-5xl:3.052rem; --text-6xl:3.815rem;

	--fw-normal:400; --fw-medium:500; --fw-semibold:600; --fw-bold:700; --fw-black:800;
	/* Comfortable, friendly leading. */
	--lh-tight:1.15; --lh-snug:1.4; --lh-normal:1.65;

	/* Rounded display faces take a whisper of negative tracking. */
	--track-display:-0.01em;

	--space-1:0.25rem; --space-2:0.5rem; --space-3:0.75rem; --space-4:1rem; --space-5:1.25rem;
	--space-6:1.5rem; --space-8:2rem; --space-12:2.75rem; --space-16:3.5rem; --space-24:5.5rem;

	--width-content:720px; --width-wide:1140px;
	/* Consumer-soft radii; --radius-full stays a true pill for primary CTAs. */
	--radius-sm:6px; --radius:12px; --radius-md:12px; --radius-lg:20px; --radius-full:999px;
	/* Soft, layered navy-tinted shadows (friendly float, not harsh). */
	--shadow-sm:0 1px 2px rgba(14,23,38,.06);
	--shadow:0 1px 2px rgba(14,23,38,.06),0 10px 28px rgba(14,23,38,.10);
	--shadow-lg:0 2px 4px rgba(14,23,38,.07),0 24px 56px rgba(14,23,38,.16);
	--transition:200ms ease;
	--header-h:70px;

	/* Body stays a clean system grotesque; headings use the rounded system stack. */
	--font:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;
	--font-display:ui-rounded,'SF Pro Rounded','Hiragino Maru Gothic ProN','Segoe UI',system-ui,sans-serif;
}

/* 2. RESET / BASE ------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box;}
/* 17px base (106.25%) — slightly larger, friendlier reading size; all rem
   sizes scale from here. */
html{scroll-behavior:smooth;font-size:106.25%;}
body{margin:0;font-family:var(--font);font-size:var(--text-base);line-height:var(--lh-normal);color:var(--color-text);background:var(--color-page);-webkit-font-smoothing:antialiased;}
img{max-width:100%;height:auto;display:block;}
a{color:var(--color-primary-ink);text-decoration:none;}
a:hover{text-decoration:underline;}
/* Rounded-friendly display headings — rounded family, bold (700). */
h1,h2,h3,h4{font-family:var(--font-display);line-height:var(--lh-tight);font-weight:var(--fw-bold);color:var(--color-text);margin:0 0 var(--space-4);letter-spacing:var(--track-display);}
h1{font-size:var(--text-4xl);} h2{font-size:var(--text-3xl);} h3{font-size:var(--text-xl);}
h4{font-size:var(--text-lg);}
p{margin:0 0 var(--space-4);}
ul,ol{margin:0 0 var(--space-4);padding-left:1.25rem;}

/* 3. LAYOUT ------------------------------------------------------------- */
.container{width:100%;max-width:var(--width-wide);margin:0 auto;padding:0 var(--space-4);}
.section{padding:var(--space-16) 0;}
/* Light-grey tinted band with soft hairlines to separate sections. */
.section--surface{background:var(--color-surface);border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border);}
/* Navy feature band — on-dark tokens; drop-in class for a mid-page section. */
.section--dark{background:var(--color-dark);color:var(--color-on-dark);}
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4{color:#fff;}
.section--dark .section-head p{color:var(--color-on-dark-muted);}
.grid{display:grid;gap:var(--space-6);}
.grid--2{grid-template-columns:1fr;}
.grid--3{grid-template-columns:1fr;}
.grid--4{grid-template-columns:1fr;}
@media(min-width:640px){.grid--2,.grid--3,.grid--4{grid-template-columns:repeat(2,1fr);}}
@media(min-width:960px){.grid--3{grid-template-columns:repeat(3,1fr);}.grid--4{grid-template-columns:repeat(4,1fr);}}

/* 4. BUTTONS ------------------------------------------------------------ */
/* Pill buttons, sentence case, bold — friendly consumer CTAs. */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:var(--space-2);
	padding:var(--space-3) var(--space-6);border-radius:var(--radius-full);font-weight:var(--fw-bold);
	font-size:var(--text-base);letter-spacing:0;border:1px solid transparent;cursor:pointer;text-decoration:none;line-height:1.2;
	transition:transform var(--transition),background var(--transition),box-shadow var(--transition),color var(--transition);}
.btn:hover{text-decoration:none;}
@media(prefers-reduced-motion:no-preference){.btn:hover{transform:translateY(-1px);}}
/* Primary CTA — orange fill, NEAR-BLACK label (§21.4: white on this orange
   fails AA, so the label is --color-accent-ink). */
.btn--primary{background:var(--color-accent);color:var(--color-accent-ink);box-shadow:0 1px 2px rgba(14,23,38,.08),0 8px 20px rgba(255,90,31,.28);}
.btn--primary:hover{background:var(--color-accent-hover);color:var(--color-accent-ink);box-shadow:0 2px 4px rgba(14,23,38,.10),0 12px 28px rgba(255,90,31,.32);}
/* Secondary — navy fill, white label (AA-safe on graphite navy). */
.btn--secondary{background:var(--color-primary);color:#fff;box-shadow:0 2px 8px rgba(14,23,38,.20);}
.btn--secondary:hover{background:var(--color-primary-hover);color:#fff;box-shadow:0 5px 16px rgba(14,23,38,.26);}
/* Ghost / outline on a LIGHT surface — navy hairline + navy ink, tints on hover. */
.btn--ghost{background:var(--color-white);border-color:var(--color-primary);border-width:2px;color:var(--color-primary-ink);}
.btn--ghost:hover{background:var(--color-surface);border-color:var(--color-primary-strong);color:var(--color-primary-strong);}
/* Outline action ON a dark navy surface — clearly bordered + lightly filled
   (never a low-contrast ghost); fills white on hover. */
.btn--on-dark{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.65);border-width:2px;color:var(--color-on-dark);}
.btn--on-dark:hover{background:#fff;border-color:#fff;color:var(--color-primary-strong);}
.btn--lg{padding:var(--space-4) var(--space-8);font-size:var(--text-lg);}
.btn--block{width:100%;}
.btn svg{width:1.1em;height:1.1em;}

/* 5. HEADER ------------------------------------------------------------- */
/* Slim light utility top bar — grey wash with dark ink and a hairline. */
.topbar{background:var(--color-surface);color:var(--color-text);font-size:var(--text-sm);border-bottom:1px solid var(--color-border);}
.topbar__inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:var(--space-3) var(--space-6);padding:var(--space-2) var(--space-4);}
.topbar a{color:var(--color-text);display:inline-flex;align-items:center;gap:var(--space-2);}
.topbar a:hover{color:var(--color-primary-strong);}
.topbar svg{width:1em;height:1em;}
.topbar__afterhours{color:var(--color-primary-ink);font-weight:var(--fw-semibold);}

/* z-index:100 so the header's stacking context (and its dropdown sub-menus)
   sits above all page content; the skip-link is bumped above this for a11y.
   cta-block header: logo left, inline nav, and a full-height ORANGE CTA block
   flush to the right edge of the bar. */
.site-header{position:sticky;top:0;z-index:100;background:var(--color-white);color:var(--color-text);box-shadow:0 1px 0 var(--color-border);transition:var(--transition);}
.site-header.is-shrunk{box-shadow:var(--shadow);}
.site-header__inner{display:flex;align-items:stretch;justify-content:space-between;min-height:var(--header-h);}
/* Left cluster (logo + nav + toggle) aligns with the .container edge; the CTA
   block outside it runs to the viewport edge. */
.site-header__main{flex:1 1 auto;min-width:0;display:flex;align-items:center;justify-content:space-between;gap:var(--space-4);
	padding-left:max(var(--space-4),calc((100% - var(--width-wide)) / 2));padding-right:var(--space-4);}
.site-branding{display:flex;align-items:center;}
.site-title{font-size:var(--text-xl);font-weight:var(--fw-bold);letter-spacing:var(--track-display);margin:0;}
.site-title a{color:var(--color-primary-strong);}
.site-title a:hover{color:var(--color-primary-strong);text-decoration:none;}
/* Top-level nav: horizontal row (wraps to a tidy second line if many items). */
.main-nav > ul{list-style:none;display:flex;flex-wrap:wrap;align-items:center;gap:var(--space-2) var(--space-6);margin:0;padding:0;}
.main-nav li{position:relative;}
.main-nav a{color:var(--color-text);font-weight:var(--fw-medium);white-space:nowrap;display:block;padding:var(--space-2) 0;}
.main-nav a:hover{color:var(--color-primary-strong);text-decoration:underline;text-decoration-color:var(--color-accent);text-underline-offset:6px;text-decoration-thickness:2px;}
/* Caret on parent items that have a dropdown. */
.main-nav .menu-item-has-children > a::after{content:"";display:inline-block;width:.4em;height:.4em;margin-left:.45em;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:translateY(-2px) rotate(45deg);transition:transform var(--transition);}
/* Submenu = dropdown. Revealed on hover/focus on DESKTOP only (scoped below);
   on mobile it's a tap accordion (.is-open), so the hover rule must not apply. */
.main-nav .sub-menu{list-style:none;margin:0;padding:var(--space-2);position:absolute;top:100%;left:0;min-width:250px;background:#fff;border:1px solid var(--color-border);border-radius:var(--radius);box-shadow:var(--shadow-lg);display:none;flex-direction:column;z-index:60;}
@media(min-width:960px){
	.main-nav li:hover > .sub-menu,.main-nav li:focus-within > .sub-menu{display:flex;}
}
.main-nav .sub-menu a{white-space:normal;padding:var(--space-2) var(--space-3);border-radius:var(--radius-sm);font-weight:var(--fw-normal);color:var(--color-text);}
.main-nav .sub-menu a:hover{background:var(--color-surface);color:var(--color-primary);text-decoration:none;}
.header-actions{display:flex;align-items:center;gap:var(--space-3);}
/* Full-height orange CTA block — the conversion anchor of the header. */
.nvz-header-cta{display:inline-flex;align-items:center;justify-content:center;gap:var(--space-2);
	padding:0 var(--space-8);background:var(--color-accent);color:var(--color-accent-ink);
	font-weight:var(--fw-bold);font-size:var(--text-base);white-space:nowrap;
	transition:background var(--transition);}
.nvz-header-cta:hover{background:var(--color-accent-hover);color:var(--color-accent-ink);text-decoration:none;}
.header-search form{display:flex;}
/* Mobile: the hero CTA + sticky Call/Text bar cover conversion, so the CTA
   block collapses below 768px to keep the logo + menu uncrowded. */
@media(max-width:767px){
	.nvz-header-cta{display:none;}
}
@media(min-width:768px) and (max-width:959px){
	.nvz-header-cta{padding:0 var(--space-5);font-size:var(--text-sm);}
}
.menu-toggle{display:inline-flex;flex-direction:column;gap:4px;background:none;border:0;cursor:pointer;padding:var(--space-2);}
.menu-toggle span{width:24px;height:2px;background:var(--color-text);display:block;transition:var(--transition);}
@media(max-width:959px){
	/* Light mobile nav panel to match the light header. */
	/* Anchor the panel to the (sticky) header itself, not the viewport:
	   with the promo/top bars above, a viewport-fixed panel opened OVER the
	   header row and covered the toggle — the menu could be opened but never
	   closed. Absolute + top:100% always drops it just below the header. */
	.main-nav{position:absolute;top:100%;left:0;right:0;background:var(--color-white);visibility:hidden;opacity:0;transform:translateY(-8px);transition:opacity var(--transition),transform var(--transition),visibility var(--transition);box-shadow:var(--shadow-lg);border-top:1px solid var(--color-border);max-height:calc(100vh - var(--header-h));overflow-y:auto;z-index:90;}
	.main-nav.is-open{visibility:visible;opacity:1;transform:none;}
	.main-nav > ul{flex-direction:column;flex-wrap:nowrap;gap:0;padding:var(--space-4);align-items:stretch;}
	.main-nav li{border-bottom:1px solid var(--color-border);}
	.main-nav a{display:block;padding:var(--space-3) 0;white-space:normal;}
	.main-nav .menu-item-has-children > a::after{float:right;margin-top:.5em;}
	/* Submenus are a tap accordion on mobile: collapsed by default, shown when
	   JS adds .is-open to the parent <li>; the caret flips when open. */
	.main-nav .sub-menu{position:static;display:none;box-shadow:none;border:0;border-radius:0;padding:0 0 var(--space-2) var(--space-4);min-width:0;background:transparent;}
	.main-nav .menu-item-has-children.is-open > .sub-menu{display:flex;}
	.main-nav .menu-item-has-children.is-open > a::after{transform:rotate(-135deg);}
	.main-nav .sub-menu li{border-bottom:0;}
	.main-nav .sub-menu a{padding:var(--space-2) 0;color:var(--color-muted);}
	.main-nav .sub-menu a:hover{background:transparent;color:var(--color-primary-strong);}
}
@media(min-width:960px){.menu-toggle{display:none;}}

/* 6. HERO --------------------------------------------------------------- */
/* Centered stack on a graphite-navy surface: eyebrow chip, H1, subheadline,
   dual CTA row — then the quote wizard as a full-width floating light card
   directly below (the wizard IS the hero's focal point). The angled bottom
   edge (clip-path) is applied via the dp-hero axis in section 17. */
.hero{position:relative;overflow:hidden;color:var(--color-on-dark);
	background:linear-gradient(180deg,var(--color-dark) 0%,var(--color-dark-2) 100%);}
.hero--has-media{background:var(--color-dark);}
.hero__media{position:absolute;inset:0;z-index:0;}
.hero__media img{width:100%;height:100%;object-fit:cover;}
/* Navy overlay (>=60%) keeps on-dark text AA-legible over any photo. */
.hero__media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(14,23,38,.68) 0%,rgba(10,16,28,.84) 100%);}
.hero__inner{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:var(--space-8);padding:var(--space-16) 0;}
.hero--booking .hero__inner{gap:var(--space-8);}
.hero__content{max-width:780px;margin:0 auto;text-align:center;color:var(--color-on-dark);}
/* Eyebrow — orange pill chip on navy (orange on navy clears AA for small text). */
.hero__eyebrow{display:inline-flex;align-items:center;gap:var(--space-2);background:rgba(255,90,31,.12);border:1px solid rgba(255,90,31,.38);color:var(--color-accent);font-weight:var(--fw-bold);font-size:var(--text-xs);letter-spacing:.08em;text-transform:uppercase;padding:var(--space-2) var(--space-4);border-radius:var(--radius-full);margin-bottom:var(--space-5);}
.hero__title{font-size:clamp(2.2rem,5vw,var(--text-5xl));font-weight:var(--fw-bold);letter-spacing:var(--track-display);line-height:var(--lh-tight);margin-bottom:var(--space-4);color:#fff;}
.hero__subtitle{font-size:var(--text-lg);line-height:var(--lh-snug);margin:0 auto var(--space-8);color:var(--color-on-dark-muted);max-width:56ch;}
.hero__ctas{display:flex;flex-wrap:wrap;gap:var(--space-4);align-items:center;justify-content:center;}
/* "Nazovite" on the navy hero — clearly bordered on-dark button (§21.4). */
.hero__call{background:rgba(255,255,255,.10);border:2px solid rgba(255,255,255,.65);color:var(--color-on-dark);}
.hero__call:hover{background:#fff;border-color:#fff;color:var(--color-primary-strong);}
.hero__text-link{display:inline-flex;align-items:center;gap:var(--space-2);color:var(--color-on-dark);font-weight:var(--fw-semibold);text-decoration:underline;text-underline-offset:3px;}
.hero__text-link:hover{color:#fff;}

/* The wizard card: full-width below the headline, floating light card. */
.booking-shell{width:100%;max-width:880px;margin:0 auto;}
.quote-form-wrap{background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);padding:var(--space-8);border:1px solid var(--color-border);}
.quote-form-wrap h2{font-size:var(--text-2xl);margin-bottom:var(--space-6);}
.quote-form .field{margin-bottom:var(--space-4);}
.quote-form label{display:block;font-weight:var(--fw-semibold);font-size:var(--text-sm);margin-bottom:var(--space-2);color:var(--color-text);}
.quote-form input,.quote-form select,.quote-form textarea{width:100%;padding:var(--space-3) var(--space-4);border:1px solid var(--color-border);border-radius:var(--radius-sm);font-size:var(--text-base);font-family:inherit;background:#fff;transition:border-color var(--transition),box-shadow var(--transition);}
.quote-form input:focus,.quote-form select:focus,.quote-form textarea:focus{outline:none;border-color:var(--color-primary);box-shadow:0 0 0 3px rgba(14,23,38,.14);}
.quote-form textarea{min-height:96px;resize:vertical;}
.quote-form .btn{margin-top:var(--space-2);}
.quote-form__hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden;}
.quote-form__feedback{margin-top:var(--space-3);font-weight:var(--fw-medium);}
.quote-form__feedback.is-success{color:var(--color-success);}
.quote-form__feedback.is-error{color:#dc2626;}
.spinner{display:none;width:18px;height:18px;border:2px solid #10141d80;border-top-color:var(--color-accent-ink);border-radius:50%;}
.is-loading .spinner{display:inline-block;animation:nvz-spin .7s linear infinite;}
@keyframes nvz-spin{to{transform:rotate(360deg);}}
.form-fallback{background:var(--color-surface);border-radius:var(--radius);padding:var(--space-6);text-align:center;}

/* 7. TRUST / OPEN NOW --------------------------------------------------- */
.trust-bar{background:#fff;border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border);}
.trust-bar__inner{display:flex;flex-wrap:wrap;gap:var(--space-4) var(--space-8);align-items:center;justify-content:center;padding:var(--space-8) 0;text-align:center;}
.trust-bar__inner>*{position:relative;}
@media(min-width:768px){
	.trust-bar__inner>*+*::before{content:"";position:absolute;left:calc(var(--space-8) / -2);top:50%;transform:translateY(-50%);width:1px;height:32px;background:var(--color-border);}
}
.trust-bar .trust-badges{padding:var(--space-5) var(--space-4);border-top:1px solid var(--color-border);margin-top:var(--space-4);}
.trust-rating{display:flex;align-items:center;gap:var(--space-2);font-weight:var(--fw-semibold);}
.stars{display:inline-flex;color:var(--color-star);}
.stars svg{width:1.1em;height:1.1em;}
.trust-metric{display:flex;flex-direction:column;}
.trust-metric__value{font-size:var(--text-2xl);font-weight:var(--fw-black);color:var(--color-primary);line-height:1;}
.trust-metric__label{font-size:var(--text-sm);color:var(--color-muted);}
.trust-chip{display:inline-flex;align-items:center;gap:var(--space-1);font-size:var(--text-sm);background:#fff;border:1px solid var(--color-border);border-radius:var(--radius-full);padding:var(--space-1) var(--space-3);}
.trust-badges{display:flex;flex-wrap:wrap;gap:var(--space-4) var(--space-8);justify-content:center;align-items:center;}
.trust-badge{display:inline-flex;align-items:center;gap:var(--space-2);font-size:var(--text-base);font-weight:var(--fw-semibold);color:var(--color-text);line-height:1;}
.trust-badge svg{width:20px;height:20px;flex:none;color:var(--color-success);}

.open-now{display:inline-flex;align-items:center;gap:var(--space-2);font-weight:var(--fw-semibold);font-size:var(--text-sm);}
.open-now__dot{width:9px;height:9px;border-radius:50%;background:var(--color-muted);}
.open-now.is-open .open-now__dot{background:var(--color-success);}
.open-now.is-closed .open-now__dot{background:#dc2626;}

/* 8. CARDS / SILO ------------------------------------------------------- */
/* Base card is a clean soft rectangle; the float treatment (borderless, deep
   soft shadow, hover lift) is applied via the dp-cards axis in section 17. */
.card{background:#fff;border:1px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden;display:flex;flex-direction:column;transition:var(--transition);box-shadow:var(--shadow-sm);}
.card:hover{box-shadow:var(--shadow);transform:translateY(-3px);}
.card__media img{width:100%;aspect-ratio:3/2;object-fit:cover;}
.card__body{padding:var(--space-6);display:flex;flex-direction:column;gap:var(--space-2);flex:1;}
.card__title{font-size:var(--text-xl);margin:0;letter-spacing:var(--track-display);}
.card__excerpt{color:var(--color-muted);font-size:var(--text-sm);margin:0;}
.card__cta{margin-top:auto;font-weight:var(--fw-bold);color:var(--color-primary-ink);display:inline-flex;align-items:center;gap:var(--space-1);}
.card__title a{color:inherit;}
.card__title a:hover{color:var(--color-primary-ink);text-decoration:none;}
.silo{margin:var(--space-12) 0;padding:var(--space-12) 0;background:var(--color-surface);border-radius:var(--radius-lg);}
.silo .container{}
.silo__heading{margin-bottom:var(--space-6);font-size:var(--text-2xl);text-align:center;}
.silo__links{display:flex;flex-wrap:wrap;gap:var(--space-3);justify-content:center;}
.silo__links a{background:#fff;border:1px solid var(--color-border);border-radius:var(--radius-full);padding:var(--space-2) var(--space-4);font-size:var(--text-sm);font-weight:var(--fw-medium);color:var(--color-text);transition:var(--transition);}
.silo__links a:hover{background:var(--color-primary);color:var(--color-on-dark);border-color:var(--color-primary);text-decoration:none;}

/* 9. FAQ ---------------------------------------------------------------- */
.faq{padding:var(--space-16) 0;}
.faq__heading{text-align:center;margin-bottom:var(--space-8);font-size:var(--text-3xl);}
.faq__list{max-width:740px;margin:0 auto;display:flex;flex-direction:column;gap:var(--space-3);}
.faq__item{border:1px solid var(--color-border);border-radius:var(--radius);background:#fff;overflow:hidden;box-shadow:var(--shadow-sm);transition:box-shadow var(--transition),border-color var(--transition);}
.faq__item:hover{border-color:#cbd2db;}
.faq__item[open]{border-color:var(--color-primary);box-shadow:var(--shadow);}
.faq__summary{display:flex;align-items:center;justify-content:space-between;gap:var(--space-4);padding:var(--space-5) var(--space-6);cursor:pointer;list-style:none;transition:background var(--transition);}
.faq__summary::-webkit-details-marker{display:none;}
.faq__summary::marker{content:"";}
.faq__item[open] .faq__summary{background:var(--color-surface);}
.faq__summary:hover .faq-question{color:var(--color-primary-ink);}
.faq-question{font-size:var(--text-lg);margin:0;font-weight:var(--fw-bold);letter-spacing:-.01em;line-height:1.4;transition:color var(--transition);}
.faq__chevron{flex:none;display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:var(--radius-full);background:var(--color-surface);color:var(--color-primary);transition:transform var(--transition),background var(--transition),color var(--transition);}
.faq__chevron svg{width:18px;height:18px;transform:rotate(90deg);}
.faq__item[open] .faq__chevron{transform:rotate(180deg);background:var(--color-primary);color:#fff;}
.faq__answer{padding:0 var(--space-6) var(--space-6);color:var(--color-muted);font-size:var(--text-base);line-height:var(--lh-normal);}
.faq__answer p:last-child{margin-bottom:0;}

/* 10. CTA BANNER -------------------------------------------------------- */
/* Navy inverted band with a soft orange glow — confident consumer contrast. */
.cta-banner{background:radial-gradient(700px 360px at 80% -30%,rgba(255,90,31,.22) 0%,rgba(255,90,31,0) 60%),linear-gradient(160deg,var(--color-dark) 0%,var(--color-dark-2) 100%);color:var(--color-on-dark);border:1px solid var(--color-dark-border);border-radius:var(--radius-lg);padding:var(--space-12);text-align:center;margin:var(--space-12) auto;}
.cta-banner h2{color:#fff;}
.cta-banner p{color:var(--color-on-dark-muted);margin-bottom:var(--space-6);}
.cta-banner__actions{display:flex;flex-wrap:wrap;gap:var(--space-3);justify-content:center;}

/* 11. TESTIMONIALS ------------------------------------------------------ */
.testimonials{padding:var(--space-16) 0;background:var(--color-surface);}
.testimonials__track{display:grid;gap:var(--space-6);}
.testimonial{background:#fff;border-radius:var(--radius-lg);padding:var(--space-8);box-shadow:var(--shadow-sm);border:1px solid var(--color-border);}
.testimonial__stars{color:var(--color-star);margin-bottom:var(--space-3);display:flex;}
.testimonial__text{font-size:var(--text-lg);margin-bottom:var(--space-4);}
.testimonial__author{font-weight:var(--fw-semibold);}
.testimonial__location{color:var(--color-muted);font-size:var(--text-sm);}

/* 12. E-E-A-T ----------------------------------------------------------- */
.author-box{display:flex;flex-wrap:wrap;gap:var(--space-6);background:var(--color-surface);border-radius:var(--radius-lg);padding:var(--space-8);margin:var(--space-12) 0;}
.author-box__photo img{width:96px;height:96px;border-radius:50%;object-fit:cover;}
.author-box__body{flex:1;min-width:240px;}
.author-box__eyebrow{text-transform:uppercase;letter-spacing:.05em;font-size:var(--text-xs);color:var(--color-muted);}
.author-box__name{font-family:var(--font-display);font-size:var(--text-xl);font-weight:var(--fw-bold);line-height:var(--lh-tight);color:var(--color-text);margin:var(--space-1) 0;}
.author-box__creds{color:var(--color-primary-ink);font-weight:var(--fw-semibold);font-size:var(--text-sm);margin-bottom:var(--space-2);}
.author-box__social{display:flex;gap:var(--space-3);margin-top:var(--space-3);}
.author-box__social svg{width:1.2em;height:1.2em;}

.fact-check{position:relative;display:flex;flex-wrap:wrap;align-items:center;gap:var(--space-2);font-size:var(--text-sm);color:var(--color-muted);margin:var(--space-3) 0;}
.fact-check > svg{width:1.1em;height:1.1em;color:var(--color-success);flex:none;}
.fact-check__details{display:inline-flex;align-items:center;}
.fact-check__details summary{cursor:pointer;color:var(--color-primary);list-style:none;display:inline-flex;align-items:center;}
.fact-check__details summary::-webkit-details-marker{display:none;}
.fact-check__details summary::marker{content:"";}
.fact-check__details summary svg{width:1.1em;height:1.1em;}
/* Editorial-process note drops below the line as a popover (never pushes the row). */
.fact-check__panel{position:absolute;top:calc(100% + 6px);left:0;min-width:260px;max-width:min(420px,90vw);background:#fff;color:var(--color-text);border:1px solid var(--color-border);border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:var(--space-4);z-index:20;}
.fact-check__panel p{margin:0 0 var(--space-2);}
.fact-check__panel p:last-child{margin-bottom:0;}

.projects__grid{display:grid;gap:var(--space-6);grid-template-columns:1fr;}
@media(min-width:640px){.projects__grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:960px){.projects__grid{grid-template-columns:repeat(3,1fr);}}
.project-card{border:1px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden;background:#fff;}
.project-card__images{display:grid;grid-template-columns:1fr 1fr;}
.project-card__images figure{margin:0;position:relative;}
.project-card__images figcaption{position:absolute;bottom:0;left:0;background:rgba(14,23,38,.82);color:#fff;font-size:var(--text-xs);padding:2px 8px;}
.project-card__body{padding:var(--space-6);}
.project-card__meta{font-size:var(--text-sm);color:var(--color-muted);margin-bottom:var(--space-2);}

.credentials{display:flex;flex-wrap:wrap;gap:var(--space-4);justify-content:center;padding:var(--space-8) 0;}
.credential{display:flex;align-items:center;gap:var(--space-2);border:1px solid var(--color-border);border-radius:var(--radius);padding:var(--space-3) var(--space-4);background:#fff;}
.credential svg{width:1.4em;height:1.4em;color:var(--color-primary);}
.credential__value{font-weight:var(--fw-semibold);}

.awards{display:flex;flex-wrap:wrap;gap:var(--space-8);align-items:center;justify-content:center;padding:var(--space-8) 0;}
.awards img{max-height:48px;width:auto;filter:grayscale(1);opacity:.75;transition:var(--transition);}
.awards a:hover img,.awards img:hover{filter:grayscale(0);opacity:1;}

.team-grid{display:grid;gap:var(--space-6);grid-template-columns:1fr;}
@media(min-width:640px){.team-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:960px){.team-grid{grid-template-columns:repeat(3,1fr);}}
.team-card{text-align:center;background:#fff;border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:var(--space-6);}
.team-card__photo img{width:120px;height:120px;border-radius:50%;object-fit:cover;margin:0 auto var(--space-3);}

.guarantees{display:grid;gap:var(--space-6);grid-template-columns:1fr;}
@media(min-width:640px){.guarantees{grid-template-columns:repeat(3,1fr);}}
.guarantee{text-align:center;padding:var(--space-6);}
.guarantee svg{width:2.4em;height:2.4em;color:var(--color-primary);margin-bottom:var(--space-2);}

.freshness{font-size:var(--text-sm);color:var(--color-muted);margin:var(--space-3) 0;}

/* 13. BREADCRUMBS / PROSE / BLOG --------------------------------------- */
.breadcrumbs{font-size:var(--text-sm);padding:var(--space-3) 0;background:var(--color-surface);}
.breadcrumbs__list{list-style:none;display:flex;flex-wrap:wrap;gap:var(--space-2);margin:0;padding:0;}
.breadcrumbs__item+.breadcrumbs__item::before{content:"/";margin-right:var(--space-2);color:var(--color-muted);}
.content-narrow{max-width:760px;margin-left:auto;margin-right:auto;}
.prose-content{max-width:var(--width-content);margin:0 auto;padding:var(--space-12) var(--space-4);font-size:var(--text-lg);}
.prose-content.content-narrow{max-width:760px;}
.prose-content h2{font-size:var(--text-2xl);margin-top:var(--space-12);}
.prose-content h3{font-size:var(--text-xl);margin-top:var(--space-8);}
.prose-content h2:first-child,.prose-content h3:first-child{margin-top:0;}
.prose-content a{text-decoration:underline;text-underline-offset:2px;}
.prose-content img{border-radius:var(--radius);margin:var(--space-6) 0;}
.post-thumb img{border-radius:var(--radius-lg);margin-bottom:var(--space-6);}
.entry-meta{color:var(--color-muted);font-size:var(--text-sm);margin-bottom:var(--space-6);}
.post-list{display:grid;gap:var(--space-8);}
/* Native WordPress pagination (blog index, archives, search). */
.pagination{margin-top:var(--space-12);}
.pagination .nav-links{display:flex;flex-wrap:wrap;gap:var(--space-2);justify-content:center;}
.pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;padding:0 var(--space-3);border:1px solid var(--color-border);border-radius:var(--radius);font-weight:var(--fw-semibold);color:var(--color-text);transition:var(--transition);}
.pagination .page-numbers.current{background:var(--color-primary);color:#fff;border-color:var(--color-primary);}
.pagination a.page-numbers:hover{background:var(--color-surface);color:var(--color-primary);text-decoration:none;}

/* Read More (collapsible content) — JS-gated so no-JS shows everything.
   The button only appears once JS adds .is-ready (i.e. content was long
   enough to collapse), so short content never shows a dead button. */
.readmore__btn{display:none;margin-top:var(--space-6);}
.readmore--center{text-align:center;}
.readmore--right{text-align:right;}
.readmore__visible,.readmore__hidden,.readmore__inner{text-align:left;}
.js .readmore.is-ready .readmore__btn{display:inline-flex;}
.js .readmore--block.is-ready .readmore__btn{display:flex;width:100%;}
/* more-tag mode */
.js .readmore.is-collapsed .readmore__hidden{display:none;}
/* height mode */
.readmore--height{position:relative;}
.js .readmore--height.is-collapsed .readmore__inner{max-height:var(--readmore-h,480px);overflow:hidden;-webkit-mask-image:linear-gradient(180deg,#000 70%,transparent);mask-image:linear-gradient(180deg,#000 70%,transparent);}
@media(prefers-reduced-motion:no-preference){
	.js .readmore--height .readmore__inner{transition:max-height var(--transition);}
}

/* 14. FOOTER ------------------------------------------------------------ */
.site-footer{background:var(--color-dark-2);color:var(--color-on-dark-muted);padding:var(--space-16) 0 var(--space-24);margin-top:var(--space-16);}
.site-footer a{color:var(--color-on-dark);}
.site-footer a:hover{color:#fff;}
.footer-grid{display:grid;gap:var(--space-8);grid-template-columns:1fr;}
@media(min-width:768px){.footer-grid{grid-template-columns:2fr 1fr 1fr;}}
.footer-widget__title,.site-footer h3{color:#fff;font-size:var(--text-lg);margin-bottom:var(--space-4);}
.site-footer p{margin-bottom:var(--space-2);color:var(--color-on-dark-muted);}
.footer-menu,.site-footer ul{list-style:none;padding:0;margin:0;}
.footer-menu li{margin-bottom:var(--space-2);}
.footer-menu a:hover{color:#fff;text-decoration:underline;}
.footer-license{font-size:var(--text-sm);color:var(--color-on-dark-muted)!important;}
.footer-social{display:flex;gap:var(--space-3);margin-top:var(--space-4);}
.footer-social a{width:40px;height:40px;align-items:center;justify-content:center;border-radius:var(--radius-full);background:rgba(255,255,255,.08);transition:var(--transition);}
.footer-social a:hover{background:var(--color-accent);color:var(--color-accent-ink);}
.footer-social a{display:inline-flex;}
.footer-social svg{width:1.4em;height:1.4em;}
.footer-bottom{border-top:1px solid var(--color-dark-border);margin-top:var(--space-8);padding-top:var(--space-6);font-size:var(--text-sm);text-align:center;}

/* Mobile sticky conversion bar — navy base with an orange primary CTA. */
.sticky-bar{position:fixed;left:0;right:0;bottom:0;z-index:60;display:flex;background:var(--color-dark);box-shadow:0 -4px 16px rgba(10,16,28,.36);}
.sticky-bar a{flex:1;display:flex;align-items:center;justify-content:center;gap:var(--space-2);padding:var(--space-4);color:#fff;font-weight:var(--fw-bold);}
.sticky-bar a+a{border-left:1px solid var(--color-dark-border);}
.sticky-bar a:last-child{background:var(--color-accent);color:var(--color-accent-ink);}
.sticky-bar svg{width:1.2em;height:1.2em;}
@media(min-width:960px){.sticky-bar{display:none;}}
body.has-sticky-bar{padding-bottom:64px;}
@media(min-width:960px){body.has-sticky-bar{padding-bottom:0;}}

/* 15. UTILITIES / A11Y / MOTION ---------------------------------------- */
.skip-link{position:absolute;left:-9999px;top:0;background:#fff;color:var(--color-primary);padding:var(--space-3);z-index:1000;}
.skip-link:focus{left:var(--space-3);}
.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}
:focus-visible{outline:3px solid var(--color-accent);outline-offset:2px;}
.text-center{text-align:center;}
/* Base section head (profile-neutral, centered). The left-eyebrow rhythm in
   section 17 flips it left-aligned with an accent rule above the H2. */
.section-head{text-align:center;max-width:720px;margin:0 auto var(--space-12);}
.section-head h1,.section-head h2{font-size:var(--text-3xl);margin-bottom:var(--space-3);}
h2.section-head{font-size:var(--text-3xl);margin:0 auto var(--space-8);max-width:720px;}
.section-head>h2::after,.section-head>h1::after,h2.section-head::after{content:"";display:block;width:64px;height:5px;border-radius:2px;background:var(--color-accent);margin:var(--space-4) auto 0;}
.section-head p{color:var(--color-muted);font-size:var(--text-lg);margin:0;}
/* Optional eyebrow label inside .section-head (templates may include it). */
.section-head__eyebrow{display:block;font-size:var(--text-xs);font-weight:var(--fw-bold);letter-spacing:.12em;text-transform:uppercase;color:var(--color-accent-hover);margin-bottom:var(--space-2);}
.section--dark .section-head__eyebrow{color:var(--color-accent);}

/* Scroll reveal — only when JS is present, and only if motion allowed. */
.js .reveal{opacity:0;transform:translateY(16px);}
@media(prefers-reduced-motion:no-preference){
	.js .reveal{transition:opacity .5s ease,transform .5s ease;}
	.js .reveal.is-visible{opacity:1;transform:none;}
}
@media(prefers-reduced-motion:reduce){
	html{scroll-behavior:auto;}
	.js .reveal{opacity:1;transform:none;}
	*{animation-duration:.001ms!important;transition-duration:.001ms!important;}
}
.no-js .reveal{opacity:1;transform:none;}

/* 16. BOOKING WIZARD (2-step lead form) -------------------------------- */
.booking-form__head{text-align:center;margin-bottom:var(--space-6);}
.booking-form__title{font-size:var(--text-2xl);margin-bottom:var(--space-2);}
.booking-form__sub{color:var(--color-muted);margin:0;}

/* Step indicator */
.booking-form:not(.is-enhanced) .booking-steps{display:none;}
.booking-steps{list-style:none;display:flex;align-items:flex-start;justify-content:space-between;gap:var(--space-2);margin:0 0 var(--space-8);padding:0;}
.booking-steps__item{flex:1;display:flex;flex-direction:column;align-items:center;gap:var(--space-2);position:relative;color:var(--color-muted);font-size:var(--text-sm);font-weight:var(--fw-semibold);text-align:center;}
.booking-steps__item:not(:first-child)::before{content:"";position:absolute;top:17px;right:50%;left:-50%;height:2px;background:var(--color-border);z-index:0;}
.booking-steps__item.is-active::before,.booking-steps__item.is-done::before{background:var(--color-primary);}
.booking-steps__num{position:relative;z-index:1;width:36px;height:36px;border-radius:var(--radius-full);background:var(--color-surface);border:2px solid var(--color-border);color:var(--color-muted);display:inline-flex;align-items:center;justify-content:center;font-weight:var(--fw-bold);}
.booking-steps__item.is-active .booking-steps__num,.booking-steps__item.is-done .booking-steps__num{background:var(--color-primary);border-color:var(--color-primary);color:#fff;}
.booking-steps__item.is-active{color:var(--color-text);}
.booking-steps__label{line-height:1.2;}
.booking-form.is-enhanced .booking-steps__item.is-done{cursor:pointer;}
@media(max-width:479px){.booking-steps__label{display:none;}}

/* Steps: stacked & fully usable without JS; one-at-a-time once enhanced. */
.booking-step+.booking-step{margin-top:var(--space-8);padding-top:var(--space-8);border-top:1px solid var(--color-border);}
.booking-form.is-enhanced .booking-step{display:none;margin-top:0;padding-top:0;border-top:0;}
.booking-form.is-enhanced .booking-step.is-active{display:block;}
.booking-step__heading{font-size:var(--text-lg);margin:var(--space-6) 0 var(--space-4);}
.booking-step__heading:first-child{margin-top:0;}

/* Field grid */
.booking-grid{display:grid;grid-template-columns:1fr;gap:var(--space-4) var(--space-5);}
@media(min-width:560px){.booking-grid{grid-template-columns:1fr 1fr;}}
.booking-grid .field{margin-bottom:0;}
.booking-step__count{display:block;font-size:var(--text-xs);font-weight:var(--fw-bold);letter-spacing:.08em;text-transform:uppercase;color:var(--color-accent-hover);margin-bottom:var(--space-2);}
.quote-form input[type="date"]{min-height:46px;-webkit-appearance:none;appearance:none;}
.field--full{grid-column:1 / -1;}

/* Nav buttons (next/back hidden until JS enhances; submit always present) */
.booking-nav{display:flex;gap:var(--space-3);margin-top:var(--space-8);align-items:center;justify-content:space-between;flex-wrap:wrap;}
.booking-nav--end{justify-content:flex-end;}
.booking-nav__btn{display:none;}
.booking-form.is-enhanced .booking-nav__btn{display:inline-flex;}
.booking-submit{margin-left:auto;}

/* Trust microcopy under the wizard submit. */
.booking-form__trust{margin:var(--space-4) 0 0;text-align:center;font-size:var(--text-sm);color:var(--color-muted);}
.booking-form__trust::before{content:"";display:inline-block;width:.55em;height:.55em;margin-right:.5em;border-radius:50%;background:var(--color-success);vertical-align:middle;}

/* =========================================================================
 * Per-city DIRECTORY (imenik) + FEATURED #1 hero badge
 * ====================================================================== */
.directory{padding:var(--space-16) 0;background:var(--color-surface);border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border);}
.directory__heading{text-align:center;margin-bottom:var(--space-8);font-size:var(--text-3xl);font-weight:var(--fw-bold);letter-spacing:var(--track-display);}
.directory__list{display:grid;gap:var(--space-6);grid-template-columns:1fr;}
@media(min-width:680px){.directory__list{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1040px){.directory__list{grid-template-columns:repeat(3,1fr);}}

.directory__card{position:relative;display:flex;flex-direction:column;gap:var(--space-3);background:var(--color-white);border:1px solid var(--color-border);border-radius:var(--radius);padding:var(--space-6);box-shadow:var(--shadow-sm);transition:box-shadow var(--transition),border-color var(--transition);}
.directory__card:hover{box-shadow:var(--shadow);border-color:var(--color-primary);}
.directory__card--featured{border-color:var(--color-accent);box-shadow:var(--shadow);}
.directory__card--featured::after{content:"★";position:absolute;top:var(--space-4);right:var(--space-5);color:var(--color-accent);font-size:var(--text-lg);line-height:1;}

.directory__rank{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;flex:none;border-radius:var(--radius-sm);background:var(--color-primary);color:#fff;font-weight:var(--fw-black);font-size:var(--text-base);}
.directory__card--featured .directory__rank{background:var(--color-accent);color:var(--color-accent-ink);}
.directory__name{font-size:var(--text-lg);font-weight:var(--fw-bold);letter-spacing:-.015em;margin:0;color:var(--color-text);}

.directory__rating{display:inline-flex;align-items:center;gap:var(--space-2);font-size:var(--text-sm);font-weight:var(--fw-semibold);color:var(--color-text);}
.directory__star{display:inline-flex;align-items:center;justify-content:center;color:var(--color-star);}
.directory__star svg{width:1em;height:1em;}
.directory__rating-count{color:var(--color-muted);font-weight:var(--fw-normal);}

.directory__desc{margin:0;color:var(--color-muted);font-size:var(--text-sm);line-height:var(--lh-normal);}
.directory__meta{display:flex;align-items:flex-start;gap:var(--space-2);margin:0;color:var(--color-muted);font-size:var(--text-sm);}
.directory__icon{display:inline-flex;flex:none;color:var(--color-primary);margin-top:2px;}
.directory__icon svg{width:1em;height:1em;}

.directory__actions{display:flex;flex-wrap:wrap;gap:var(--space-2);margin-top:auto;padding-top:var(--space-3);}
.directory__action{display:inline-flex;align-items:center;gap:var(--space-2);padding:var(--space-2) var(--space-4);border-radius:var(--radius-full);font-size:var(--text-sm);font-weight:var(--fw-bold);border:1px solid var(--color-border);background:var(--color-white);color:var(--color-primary-ink);transition:var(--transition);}
.directory__action svg{width:1em;height:1em;}
.directory__action:hover{text-decoration:none;border-color:var(--color-primary);background:var(--color-surface);color:var(--color-primary-strong);}
.directory__action--call{background:var(--color-primary-strong);border-color:var(--color-primary-strong);color:#fff;}
.directory__action--call:hover{background:var(--color-primary-hover);border-color:var(--color-primary-hover);color:#fff;}

/* FEATURED #1 hero badge — orange ribbon above the eyebrow on city pages. */
.hero__featured-badge{display:inline-flex;align-items:center;gap:var(--space-2);background:var(--color-accent);color:var(--color-accent-ink);font-weight:var(--fw-black);font-size:var(--text-sm);letter-spacing:.06em;text-transform:uppercase;padding:var(--space-2) var(--space-4);border-radius:var(--radius-full);margin-bottom:var(--space-4);box-shadow:var(--shadow-sm);}
.hero__featured-badge svg{width:1.1em;height:1.1em;}

@media(prefers-reduced-motion:no-preference){
	.directory__card{transition:box-shadow var(--transition),border-color var(--transition),transform var(--transition);}
	.directory__card:hover{transform:translateY(-2px);}
}

/* Featured #1-spot tagline (city/area hero, under the business-name eyebrow). */
.hero__featured-tagline{display:block;margin:calc(-1 * var(--space-4)) auto var(--space-5);color:var(--color-on-dark-muted);font-size:var(--text-lg);font-weight:var(--fw-semibold);max-width:48ch;}

/* =========================================================================
 * CONVERSION PACK — promo bar, area checker, video facade, map embed
 * ====================================================================== */

/* Promo bar with expiry — above the topbar (header.php). Carries its OWN
   orange fill + near-black ink so it is contrast-safe wherever it sits;
   main.js hides it client-side past data-until (cache safety). */
.promo-bar{display:block;background:var(--color-accent);color:var(--color-accent-ink);text-align:center;font-size:var(--text-sm);font-weight:var(--fw-bold);letter-spacing:.02em;}
.promo-bar__inner{display:block;padding:var(--space-2) var(--space-4);}
a.promo-bar{text-decoration:none;}
a.promo-bar:hover{background:var(--color-accent-hover);color:var(--color-accent-ink);text-decoration:underline;text-underline-offset:3px;}
/* On-dark variant (§21.4) for placements inside dark sections. */
.promo-bar--dark{background:var(--color-dark);color:var(--color-on-dark);border-top:1px solid var(--color-dark-border);border-bottom:1px solid var(--color-dark-border);}
a.promo-bar--dark:hover{background:var(--color-dark-2);color:#fff;}

/* Područja koja pokrivamo — chips + area checker (content-local-areas / [nvz_area_check]). */
.local-areas{padding:var(--space-12) 0;}
.local-areas__heading{text-align:center;margin-bottom:var(--space-6);font-size:var(--text-2xl);}
.area-chips{list-style:none;display:flex;flex-wrap:wrap;gap:var(--space-3);justify-content:center;margin:0 0 var(--space-8);padding:0;}
.area-chips li{background:#fff;border:1px solid var(--color-border);border-radius:var(--radius-full);padding:var(--space-2) var(--space-4);font-size:var(--text-sm);font-weight:var(--fw-medium);color:var(--color-text);box-shadow:var(--shadow-sm);}
.area-check{display:flex;flex-wrap:wrap;gap:var(--space-3);justify-content:center;align-items:stretch;max-width:560px;margin:0 auto;}
.area-check__label{flex:1;min-width:220px;display:block;}
.area-check input[type="search"]{width:100%;height:100%;padding:var(--space-3) var(--space-4);border:1px solid var(--color-border);border-radius:var(--radius-sm);font-size:var(--text-base);font-family:inherit;background:#fff;color:var(--color-text);transition:border-color var(--transition),box-shadow var(--transition);}
.area-check input[type="search"]:focus{outline:none;border-color:var(--color-primary);box-shadow:0 0 0 3px rgba(14,23,38,.14);}
/* Result boxes carry their own light fill + border → readable on any section bg (§21.4). */
.area-check__result{max-width:560px;margin:var(--space-6) auto 0;padding:var(--space-5) var(--space-6);border-radius:var(--radius);border:1px solid var(--color-border);background:#fff;text-align:center;box-shadow:var(--shadow-sm);}
.area-check__result.is-yes{border-color:var(--color-success);background:rgba(31,138,93,.07);}
.area-check__msg{font-weight:var(--fw-semibold);margin:0 0 var(--space-3);color:var(--color-text);}
.area-check__result.is-yes .area-check__msg{color:var(--color-success);}

/* Video facade — click-to-load privacy embed (testimonials + projects).
   Self-contained dark navy card + navy play disc: contrast-safe on light AND dark (§21.4). */
.video-facade{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--space-2);margin-top:var(--space-4);padding:var(--space-8) var(--space-4);border-radius:var(--radius);background:linear-gradient(160deg,var(--color-dark) 0%,var(--color-dark-2) 100%);border:1px solid var(--color-dark-border);color:var(--color-on-dark);font-weight:var(--fw-semibold);font-size:var(--text-sm);text-decoration:none;transition:box-shadow var(--transition),transform var(--transition);}
.video-facade:hover{color:#fff;text-decoration:none;box-shadow:var(--shadow);}
@media(prefers-reduced-motion:no-preference){.video-facade:hover{transform:translateY(-2px);}}
.video-facade__play{display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:var(--radius-full);background:var(--color-accent);color:var(--color-accent-ink);font-size:var(--text-2xl);box-shadow:var(--shadow-sm);}
.video-facade__play svg{margin-left:2px;}
.video-embed{margin-top:var(--space-4);}
.video-embed iframe{display:block;width:100%;aspect-ratio:16/9;border:0;border-radius:var(--radius);}

/* Map embed — per-page override section on area/combo pages + shared iframe sizing. */
.map-embed{padding:var(--space-12) 0;}
.map-embed iframe,.nvz-map iframe{display:block;width:100%;min-height:320px;border:0;border-radius:var(--radius-lg);}

/* -------------------------------------------------------------------------
 * Tool page (page-tool.php) — deliberately quiet chrome for linkable assets.
 * The tool itself (WPCode shortcode in the content) is the whole page.
 * ---------------------------------------------------------------------- */
.tool-header{border-bottom:1px solid var(--color-border, #e5e7eb);padding:var(--space-3, .75rem) 0;background:#fff;}
.tool-header__inner{display:flex;align-items:center;justify-content:center;}
.tool-header .custom-logo-link img{max-height:36px;width:auto;}
.tool-header__title{margin:0;font-size:var(--text-base, 1rem);font-weight:700;}
.tool-header__title a{color:var(--color-text);text-decoration:none;}
.tool-page__inner{max-width:var(--width-content, 720px);padding-top:var(--space-8, 2rem);padding-bottom:var(--space-12, 3rem);}
.tool-page__title{font-size:var(--text-2xl, 1.5rem);margin:0 0 var(--space-6, 1.5rem);}
.tool-footer{border-top:1px solid var(--color-border, #e5e7eb);padding:var(--space-6, 1.5rem) 0;margin-top:var(--space-8, 2rem);}
.tool-footer__inner{display:flex;flex-wrap:wrap;gap:var(--space-4, 1rem);justify-content:center;font-size:var(--text-sm, .875rem);color:var(--color-muted, #5C5C6E);}
.tool-footer__inner p{margin:0;}
.tool-footer__inner a{color:inherit;}


/* =========================================================================
   17. CONSUMER-AUTOMOTIVE PROFILE OVERRIDES (§6 / DESIGN-MANIFEST.json)
   Profile: consumer-automotive.
   Axes: typography=rounded-friendly · hero=centered-stack+angled ·
   section_rhythm=left-eyebrow · cards=float · header=cta-block ·
   texture=dot-matrix.
   Scoped to the dp-* body classes seeded from NVZ_DESIGN_PROFILE
   (functions.php) + the hero--centered-stack/--angled part classes, so
   functionality is identical to the base build — only the look changes.
   ====================================================================== */

/* --- TYPOGRAPHY: rounded-friendly -------------------------------------- */
.dp-type-rounded-friendly h1,.dp-type-rounded-friendly h2,
.dp-type-rounded-friendly h3,.dp-type-rounded-friendly h4{letter-spacing:var(--track-display);}
.dp-type-rounded-friendly .site-title{font-family:var(--font-display);}
.dp-type-rounded-friendly .btn{text-transform:none;letter-spacing:0;}

/* --- HERO: centered-stack + angled bottom edge ------------------------- */
/* Diagonal cut (~48px drop) along the hero's bottom edge; the extra inner
   bottom padding keeps the floating wizard card clear of the clip. */
.dp-hero-centered-stack-angled .hero--angled{clip-path:polygon(0 0,100% 0,100% 100%,0 calc(100% - 48px));}
.dp-hero-centered-stack-angled .hero--angled .hero__inner{padding-bottom:calc(var(--space-16) + 48px);}
@media(max-width:640px){
	.dp-hero-centered-stack-angled .hero--angled{clip-path:polygon(0 0,100% 0,100% 100%,0 calc(100% - 28px));}
	.dp-hero-centered-stack-angled .hero--angled .hero__inner{padding-bottom:calc(var(--space-12) + 28px);}
}

/* --- SECTION RHYTHM: left-eyebrow -------------------------------------- */
/* Left-aligned section heads: short 3rem orange rule ABOVE the H2 (the
   centered underline is cancelled), intro paragraph below-left at 60ch. */
.dp-rhythm-left-eyebrow .section-head{text-align:left;max-width:none;margin:0 0 var(--space-12);}
.dp-rhythm-left-eyebrow .section-head>h2::after,
.dp-rhythm-left-eyebrow .section-head>h1::after{content:none;}
.dp-rhythm-left-eyebrow .section-head>h2::before,
.dp-rhythm-left-eyebrow .section-head>h1::before{content:"";display:block;width:3rem;height:4px;border-radius:2px;background:var(--color-accent);margin:0 0 var(--space-3);}
.dp-rhythm-left-eyebrow .section-head p{max-width:60ch;margin:var(--space-3) 0 0;}
/* Standalone h2.section-head (e.g. testimonials, related posts). */
.dp-rhythm-left-eyebrow h2.section-head{text-align:left;margin:0 0 var(--space-8);max-width:none;}
.dp-rhythm-left-eyebrow h2.section-head::after{content:none;}
.dp-rhythm-left-eyebrow h2.section-head::before{content:"";display:block;width:3rem;height:4px;border-radius:2px;background:var(--color-accent);margin:0 0 var(--space-3);}
/* Asymmetric section rhythm: taller entry, tighter exit. */
.dp-rhythm-left-eyebrow .section{padding:var(--space-24) 0 var(--space-16);}
/* Navy feature band variant of the section head (mid-page .section--dark). */
.dp-rhythm-left-eyebrow .section--dark .section-head p{color:var(--color-on-dark-muted);}

/* --- CARDS: float ------------------------------------------------------- */
.dp-cards-float .card{background:var(--color-white);border:0;border-radius:var(--radius-lg);box-shadow:var(--shadow);}
.dp-cards-float .card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);}
.dp-cards-float .card__media img{border-radius:0;}
.dp-cards-float .testimonial{border:0;box-shadow:var(--shadow);}

/* --- HEADER: cta-block -------------------------------------------------- */
/* The orange CTA runs the full height of the bar, flush to the right edge. */
.dp-header-cta-block .site-header__inner{align-items:stretch;}
.dp-header-cta-block .nvz-header-cta{align-self:stretch;border-radius:0;}

/* --- TEXTURE: dot-matrix ------------------------------------------------ */
/* Subtle CSS-only radial-gradient dot washes: ~4% navy dots on tinted light
   bands, ~5% light dots on navy bands, plus one masked hero corner. Static
   (no animation), so prefers-reduced-motion needs no special casing. */
.dp-texture-dot-matrix .section--surface,
.dp-texture-dot-matrix .testimonials,
.dp-texture-dot-matrix .silo,
.dp-texture-dot-matrix .directory{background-image:radial-gradient(rgba(14,23,38,.045) 1px,transparent 1.5px);background-size:18px 18px;}
.dp-texture-dot-matrix .section--dark,
.dp-texture-dot-matrix .cta-banner{background-image:radial-gradient(rgba(243,245,249,.05) 1px,transparent 1.5px),linear-gradient(160deg,var(--color-dark) 0%,var(--color-dark-2) 100%);background-size:18px 18px,auto;}
/* Hero corner wash — masked dot field in the top-right corner of the navy hero. */
.dp-texture-dot-matrix .hero--centered-stack::before{content:"";position:absolute;top:0;right:0;width:min(46vw,460px);height:340px;z-index:0;pointer-events:none;
	background-image:radial-gradient(rgba(243,245,249,.10) 1px,transparent 1.5px);background-size:20px 20px;
	-webkit-mask-image:radial-gradient(130% 130% at 100% 0%,#000 25%,transparent 68%);mask-image:radial-gradient(130% 130% at 100% 0%,#000 25%,transparent 68%);}


/* =========================================================================
   18. 2-STEP WIZARD + MOBILE POLISH
   ====================================================================== */

/* Step-1 text-only vehicle-category choices (no price / no image). */
.choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-3);margin-bottom:var(--space-6);}
@media(max-width:640px){
	/* Compact 2-col pills keep the category step short on phones. */
	.choice-grid{gap:var(--space-2);margin-bottom:var(--space-5);}
	.choice-pill{padding:var(--space-2) var(--space-3);gap:var(--space-2);font-size:var(--text-sm);}
	.choice-pill__tick{width:18px;height:18px;flex-basis:18px;}
	.choice-pill__tick svg{width:11px;height:11px;}
}
.choice-pill{position:relative;display:flex;align-items:center;gap:var(--space-3);border:1px solid var(--color-border);border-radius:var(--radius);padding:var(--space-3) var(--space-4);cursor:pointer;background:#fff;font-weight:var(--fw-semibold);font-size:var(--text-sm);color:var(--color-text);transition:border-color var(--transition),background var(--transition),box-shadow var(--transition);}
.choice-pill:hover{border-color:var(--color-primary);}
.choice-pill:has(.choice-pill__input:focus-visible){box-shadow:0 0 0 3px rgba(255,90,31,.35);}
.choice-pill__input{position:absolute;opacity:0;pointer-events:none;}
.choice-pill__tick{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;flex:0 0 22px;border-radius:var(--radius-full);border:2px solid var(--color-border);background:#fff;color:transparent;transition:var(--transition);}
.choice-pill.is-selected{border-color:var(--color-primary);background:var(--color-surface);}
.choice-pill.is-selected .choice-pill__tick{background:var(--color-primary);border-color:var(--color-primary);color:#fff;}

/* Mobile: collapse the nested gutters (container + card paddings) that
   squeezed the wizard fields on small screens. */
@media(max-width:640px){
	/* The 3-line after-hours note made the topbar eat half the first viewport;
	   the sticky bottom bar already covers call/WhatsApp on mobile. */
	.topbar__afterhours{display:none;}
	/* Tighter hero + a full-width wizard card with slimmer padding. */
	.hero--centered-stack .hero__inner{padding-top:var(--space-12);gap:var(--space-6);}
	.hero--centered-stack .booking-shell{max-width:none;}
	.hero--centered-stack .booking-shell .quote-form-wrap{padding:var(--space-6) var(--space-4);border-radius:var(--radius);}
	.booking-form__title{font-size:var(--text-xl);}
	.booking-form__sub{font-size:var(--text-sm);}
	.booking-steps{margin-bottom:var(--space-6);}
}
