/* ============================================================
   AM Pressure Washing — Site styles
   Built on the AM Pressure Washing Design System tokens.
   Navy + white lead · Brand blue = CTAs only · Cyan = accent.
   ============================================================ */

@import url("tokens/fonts.css");
@import url("tokens/colors.css");
@import url("tokens/typography.css");
@import url("tokens/spacing.css");
@import url("tokens/base.css");

/* Tighter vertical rhythm: less white space above/below section headings */
:root { --section-y: 64px; }

/* ---------- Reset-ish / base ---------- */
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
a:hover { text-decoration: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-inline: var(--container-pad); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--space-7); }
.section--subtle { background: var(--surface-subtle); }
.section--navy { background: var(--surface-navy); color: var(--text-on-brand); }
.section--navy h1,.section--navy h2,.section--navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: var(--fs-overline); letter-spacing: var(--ls-overline);
  text-transform: uppercase; color: var(--brand-blue);
  display: inline-flex; align-items: center; gap: var(--space-2); margin: 0 0 var(--space-3);
}
.section--navy .eyebrow { color: var(--light-cyan); }
.section-head { max-width: 660px; margin-bottom: var(--space-6); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head:has(+ .faq) { margin-bottom: var(--space-5); }
.section-head h2 { font-size: clamp(28px, 4vw, var(--fs-h2)); margin: 0 0 var(--space-3); }
.section-head p { font-size: var(--fs-lead); color: var(--text-body); margin: 0; }
.section--navy .section-head p { color: rgba(255,255,255,0.78); }

.lead { font-size: var(--fs-lead); color: var(--text-body); }
.muted { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-body);
  line-height: 1; padding: 14px 24px; border-radius: var(--radius-md);
  border: var(--border-md) solid transparent; transition: all var(--dur-base) var(--ease-standard);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn svg, .btn i { width: 18px; height: 18px; }
.btn--primary { background: var(--action-primary); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--action-primary-hover); color: #fff; }
.btn--navy { background: var(--deep-navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; }
.btn--outline { background: transparent; color: var(--deep-navy); border-color: var(--border-default); }
.btn--outline:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.btn--on-dark { background: rgba(255,255,255,0.08); color: #fff; border-color: var(--border-on-navy); }
.btn--on-dark:hover { background: rgba(255,255,255,0.16); color: #fff; }
.btn--ghost { background: transparent; color: var(--brand-blue); border-color: transparent; padding-inline: 8px; }
.btn--ghost:hover { color: var(--action-primary-hover); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 16px; font-size: var(--fs-sm); }
.btn--lg { padding: 17px 30px; font-size: var(--fs-lead); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.site-header.is-scrolled { border-bottom-color: var(--border-subtle); box-shadow: var(--shadow-sm); }

/* Utility bar (top tier) */
.header-utility { background: var(--navy-900); color: rgba(255,255,255,0.82); font-size: 13px; max-height: 42px; overflow: hidden; transition: max-height var(--dur-base) var(--ease-standard); }
.site-header.is-scrolled .header-utility { max-height: 0; }
.header-utility__inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.header-utility__left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.header-utility__left a, .header-utility__left > span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.82); white-space: nowrap; }
.header-utility__left a { font-family: var(--font-display); font-weight: var(--fw-medium); }
.header-utility__left a:hover { color: #fff; text-decoration: none; }
.header-utility__left i, .header-utility__left svg { width: 14px; height: 14px; color: var(--light-cyan); }
.util-sep { color: rgba(255,255,255,0.28); }
.header-utility__right { display: flex; align-items: center; gap: 4px; }
.header-utility__right a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: var(--radius-sm); color: rgba(255,255,255,0.72); transition: color var(--dur-fast), background var(--dur-fast); }
.header-utility__right a:hover { color: var(--light-cyan); background: rgba(255,255,255,0.08); text-decoration: none; }
.header-utility__right svg { width: 15px; height: 15px; }
.nav-quote { box-shadow: none; margin-left: 4px; }
.nav-quote:hover { box-shadow: var(--shadow-brand); }
@media (max-width: 980px) { .util-hide-sm { display: none !important; } }
@media (max-width: 860px) { .header-utility { display: none; } .nav-quote { display: none; } }
.header-inner { display: flex; align-items: center; gap: var(--space-5); height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-icon { height: 48px; width: auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word__am { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-style: italic; font-size: 25px; letter-spacing: -0.01em; color: var(--brand-blue); }
.brand-word__pw { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--deep-navy); margin-top: 3px; }
.nav-primary { display: flex; align-items: center; gap: var(--space-2); margin-left: auto; }
.nav-link {
  font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-sm);
  color: var(--text-strong); padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link:hover { color: var(--brand-blue); background: var(--brand-blue-100); text-decoration: none; }
.nav-link.is-active { color: var(--brand-blue); }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.phone-cta { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-display); font-weight: var(--fw-semibold); color: var(--deep-navy); font-size: var(--fs-sm); }
.phone-cta:hover { color: var(--brand-blue); text-decoration: none; }
.phone-cta i, .phone-cta svg { width: 16px; height: 16px; color: var(--brand-blue); }
.cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-md); border: 1px solid var(--border-subtle); background: #fff; color: var(--deep-navy); transition: border-color var(--dur-fast), color var(--dur-fast); }
.cart-btn:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.cart-count { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: var(--radius-pill); background: var(--brand-blue); color: #fff; font-family: var(--font-body); font-size: 11px; font-weight: 700; display: none; align-items: center; justify-content: center; }
.cart-count.show { display: inline-flex; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); background: #fff; color: var(--deep-navy); align-items: center; justify-content: center; }

/* mobile drawer */
.nav-drawer { position: fixed; inset: 0; z-index: 60; pointer-events: none; overflow: hidden; }
.nav-drawer__scrim { position: absolute; inset: 0; background: rgba(13,43,62,0.5); opacity: 0; transition: opacity var(--dur-base); }
.nav-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px); background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out); padding: var(--space-6) var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.nav-drawer.is-open { pointer-events: all; }
.nav-drawer.is-open .nav-drawer__scrim { opacity: 1; }
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__panel .nav-link { font-size: var(--fs-h4); padding: 12px 4px; }
.nav-drawer__close { align-self: flex-end; width: 44px; height: 44px; border: none; background: var(--surface-subtle); border-radius: var(--radius-md); color: var(--deep-navy); display: inline-flex; align-items: center; justify-content: center; margin-bottom: var(--space-4); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--deep-navy); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(8,32,46,0.92) 0%, rgba(8,32,46,0.72) 45%, rgba(8,32,46,0.55) 100%); }
.hero__inner { position: relative; z-index: 1; padding-block: clamp(64px, 10vw, 128px); max-width: 760px; }
.hero h1 { font-size: clamp(40px, 7vw, var(--fs-display)); font-weight: var(--fw-extrabold); line-height: var(--lh-tight); letter-spacing: var(--ls-tight); color: #fff; margin: 0 0 var(--space-4); }
.hero h1 em { font-style: italic; color: var(--light-cyan); }
.hero__sub { font-size: clamp(17px, 2.4vw, var(--fs-lead)); color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 0 var(--space-6); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); margin-top: var(--space-7); padding-top: var(--space-5); border-top: 1px solid var(--border-on-navy); }
.hero__trust-item { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--fs-sm); color: rgba(255,255,255,0.9); }
.hero__trust-item i, .hero__trust-item svg { width: 18px; height: 18px; color: var(--light-cyan); }
.hero__trust-item--link { text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
.hero__trust-item--link:hover { color: var(--light-cyan); text-decoration: underline; text-underline-offset: 3px; }
.reviews-score__meta--link { display: block; text-decoration: none; transition: color var(--dur-fast); }
.reviews-score__meta--link:hover { color: #fff !important; text-decoration: underline; text-underline-offset: 3px; }
.stars { display: inline-flex; gap: 1px; color: #FFC23D; }
.stars i, .stars svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Trust band ---------- */
.trust-band { background: #fff; border-bottom: 1px solid var(--border-subtle); }
.trust-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); padding-block: var(--space-5); }
.trust-item { display: flex; align-items: center; gap: var(--space-3); }
.trust-item i, .trust-item svg { width: 26px; height: 26px; color: var(--brand-blue); flex-shrink: 0; }
.trust-item strong { display: block; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-sm); color: var(--text-strong); line-height: 1.2; }
.trust-item span { font-size: var(--fs-xs); color: var(--text-muted); }

/* ---------- Service cards ---------- */
.cards-grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: var(--space-6); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card__icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--brand-blue-100); color: var(--brand-blue); display: inline-flex; align-items: center; justify-content: center; margin-bottom: var(--space-4); }
.service-card__icon i, .service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: var(--fs-h4); margin: 0 0 var(--space-2); }
.service-card p { font-size: var(--fs-sm); color: var(--text-body); margin: 0; }

