
  :root{
    --ink:#111114;
    --ink-2:#1b1b1f;
    --paper:#f6f4f0;
    --paper-2:#eeece6;
    --red:#e2241a;
    --red-deep:#a3160e;
    --white:#ffffff;
    --steel:#6c6c74;
    --steel-light:#a7a7ae;
    --focus: #ffb703;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    background:var(--paper);
    color:var(--ink);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4,.disp{
    font-family:'Barlow Condensed', sans-serif;
    text-transform:uppercase;
    letter-spacing:0.01em;
    line-height:0.98;
  }
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  img{max-width:100%; display:block;}
  button{font-family:inherit; cursor:pointer;}
  .container{max-width:1200px; margin:0 auto; padding:0 24px;}
  :focus-visible{outline:3px solid var(--focus); outline-offset:2px;}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
  }

  /* ---------- Peak divider signature ---------- */
  .peak-divider{
    width:100%; height:46px;
    background:var(--ink);
    clip-path:polygon(0% 100%, 0% 40%, 8% 0%, 16% 40%, 24% 10%, 32% 40%, 40% 0%, 48% 40%, 56% 8%, 64% 40%, 72% 0%, 80% 40%, 88% 6%, 96% 40%, 100% 15%, 100% 100%);
  }
  .peak-divider.flip{
    transform:rotate(180deg);
  }
  .peak-divider.on-paper{ background:var(--paper); }
  .peak-divider.on-red{ background:var(--red); }
  .peak-divider.to-ink{ background:var(--ink); }

  .brand{
    display:flex; align-items:center; gap:12px;
    color:var(--white);
  }
  .brand-mark{
    height:20px; width:auto;
    display:flex; align-items:center;
  }
  .brand-mark img{height:100%; width:auto; display:block;}
  .brand-text{
    display:flex; flex-direction:column; line-height:1;
    align-items:flex-start;
  }
  .brand-text .name{
    font-family:'Archivo Black', sans-serif;
    font-weight:400; font-size:22px; letter-spacing:0.01em;
    text-transform:uppercase;
    transform:skewX(-8deg);
    display:inline-block;
  }
  .brand-logo-img{
    height:56px; width:auto; display:block;
    align-self:flex-start;
    object-fit:contain;
    flex-shrink:0;
  }
  .brand-text .sub{
    font-size:10.5px; letter-spacing:0.14em; color:var(--red);
    text-transform:uppercase; font-weight:600; margin-top:4px;
  }
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    padding:13px 26px;
    font-weight:700; font-size:14px; letter-spacing:0.02em;
    text-transform:uppercase;
    border-radius:3px;
    border:2px solid transparent;
    transition:transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    white-space:nowrap;
    font-family:inherit; cursor:pointer;
  }
  .btn-red{background:var(--red); color:var(--white);}
  .btn-red:hover{background:var(--red-deep); transform:translateY(-1px);}
  .btn-outline{border-color:rgba(255,255,255,0.35); color:var(--white); background:transparent;}
  .btn-outline:hover{border-color:var(--white);}
  .btn-outline-ink{border-color:rgba(17,17,20,0.3); color:var(--ink); background:transparent;}
  .btn-outline-ink:hover{border-color:var(--ink);}
  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    background:var(--ink);
    overflow:hidden;
    padding:76px 0 0 0;
  }
  .hero-slideshow{ position:absolute; inset:0; z-index:0; }
  .hero-slide{
    position:absolute; inset:0; opacity:0;
    transition:opacity 1.2s ease;
  }
  .hero-slide.active{ opacity:1; }
  .hero-slide img{ width:100%; height:100%; object-fit:cover; object-position:center 15%; display:block; }
  /* Desktop-only hero background video: JS injects .hero-video at >=992px and adds .has-video to .hero */
  .hero-video{
    position:absolute; inset:0; width:100%; height:100%;
    object-fit:cover; object-position:center 15%;
    display:block; pointer-events:none;
  }
  .hero.has-video .hero-slide,
  .hero.has-video .hero-slide.active{ opacity:0; }
  .hero.has-video .hero-dots{ display:none; }
  @media (max-width:991px){ .hero-video{ display:none; } }
  .hero-scrim{
    position:absolute; inset:0; z-index:1;
    background:linear-gradient(100deg, rgba(14,14,16,0.94) 0%, rgba(14,14,16,0.82) 38%, rgba(14,14,16,0.4) 68%, rgba(14,14,16,0.18) 100%);
  }
  .hero-dots{
    position:absolute; left:50%; bottom:24px; transform:translateX(-50%); z-index:3;
    display:flex; gap:8px;
  }
  .hero-dots button{
    width:8px; height:8px; border-radius:50%; border:none; padding:0; cursor:pointer;
    background:rgba(255,255,255,0.4); transition:all 0.25s ease;
  }
  .hero-dots button.active{ background:var(--white); width:22px; border-radius:5px; }
  .hero-inner{
    position:relative; z-index:2;
    display:grid; grid-template-columns:1fr; gap:40px;
    align-items:center;
    padding:64px 0 88px 0;
  }
  .hero-eyebrow{
    color:var(--white); font-size:12.5px; font-weight:700;
    letter-spacing:0.18em; text-transform:uppercase;
    opacity:0.85; margin-bottom:18px;
  }
  .hero h1{
    color:var(--white);
    font-size:clamp(40px, 5.4vw, 74px);
    font-weight:800;
    margin-bottom:22px;
  }
  .hero h1 em{
    font-style:normal; color:var(--white);
    -webkit-text-stroke:1px var(--white);
  }
  .hero p.lede{
    color:rgba(255,255,255,0.82);
    font-size:18px; max-width:480px; margin-bottom:34px;
  }
  .hero-ctas{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:40px;}
  .hero-trustline{
    display:flex; align-items:center; gap:14px;
    color:rgba(255,255,255,0.85); font-size:14px; font-weight:600;
  }
  .stars{color:#ffb703; letter-spacing:2px; font-size:16px;}

  /* ---------- Trust bar ---------- */
  .trust-bar{
    background:var(--ink); border-top:1px solid rgba(255,255,255,0.08);
  }
  .trust-row{
    display:flex; flex-wrap:wrap; gap:36px;
    justify-content:space-between;
    padding:26px 0;
  }
  .trust-item{
    display:flex; align-items:center; gap:12px;
    color:var(--white); font-size:14.5px; font-weight:600;
  }
  .trust-item .ic{color:var(--red); flex-shrink:0;}
  .trust-item b{font-weight:800;}

  /* ---------- Awards strip ---------- */
  .awards{background:var(--paper); padding:56px 0;}
  .awards-head{
    display:flex; align-items:center; gap:20px; margin-bottom:32px; flex-wrap:wrap;
  }
  .awards-head h3{
    font-family:'Inter'; text-transform:none; letter-spacing:0;
    font-size:15px; font-weight:700; color:var(--steel);
    white-space:nowrap;
  }
  .awards-head .line{flex:1; height:1px; background:rgba(17,17,20,0.12); min-width:40px;}
  .awards-row{
    display:flex; align-items:center; justify-content:center; gap:48px; flex-wrap:wrap;
  }
  .awards-badge{
    width:190px; height:150px;
    display:flex; align-items:center; justify-content:center;
  }
  .awards-row img{
    max-width:100%; max-height:100%; width:auto; height:auto;
    filter:drop-shadow(0 8px 16px rgba(17,17,20,0.12));
    transition:transform 0.18s ease;
  }
  .awards-row img:hover{transform:translateY(-3px);}
  @media (max-width:760px){
    .awards-badge{width:130px; height:100px;}
  }

  /* ---------- Section basics ---------- */
  section{padding:96px 0;}
  .section-head{max-width:640px; margin-bottom:56px;}
  .eyebrow{
    display:inline-block; color:var(--red);
    font-size:13px; font-weight:700; letter-spacing:0.16em;
    text-transform:uppercase; margin-bottom:14px;
  }
  .section-head h2{
    font-size:clamp(32px, 4vw, 48px); font-weight:700;
    color:var(--ink);
  }
  .section-head p{
    margin-top:16px; color:var(--steel); font-size:17px; max-width:560px;
  }

  /* ---------- Services ---------- */
  .services{background:var(--paper);}
  .service-group-label{
    display:flex; align-items:center; gap:14px;
    margin:0 0 28px 0;
  }
  .service-group-label .tag{
    background:var(--ink); color:var(--white);
    font-family:'Barlow Condensed', sans-serif; font-weight:700;
    font-size:14px; letter-spacing:0.08em; text-transform:uppercase;
    padding:7px 16px; border-radius:2px;
  }
  .service-group-label .tag.alt{background:var(--red);}
  .service-group-label .line{flex:1; height:1px; background:rgba(17,17,20,0.12);}
  .service-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin-bottom:64px;
  }
  .service-grid:last-of-type{margin-bottom:0;}
  .service-card{
    background:var(--white);
    border:1px solid rgba(17,17,20,0.08);
    border-radius:6px;
    padding:30px 26px;
    transition:transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }
  .service-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px -24px rgba(17,17,20,0.35);
    border-color:rgba(226,36,26,0.3);
  }
  .service-card .icon{
    width:44px; height:44px; margin-bottom:18px;
    color:var(--red);
  }
  .service-card h3{
    font-size:22px; font-weight:700; margin-bottom:10px; color:var(--ink);
  }
  .service-card p{color:var(--steel); font-size:15px;}

  /* ---------- Why us ---------- */
  .why{background:var(--ink); color:var(--white);}
  .why .section-head h2{color:var(--white);}
  .why .section-head p{color:rgba(255,255,255,0.65);}
  .why-grid{
    display:grid; grid-template-columns:repeat(4, 1fr); gap:1px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:6px; overflow:hidden;
  }
  .why-card{
    background:var(--ink); padding:34px 26px;
  }
  .why-card .num{
    font-family:'Barlow Condensed', sans-serif;
    font-size:44px; font-weight:800; color:var(--red);
    line-height:1; margin-bottom:12px;
  }
  .why-card h4{
    font-size:16px; font-weight:700; text-transform:none;
    letter-spacing:0; margin-bottom:8px; color:var(--white);
    font-family:'Inter', sans-serif;
  }
  .why-card p{color:rgba(255,255,255,0.6); font-size:14px;}

  /* ---------- Service area ---------- */
  .area{background:var(--paper-2);}
  .area-layout{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;}
  .city-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:12px;
  }
  .city-chip{
    background:var(--white); border:1px solid rgba(17,17,20,0.08);
    border-radius:4px; padding:16px 14px;
    font-weight:700; font-size:15px; color:var(--ink);
    display:flex; align-items:center; gap:10px;
  }
  .city-chip .dot{width:7px; height:7px; border-radius:50%; background:var(--red); flex-shrink:0;}
  .area-note{
    margin-top:22px; padding:18px 20px; background:rgba(226,36,26,0.06);
    border-left:3px solid var(--red); border-radius:0 4px 4px 0;
    color:var(--ink); font-size:14.5px;
  }
  .address-card{
    background:var(--ink); color:var(--white);
    border-radius:8px; padding:38px;
  }
  .address-card .eyebrow{color:var(--red);}
  .address-card h3{
    font-family:'Inter'; text-transform:none; letter-spacing:0;
    font-size:22px; font-weight:700; margin:14px 0 22px 0;
  }
  .address-line{
    display:flex; gap:12px; align-items:flex-start;
    margin-bottom:18px; font-size:15px; color:rgba(255,255,255,0.85);
  }
  .address-line .ic{color:var(--red); flex-shrink:0; margin-top:2px;}
  .address-line b{color:var(--white); display:block; margin-bottom:2px; font-size:13px; letter-spacing:0.06em; text-transform:uppercase;}

  /* ---------- Testimonials ---------- */
  .reviews{background:var(--paper);}
  .review-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .review-card{
    background:var(--white); border:1px solid rgba(17,17,20,0.08);
    border-radius:6px; padding:28px;
  }
  .review-card .stars{margin-bottom:14px;}
  .review-card p{color:var(--ink); font-size:15.5px; margin-bottom:20px;}
  .review-who{display:flex; align-items:center; gap:12px;}
  .review-avatar{
    width:38px; height:38px; border-radius:50%;
    background:var(--ink); color:var(--white);
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:14px; font-family:'Barlow Condensed';
  }
  .review-who .meta{font-size:13px; color:var(--steel);}
  .review-who .meta b{color:var(--ink); display:block; font-size:14.5px;}

  /* ---------- Booking ---------- */
  .booking{background:var(--ink); color:var(--white); position:relative; overflow:hidden;}
  .booking-center{
    display:flex; flex-direction:column; align-items:center; text-align:center;
    max-width:820px; margin:0 auto;
  }
  .booking-center h2{
    color:var(--white);
    font-size:clamp(32px,4vw,46px); font-weight:700; margin-top:14px;
  }
  .booking-center p{
    color:rgba(255,255,255,0.7); margin:16px auto 0; font-size:16px; max-width:440px;
  }
  .booking-list{
    margin-top:28px; display:inline-flex; flex-direction:column; align-items:flex-start; text-align:left;
  }
  .booking-cta{margin-top:36px;}
  .booking-cta .btn{padding:16px 36px; font-size:15px;}
  .booking-list li{
    display:flex; gap:14px; margin-bottom:20px;
    color:rgba(255,255,255,0.8); font-size:15px;
  }
  .booking-list .step-ic{
    width:30px; height:30px; border-radius:50%;
    background:var(--red); color:var(--white);
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:14px; font-family:'Barlow Condensed';
    flex-shrink:0;
  }
  form.booking-form{
    background:var(--white); border-radius:10px; padding:36px;
    color:var(--ink);
  }
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
  .field{display:flex; flex-direction:column; gap:6px; margin-bottom:16px;}
  .field label{font-size:13px; font-weight:700; color:var(--ink); text-transform:uppercase; letter-spacing:0.04em;}
  .field input, .field select, .field textarea{
    border:1.5px solid rgba(17,17,20,0.15); border-radius:5px;
    padding:12px 14px; font-size:15px; font-family:inherit; color:var(--ink);
    background:var(--paper);
  }
  .field input:focus, .field select:focus, .field textarea:focus{
    border-color:var(--red); outline:none;
  }
  .field textarea{resize:vertical; min-height:80px;}
  .booking-form .btn{width:100%; padding:16px; font-size:15px;}
  .confirm-box{
    display:none; text-align:center; padding:40px 20px;
  }
  .confirm-box.show{display:block;}
  .confirm-box .ic{color:var(--red); margin-bottom:16px;}
  .confirm-box h3{font-family:'Inter'; text-transform:none; letter-spacing:0; font-size:22px; font-weight:700; margin-bottom:10px;}
  .confirm-box p{color:var(--steel); font-size:15px;}

  /* ---------- Footer ---------- */
  footer{background:var(--ink); color:rgba(255,255,255,0.6); padding-top:64px;}
  .footer-grid{
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
    padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .brand{margin-bottom:16px;}
  .footer-grid p{font-size:14px; line-height:1.7;}
  .footer-col h5{
    color:var(--white); font-size:13px; letter-spacing:0.1em;
    text-transform:uppercase; margin-bottom:18px; font-weight:700;
  }
  .footer-col ul li{margin-bottom:11px; font-size:14.5px;}
  .footer-col ul li a:hover{color:var(--white);}
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding:24px 0; font-size:13px; flex-wrap:wrap; gap:12px;
  }

  /* ---------- Responsive ---------- */
  @media (max-width:960px){
    .hero-inner{grid-template-columns:1fr; padding-bottom:56px;}
    .service-grid{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:repeat(2,1fr);}
    .area-layout{grid-template-columns:1fr;}
    .review-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:760px){
    .service-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    .city-grid{grid-template-columns:repeat(2,1fr);}
    .form-row{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    section{padding:64px 0;}
  }

  /* ---------- Privacy / Cookie Consent ---------- */
  .privacy-overlay{
    position:fixed; inset:0; background:rgba(14,14,16,0.55);
    display:none; align-items:center; justify-content:center;
    z-index:1000; padding:20px;
  }
  .privacy-overlay.show{display:flex;}
  .privacy-modal{
    background:var(--white); border-radius:12px; max-width:640px; width:100%;
    max-height:88vh; overflow-y:auto; padding:32px;
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
  }
  .privacy-modal-head{display:flex; align-items:flex-start; justify-content:space-between; gap:20px;}
  .privacy-modal-head h3{
    font-family:'Inter'; text-transform:none; letter-spacing:0;
    font-size:24px; font-weight:800; color:var(--ink);
  }
  .privacy-close{background:none; border:none; cursor:pointer; color:var(--ink); padding:4px; line-height:0; flex-shrink:0;}
  .privacy-desc{color:var(--steel); font-size:14.5px; line-height:1.6; margin-top:16px;}
  .privacy-policy-link{display:inline-block; margin-top:14px; font-size:14px; color:var(--ink); text-decoration:underline; cursor:pointer;}
  .privacy-tabs{display:flex; gap:28px; margin-top:26px; border-bottom:1px solid rgba(17,17,20,0.12);}
  .privacy-tab{
    background:none; border:none; padding:12px 2px; cursor:pointer;
    font-family:'Barlow Condensed'; font-size:17px; font-weight:700;
    color:var(--steel); border-bottom:2px solid transparent;
    text-transform:uppercase; letter-spacing:0.02em;
  }
  .privacy-tab.active{color:var(--ink); border-color:var(--ink);}
  .privacy-panel{display:none; margin-top:20px;}
  .privacy-panel.active{display:block;}
  .privacy-cat{border:1px solid rgba(17,17,20,0.12); border-radius:8px; padding:18px 20px; margin-bottom:14px;}
  .privacy-cat-top{display:flex; align-items:flex-start; justify-content:space-between; gap:16px;}
  .privacy-cat h4{
    font-family:'Inter'; text-transform:none; letter-spacing:0;
    font-size:16px; font-weight:700; color:var(--ink); margin-bottom:6px;
  }
  .privacy-cat p{color:var(--steel); font-size:14px; line-height:1.5;}
  .privacy-switch{position:relative; width:44px; height:24px; flex-shrink:0; display:inline-block;}
  .privacy-switch input{opacity:0; width:0; height:0; position:absolute;}
  .privacy-switch .track{
    position:absolute; inset:0; background:rgba(17,17,20,0.15); border-radius:24px;
    transition:background 0.15s ease; cursor:pointer;
  }
  .privacy-switch input:checked + .track{background:var(--ink);}
  .privacy-switch .thumb{
    position:absolute; top:3px; left:3px; width:18px; height:18px;
    background:var(--white); border-radius:50%; transition:transform 0.15s ease;
    display:flex; align-items:center; justify-content:center; font-size:10px;
    color:var(--ink); pointer-events:none;
  }
  .privacy-switch input:checked ~ .thumb{transform:translateX(20px);}
  .privacy-switch.locked .track{background:rgba(17,17,20,0.3); cursor:not-allowed;}
  .privacy-switch.locked .thumb{transform:translateX(20px); color:rgba(17,17,20,0.4);}
  .privacy-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:24px;}
  .privacy-actions button{
    flex:1; min-width:140px; padding:14px 20px; border-radius:6px;
    font-family:'Barlow Condensed'; font-weight:700; font-size:15px;
    letter-spacing:0.02em; text-transform:uppercase; cursor:pointer; border:none;
  }
  .privacy-btn-save{background:var(--paper); color:var(--ink); border:1px solid rgba(17,17,20,0.15) !important;}
  .privacy-btn-deny{background:var(--ink); color:var(--white);}
  .privacy-btn-accept{background:var(--red); color:var(--white);}
  .privacy-btn-accept:hover{background:var(--red-deep);}
  .privacy-btn-deny:hover{background:#000;}
  .privacy-service-item{padding:12px 0; border-bottom:1px solid rgba(17,17,20,0.08); font-size:14px; color:var(--steel);}
  .privacy-service-item b{color:var(--ink);}

  .privacy-toggle-btn{
    position:fixed; left:0; bottom:110px; z-index:900;
    background:var(--ink); color:var(--white); border:none; cursor:pointer;
    padding:11px 16px 11px 12px; border-radius:0 8px 8px 0;
    display:flex; align-items:center; gap:8px;
    font-family:'Barlow Condensed'; font-size:13px; font-weight:700;
    letter-spacing:0.03em; text-transform:uppercase;
    box-shadow:2px 4px 14px rgba(0,0,0,0.25);
    transition:background 0.15s ease;
  }
  .privacy-toggle-btn:hover{background:var(--red);}
  @media (max-width:600px){
    .privacy-toggle-btn span{display:none;}
    .privacy-toggle-btn{padding:12px; bottom:90px;}
    .privacy-modal{padding:24px;}
    .privacy-actions button{min-width:100%;}
  }
/* ---------- Apex v2 shared extras ---------- */

/* Service card "Learn more" links */
.service-card{position:relative;}
.card-link{display:inline-block; margin-top:12px; font-size:12.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--red);}
.card-link:hover{color:var(--red-deep); text-decoration:underline;}

