/* ==========================================================================
   WAIWAKAIHO AUTO SERVICES — website v3 production build
   Orange + blue, grounded in the real gear:
     orange from the team uniforms (#EE6C1E daylight / #C45312 deep)
     blue from the workshop hoist posts (#3D56A6) + navy anchor
   Signature: the diagonal — lifted from the uniform's slanted panels.
   Type: Barlow Condensed (display) + Barlow (body) + IBM Plex Mono (codes)
   ========================================================================== */

:root{
  --navy:#14263B;
  --navy-2:#1D3450;
  --blue:#3D56A6;
  --blue-soft:#DCE4F2;
  --orange:#EE6C1E;
  --orange-deep:#C45312;
  --paper:#F5F2EC;
  --card:#FDFCF9;
  --ink:#1B2635;
  --slate:#5C6B7A;
  --line:#DED8CC;
  --radius:3px;
  --cut:12px; /* clipped-corner size, the job-card cut */
}
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:'Barlow',system-ui,sans-serif; line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{ margin:0; }
p{ margin:0 0 1em; }
.disp{ font-family:'Barlow Condensed',sans-serif; font-weight:700; letter-spacing:.015em; text-transform:uppercase; line-height:1; }
.mono{ font-family:'IBM Plex Mono',monospace; }
.wrap{ max-width:1180px; margin:0 auto; padding:0 28px; }
main section{ padding:64px 0; }
h2.section-title{ font-size:clamp(2rem,4vw,2.9rem); margin:.15em 0 .35em; color:var(--navy); }
.lede{ color:var(--slate); max-width:58ch; font-size:1.05rem; }
.eyebrow{
  display:inline-block; font-family:'IBM Plex Mono',monospace; font-size:.72rem;
  letter-spacing:.14em; text-transform:uppercase; color:#fff; background:var(--blue);
  padding:5px 12px; transform:skewX(-8deg); margin-bottom:16px;
}
.eyebrow > span{ display:inline-block; transform:skewX(8deg); }
.eyebrow.orange{ background:var(--orange); }

/* The uniform stripe — diagonal two-tone band used at key seams */
.diag-stripe{
  height:8px;
  background:repeating-linear-gradient(115deg,
    var(--orange) 0 18px, var(--navy) 18px 36px, var(--blue) 36px 54px);
}