/* ---------- Product cards ---------- */
.product-card {
  position: relative; display: flex; flex-direction: column; background: var(--surface-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card__media {
  position: relative; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
  background: var(--white); border-bottom: 1px solid var(--border-subtle); overflow: hidden;
}
.product-card__fallback { width: 56px; height: 56px; color: var(--brand-blue); opacity: 0.85; stroke-width: 1.5; }
.product-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 14px; background: var(--white); }
.product-card__tag { position: absolute; top: var(--space-3); left: var(--space-3); font-family: var(--font-display); font-size: var(--fs-xs); font-weight: var(--fw-medium); color: var(--text-muted); background: rgba(255,255,255,0.9); padding: 4px 10px; border-radius: var(--radius-pill); }
.product-card__badge { position: absolute; top: var(--space-3); right: var(--space-3); font-family: var(--font-display); font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: #fff; background: var(--brand-blue); padding: 4px 10px; border-radius: var(--radius-pill); }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: var(--space-5); gap: var(--space-2); }
.product-card__name { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-body); color: var(--text-strong); line-height: 1.3; }
.product-card__blurb { font-size: var(--fs-sm); color: var(--text-muted); flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-3); }
.product-card__price { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h4); color: var(--deep-navy); }

/* ---------- Video embed ---------- */
.video-embed { max-width: 880px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-subtle); background: var(--navy-900); }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.gallery-item { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-md); overflow: hidden; background: var(--surface-sunken); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Reviews ---------- */
.reviews-wrap { display: grid; grid-template-columns: 280px 1fr; gap: var(--space-7); align-items: center; }
.reviews-score { text-align: center; }
.reviews-google { display: block; width: 38px; height: 38px; margin: 0 auto var(--space-3); }
.reviews-google svg { width: 100%; height: 100%; display: block; }
.reviews-score__num { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 72px; line-height: 1; color: var(--deep-navy); }
.section--navy .reviews-score__num { color: #fff; }
.reviews-score__stars { justify-content: center; margin: var(--space-2) 0; }
.reviews-score__meta { font-size: var(--fs-sm); color: var(--text-muted); }
.review-card { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: var(--space-6); }
.review-card p { font-size: var(--fs-lead); color: var(--text-strong); font-style: italic; margin: 0 0 var(--space-4); }
.review-card__author { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-sm); color: var(--text-strong); }
.review-card__date { font-size: var(--fs-xs); color: var(--text-muted); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { margin-bottom: var(--space-3); }
.about-copy p { color: var(--text-body); margin-bottom: var(--space-4); }
.about-points { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-5); }
.about-points span { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-sm); color: var(--text-strong); }
.about-points i, .about-points svg { width: 20px; height: 20px; color: var(--brand-blue); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border-subtle); }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; background: none; border: none; padding: 20px 4px; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 18px; color: var(--text-strong); cursor: pointer; }
.faq-q:hover { color: var(--brand-blue); }
.faq-q i, .faq-q svg { width: 22px; height: 22px; color: var(--brand-blue); flex-shrink: 0; transition: transform var(--dur-base) var(--ease-standard); }
.faq-item.is-open .faq-q i, .faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-standard); }
.faq-a p { padding: 0 4px 20px; margin: 0; color: var(--text-body); line-height: var(--lh-relaxed); }