/* Blog strip (homepage) */
.recent-articles{background:var(--paper);}
.article-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.article-card{background:var(--white); border:1px solid rgba(17,17,20,0.08); border-radius:8px; padding:28px; display:flex; flex-direction:column; gap:10px; transition:transform 0.15s ease, box-shadow 0.15s ease;}
.article-card:hover{transform:translateY(-3px); box-shadow:0 12px 28px rgba(17,17,20,0.10);}
.article-card h3{font-family:'Barlow Condensed'; text-transform:uppercase; font-size:20px; line-height:1.05; color:var(--ink); margin:0;}
.article-card p{color:var(--steel); font-size:14.5px; line-height:1.55; margin:0;}
.article-meta{color:var(--red); font-size:12.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; margin-top:auto;}
.blog-more{margin-top:40px; text-align:center;}
.blog-more a{color:var(--red); font-weight:700; font-size:14px; letter-spacing:0.06em; text-transform:uppercase;}
@media (max-width:900px){.article-grid{grid-template-columns:1fr;}}

/* FAQ section */
.faq{background:var(--ink); color:var(--white);}
.faq .section-head p{color:rgba(255,255,255,0.7);}
.faq .section-head h2{color:var(--white);}
.faq-list{max-width:820px; margin:0 auto;}
.faq-item{border-bottom:1px solid rgba(255,255,255,0.12);}
.faq-item summary{cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 4px; font-weight:700; font-size:17px; color:var(--white);}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:'+'; font-size:22px; color:var(--red); transition:transform 0.2s ease;}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-answer{padding:0 4px 22px; color:rgba(255,255,255,0.78); font-size:15.5px; line-height:1.65; max-width:720px;}
.faq-answer a{color:var(--red); font-weight:700;}
.faq-answer a:hover{text-decoration:underline;}

