/* ==========================================================================
   REGION GARAGE & BASEMENT STORAGE
   Shared theme stylesheet. The responsive foundation lives HERE and only here.
   Every page inherits it. Pages must not add media queries.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root{
  /* Brand colour, sampled from the real printed brand kit */
  --copper:#BF8668;          /* decoration only. never text on cream */
  --copper-cta:#A4551F;      /* the one confident accent. 5.39:1 on white text */
  --copper-cta-hover:#8C4818;
  --charcoal:#222A30;
  --charcoal-mid:#41494C;
  --cream:#F7F2EC;
  --cream-deep:#EFE7DD;
  --wood:#D9B98F;
  --ink:#3A4248;
  --ink-muted:#5C666D;
  --line:#DED3C6;
  --line-dark:#3A4349;
  --white:#fff;
  --ok:#3F6B4A;
  --warn:#8A6A1F;
  --err:#8C2F1E;

  --radius:2px;
  --ff-display:"Archivo","Arial Narrow",Helvetica,sans-serif;
  --ff-body:"Source Sans 3",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

  --ease:cubic-bezier(.2,.7,.3,1);
  --stickybar:0px; /* becomes 60px under md via the sticky bar rule */
}

/* --------------------------------------------------------------------------
   2. RESET + GLOBAL RESPONSIVE MEDIA
   -------------------------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
html,body{overflow-x:clip;max-width:100%}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--ff-body);
  font-size:clamp(1.02rem,1.4vw,1.125rem);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  padding-bottom:var(--stickybar);
}
img,video,iframe,svg,canvas{max-width:100%;height:auto}
img,video{display:block}
a{color:var(--copper-cta);text-decoration:underline;text-underline-offset:.16em;text-decoration-thickness:1px}
a:hover{color:var(--copper-cta-hover)}
ul,ol{padding-left:1.15em}
hr{border:0;border-top:1px solid var(--line);margin:2.5rem 0}
::selection{background:var(--copper);color:var(--charcoal)}

/* --------------------------------------------------------------------------
   3. TYPE (fluid. zero media queries for font size)
   -------------------------------------------------------------------------- */
h1,h2,h3,h4{font-family:var(--ff-display);color:var(--charcoal);margin:0 0 .6em;text-wrap:balance}
h1{font-size:clamp(2rem,5vw,3.4rem);font-weight:800;line-height:1.04;letter-spacing:-.02em}
h2{font-size:clamp(1.65rem,4vw,2.6rem);font-weight:700;line-height:1.12;letter-spacing:-.015em}
h3{font-size:clamp(1.2rem,2.4vw,1.5rem);font-weight:700;line-height:1.2}
h4{font-size:1.05rem;font-weight:700;line-height:1.3}
p{margin:0 0 1.15em}
p:last-child{margin-bottom:0}
.lead{font-size:clamp(1.14rem,2vw,1.35rem);line-height:1.55;color:var(--ink)}
.meta,small{font-size:.9rem;color:var(--ink-muted)}
.prose{max-width:68ch}
.prose h2{margin-top:2.2em}
.prose h3{margin-top:1.8em}
.prose>*:first-child{margin-top:0}

/* The eyebrow: the stud-line label */
.eyebrow{
  display:flex;align-items:center;gap:.6rem;
  font-family:var(--ff-display);font-size:.78rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.16em;color:var(--copper-cta);
  margin:0 0 .9rem;
}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--copper);flex:none}
.on-dark .eyebrow,.sec--dark .eyebrow{color:var(--copper)}
.eyebrow--center{justify-content:center}

/* --------------------------------------------------------------------------
   4. THE RESPONSIVE FOUNDATION
   Breakpoints: 640 / 768 / 1024 / 1280. Mobile first. Nothing else exists.
   -------------------------------------------------------------------------- */
.container{width:100%;max-width:1200px;margin-inline:auto;padding-inline:clamp(16px,5vw,48px)}
.container--narrow{max-width:760px}
.container--wide{max-width:1400px}