/* ---------- Before/After showcase ---------- */
.ba-split { position: relative; max-width: 980px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-subtle); }
.ba-split img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__label { position: absolute; bottom: 14px; z-index: 2; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: rgba(8,32,46,0.66); padding: 6px 14px; border-radius: var(--radius-pill); }
.ba__label--before { left: 14px; }
.ba__label--after { right: 14px; background: var(--brand-blue); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--surface-brand); color: #fff; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-5); padding-block: var(--space-8); }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.5vw, var(--fs-h2)); margin: 0 0 var(--space-2); }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; font-size: var(--fs-lead); }
.cta-band .btn--primary { background: #fff; color: var(--brand-blue); box-shadow: var(--shadow-lg); }
.cta-band .btn--primary:hover { background: var(--grey-50); color: var(--action-primary-hover); }
.cta-band .btn--on-dark { border-color: rgba(255,255,255,0.6); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.field label { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-sm); color: var(--text-strong); }
.field label .req { color: var(--brand-blue); }
.input, .textarea, .select {
  width: 100%; font-family: var(--font-body); font-size: var(--fs-body); color: var(--text-strong);
  padding: 12px 14px; border: 1px solid var(--border-default); border-radius: var(--radius-md);
  background: #fff; transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px var(--focus-ring); }
.textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: var(--fs-xs); color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.72); padding-block: var(--space-8) var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-7); margin-bottom: var(--space-7); }
.footer-brand img { height: 86px; width: auto; margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-social { margin-top: var(--space-4); display: flex; gap: var(--space-2); }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.8); transition: border-color var(--dur-fast), color var(--dur-fast); }
.footer-social a:hover { border-color: var(--light-cyan); color: var(--light-cyan); text-decoration: none; }
.footer-social i, .footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: var(--ls-wide); margin: 0 0 var(--space-4); }
.footer-col a, .footer-col li { color: rgba(255,255,255,0.72); font-size: var(--fs-sm); display: block; margin-bottom: var(--space-3); }
.footer-col a:hover { color: var(--light-cyan); text-decoration: none; }
.footer-contact-row { display: flex; align-items: flex-start; gap: var(--space-2); margin-bottom: var(--space-3); }
.footer-contact-row i, .footer-contact-row svg { width: 16px; height: 16px; color: var(--light-cyan); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-5); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); font-size: var(--fs-xs); color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta { display: none; }
.mobile-cta__btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 12px; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 15px; text-decoration: none; }
.mobile-cta__btn:hover { text-decoration: none; }
.mobile-cta__btn i, .mobile-cta__btn svg { width: 18px; height: 18px; }
.mobile-cta__call { background: #fff; color: var(--deep-navy); }
.mobile-cta__quote { background: var(--brand-blue); color: #fff; }
@media (max-width: 860px) {
  .mobile-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; gap: 1px; background: var(--border-subtle); box-shadow: 0 -4px 18px rgba(13,43,62,0.14); }
  body { padding-bottom: 56px; }
}

/* ---------- Page header (interior pages) ---------- */
.page-hero { background: var(--surface-subtle); border-bottom: 1px solid var(--border-subtle); padding-block: var(--space-8); }
.page-hero h1 { font-size: clamp(32px, 5vw, var(--fs-h1)); margin: 0 0 var(--space-3); }
.page-hero p { font-size: var(--fs-lead); color: var(--text-body); max-width: 620px; margin: 0; }
.breadcrumb { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--space-3); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand-blue); }

