/* ============================================================
   IMMACULATE DETAILING — WEBSITE TEMPLATE
   Shared site stylesheet. Built entirely on the brand tokens
   from styles.css (loaded first via ds-base.js).
   Blue dominates · gold = premium price callouts only · ››› motif.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--id-white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---- Layout ---- */
.wrap { width: min(1240px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(820px, 92vw); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 120px) 0; }
.section-sm { padding: clamp(40px, 5vw, 72px) 0; }

/* ---- Type helpers (extend tokens) ---- */
.display {
  font-family: var(--font-display);
  font-weight: var(--fw-ultra);
  font-style: italic;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  margin: 0;
}
.d1 { font-size: clamp(44px, 7vw, 92px); }
.d2 { font-size: clamp(34px, 5vw, 64px); }
.d3 { font-size: clamp(26px, 3.4vw, 44px); }
.d4 { font-size: clamp(21px, 2.2vw, 30px); }
.eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  font-size: var(--fs-eyebrow);
  color: var(--id-blue);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--id-blue-bright); }
.lead { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--text-muted); }
.muted { color: var(--text-muted); }
.on-dark { color: #fff; }
.on-dark .muted, .muted.on-dark { color: rgba(255,255,255,0.62); }
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }

/* ---- Triple-arrow motif ››› ---- */
.arrows {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-ultra);
  letter-spacing: -0.06em;
  line-height: 1;
  display: inline-block;
  color: var(--id-blue);
}
.arrows::before { content: "›››"; }
.arrows.bright { color: var(--id-blue-bright); }
.arrows.white { color: #fff; }
.arrows.fade {
  background: linear-gradient(90deg, currentColor, rgba(127,127,127,0.15));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Buttons ---- */
.btn {
  --btn-bg: var(--id-blue);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  padding: 15px 26px;
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius-md);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn:hover { background: var(--id-blue-deep); border-color: var(--id-blue-deep); transform: translateY(-1px); box-shadow: var(--shadow-brand); }
.btn:active { transform: scale(0.98); }
.btn .arrows { color: currentColor; font-size: 1.05em; }
.btn-lg { font-size: 16px; padding: 18px 32px; }
.btn-ghost {
  background: transparent; color: var(--id-blue); border-color: var(--id-blue);
}
.btn-ghost:hover { background: rgba(0,87,184,0.08); color: var(--id-blue-deep); box-shadow: none; }
.btn-on-dark {
  background: #fff; color: var(--id-black); border-color: #fff;
}
.btn-on-dark:hover { background: #fff; color: var(--id-blue-deep); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.btn-outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; box-shadow: none; }

/* ---- Eyebrow rule (label + line) ---- */
.rule-blue { height: 3px; width: 64px; background: var(--id-blue); border-radius: 2px; }
.rule-blue.center { margin-inline: auto; }

/* ---- Pills / chips ---- */
.chip {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold); font-style: italic; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 12px;
  padding: 6px 12px; border-radius: var(--radius-badge);
  background: var(--id-blue); color: #fff; display: inline-block;
}
.chip-outline { background: transparent; border: 1.5px solid var(--id-blue); color: var(--id-blue); }
.chip-gold { background: var(--grad-gold); color: var(--id-black); }
.chip-dark { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

/* ---- Size-class badge (brand mandatory) ---- */
.size-badge {
  font-family: var(--font-display);
  font-weight: var(--fw-ultra); font-style: italic; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: 13px; line-height: 1;
  color: #fff; background: var(--grad-blue);
  padding: 9px 14px; border-radius: var(--radius-badge);
  box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 7px;
}
.size-badge small { font-size: 9px; opacity: 0.8; letter-spacing: 0.14em; font-style: normal; }

/* ---- Image placeholders (no fabricated imagery) ---- */
.ph {
  position: relative; overflow: hidden;
  background-color: var(--id-gray-100);
  background-image: repeating-linear-gradient(135deg,
     rgba(0,87,184,0.06) 0 14px, rgba(0,87,184,0.0) 14px 28px);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--id-gray-500); text-align: center; padding: 0 16px;
}
.ph.dark {
  background-color: #15171b;
  background-image: repeating-linear-gradient(135deg,
     rgba(255,255,255,0.05) 0 14px, rgba(255,255,255,0) 14px 28px);
}
.ph.dark::after { color: rgba(255,255,255,0.5); }
.ph.brand {
  background-color: var(--id-blue);
  background-image: repeating-linear-gradient(135deg,
     rgba(255,255,255,0.09) 0 14px, rgba(255,255,255,0) 14px 28px);
}
.ph.brand::after { color: rgba(255,255,255,0.7); }
.ph.has-photo { background-image: none; }
.ph.has-photo::after { display: none; }
.ph.has-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
  width: min(1240px, 92vw); margin-inline: auto;
}
.nav-bar {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.nav-bar.solid { background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom-color: var(--border-subtle); }
.nav-bar.dark { background: rgba(17,18,21,0.7); backdrop-filter: blur(10px); border-bottom-color: rgba(255,255,255,0.08); }
.nav-logo { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-heading); font-weight: var(--fw-semibold);
  font-size: 15px; letter-spacing: 0.01em;
  position: relative; padding: 4px 0; transition: color var(--dur-base);
}
.nav-links a:hover { color: var(--id-blue); }
.nav-links a.active { color: var(--id-blue); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--id-blue);
}
.nav.on-dark .nav-links a { color: rgba(255,255,255,0.86); }
.nav.on-dark .nav-links a:hover, .nav.on-dark .nav-links a.active { color: #fff; }
.nav.on-dark .nav-links a.active::after { background: var(--id-blue-bright); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: 15px; white-space: nowrap; }
.nav.on-dark .nav-phone { color: #fff; }
.nav-links-phone { display: none; }

/* ---- Mobile menu (burger built by site.js) ---- */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; margin-left: 4px;
  background: none; border: 0; cursor: pointer;
}
.nav-burger span {
  display: block; width: 24px; height: 2px; margin: 0 auto;
  background: var(--id-black); border-radius: 2px;
  transition: transform var(--dur-base), opacity var(--dur-base);
}
.nav.on-dark .nav-burger span { background: #fff; }
.nav-bar.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-bar.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-bar.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 6px 0;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    max-height: 0; overflow: hidden; pointer-events: none;
    opacity: 0; transition: max-height var(--dur-base), opacity var(--dur-base);
  }
  .nav-bar.nav-open .nav-links { max-height: 80vh; opacity: 1; pointer-events: auto; }
  /* solid panel => always dark text, even on the dark nav */
  .nav .nav-links a,
  .nav.on-dark .nav-links a,
  .nav.on-dark .nav-links a:hover { color: var(--id-black); }
  .nav-links li { width: 100%; }
  .nav-links-phone { display: block; }
  .nav-links a {
    display: block; padding: 15px 24px; font-size: 16px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links a.active::after { display: none; }
  .nav .nav-links a.active,
  .nav.on-dark .nav-links a.active { color: var(--id-blue); }
  .nav-links-phone a,
  .nav.on-dark .nav-links-phone a { color: var(--id-blue) !important; font-weight: var(--fw-bold); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--id-black); color: #fff; padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-logo { height: 40px; margin-bottom: 18px; }
.footer h4 {
  font-family: var(--font-heading); font-weight: var(--fw-bold); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px;
  color: var(--id-blue-bright); margin-bottom: 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer a, .footer p { color: rgba(255,255,255,0.66); font-size: 15px; }
.footer a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-tag {
  font-family: var(--font-heading); font-weight: var(--fw-bold); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.8);
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SHARED SECTION PIECES
   ============================================================ */
/* Trust strip */
.trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 34px;
}
.trust span {
  font-family: var(--font-heading); font-weight: var(--fw-bold); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px;
  display: inline-flex; align-items: center; gap: 10px;
}
.trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--id-blue); }