.grid{display:grid;gap:clamp(20px,3vw,36px);grid-template-columns:1fr}
@media (min-width:640px){ .grid-2,.grid-4{grid-template-columns:repeat(2,1fr)} }
@media (min-width:768px){ .grid-2{grid-template-columns:repeat(2,1fr)} }
@media (min-width:1024px){
  .grid-3{grid-template-columns:repeat(3,1fr)}
  .grid-4{grid-template-columns:repeat(4,1fr)}
}
.split{display:grid;gap:clamp(24px,4vw,56px);grid-template-columns:1fr}
@media (min-width:1024px){
  .split{grid-template-columns:1fr 1fr;align-items:center}
  .split--wide-left{grid-template-columns:1.25fr 1fr}
  .split--wide-right{grid-template-columns:1fr 1.25fr}
  .split--top{align-items:start}
}

.section{padding-block:clamp(56px,9vw,112px)}
.section--tight{padding-block:clamp(36px,6vw,64px)}
.sec--cream{background:var(--cream)}
.sec--deep{background:var(--cream-deep)}
.sec--dark{background:var(--charcoal);color:#D9DDE0}
.sec--dark h1,.sec--dark h2,.sec--dark h3,.sec--dark h4{color:#fff}
.sec--dark a{color:var(--copper)}
.sec--dark .lead{color:#C6CCD1}
.sec--dark .meta{color:#96A0A7}

.stack>*+*{margin-top:1.15rem}
.center{text-align:center}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* The stud line: 16in on centre rhythm, the site's only ornament */
.studline{height:26px;display:flex;gap:22px;align-items:stretch;overflow:hidden;opacity:.5}
.studline span{width:2px;background:var(--copper);flex:none}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  min-height:48px;padding:.95rem 1.6rem;
  font-family:var(--ff-display);font-size:1.02rem;font-weight:700;letter-spacing:.01em;
  border:2px solid transparent;border-radius:var(--radius);
  text-decoration:none;cursor:pointer;text-align:center;
  transition:background-color .16s var(--ease),color .16s var(--ease),border-color .16s var(--ease);
}
.btn--primary{background:var(--copper-cta);color:#fff;border-color:var(--copper-cta)}
.btn--primary:hover{background:var(--copper-cta-hover);border-color:var(--copper-cta-hover);color:#fff}
.btn--ghost{background:transparent;color:var(--charcoal);border-color:var(--charcoal)}
.btn--ghost:hover{background:var(--charcoal);color:#fff}
.sec--dark .btn--ghost,.on-dark .btn--ghost{color:#fff;border-color:rgba(255,255,255,.55)}
.sec--dark .btn--ghost:hover,.on-dark .btn--ghost:hover{background:#fff;color:var(--charcoal);border-color:#fff}
.btn--block{width:100%}
.btn-row{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.6rem}
.btn-row--center{justify-content:center}
.btn .icon-ui{flex:none}

/* --------------------------------------------------------------------------
   6. ICONS (hard size limits, per STYLE-GUIDE section 4)
   -------------------------------------------------------------------------- */
.icon-hero{width:120px;height:120px;max-width:120px;max-height:120px}
@media (min-width:1024px){ .icon-hero{width:200px;height:200px;max-width:200px;max-height:200px} }
.icon-section{width:40px;height:40px;max-width:48px;max-height:48px}
.icon-card{width:52px;height:52px;max-width:80px;max-height:80px}
.icon-inline{width:24px;height:24px;max-width:24px;max-height:24px;flex:none}
.icon-ui{width:18px;height:18px;max-width:20px;max-height:20px;flex:none}
.icon-brand{width:48px;height:48px;max-width:64px;max-height:64px;flex:none}
svg[class^="icon-"],svg[class*=" icon-"]{stroke:currentColor;fill:none;stroke-width:1.75;stroke-linecap:square;stroke-linejoin:miter;color:var(--copper)}

/* --------------------------------------------------------------------------
   7. HEADER + NAV
   -------------------------------------------------------------------------- */
.site-header{background:var(--charcoal);position:sticky;top:0;z-index:60;border-bottom:3px solid var(--copper)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:68px;padding-block:.6rem}
.brand{display:flex;align-items:center;gap:.7rem;text-decoration:none;flex:none}
.brand img{width:46px;height:46px;object-fit:contain}
.brand-text{display:flex;flex-direction:column;line-height:1.05}
.brand-name{font-family:var(--ff-display);font-weight:800;font-size:.94rem;letter-spacing:.01em;color:#fff;text-transform:uppercase}
.brand-sub{font-size:.66rem;letter-spacing:.13em;text-transform:uppercase;color:var(--copper);font-weight:600}
@media (min-width:400px){ .brand-name{font-size:1.05rem} }

.nav-toggle{display:inline-flex;align-items:center;gap:.45rem;min-height:44px;padding:.4rem .7rem;background:transparent;border:1px solid rgba(255,255,255,.3);border-radius:var(--radius);color:#fff;font-family:var(--ff-display);font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.08em;cursor:pointer}
.nav-toggle:hover{border-color:var(--copper)}
.main-nav{display:none}
.main-nav.is-open{display:block;position:absolute;left:0;right:0;top:100%;background:var(--charcoal);border-top:1px solid var(--line-dark);padding:.5rem clamp(16px,5vw,48px) 1.4rem;max-height:calc(100vh - 68px);overflow-y:auto}
.main-nav ul{list-style:none;margin:0;padding:0}
.main-nav li{border-bottom:1px solid var(--line-dark)}
.main-nav a{display:block;padding:.85rem 0;min-height:48px;color:#E4E7EA;text-decoration:none;font-family:var(--ff-display);font-weight:600;font-size:1rem}
.main-nav a:hover,.main-nav .current-menu-item>a{color:var(--copper)}
.main-nav .sub-menu{padding-left:.9rem}
.main-nav .sub-menu a{font-weight:400;font-family:var(--ff-body);font-size:.95rem;color:#AEB6BC}
.header-cta{display:none}
@media (min-width:1024px){
  .nav-toggle{display:none}
  .main-nav{display:block;flex:1;min-width:0}
  .main-nav>ul{display:flex;justify-content:flex-end;gap:1.3rem;align-items:center}
  .main-nav li{border:0;position:relative}
  .main-nav>ul>li>a{padding:.5rem 0;font-size:.92rem}
  .main-nav .sub-menu{display:none;position:absolute;top:100%;left:-.9rem;min-width:250px;background:var(--charcoal);border:1px solid var(--line-dark);border-top:2px solid var(--copper);padding:.4rem .9rem;z-index:70}
  .main-nav li:hover>.sub-menu,.main-nav li:focus-within>.sub-menu{display:block}
  .main-nav .sub-menu a{padding:.55rem 0;font-size:.9rem}
  .header-cta{display:inline-flex;flex:none}
  .header-cta .btn{padding:.7rem 1.1rem;min-height:44px;font-size:.9rem}
}

/* --------------------------------------------------------------------------
   8. STICKY MOBILE BAR
   -------------------------------------------------------------------------- */
.stickybar{
  position:fixed;left:0;right:0;bottom:0;z-index:80;display:flex;
  border-top:2px solid var(--copper);
  padding-bottom:env(safe-area-inset-bottom);
}
.stickybar a{
  flex:1 1 50%;display:flex;align-items:center;justify-content:center;gap:.45rem;
  min-height:60px;padding:.5rem .6rem;text-decoration:none;text-align:center;
  font-family:var(--ff-display);font-weight:700;font-size:.92rem;line-height:1.15;
}
.stickybar .sb-book{background:var(--copper-cta);color:#fff}
.stickybar .sb-call{background:var(--charcoal);color:#fff}
@media (min-width:768px){ .stickybar{display:none} }
@media (max-width:767px){ body{--stickybar:60px} }

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.hero{background:var(--charcoal);color:#D9DDE0;padding-block:clamp(32px,4.5vw,58px) clamp(36px,6vw,64px);position:relative}
.hero h1{color:#fff}
.hero .lead{color:#C6CCD1;max-width:56ch}
.hero-grid{display:grid;gap:clamp(28px,4vw,48px);grid-template-columns:1fr;align-items:center}
@media (min-width:1024px){ .hero-grid{grid-template-columns:1fr 1.08fr} }
.hero-points{list-style:none;padding:0;margin:1.4rem 0 0;display:grid;gap:.6rem}
.hero-points li{display:flex;gap:.6rem;align-items:flex-start;font-size:1rem;color:#C6CCD1}
.hero-points svg{color:var(--copper);margin-top:.18rem}

/* --------------------------------------------------------------------------
   10. BEFORE / AFTER SLIDER (the signature component)
   -------------------------------------------------------------------------- */
.ba{position:relative;width:100%;aspect-ratio:4/3;overflow:hidden;border:3px solid var(--copper);background:var(--charcoal-mid);user-select:none;touch-action:pan-y}
.ba img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.ba-after{clip-path:inset(0 0 0 var(--pos,50%))}
.ba-tag{position:absolute;top:12px;z-index:3;background:rgba(34,42,48,.86);color:#fff;font-family:var(--ff-display);font-weight:700;font-size:.72rem;text-transform:uppercase;letter-spacing:.14em;padding:.35rem .6rem}
.ba-tag--b{left:12px}
.ba-tag--a{right:12px}
.ba-handle{position:absolute;top:0;bottom:0;left:var(--pos,50%);width:4px;background:var(--copper);z-index:4;transform:translateX(-2px);cursor:ew-resize}
.ba-knob{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:46px;height:46px;border-radius:50%;background:var(--copper);border:3px solid #fff;display:flex;align-items:center;justify-content:center;color:var(--charcoal)}
.ba-knob svg{width:22px;height:22px;stroke:var(--charcoal);stroke-width:2.4}
.ba-range{position:absolute;inset:0;z-index:5;opacity:0;width:100%;height:100%;cursor:ew-resize;margin:0}
.ba-range:focus-visible+.ba-handle{outline:3px solid #fff;outline-offset:2px}
.ba-caption{margin-top:.7rem;font-size:.88rem;color:var(--ink-muted)}
.sec--dark .ba-caption,.hero .ba-caption{color:#96A0A7}
/* No-JS / no-support fallback: two stacked labelled images */
.ba-fallback{display:grid;gap:.8rem;grid-template-columns:1fr}
@media (min-width:640px){ .ba-fallback{grid-template-columns:1fr 1fr} }
.ba-fallback figure{margin:0}
.ba-fallback figcaption{font-family:var(--ff-display);font-weight:700;font-size:.74rem;text-transform:uppercase;letter-spacing:.14em;color:var(--copper);padding-top:.4rem}

/* --------------------------------------------------------------------------
   11. TRUST ROW (verified facts only. no ratings, no badges we cannot back up)
   -------------------------------------------------------------------------- */
.trustrow{display:grid;gap:.85rem 1.6rem;grid-template-columns:1fr;margin-top:1.8rem;padding-top:1.4rem;border-top:1px solid var(--line-dark)}
@media (min-width:640px){ .trustrow{grid-template-columns:1fr 1fr} }
.hero .trustrow{border-color:var(--line-dark)}
.sec--cream .trustrow,.sec--deep .trustrow{border-color:var(--line)}
.trustrow div{display:flex;gap:.55rem;align-items:flex-start;font-size:.93rem;line-height:1.4}
.trustrow svg{color:var(--copper);margin-top:.1rem}

/* --------------------------------------------------------------------------
   12. CARDS
   -------------------------------------------------------------------------- */
.card{background:var(--cream-deep);border:1px solid var(--line);border-radius:var(--radius);padding:clamp(20px,3vw,30px);border-top:3px solid transparent;transition:border-top-color .16s var(--ease);display:flex;flex-direction:column}
.card:hover{border-top-color:var(--copper)}
.sec--deep .card{background:var(--cream)}
.sec--dark .card{background:#2A3238;border-color:var(--line-dark)}
.card h3{margin-bottom:.5rem}
.card p{color:var(--ink-muted);font-size:.98rem}
.sec--dark .card p{color:#AEB6BC}
.card .icon-card{margin-bottom:1rem}
.card-link{margin-top:auto;padding-top:1rem;font-family:var(--ff-display);font-weight:700;font-size:.92rem;text-decoration:none;display:inline-flex;align-items:center;gap:.4rem}
.card-link:hover{text-decoration:underline}
.card--photo{padding:0;overflow:hidden}
.card--photo img{aspect-ratio:3/2;object-fit:cover;width:100%}
.card--photo .card-body{padding:clamp(20px,3vw,28px);display:flex;flex-direction:column;flex:1}

/* --------------------------------------------------------------------------
   13. THE 3 STEP STRIP
   -------------------------------------------------------------------------- */
.steps{display:grid;gap:clamp(22px,3vw,32px);grid-template-columns:1fr;counter-reset:s;margin-top:2rem}
@media (min-width:768px){ .steps{grid-template-columns:repeat(3,1fr)} }
.step{position:relative;padding-top:1.1rem;border-top:2px solid var(--line)}
.sec--dark .step{border-top-color:var(--line-dark)}
.step-n{font-family:var(--ff-display);font-weight:800;font-size:2.5rem;line-height:1;color:var(--copper);display:block;margin-bottom:.4rem}
.step h3{font-size:1.15rem;margin-bottom:.35rem}
.step p{font-size:.98rem;color:var(--ink-muted);margin:0}
.sec--dark .step p{color:#AEB6BC}

/* --------------------------------------------------------------------------
   14. THE REGION BUILD (6 step system + video)
   -------------------------------------------------------------------------- */
.buildgrid{display:grid;gap:clamp(20px,3vw,28px);grid-template-columns:1fr;margin-top:2rem;counter-reset:b}
@media (min-width:640px){ .buildgrid{grid-template-columns:1fr 1fr} }
@media (min-width:1024px){ .buildgrid{grid-template-columns:repeat(3,1fr)} }
.buildstep{display:flex;gap:.9rem;align-items:flex-start}
.buildstep b{font-family:var(--ff-display);font-size:1.05rem;color:var(--copper);flex:none;width:1.9rem;padding-top:.05rem}
.buildstep h3{font-size:1.02rem;margin-bottom:.25rem}
.buildstep p{font-size:.94rem;margin:0;color:var(--ink-muted)}
.sec--dark .buildstep p{color:#AEB6BC}
.videowrap{position:relative;border:3px solid var(--copper);background:var(--charcoal)}
.videowrap video{width:100%;display:block;aspect-ratio:16/9;object-fit:cover;background:var(--charcoal)}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq{margin-top:1.8rem;max-width:820px}
.faq details{border-bottom:1px solid var(--line);padding:0}
.sec--dark .faq details{border-bottom-color:var(--line-dark)}
.faq summary{
  list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;
  padding:1.05rem 0;min-height:48px;
  font-family:var(--ff-display);font-weight:700;font-size:1.04rem;color:var(--charcoal);
}
.sec--dark .faq summary{color:#fff}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"";flex:none;width:14px;height:14px;margin-top:.42rem;border-right:2px solid var(--copper);border-bottom:2px solid var(--copper);transform:rotate(45deg);transition:transform .18s var(--ease)}
.faq details[open] summary::after{transform:rotate(-135deg)}
.faq .faq-a{padding:0 0 1.2rem;color:var(--ink-muted);max-width:68ch}
.sec--dark .faq .faq-a{color:#AEB6BC}
.faq .faq-a p:last-child{margin-bottom:0}

/* --------------------------------------------------------------------------
   16. QUOTE (the single real Google review. used once, site wide)
   -------------------------------------------------------------------------- */
.quote{border-left:4px solid var(--copper);padding:.4rem 0 .4rem 1.3rem;max-width:60ch}
.quote p{font-family:var(--ff-display);font-weight:600;font-size:clamp(1.15rem,2.4vw,1.45rem);line-height:1.35;color:var(--charcoal);margin-bottom:.6rem}
.sec--dark .quote p{color:#fff}
.quote cite{font-style:normal;font-size:.88rem;color:var(--ink-muted)}
.sec--dark .quote cite{color:#96A0A7}

/* --------------------------------------------------------------------------
   17. SERVICE AREAS
   -------------------------------------------------------------------------- */
.arealist{list-style:none;padding:0;margin:1.6rem 0 0;display:grid;gap:.55rem;grid-template-columns:1fr 1fr}
@media (min-width:640px){ .arealist{grid-template-columns:repeat(3,1fr)} }
@media (min-width:1024px){ .arealist{grid-template-columns:repeat(5,1fr)} }
.arealist a{display:flex;align-items:center;min-height:48px;padding:.5rem .8rem;background:var(--cream-deep);border:1px solid var(--line);border-radius:var(--radius);text-decoration:none;color:var(--charcoal);font-family:var(--ff-display);font-weight:600;font-size:.95rem}
.arealist a:hover{border-color:var(--copper);color:var(--copper-cta)}
.sec--dark .arealist a{background:#2A3238;border-color:var(--line-dark);color:#E4E7EA}
.sec--dark .arealist a:hover{border-color:var(--copper);color:var(--copper)}

/* --------------------------------------------------------------------------
   18. FORM
   -------------------------------------------------------------------------- */
.bookform{background:var(--cream);border:1px solid var(--line);border-top:4px solid var(--copper-cta);border-radius:var(--radius);padding:clamp(22px,4vw,36px)}
.sec--dark .bookform,.sec--deep .bookform{background:var(--cream)}
.bookform h3{margin-bottom:.3rem}
.bookform .form-sub{color:var(--ink-muted);font-size:.96rem;margin-bottom:1.5rem}
.field{margin-bottom:1.05rem}
.field label{display:block;font-family:var(--ff-display);font-weight:700;font-size:.86rem;color:var(--charcoal);margin-bottom:.35rem}
.field .opt{font-weight:400;font-family:var(--ff-body);color:var(--ink-muted);font-size:.82rem}
.field input,.field select,.field textarea{
  width:100%;min-height:48px;padding:.7rem .85rem;font-size:16px;font-family:var(--ff-body);color:var(--ink);
  background:var(--cream-deep);border:1px solid var(--line);border-radius:var(--radius);
}
.field textarea{min-height:90px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{outline:2px solid var(--copper-cta);outline-offset:2px;border-color:var(--copper-cta)}
.field-2{display:grid;gap:0 1rem;grid-template-columns:1fr}
@media (min-width:640px){ .field-2{grid-template-columns:1fr 1fr} }
.radio-row{display:flex;gap:.6rem;flex-wrap:wrap}
.radio-row label{display:flex;align-items:center;gap:.45rem;min-height:48px;padding:.5rem .95rem;background:var(--cream-deep);border:1px solid var(--line);border-radius:var(--radius);cursor:pointer;font-family:var(--ff-body);font-weight:400;font-size:.98rem;margin:0}
.radio-row input{width:auto;min-height:0;margin:0}
.radio-row label:has(input:checked){border-color:var(--copper-cta);background:var(--cream);box-shadow:inset 0 0 0 1px var(--copper-cta)}
.form-note{font-size:.86rem;color:var(--ink-muted);margin-top:.9rem}
.form-msg{padding:.9rem 1rem;border-radius:var(--radius);margin-bottom:1.2rem;font-size:.96rem}
.form-msg--ok{background:#E8F0E9;border:1px solid var(--ok);color:#26452E}
.form-msg--err{background:#F6E7E4;border:1px solid var(--err);color:#6E2416}
.hp-field{position:absolute;left:-9999px}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer{background:var(--charcoal);color:#AEB6BC;padding-block:clamp(40px,6vw,64px) 1.6rem;border-top:3px solid var(--copper);font-size:.95rem}
.site-footer h4{color:#fff;font-size:.86rem;text-transform:uppercase;letter-spacing:.13em;margin-bottom:.9rem}
.site-footer a{color:#D9DDE0;text-decoration:none}
.site-footer a:hover{color:var(--copper)}
.footer-grid{display:grid;gap:clamp(26px,4vw,40px);grid-template-columns:1fr}
@media (min-width:640px){ .footer-grid{grid-template-columns:1fr 1fr} }
@media (min-width:1024px){ .footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr} }
.site-footer ul{list-style:none;padding:0;margin:0;display:grid;gap:.5rem}
.footer-brand .brand{margin-bottom:1rem}
.footer-bottom{margin-top:2.4rem;padding-top:1.4rem;border-top:1px solid var(--line-dark);display:flex;flex-wrap:wrap;gap:.6rem 1.4rem;justify-content:space-between;font-size:.85rem;color:#8D969C}
.footer-contact{display:grid;gap:.55rem}
.footer-contact a{display:flex;gap:.5rem;align-items:center;min-height:32px}
.footer-contact svg{color:var(--copper)}

/* --------------------------------------------------------------------------
   20. BREADCRUMBS + PAGE HEAD
   -------------------------------------------------------------------------- */
.crumbs{font-size:.85rem;color:#96A0A7;padding-top:1.1rem}
.crumbs a{color:#C6CCD1;text-decoration:none}
.crumbs a:hover{color:var(--copper)}
.crumbs span{padding:0 .4rem;color:#5F6A71}
.pagehead{background:var(--charcoal);color:#C6CCD1;padding-block:clamp(28px,4vw,44px) clamp(36px,5vw,56px)}
.pagehead h1{color:#fff;margin-bottom:.5rem}
.pagehead .lead{color:#C6CCD1;max-width:62ch}

/* --------------------------------------------------------------------------
   21. MOTION (opt out honoured)
   -------------------------------------------------------------------------- */
.reveal{opacity:0;transform:translateY(12px)}
.reveal.is-in{opacity:1;transform:none;transition:opacity .42s var(--ease),transform .42s var(--ease)}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
  .reveal{opacity:1!important;transform:none!important}
}
.no-js .reveal{opacity:1;transform:none}

/* --------------------------------------------------------------------------
   22. ACCESSIBILITY
   -------------------------------------------------------------------------- */
.skip-link{position:absolute;left:-9999px;top:0;z-index:200;background:var(--copper-cta);color:#fff;padding:.8rem 1.2rem;font-family:var(--ff-display);font-weight:700}
.skip-link:focus{left:0}
:focus-visible{outline:3px solid var(--copper-cta);outline-offset:2px}
.sec--dark :focus-visible,.site-header :focus-visible,.hero :focus-visible{outline-color:var(--copper)}

/* --------------------------------------------------------------------------
   23. GUTENBERG CORE BLOCK HARMONY
   -------------------------------------------------------------------------- */
.wp-block-image{margin:1.8rem 0}
.wp-block-image img{border-radius:var(--radius)}
.wp-block-image figcaption{font-size:.86rem;color:var(--ink-muted);margin-top:.5rem}
.wp-block-list li+li{margin-top:.4rem}
.wp-block-table table{width:100%;border-collapse:collapse;font-size:.96rem}
.wp-block-table th,.wp-block-table td{border:1px solid var(--line);padding:.7rem .85rem;text-align:left}
.wp-block-table th{background:var(--cream-deep);font-family:var(--ff-display);font-weight:700}
.wp-block-table{overflow-x:auto}
.wp-block-quote{border-left:4px solid var(--copper);padding-left:1.2rem;margin:1.8rem 0;font-style:normal}
.wp-block-separator{border-top:1px solid var(--line);border-bottom:0;margin:2.5rem 0}

/* --------------------------------------------------------------------------
   24. ENTRY CONTENT CONSTRAINED LAYOUT
   Core blocks (prose) sit in a readable column automatically. Our own section
   blocks break out full bleed. This is what lets a page be authored as plain
   blocks with zero layout markup.
   -------------------------------------------------------------------------- */
.entry-content{
  display:grid;
  grid-template-columns:1fr min(720px, calc(100% - 2 * clamp(16px,5vw,48px))) 1fr;
  padding-block:clamp(40px,6vw,72px);
  row-gap:0;
}
.entry-content>*{grid-column:2;margin-block:0 1.15em;max-width:100%}
.entry-content>h2{margin-top:2em}
.entry-content>h3{margin-top:1.6em}
.entry-content>*:first-child{margin-top:0}
.entry-content>.rgs-section,
.entry-content>.alignfull,
.entry-content>.wp-block-separator{grid-column:1 / -1;margin-block:0}
.entry-content>.alignwide{grid-column:1 / -1;max-width:1200px;margin-inline:auto;padding-inline:clamp(16px,5vw,48px)}
/* A section block immediately after prose needs its own top rule of air */
.entry-content>.rgs-section+.rgs-section{margin-top:0}
.entry-content:has(>.rgs-section:first-child){padding-top:0}
.entry-content:has(>.rgs-section:last-child){padding-bottom:0}
.entry-content>ul,.entry-content>ol{margin-bottom:1.4em}
.sec-head{max-width:68ch}
.sec-head.center{max-width:none;margin-inline:auto}
.sec-head.center .lead{max-width:62ch;margin-inline:auto}
.sec-head+.btn-row{margin-top:1.2rem}

/* --------------------------------------------------------------------------
   25. TAP TARGET GUARANTEES
   Verified by the 320 / 768 / 1440 QA gate. Nothing interactive drops below 44px.
   -------------------------------------------------------------------------- */
.card--linked{position:relative}
.card-link{min-height:44px;align-items:center}
/* The card link covers the whole card, so the card is one big tap target and
   there is still exactly one link in the accessibility tree. */
.card--linked .card-link::after{content:"";position:absolute;inset:0}
.card--linked:hover .card-link{text-decoration:underline}
.footer-contact a{min-height:44px}
.site-footer ul a{display:inline-flex;align-items:center;min-height:44px}
.footer-bottom span{min-height:auto}
.arealist a{min-height:48px}

/* --------------------------------------------------------------------------
   26. HERO ORDERING
   Phone: headline, then the proof photo, then the buttons. The before and after
   is the strongest thing on this site, so it must not sit below the fold twice.
   Large screen: the photo sits beside the whole left column.
   -------------------------------------------------------------------------- */
.hero-grid{grid-template-columns:1fr;align-items:start}
.hero-lede{order:1}
.hero-media{order:2}
.hero-actions{order:3}
.hero-points{order:4}
.hero-trust{order:5}
.hero-lede .lead{margin-bottom:0}
.btn-row--hero{margin-top:0}
.hero-points{margin-top:0}
.hero-trust .trustrow{margin-top:0}
@media (min-width:1024px){
  /* Rows are spaced with margins, not grid gap, so the primary button stays
     above the fold on a 900px tall laptop screen. */
  .hero-grid{grid-template-columns:1fr 1.08fr;column-gap:clamp(32px,4vw,56px);row-gap:0}
  .hero-lede{grid-column:1;grid-row:1;order:0}
  .hero-points{grid-column:1;grid-row:2;order:0;margin-top:1.4rem}
  .hero-actions{grid-column:1;grid-row:3;order:0;margin-top:1.6rem}
  .hero-trust{grid-column:1;grid-row:4;order:0}
  .hero-media{grid-column:2;grid-row:1 / 5;order:0;align-self:center}
}

/* --------------------------------------------------------------------------
   27. LIGHT PANELS ON DARK SECTIONS
   The booking form is a cream panel that often sits inside a charcoal section.
   Without this reset it inherits the dark section colours and the heading goes
   white on cream, and links go brand copper on cream (2.76:1, fails AA).
   -------------------------------------------------------------------------- */
.sec--dark .bookform,
.hero .bookform{color:var(--ink)}
.sec--dark .bookform h2,.sec--dark .bookform h3,.sec--dark .bookform h4,
.hero .bookform h2,.hero .bookform h3,.hero .bookform h4{color:var(--charcoal)}
.sec--dark .bookform label,.hero .bookform label{color:var(--charcoal)}
.sec--dark .bookform a,.hero .bookform a{color:var(--copper-cta)}
.sec--dark .bookform a:hover,.hero .bookform a:hover{color:var(--copper-cta-hover)}
.sec--dark .bookform .form-sub,.sec--dark .bookform .form-note,
.hero .bookform .form-sub,.hero .bookform .form-note{color:var(--ink-muted)}
.sec--dark .bookform svg,.hero .bookform svg{color:var(--copper-cta)}
.sec--dark .bookform :focus-visible,.hero .bookform :focus-visible{outline-color:var(--copper-cta)}
.crumbs a{display:inline-flex;align-items:center;min-height:44px}
.crumbs>.container{display:flex;flex-wrap:wrap;align-items:center}
.crumbs span{display:inline-flex;align-items:center;min-height:44px}

/* --------------------------------------------------------------------------
   28. DARK CONTEXT, COMPLETED
   .sec--dark and .on-dark must behave identically. The page head is a charcoal
   surface that was not registered as a dark context, so the secondary button
   rendered charcoal on charcoal and disappeared.
   -------------------------------------------------------------------------- */
.on-dark{color:#D9DDE0}
.on-dark h1,.on-dark h2,.on-dark h3,.on-dark h4{color:#fff}
.on-dark .lead{color:#C6CCD1}
.on-dark .meta{color:#96A0A7}
.on-dark .eyebrow{color:var(--copper)}
.on-dark a:not(.btn){color:var(--copper)}
.on-dark .trustrow{border-color:var(--line-dark)}
.on-dark .step{border-top-color:var(--line-dark)}
.on-dark .step p,.on-dark .card p,.on-dark .buildstep p{color:#AEB6BC}

/* Breadcrumbs are a charcoal strip that continues the header, so their light
   text has the dark ground it was designed for. */
.crumbs{background:var(--charcoal);padding-top:0}
.crumbs+.pagehead{padding-top:clamp(8px,1.5vw,16px)}