/* ---------- Shop ---------- */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: var(--space-7); align-items: start; }
.shop-filters { position: sticky; top: 96px; }
.shop-filters h4 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: var(--ls-wide); color: var(--text-muted); margin: 0 0 var(--space-3); }
.filter-btn { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); width: 100%; text-align: left; padding: 10px 12px; border: none; background: transparent; border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-sm); color: var(--text-strong); transition: background var(--dur-fast), color var(--dur-fast); }
.filter-btn:hover { background: var(--surface-subtle); color: var(--brand-blue); }
.filter-btn.is-active { background: var(--brand-blue-100); color: var(--brand-blue); }
.filter-btn .count { font-size: var(--fs-xs); color: var(--text-muted); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-5); }
.shop-toolbar .result-count { font-size: var(--fs-sm); color: var(--text-muted); }
.filter-chips { display: none; gap: var(--space-2); overflow-x: auto; padding-bottom: var(--space-2); margin-bottom: var(--space-5); }
.chip { flex-shrink: 0; padding: 8px 14px; border: 1px solid var(--border-default); border-radius: var(--radius-pill); background: #fff; font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-sm); color: var(--text-strong); }
.chip.is-active { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }

/* ---------- Modal (product / cart drawer) ---------- */
.modal { position: fixed; inset: 0; z-index: 70; display: none; align-items: center; justify-content: center; padding: var(--space-5); }
.modal.is-open { display: flex; }
.modal__scrim { position: absolute; inset: 0; background: rgba(8,32,46,0.6); backdrop-filter: blur(3px); }
.modal__panel { position: relative; z-index: 1; background: #fff; border-radius: var(--radius-lg); max-width: 520px; width: 100%; padding: var(--space-7); box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto; }
.modal__close { position: absolute; top: var(--space-4); right: var(--space-4); width: 40px; height: 40px; border: none; background: var(--surface-subtle); border-radius: var(--radius-md); color: var(--deep-navy); display: inline-flex; align-items: center; justify-content: center; }
.modal__media { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-5); overflow: hidden; }
.modal__media-fallback { width: 72px; height: 72px; color: var(--brand-blue); stroke-width: 1.5; }
.modal__media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 16px; background: var(--white); }