.btn{
  display:inline-flex; align-items:center; gap:10px; justify-content:center;
  font-family:'Barlow',sans-serif; font-weight:700; font-size:.9rem;
  letter-spacing:.05em; text-transform:uppercase; text-decoration:none;
  padding:15px 28px; border:2px solid transparent; cursor:pointer;
  clip-path:polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
  transition:transform .15s ease, background .15s ease, color .15s ease;
}
.btn:active{ transform:translateY(1px); }
.btn-orange{ background:var(--orange); color:#fff; }
.btn-orange:hover{ background:var(--orange-deep); transform:translateY(-2px); }
.btn-navy{ background:var(--navy); color:#fff; }
.btn-navy:hover{ background:var(--navy-2); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-ghost:hover{ background:var(--navy); color:#fff; }
.btn-ghost-light{ background:transparent; color:#fff; border-color:#fff; }
.btn-ghost-light:hover{ background:#fff; color:var(--navy); }
:focus-visible{ outline:3px solid var(--orange); outline-offset:2px; }
.icon{ width:22px; height:22px; stroke:currentColor; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }

/* ---------- TOP INFO BAR ---------- */
.info-bar{ background:var(--navy); color:#C7D2DF; font-size:.78rem; }
.info-bar .wrap{ display:flex; justify-content:space-between; align-items:center; gap:16px; padding-top:7px; padding-bottom:7px; flex-wrap:wrap; }
.info-bar a{ color:#fff; text-decoration:none; font-weight:600; }
.info-bar a:hover{ color:var(--orange); }
.info-bar .left, .info-bar .right{ display:flex; gap:22px; align-items:center; flex-wrap:wrap; }
.info-bar .icon{ width:14px; height:14px; color:var(--orange); vertical-align:-2px; }
@media (max-width:720px){ .info-bar .right{ display:none; } }

/* ---------- NAV ---------- */
header.site-nav{ position:sticky; top:0; z-index:50; background:var(--card); border-bottom:1px solid var(--line); box-shadow:0 1px 0 rgba(20,38,59,.04); }
.nav-row{ display:flex; align-items:center; justify-content:space-between; padding:10px 28px; max-width:1180px; margin:0 auto; }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand img{ width:46px; height:46px; border-radius:50%; }
.brand-text{ line-height:1.05; }
.brand-text .wordmark{ color:var(--navy); font-size:1.3rem; font-family:'Barlow Condensed'; font-weight:700; text-transform:uppercase; letter-spacing:.02em; }
.brand-text .tagline{ color:var(--slate); font-size:.6rem; letter-spacing:.18em; }
nav.links{ display:flex; align-items:center; gap:28px; }
nav.links a{ color:var(--navy); text-decoration:none; font-size:.85rem; letter-spacing:.05em; text-transform:uppercase; font-weight:600; padding-bottom:4px; border-bottom:2px solid transparent; }
nav.links a:hover{ color:var(--orange); }
nav.links a.active{ color:var(--orange); border-color:var(--orange); }
.nav-actions{ display:flex; align-items:center; gap:16px; }
.burger{ display:none; background:none; border:none; color:var(--navy); cursor:pointer; padding:6px; }
.mobile-panel{ display:none; }
@media (max-width:900px){
  nav.links{ display:none; }
  .burger{ display:block; }
  .mobile-panel{ display:none; flex-direction:column; gap:16px; background:var(--card); padding:20px 28px 28px; border-top:1px solid var(--line); }
  .mobile-panel.open{ display:flex; }
  .mobile-panel a{ color:var(--navy); text-decoration:none; font-size:1rem; font-weight:600; }
  .mobile-panel a.active{ color:var(--orange); }
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header{ background:var(--navy); color:#fff; padding:52px 0 46px; position:relative; overflow:hidden; }
.page-header::after{
  content:""; position:absolute; right:-60px; top:-40px; width:280px; height:200%;
  background:repeating-linear-gradient(115deg, rgba(238,108,30,.16) 0 14px, transparent 14px 34px);
  transform:rotate(0deg); pointer-events:none;
}
.page-header h1{ font-size:clamp(2.2rem,5vw,3.4rem); }
.page-header p{ color:#B9C6D4; max-width:60ch; margin-top:12px; }

/* ---------- HERO (home) ---------- */
.hero{ background:var(--card); padding:56px 0 0; overflow:hidden; }
.hero .wrap{ display:grid; grid-template-columns:1fr 1.05fr; gap:40px; align-items:center; padding-bottom:56px; }
.home-hero .wrap{ max-width:1280px; grid-template-columns:.82fr 1.18fr; gap:24px; padding-right:20px; }
.hero h1{ font-size:clamp(2.6rem,5.2vw,4.2rem); color:var(--navy); margin:0 0 18px; }
.hero h1 .accent{ color:var(--orange); }
.hero p.sub{ color:var(--slate); font-size:1.1rem; max-width:48ch; margin:0 0 28px; }
.hero .cta-row{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:30px; }
.trust-chips{ display:flex; flex-wrap:wrap; gap:10px; }
.trust-chips span{
  font-family:'IBM Plex Mono',monospace; font-size:.7rem; letter-spacing:.08em;
  color:var(--navy); background:var(--blue-soft); padding:7px 13px;
  clip-path:polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.hero-figure{ position:relative; justify-self:end; max-width:640px; width:100%; }
.hero-figure .photo{
  position:relative;
  clip-path:polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 46px) 100%, 0 100%);
  box-shadow:14px 14px 0 0 var(--blue);
}
.hero-figure .photo::before{
  content:""; position:absolute; inset:0; border:4px solid var(--orange); pointer-events:none;
  clip-path:polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 46px) 100%, 0 100%);
}
.hero-figure img{ width:100%; height:auto; aspect-ratio:3/2; object-fit:cover; object-position:center; }
.hero-figure .caption{
  position:absolute; left:-16px; bottom:26px; background:var(--navy); color:#fff;
  padding:10px 16px; font-size:.8rem; font-weight:600; letter-spacing:.04em;
  clip-path:polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.hero-figure .caption .mono{ display:block; color:var(--orange); font-size:.62rem; letter-spacing:.14em; margin-bottom:2px; }
.hero-figure-large{max-width:860px;margin-right:-36px;}
@media (max-width:900px){
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-figure{ justify-self:center; max-width:100%; }
}

/* ---------- VISIT STEPS ---------- */
.steps{ background:var(--navy); color:#fff; }
.steps h2.section-title{ color:#fff; }
.steps .lede{ color:#B9C6D4; }
.steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:38px; }
.step-card{
  background:var(--navy-2); padding:24px 20px; border-top:3px solid var(--blue);
  transition:transform .18s ease, border-color .18s ease;
  clip-path:polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
}
.step-card:hover{ transform:translateY(-5px); border-top-color:var(--orange); }
.step-card .num{ font-family:'Barlow Condensed'; font-weight:700; font-size:2.4rem; color:var(--orange); line-height:1; }
.step-card h3{ font-size:1.05rem; margin:10px 0 8px; }
.step-card p{ color:#B9C6D4; font-size:.88rem; margin:0; }
@media (max-width:900px){ .steps-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .steps-grid{ grid-template-columns:1fr; } }

/* ---------- SERVICES ---------- */
.filter-chips{ display:flex; flex-wrap:wrap; gap:10px; margin:28px 0 6px; }
.chip-btn{
  font-family:'Barlow',sans-serif; font-weight:600; font-size:.78rem; letter-spacing:.05em;
  text-transform:uppercase; background:var(--card); border:1.5px solid var(--line);
  color:var(--navy); padding:9px 16px; cursor:pointer; transition:all .15s ease;
  clip-path:polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.chip-btn:hover{ border-color:var(--orange); color:var(--orange); }
.chip-btn.active{ background:var(--navy); color:#fff; border-color:var(--navy); }
.grid-services{ margin-top:28px; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.svc-card{
  background:var(--card); border:1px solid var(--line); border-top:4px solid var(--blue);
  padding:20px 18px; transition:transform .18s ease, box-shadow .18s ease, border-color .18s;
  clip-path:polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
}
.svc-card:hover{ transform:translateY(-5px); box-shadow:0 14px 26px rgba(20,38,59,.10); border-top-color:var(--orange); }
.svc-card.hidden{ display:none; }
.svc-card .code{ color:var(--orange); font-size:.66rem; letter-spacing:.12em; display:block; margin-bottom:12px; font-family:'IBM Plex Mono',monospace; }
.svc-card .icon{ color:var(--navy); margin-bottom:12px; width:26px; height:26px; }
.svc-card h3{ font-weight:600; font-size:1rem; color:var(--navy); }
.svc-card p.desc{ color:var(--slate); font-size:.85rem; margin:8px 0 0; }
@media (max-width:900px){ .grid-services{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .grid-services{ grid-template-columns:1fr; gap:12px; } .svc-card{ padding:18px 16px; } }

/* ---------- FIND US ---------- */
.find-us{ background:var(--blue-soft); }
.find-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:44px; align-items:center; }
.find-grid .photo{
  clip-path:polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
  box-shadow:12px 12px 0 0 var(--orange);
}
.find-copy h2{ color:var(--navy); }
.addr-lines{ font-family:'IBM Plex Mono',monospace; font-size:.9rem; color:var(--navy); margin:16px 0 22px; }
.addr-lines div{ padding:4px 0; }
@media (max-width:900px){ .find-grid{ grid-template-columns:1fr; } }

/* ---------- CREW STRIP (home) ---------- */
.crew-strip .portraits{ display:grid; grid-template-columns:repeat(6,1fr); gap:14px; margin-top:34px; }
.crew-strip .portraits img{
  aspect-ratio:3/4; object-fit:cover; width:100%;
  clip-path:polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  filter:saturate(.96);
  transition:transform .25s ease;
}
.crew-strip .portraits img:hover{ transform:scale(1.03); }
@media (max-width:1000px){ .crew-strip .portraits{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:700px){ .crew-strip .portraits{ grid-template-columns:repeat(2,1fr); } }

/* ---------- SUPPLIERS ---------- */
.suppliers{ background:var(--card); padding:32px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.suppliers .wrap{ display:flex; flex-direction:column; align-items:center; gap:16px; }
.suppliers .label{ font-family:'IBM Plex Mono',monospace; font-size:.66rem; letter-spacing:.16em; color:var(--slate); text-align:center; }
.suppliers .logos{ display:flex; flex-wrap:wrap; gap:28px; align-items:center; justify-content:center; }
.suppliers .logos img{ height:58px; width:auto; opacity:.92; transition:opacity .15s ease; }
.suppliers .logos picture{ display:flex; align-items:center; }
.suppliers .logos picture:first-of-type img{ height:90px; }
.suppliers .logos picture:last-of-type img{ height:68px; }
.suppliers .logos img:hover{ opacity:1; }

/* ---------- CTA BAND ---------- */
.cta-band{ background:var(--navy); color:#fff; text-align:center; position:relative; overflow:hidden; }
.cta-band::before{
  content:""; position:absolute; left:-80px; top:-40px; width:260px; height:200%;
  background:repeating-linear-gradient(115deg, rgba(61,86,166,.35) 0 14px, transparent 14px 34px);
  pointer-events:none;
}
.cta-band h2{ color:#fff; }
.cta-band .lede{ color:#B9C6D4; margin:0 auto 26px; }
.cta-band .cta-row{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ---------- FAQ ---------- */
.faq{ max-width:800px; margin-top:18px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:none; padding:20px 0; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family:'Barlow'; font-weight:600; font-size:1.02rem; color:var(--navy); }
.faq-q .plus{ font-family:'IBM Plex Mono',monospace; font-size:1.2rem; color:var(--orange); transition:transform .2s ease; flex:none; margin-left:16px; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-a-inner{ padding:0 0 20px; color:var(--slate); }
.faq-a-inner a{ color:var(--blue); font-weight:600; }

/* ---------- FEATURE ROWS ---------- */
.feature-row{ display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center; padding:38px 0; border-bottom:1px solid var(--line); }
.feature-row:last-child{ border-bottom:none; }
.feature-row.reverse .feature-media{ order:2; }
.feature-media img{ clip-path:polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%); }
.feature-text h3{ font-size:clamp(1.5rem,2.6vw,2.1rem); margin:0 0 14px; color:var(--navy); font-family:'Barlow Condensed'; font-weight:700; text-transform:uppercase; }
.feature-text p{ color:var(--slate); max-width:48ch; }
.teaser-card{
  background:var(--navy); color:#fff; padding:34px 32px; border-left:4px solid var(--orange);
  clip-path:polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}
.teaser-card .tag{ display:inline-block; background:var(--orange); color:#fff; font-family:'IBM Plex Mono',monospace; font-size:.62rem; letter-spacing:.12em; padding:4px 10px; margin-bottom:14px; }
.teaser-card h3{ font-size:clamp(1.4rem,2.4vw,2rem); margin:0 0 12px; font-family:'Barlow Condensed'; text-transform:uppercase; }
.teaser-card p{ color:#B9C6D4; max-width:52ch; }
@media (max-width:900px){ .feature-row{ grid-template-columns:1fr; gap:22px; } .feature-row.reverse .feature-media{ order:0; } }

/* ---------- HERITAGE ---------- */
.heritage{ display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center; }
.heritage .big-year{ font-family:'Barlow Condensed'; font-weight:700; font-size:clamp(3.4rem,8vw,6rem); line-height:.85; color:var(--orange); }
@media (max-width:900px){ .heritage{ grid-template-columns:1fr; } }

/* ---------- TEAM GRID (about) ---------- */
.team-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:36px; }
.team-cards figure{ margin:0; background:var(--card); border:1px solid var(--line); border-top:4px solid var(--blue); overflow:hidden;
  clip-path:polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%); }
.team-cards figure:nth-child(even){ border-top-color:var(--orange); }
.team-cards img{ aspect-ratio:3/4; object-fit:cover; width:100%; }
.team-cards figcaption{ padding:12px 14px; font-size:.95rem; color:var(--navy); text-align:center; font-weight:700; }
.team-cards figcaption strong{ color:var(--navy); display:block; font-size:.92rem; }
.team-wide{ display:grid; grid-template-columns:1.5fr 1fr; gap:16px; margin-top:16px; }
.team-wide-single{ grid-template-columns:1fr; }
.team-wide figure{ margin:0; background:var(--card); border:1px solid var(--line); overflow:hidden;
  clip-path:polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%); }
.team-wide img{ width:100%; height:100%; object-fit:cover; }
.team-wide figcaption{ padding:12px 14px; font-size:.82rem; color:var(--slate); }
@media (max-width:900px){ .team-cards{ grid-template-columns:repeat(2,1fr); } .team-wide{ grid-template-columns:1fr; } }
@media (max-width:520px){ .team-cards{ grid-template-columns:1fr; } }

/* ---------- GALLERY + LIGHTBOX ---------- */
.gallery-grid{ margin-top:32px; display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.gallery-grid button{ position:relative; padding:0; border:none; background:none; cursor:pointer; overflow:hidden; aspect-ratio:1/1;
  clip-path:polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%); }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .3s ease; }
.gallery-grid button:hover img{ transform:scale(1.06); }
.gallery-grid button::after{ content:""; position:absolute; inset:0; box-shadow:inset 0 0 0 0 var(--orange); transition:box-shadow .15s ease; }
.gallery-grid button:hover::after{ box-shadow:inset 0 0 0 3px var(--orange); }
@media (max-width:900px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); gap:8px; } }

.lightbox{ position:fixed; inset:0; background:rgba(20,38,59,.95); z-index:100; display:none; align-items:center; justify-content:center; padding:40px; }
.lightbox.open{ display:flex; }
.lightbox img{ max-width:90vw; max-height:82vh; width:auto; border:3px solid #fff; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next{ position:absolute; background:var(--orange); color:#fff; border:none; width:46px; height:46px; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.lightbox .lb-close{ top:24px; right:24px; }
.lightbox .lb-prev{ left:24px; top:50%; transform:translateY(-50%); }
.lightbox .lb-next{ right:24px; top:50%; transform:translateY(-50%); }
.lightbox .lb-count{ position:absolute; bottom:24px; left:50%; transform:translateX(-50%); color:#B9C6D4; font-family:'IBM Plex Mono',monospace; font-size:.8rem; }
@media (max-width:640px){ .lightbox{ padding:16px; } .lightbox .lb-prev, .lightbox .lb-next{ width:38px; height:38px; } }

/* ---------- CONTACT ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; margin-top:32px; align-items:start; }
.quote-form{ background:var(--card); padding:30px; border:1px solid var(--line); border-top:4px solid var(--orange);
  clip-path:polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%); }
.quote-form label{ display:block; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--slate); margin:15px 0 6px; font-weight:600; }
.quote-form label:first-child{ margin-top:0; }
.quote-form input, .quote-form textarea, .quote-form select{ width:100%; border:1.5px solid var(--line); background:#fff; padding:12px 14px; font-family:inherit; font-size:.95rem; }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus{ border-color:var(--blue); outline:none; }
.quote-form textarea{ resize:vertical; min-height:90px; }
.quote-form button{ margin-top:20px; width:100%; }
.form-msg{ margin-top:14px; font-size:.85rem; color:#2E7D32; display:none; }
.form-msg.show{ display:block; }
.contact-details{ display:flex; flex-direction:column; gap:22px; }
.detail-block h4{ margin:0 0 8px; font-size:1.02rem; color:var(--navy); }
.detail-block p, .detail-block a{ color:var(--slate); text-decoration:none; margin:0; font-size:.95rem; }
.detail-block a.stand{ color:var(--blue); font-weight:700; }
.detail-block .eyebrow{ margin-bottom:8px; }
.hours-table{ font-family:'IBM Plex Mono',monospace; font-size:.82rem; color:var(--ink); }
.hours-table div{ display:flex; justify-content:space-between; padding:5px 0; border-bottom:1px dashed var(--line); max-width:280px; }
.hours-note{ font-size:.72rem; color:var(--slate); margin-top:8px; font-style:italic; }
.map-wrap{ margin-top:40px; position:relative; padding-bottom:38%; height:0; overflow:hidden; border-top:4px solid var(--blue); }
.map-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } .map-wrap{ padding-bottom:70%; } }

/* ---------- STICKY MOBILE CALL ---------- */
.sticky-call{ display:none; }
@media (max-width:900px){
  .sticky-call{ display:flex; position:fixed; bottom:18px; right:18px; z-index:60; width:58px; height:58px; border-radius:50%;
    background:var(--orange); color:#fff; align-items:center; justify-content:center; box-shadow:0 8px 20px rgba(20,38,59,.35); text-decoration:none; }
  .sticky-call .icon{ width:26px; height:26px; }
}

/* ---------- FOOTER ---------- */
footer{ background:var(--navy); color:#8FA1B3; padding:42px 0 26px; }
footer .brand-text .wordmark{ color:#fff; }
footer .brand-text .tagline{ color:#8FA1B3; }
.footer-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
.footer-links{ display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a{ color:#C7D2DF; text-decoration:none; font-size:.85rem; font-weight:600; }
.footer-links a:hover{ color:var(--orange); }
.fine{ font-size:.72rem; margin-top:24px; border-top:1px solid var(--navy-2); padding-top:16px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .svc-card, .step-card, .gallery-grid img, .crew-strip .portraits img{ transition:none; }
}

/* ---------- MTA ASSURED BADGE ---------- */
.mta-row{ display:flex; align-items:center; gap:14px; margin-top:22px; }
.mta-row img{ height:58px; width:auto; }
.mta-row .t{ font-size:.85rem; color:var(--slate); font-weight:600; max-width:26ch; line-height:1.35; }
.mta-row .t strong{ color:var(--navy); display:block; }
footer .mta-mini{ display:flex; align-items:center; gap:10px; }
footer .mta-mini img{ height:42px; width:auto; }
footer .mta-mini span{ font-size:.72rem; color:#C7D2DF; font-weight:600; letter-spacing:.04em; }


/* ========================================================================== 
   V3 PRODUCTION ENHANCEMENTS
   ========================================================================== */
.svg-sprite{position:absolute;overflow:hidden}
.skip-link{position:fixed;left:16px;top:-100px;z-index:200;background:#fff;color:var(--navy);padding:10px 14px;font-weight:700;box-shadow:0 4px 14px rgba(0,0,0,.2)}
.skip-link:focus{top:16px}
:focus-visible{outline:3px solid var(--orange);outline-offset:3px}
.nav-book{padding:12px 22px}
.footer-brand{text-decoration:none}.footer-brand img{width:40px;height:40px;border-radius:50%}.footer-brand .wordmark{font-size:1.05rem}
.breadcrumbs{font-family:'IBM Plex Mono',monospace;font-size:.72rem;display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px;color:#C7D2DF}
.breadcrumbs a{color:#fff;text-decoration:none}.breadcrumbs a:hover{text-decoration:underline}.breadcrumbs span[aria-current]{color:var(--orange)}
.page-header-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.home-hero{padding:56px 0 64px}.section-action{margin-top:26px}.section-action .icon,.btn .icon{width:17px;height:17px}.hero .btn .icon{width:18px;height:18px}
.hero-figure picture,.hero-figure picture img,.feature-media picture,.feature-media picture img,.find-grid picture,.find-grid picture img,.crew-strip picture,.crew-strip picture img,.transparency-media picture,.transparency-media picture img,.team-cards picture,.team-cards picture img,.team-wide picture,.team-wide picture img,.service-feature-media picture,.service-feature-media picture img{display:block;width:100%;height:auto}
.transparency-section{background:var(--card)}
.transparency-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:52px;align-items:center}
.transparency-steps{display:grid;gap:14px;margin:28px 0}
.transparency-steps article{display:grid;grid-template-columns:48px 1fr;gap:16px;align-items:start;padding:16px;background:var(--paper);border-left:4px solid var(--orange)}
.transparency-steps .step-number{font-family:'Barlow Condensed',sans-serif;font-size:1.8rem;font-weight:700;color:var(--blue);line-height:1}
.transparency-steps h3{color:var(--navy);margin-bottom:4px}.transparency-steps p{color:var(--slate);margin:0}
.transparency-media,.service-feature-media{margin:0;background:var(--navy);color:#fff;box-shadow:12px 12px 0 var(--orange)}
.transparency-media figcaption,.service-feature-media figcaption{padding:14px 18px;font-size:.9rem}
a.svc-card{display:block;color:inherit;text-decoration:none}.svc-card h2{font-weight:600;font-size:1rem;color:var(--navy)}
.card-link{display:inline-block;margin-top:14px;color:var(--blue);font-weight:700;font-size:.82rem}.svc-card:hover .card-link{text-decoration:underline}
.service-directory .svc-card.hidden{display:none}.service-directory{align-items:stretch}.home-services{grid-template-columns:repeat(3,1fr)}
.trust-panel{background:var(--card)}.faq-section{background:var(--card)}
.values-section{padding-top:0}.team-section{background:var(--card);padding-top:56px}.heritage-lede{margin-top:10px}
.gallery-intro{max-width:760px}.gallery-grid button:focus-visible{outline:4px solid var(--orange);outline-offset:3px}
.lightbox[aria-hidden="true"]{display:none}.lightbox.open{display:flex}.lightbox-open{overflow:hidden}
.lightbox img{object-fit:contain}.lightbox button:focus-visible{outline-color:#fff}
.quote-form h2{font-family:'Barlow Condensed',sans-serif;text-transform:uppercase;color:var(--navy);font-size:2rem}
.form-intro,.privacy-note{color:var(--slate);font-size:.9rem}.privacy-note a{color:var(--blue);font-weight:700}
.quote-form select{appearance:auto}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}.optional{text-transform:none;font-style:italic}.honeypot{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden}.form-anchor{position:relative;top:-110px}.form-msg-error{color:#B3261E}.turnstile-widget{margin-top:16px}.detail-action{margin-top:10px!important}
.booking-assurance{background:var(--navy);color:#fff;padding:26px;border-left:4px solid var(--orange);clip-path:polygon(0 0,calc(100% - 18px) 0,100% 18px,100% 100%,0 100%)}
.booking-assurance .code{color:var(--orange);font-family:'IBM Plex Mono',monospace;font-size:.7rem;letter-spacing:.12em}.booking-assurance h2{font-family:'Barlow Condensed',sans-serif;text-transform:uppercase;font-size:1.8rem;margin:8px 0}.booking-assurance ol{margin:12px 0 0;padding-left:22px;color:#C7D2DF}.booking-assurance li+li{margin-top:8px}
.service-page-header p{max-width:68ch}.service-intro{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}.check-list{list-style:none;padding:0;margin:24px 0}.check-list li{position:relative;padding:8px 0 8px 30px;border-bottom:1px solid var(--line)}.check-list li::before{content:'✓';position:absolute;left:0;color:var(--orange);font-weight:700}
.benefits-section{background:var(--card)}.benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:32px}.benefit-grid article{background:var(--paper);padding:22px;border-top:4px solid var(--blue)}.benefit-grid article:nth-child(even){border-top-color:var(--orange)}.benefit-grid h2{font-size:1.05rem;color:var(--navy);margin:10px 0 6px}.benefit-grid p{font-size:.88rem;color:var(--slate);margin:0}.benefit-icon .icon{width:25px;height:25px;color:var(--orange)}
.digital-strip{background:var(--blue-soft);padding:36px 0}.digital-strip-grid{display:flex;align-items:center;justify-content:space-between;gap:30px}.digital-strip-grid>div{display:flex;align-items:center;gap:18px}.digital-strip h2{color:var(--navy);font-size:1.3rem}.digital-strip p{color:var(--slate);margin:4px 0 0}.large-icon{width:46px;height:46px;color:var(--blue);flex:none}
.prose{max-width:820px}.prose h2{font-family:'Barlow Condensed',sans-serif;text-transform:uppercase;color:var(--navy);font-size:1.7rem;margin:32px 0 8px}.prose h2:first-child{margin-top:0}.prose a{color:var(--blue);font-weight:700}.privacy-updated{margin-top:32px;color:var(--slate);font-size:.8rem}
.not-found{min-height:60vh;display:flex;align-items:center}.not-found h1{font-size:clamp(3rem,8vw,6.5rem);color:var(--navy);max-width:12ch}.not-found p{font-size:1.15rem;color:var(--slate)}.not-found .cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.mobile-actions{display:none}
.reveal-ready{opacity:0;transform:translateY(18px);transition:opacity .5s ease,transform .5s ease}.reveal-ready.revealed{opacity:1;transform:translateY(0)}
.faq-q[aria-expanded="true"] .plus{transform:rotate(45deg)}.faq-a[hidden]{display:none}
.suppliers .logos img{height:64px}
@media (max-width:1000px){.benefit-grid{grid-template-columns:repeat(2,1fr)}.home-services{grid-template-columns:repeat(2,1fr)}}
@media (max-width:1100px){.home-hero .wrap{grid-template-columns:1fr;gap:32px;padding-right:28px}.hero-figure-large{margin-right:0;max-width:100%}}
@media (max-width:900px){.transparency-grid,.service-intro{grid-template-columns:1fr}.digital-strip-grid{align-items:flex-start;flex-direction:column}.nav-book{display:none}body{padding-bottom:64px}.mobile-actions{position:fixed;z-index:80;left:0;right:0;bottom:0;display:grid;grid-template-columns:1fr 1fr;box-shadow:0 -6px 24px rgba(20,38,59,.18)}.mobile-actions a{padding:15px 12px;text-align:center;text-decoration:none;text-transform:uppercase;font-weight:700}.mobile-actions a:first-child{background:var(--navy);color:#fff}.mobile-actions a:last-child{background:var(--orange);color:#fff}.sticky-call{display:none!important}}
@media (max-width:600px){.form-row{grid-template-columns:1fr}.benefit-grid,.home-services{grid-template-columns:1fr}.digital-strip-grid>div{align-items:flex-start}.page-header-actions .btn{width:100%;justify-content:center}.hero .cta-row .btn{width:100%;justify-content:center}.gallery-grid{grid-template-columns:repeat(2,1fr)}.quote-form{padding:22px 18px}}
@media (prefers-reduced-motion:reduce){.reveal-ready{opacity:1;transform:none;transition:none}}

.feature-text h2{font-size:clamp(1.5rem,2.6vw,2.1rem);margin:0 0 14px;color:var(--navy);font-family:'Barlow Condensed';font-weight:700;text-transform:uppercase;}