/* Section heading block */
.head-block { max-width: 720px; }
.head-block.center { margin-inline: auto; text-align: center; }
.head-block .eyebrow { margin-bottom: 14px; }
.head-block .rule-blue { margin-top: 18px; }
.head-block.center .rule-blue { margin-inline: auto; }

/* Service cards (shared) */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .svc-grid, .svc-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid, .svc-grid.cols-3 { grid-template-columns: 1fr; } }
.svc-card {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--id-blue); }
.svc-card .ph { height: 168px; border-radius: 0; }
.svc-card .ph.svc-render { background: radial-gradient(120% 100% at 50% 0%, #ffffff 0%, #eef2f7 100%); }
.svc-card .ph.svc-render img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.svc-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card h3 { font-family: var(--font-display); font-weight: var(--fw-ultra); font-style: italic; text-transform: uppercase; font-size: 24px; line-height: 1; letter-spacing: var(--ls-display); }
.svc-card p { font-size: 15px; color: var(--text-muted); flex: 1; }
.svc-card .from { font-family: var(--font-heading); font-weight: var(--fw-semibold); font-size: 14px; color: var(--text-muted); }
.svc-card .from b { font-family: var(--font-price); font-style: italic; font-weight: var(--fw-ultra); font-size: 22px; color: var(--id-blue); margin-left: 4px; }
.svc-card .go {
  font-family: var(--font-heading); font-weight: var(--fw-bold); font-style: italic; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 13px; color: var(--id-blue); display: inline-flex; align-items: center; gap: 8px;
}
.svc-card:hover .go .arrows { transform: translateX(3px); }
.svc-card .go .arrows { transition: transform var(--dur-base) var(--ease-out); }

/* Process steps */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
@media (max-width: 760px) { .process { grid-template-columns: 1fr; } }
.proc-step { padding: 0 32px; position: relative; }
.proc-step:not(:last-child)::after {
  content: "›››"; position: absolute; right: -14px; top: 6px;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  color: var(--id-blue); opacity: 0.45; font-size: 28px;
}
@media (max-width: 760px) { .proc-step:not(:last-child)::after { display: none; } }
.proc-num { font-family: var(--font-price); font-style: italic; font-weight: 900; font-size: 22px; color: var(--id-blue); }
.proc-step h3 { font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: 28px; letter-spacing: var(--ls-display); margin: 6px 0 10px; }

/* CTA band */
.cta-band { background: var(--grad-blue); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band .arrows { color: rgba(255,255,255,0.25); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gallery .ph { border-radius: var(--radius-md); height: 100%; }
.gallery .span2 { grid-column: span 2; }
.gallery .row2 { grid-row: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery .span2 { grid-column: span 2; } }

/* Testimonial */
.quote { max-width: 900px; margin-inline: auto; text-align: center; }
.quote blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: var(--fw-bold);
  text-transform: uppercase; line-height: 1.05; letter-spacing: var(--ls-display);
  font-size: clamp(24px, 3.4vw, 40px); margin: 0 0 22px;
}
.quote .stars { color: var(--id-gold); letter-spacing: 4px; font-size: 18px; margin-bottom: 20px; }
.quote cite { font-style: normal; font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: 15px; letter-spacing: 0.04em; }
.quote cite span { color: var(--text-muted); font-weight: var(--fw-medium); }

/* ============================================================
   DIRECTION SWITCHER (only on the 3 home variants)
   ============================================================ */
.dir-switch {
  position: fixed; z-index: 200; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 4px;
  background: rgba(17,18,21,0.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  padding: 6px; box-shadow: var(--shadow-lg);
}
.dir-switch .ds-label {
  font-family: var(--font-heading); font-weight: var(--fw-bold); font-style: italic;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px;
  color: rgba(255,255,255,0.5); padding: 0 12px 0 14px;
}
.dir-switch a {
  font-family: var(--font-heading); font-weight: var(--fw-semibold); font-size: 13px;
  color: rgba(255,255,255,0.7); padding: 8px 16px; border-radius: 999px; transition: color var(--dur-base);
}
.dir-switch a:hover { color: #fff; }
.dir-switch a.active { background: var(--id-blue); color: #fff; }
@media (max-width: 620px) { .dir-switch .ds-label { display: none; } .dir-switch a { padding: 8px 12px; } }

/* ---- entrance (respect reduced motion / non-active) ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   SUB-PAGE SHARED COMPONENTS (services / pricing / contact)
   ============================================================ */
/* Inner-page header band */
.page-header { background: var(--grad-dark); color: #fff; padding: 132px 0 64px; position: relative; overflow: hidden; }
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(110% 100% at 85% 0%, rgba(0,87,184,0.34) 0%, transparent 55%);
}
.page-header .inner { position: relative; z-index: 2; }
.page-header .crumb { font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.page-header .crumb a:hover { color: #fff; }
.page-header h1 { font-size: clamp(38px, 5.4vw, 76px); margin: 0 0 18px; }
.page-header .lead { color: rgba(255,255,255,0.74); max-width: 600px; }

/* Tier cards (service tiers) */
.tier-grid { display: grid; gap: 20px; }
.tier-grid.c2 { grid-template-columns: repeat(2,1fr); }
.tier-grid.c3 { grid-template-columns: repeat(3,1fr); }
.tier-grid.c4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 1000px) { .tier-grid.c3, .tier-grid.c4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .tier-grid.c2, .tier-grid.c3, .tier-grid.c4 { grid-template-columns: 1fr; } }
.tier {
  position: relative; background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 28px 26px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tier.featured { border: 2px solid var(--id-blue); box-shadow: var(--shadow-brand); }
.tier.premium { border: 2px solid var(--id-gold); }
.tier-flag {
  align-self: flex-start; font-family: var(--font-heading); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; padding: 6px 11px; border-radius: var(--radius-badge);
  background: var(--id-blue); color: #fff; margin-bottom: 16px;
}
.tier.premium .tier-flag { background: var(--grad-gold); color: var(--id-black); }
.tier h3 { font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: 28px; line-height: 0.98; letter-spacing: var(--ls-display); margin: 0 0 10px; }
.tier .desc { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; }
.feature-list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.feature-list li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: var(--id-blue);
  -webkit-mask: no-repeat center/11px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask: no-repeat center/11px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.tier.premium .feature-list li::before { background: var(--id-gold-deep); }
.tier-price { display: flex; align-items: baseline; gap: 8px; padding-top: 18px; border-top: 1px solid var(--border-subtle); }
.tier-price .amt { font-family: var(--font-price); font-style: italic; font-weight: 900; font-size: 40px; color: var(--id-blue); line-height: 1; }
.tier.premium .tier-price .amt { color: var(--id-gold-deep); }

/* Level 2 = red (mirrors the red defect line in the correction diagram) */
.tier.tier-red { border-color: #C8202B; }
.tier.tier-red .tier-flag { background: linear-gradient(150deg,#E0413B 0%,#C8202B 50%,#9E1620 100%); color: #fff; }
.tier.tier-red .feature-list li::before { background: #C8202B; }
.tier.tier-red .tier-price .amt { color: #C8202B; }
.tier-price .from { font-family: var(--font-heading); font-style: italic; font-weight: 600; font-size: 13px; color: var(--text-muted); }

/* Wide premium tier — spans full row, horizontal layout */
.tier.tier-wide { grid-column: 1 / -1; }
.tier-wide__inner { display: grid; grid-template-columns: 1.7fr 1fr; gap: 36px; align-items: center; }
@media (max-width: 760px) { .tier-wide__inner { grid-template-columns: 1fr; gap: 22px; } }
.tier-wide__main .feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-bottom: 0; }
@media (max-width: 560px) { .tier-wide__main .feature-list { grid-template-columns: 1fr; } }
.tier-wide__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding-left: 36px; border-left: 1px solid var(--border-subtle); }
@media (max-width: 760px) { .tier-wide__aside { padding-left: 0; border-left: none; padding-top: 22px; border-top: 1px solid var(--border-subtle); width: 100%; } }
.tier-wide__aside .tier-price { padding-top: 0; border-top: none; }
.tier-wide__aside .tier-price .amt { font-size: 52px; }
/* Inline link inside a feature item */
.feature-list a { color: var(--id-gold-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color var(--dur-base) var(--ease-out); }
.feature-list a:hover { color: var(--id-black); }

/* Attribute band (PPF film highlights) */
.attr-band { display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 760px) { .attr-band { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 440px) { .attr-band { grid-template-columns: repeat(2,1fr); } }
.attr { background: #fff; padding: 22px 16px; text-align: center; }
.attr .ico { width: 26px; height: 26px; margin: 0 auto 10px; background: var(--id-blue); border-radius: 50%; }
.attr .t { font-family: var(--font-heading); font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.04em; font-size: 12px; }

/* Forms */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-heading); font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; color: var(--id-black); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--id-black);
  padding: 13px 15px; border: 1.5px solid var(--border-subtle); border-radius: var(--radius-sm); background: #fff;
  transition: border-color var(--dur-base), box-shadow var(--dur-base); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--id-blue); box-shadow: var(--focus-ring); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
/* size class radio chips */
.size-pick { display: flex; gap: 10px; flex-wrap: wrap; }
.size-pick label {
  cursor: pointer; font-family: var(--font-heading); font-weight: 700; font-style: italic; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 13px; padding: 11px 16px; border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm); transition: border-color var(--dur-base), color var(--dur-base); color: var(--text-muted);
}
.size-pick input { position: absolute; opacity: 0; pointer-events: none; }
.size-pick input:checked + label { background: var(--id-blue); border-color: var(--id-blue); color: #fff; }
.size-pick label:hover { border-color: var(--id-blue); color: var(--id-blue); }
.size-pick input:checked + label:hover { color: #fff; }

/* ============================================================
   INTEL-DRIVEN BLOCKS (reviews · service area · instagram · booking)
   ============================================================ */
/* Google reviews */
.rating-head { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 36px; }
.rating-head .score { font-family: var(--font-price); font-style: italic; font-weight: 900; font-size: 64px; line-height: 0.9; color: var(--id-blue); }
.rating-head .stars-lg { color: var(--id-gold); letter-spacing: 4px; font-size: 22px; }
.rating-head .meta { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--text-muted); }
.rating-head .meta b { color: var(--text-body); font-style: italic; }
.rating-head .gmark { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; }
.rating-head .gmark .gdot { width: 18px; height: 18px; border-radius: 50%; background: conic-gradient(#4285F4 0 25%, #EA4335 0 50%, #FBBC05 0 75%, #34A853 0); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.review-card .stars { color: var(--id-gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.review-card p { font-size: 16px; line-height: 1.55; margin-bottom: 18px; flex: 1; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-style: italic; font-size: 15px; flex: none; }
.review-card .who b { font-family: var(--font-heading); font-weight: 700; font-size: 14px; display: block; }
.review-card .who span { font-size: 12px; color: var(--text-muted); }

/* Service area */
.area-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-list a {
  font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--text-body);
  padding: 11px 18px; border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); background: #fff;
  transition: border-color var(--dur-base), color var(--dur-base);
}
.area-list a:hover { border-color: var(--id-blue); color: var(--id-blue); }
.area-list a.more { background: var(--id-blue); color: #fff; border-color: var(--id-blue); }

/* Instagram */
.ig-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 520px) { .ig-grid { grid-template-columns: repeat(2,1fr); } }
.ig-grid .ph { aspect-ratio: 1; border-radius: var(--radius-md); }

/* Sticky booking button */
.book-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 180;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 700; font-style: italic; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 15px; color: #fff; background: var(--id-blue);
  padding: 15px 24px; border-radius: 999px; box-shadow: var(--shadow-brand);
}
.book-fab:hover { background: var(--id-blue-deep); transform: translateY(-2px); }
.book-fab .arrows { color: #fff; }
@media (max-width: 620px) { .book-fab { right: 14px; bottom: 14px; padding: 14px 20px; font-size: 14px; } }

/* Hero trust line */
.hero-trustline { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-top: 26px; font-family: var(--font-heading); font-weight: 600; font-size: 13.5px; letter-spacing: 0.01em; }
.hero-trustline b { font-weight: 700; }
.hero-trustline .star { color: var(--id-gold); letter-spacing: 1px; }
.hero-trustline .sep { opacity: 0.35; }

/* Certifications */
.certs { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 880px) { .certs { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .certs { grid-template-columns: 1fr; } }
.cert { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-card); }
.cert .nm { font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: 24px; letter-spacing: var(--ls-display); line-height: 1; }
.cert .role { font-family: var(--font-heading); font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.04em; font-size: 12px; color: var(--id-blue); margin: 9px 0 12px; }
.cert p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Service area on dark */
.area-list.on-dark a { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.18); color: #fff; }
.area-list.on-dark a:hover { border-color: var(--id-blue-bright); color: var(--id-blue-bright); }