/* Sub-page primitives */
.page-hero{background:var(--ink); color:var(--white); padding:64px 0; position:relative; overflow:hidden;}
.page-hero::after{content:''; position:absolute; inset:0; background:linear-gradient(100deg, rgba(14,14,16,0.92) 0%, rgba(14,14,16,0.55) 60%, rgba(14,14,16,0.25) 100%); pointer-events:none;}
.page-hero .container{position:relative; z-index:2;}
.page-hero h1{font-size:clamp(34px,4.6vw,58px); font-weight:800; margin-bottom:14px;}
.page-hero br{display:block; margin-top:4px;}
.page-hero p{color:rgba(255,255,255,0.82); font-size:17px; max-width:640px; line-height:1.6;}
.breadcrumb{display:flex; flex-wrap:wrap; gap:8px; font-size:12.5px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; color:var(--red); margin-bottom:18px;}
.breadcrumb a{color:rgba(255,255,255,0.6);}
.breadcrumb a:hover{color:var(--white);}
.page-intro{padding:72px 0 16px;}
.page-content{padding:0 0 72px;}
.page-content h2{font-size:clamp(26px,3vw,34px); margin:44px 0 14px; color:var(--ink);}
.page-content h3{margin:28px 0 12px; color:var(--ink); font-size:20px;}
.page-content p{color:#2b2b2f; font-size:16px; line-height:1.7; margin-bottom:14px;}
.page-content ul{list-style:disc; margin:0 0 14px 22px;}
.page-content ul li{margin-bottom:6px; font-size:15.5px; line-height:1.65; color:#2b2b2f;}
.page-content table{width:100%; border-collapse:collapse; margin:20px 0 26px; background:var(--white); border:1px solid rgba(17,17,20,0.1);}
.page-content th{background:var(--ink); color:var(--white); text-align:left; padding:12px 14px; font-size:13.5px; text-transform:uppercase; letter-spacing:0.04em;}
.page-content td{padding:12px 14px; border-top:1px solid rgba(17,17,20,0.08); font-size:15px; color:#2b2b2f;}
/* Mid-content CTA rows (service pages): centered on mobile, text can wrap */
.cta-row{display:flex; flex-wrap:wrap; gap:14px; margin-top:20px;}
.cta-row .btn{text-align:center;}
@media (max-width:640px){
  /* Cost tables stack into cards on small screens instead of crushing columns */
  .page-content thead{display:none;}
  .page-content table{display:block; background:transparent; border:0; margin:0 0 24px;}
  .page-content tbody{display:block;}
  .page-content tr{display:block; background:var(--white); border:1px solid rgba(17,17,20,0.12); border-radius:8px; padding:4px 16px; margin-bottom:12px;}
  .page-content td{display:block; width:100%; box-sizing:border-box; border:0; border-top:1px dashed rgba(17,17,20,0.12); padding:10px 0;}
  .page-content tr td:first-child{border-top:0; padding-top:14px;}
  .page-content tr td:last-child{padding-bottom:14px;}
  .cta-row{justify-content:center;}
  .cta-row .btn{white-space:normal;}
}
.cta-band{background:var(--red); color:var(--white); padding:56px 0;}
.cta-band .container{display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:24px;}
.cta-band h2{font-size:clamp(28px,3.6vw,42px); font-weight:800; margin-bottom:8px;}
.cta-band p{color:rgba(255,255,255,0.9); font-size:16.5px; max-width:600px; margin:0;}
.cta-band .btn{background:var(--ink); color:var(--white); border-color:var(--ink);}
.cta-band .btn:hover{background:#000; border-color:#000;}
.service-row{display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; margin-top:8px;}
.service-tile{background:var(--white); border:1px solid rgba(17,17,20,0.08); border-radius:8px; padding:26px;}
.service-tile h3{font-size:19px; margin-bottom:8px; color:var(--ink);}
.service-tile p{color:var(--steel); font-size:14.5px; line-height:1.6; margin:0;}
.contact-chips{display:flex; flex-wrap:wrap; gap:16px;}
.contact-chip{background:var(--white); border:1px solid rgba(17,17,20,0.1); border-radius:8px; padding:18px 22px; display:inline-flex; flex-direction:column; gap:4px;}
.contact-chip b{color:var(--ink);}
.contact-chip a{color:var(--red); font-weight:700;}
@media (max-width:760px){section{padding:64px 0;}}

/* ---------- design.md reconciliation ----------
   design.md tokens are mapped onto the LIVE homepage palette so any
   new page/component automatically matches the homepage. */
:root{
  --color-surface-dark:#111114;   /* design.md slate-900 → homepage ink   */
  --color-surface-card :#1b1b1f;/* slate-800 → ink-2 (cards on dark)   */
  --color-brand-primary:#e2241a; /* design.md sky-600 → homepage brand red (CTAs/links) */
  --color-brand-accent:#ffb703;  /* amber-500 → homepage amber (stars/badges highlights) */
  --color-bg-light    :#f6f4f0; /* slate-50 → paper                     */
  --color-bg-white   :#ffffff;    /* white card surfaces                    */
  --color-border-subtle:rgba(17,17,20,0.12); /* subtle borders           */
  --color-text-muted :#6c6c74;   /* slate-500 → steel                    */
  --color-text-on-dark:rgba(255,255,255,0.82); /* light text on dark     */
}

/* Crisp technical badge (design.md component) — uppercase Barlow, homepage red */
.tech-badge{
  display:inline-flex; align-items:center; gap:6px;
  background:var(--red); color:#ffffff;
  font-family:'Barlow Condensed', sans-serif;
  font-size:13px; font-weight:700; letter-spacing:0.9px;
  text-transform:uppercase; padding:6px 12px; border-radius:4px;
  line-height:1; 
}
.tech-badge.ink{background:var(--ink);}
.tech-badge.outline{background:transparent; color:var(--ink); border:1px solid rgba(17,17,20,0.25);}
.tech-badge.amber{background:var(--focus); color:var(--ink);}

/* Section panel — light surface card (design.md bg card surfaces) */
.section-panel{background:var(--white); border:1px solid rgba(17,17,20,0.08); border-radius:12px; padding:32px;}
.section-panel + .section-panel{margin-top:24px;}
.section-panel h2{margin-top:0;}

/* Ensure sub-page hero and CTAs use the homepage brand palette */
.page-hero .btn-red{background:var(--red);}
.page-hero .btn-red:hover{background:var(--red-deep); transform:translateY(-1px);}
.page-hero .btn-outline{border-color:rgba(255,255,255,0.35); color:#ffffff;}
.page-hero .btn-outline:hover{border-color:#ffffff;}
.cta-band .btn:hover{background:#000; border-color:#000;}

/* ---------- Financing page (Hearth financing calculator embed) ---------- */
.fin-layout{display:grid; grid-template-columns:1fr minmax(340px, 420px); gap:44px; align-items:start;}
.fin-calc-card{
  background:var(--white); border:1px solid rgba(17,17,20,0.08); border-radius:12px;
  padding:24px; display:flex; flex-direction:column; align-items:center; gap:16px;
}
/* Hearth's script writes its own fixed-size document into this iframe:
   size the frame to match it exactly so nothing is clipped or letterboxed. */
#hearth-widget_calculator_v1{
  display:block; width:320px; max-width:100%; height:772px;
  border:0; background:transparent; margin:0 auto;
}
.fin-note{margin-top:18px; color:var(--steel); font-size:14.5px; line-height:1.6;}
.fin-note a{color:var(--red); font-weight:700;}
.fin-note a:hover{text-decoration:underline;}
.fin-disclaimer{margin:0; color:var(--steel); font-size:12.5px; line-height:1.55; text-align:center;}
.fin-calc-card noscript{display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center;}
.fin-calc-card noscript .fin-note{margin-top:0;}

/* Light-surface FAQ variant (financing page sits on paper, not on ink) */
.faq-list.on-paper .faq-item{
  background:var(--white); border:1px solid rgba(17,17,20,0.08); border-radius:8px;
  padding:0 18px; margin-bottom:12px;
}
.faq-list.on-paper .faq-item summary{color:var(--ink);}
.faq-list.on-paper .faq-answer{color:var(--steel);}
.faq-list.on-paper .faq-answer a{color:var(--red);}

@media (max-width:1000px){
  .fin-layout{grid-template-columns:1fr; gap:32px;}
  .fin-calc-card{max-width:520px; margin:0 auto;}
}
/* The calculator frame is a fixed 320px wide: below 560px the card goes
   edge to edge so the container padding cannot squeeze it. */
@media (max-width:560px){
  .fin-calc-card{margin:0 -24px; border-radius:0; border-left:0; border-right:0; padding:18px 8px;}
}
@media (max-width:352px){
  .fin-calc-card{padding:18px 0;}
}
/* ---------- Sub-page hero photography ----------
   Uses the client's existing hero photos (images/hero-1..6.jpg, the same set
   the homepage slideshow ran). Static image, no slideshow: the existing
   ::after scrim keeps the copy legible, strengthened for photo backgrounds.
   Swap an image by editing ONE line here. */
.page-hero.has-photo{
  background-size:cover; background-repeat:no-repeat;
  background-position:center 26%;
}
.page-hero.has-photo::after{
  background:linear-gradient(100deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.88) 38%, rgba(10,10,12,0.66) 70%, rgba(10,10,12,0.52) 100%);
}
/* Per-page image. The four portrait sources (hero-1/2/4/5) frame their
   subject low in the picture, so each position is tuned to that band rather
   than a generic center crop. Swap an image + position on ONE line below. */
.page-hero.ph-services  {background-image:url(/images/hero-3.jpg); background-position:center 26%;}
.page-hero.ph-hvac      {background-image:url(/images/hero-2.jpg); background-position:center 46%;}
.page-hero.ph-electrical{background-image:url(/images/hero-6.jpg); background-position:center 32%;}
.page-hero.ph-panel     {background-image:url(/images/hero-4.jpg); background-position:center 46%;}
.page-hero.ph-control   {background-image:url(/images/hero-5.jpg); background-position:center 46%;}
.page-hero.ph-emergency {background-image:url(/images/hero-1.jpg); background-position:center 30%;}
.page-hero.ph-about     {background-image:url(/images/hero-1.jpg); background-position:center 46%;}
.page-hero.ph-contact   {background-image:url(/images/hero-5.jpg); background-position:center 46%;}
.page-hero.ph-blog      {background-image:url(/images/hero-3.jpg); background-position:center 26%;}
.page-hero.ph-financing {background-image:url(/images/hero-4.jpg); background-position:center 46%;}