/* ---------- Cart drawer ---------- */
.cart-drawer { position: fixed; inset: 0; z-index: 65; pointer-events: none; overflow: hidden; }
.cart-drawer__scrim { position: absolute; inset: 0; background: rgba(8,32,46,0.55); opacity: 0; transition: opacity var(--dur-base); }
.cart-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(92vw, 420px); background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out); display: flex; flex-direction: column; }
.cart-drawer.is-open { pointer-events: all; }
.cart-drawer.is-open .cart-drawer__scrim { opacity: 1; }
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: var(--space-5); border-bottom: 1px solid var(--border-subtle); }
.cart-drawer__head h3 { margin: 0; font-size: var(--fs-h4); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); }
.cart-line { display: flex; gap: var(--space-3); align-items: center; }
.cart-line__icon { position: relative; overflow: hidden; width: 52px; height: 52px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-line__icon img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 5px; background: #fff; }
.cart-line__icon i, .cart-line__icon svg { width: 24px; height: 24px; color: var(--brand-blue); }
.cart-line__info { flex: 1; min-width: 0; }
.cart-line__name { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: var(--fs-sm); color: var(--text-strong); }
.cart-line__price { font-size: var(--fs-sm); color: var(--text-muted); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border-default); border-radius: var(--radius-sm); overflow: hidden; }
.qty button { width: 30px; height: 30px; border: none; background: #fff; color: var(--deep-navy); font-size: 16px; }
.qty button:hover { background: var(--surface-subtle); }
.qty span { min-width: 28px; text-align: center; font-size: var(--fs-sm); font-weight: 600; }
.cart-drawer__foot { padding: var(--space-5); border-top: 1px solid var(--border-subtle); }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); font-family: var(--font-display); }
.cart-total .label { color: var(--text-muted); font-size: var(--fs-sm); }
.cart-total .amount { font-weight: var(--fw-bold); font-size: var(--fs-h3); color: var(--deep-navy); }
.cart-empty { text-align: center; color: var(--text-muted); padding: var(--space-8) var(--space-4); }
.cart-empty i, .cart-empty svg { width: 48px; height: 48px; color: var(--grey-300); margin-bottom: var(--space-3); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox__scrim { position: absolute; inset: 0; background: rgba(8,32,46,0.9); backdrop-filter: blur(4px); }
.lightbox__img { position: relative; z-index: 1; max-width: min(94vw, 1100px); max-height: 86vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius-md); box-shadow: 0 24px 60px rgba(0,0,0,0.5); animation: lbIn var(--dur-base) var(--ease-out); }
@keyframes lbIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.lightbox__btn { position: absolute; z-index: 2; width: 48px; height: 48px; border: none; border-radius: var(--radius-pill); background: rgba(255,255,255,0.14); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--dur-fast); }
.lightbox__btn:hover { background: rgba(255,255,255,0.3); }
.lightbox__btn svg, .lightbox__btn i { width: 22px; height: 22px; }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
body.lightbox-open { overflow: hidden; }
@media (max-width: 560px) { .lightbox__btn { width: 42px; height: 42px; } .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; } .lightbox__close { top: 12px; right: 12px; } }

/* ---------- Reveal (progressive enhancement: only hides when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .reviews-wrap { grid-template-columns: 1fr; gap: var(--space-5); }
  .reviews-wrap > * { min-width: 0; }
  .reviews-score { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4); justify-content: center; }
  .reviews-score__num { font-size: 56px; }
}
@media (max-width: 860px) {
  .nav-primary, .header-actions .phone-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-band__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { display: none; }
  .filter-chips { display: flex; }
}
@media (max-width: 560px) {
  :root { --section-y: var(--space-7); --container-pad: var(--space-4); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-band__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { height: 64px; }
  .brand-icon { height: 40px; }
  .brand-word__am { font-size: 21px; }
  .brand-word__pw { font-size: 8.5px; letter-spacing: 0.14em; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { flex: 1; }
  .reviews-score { flex-direction: column; }
}
