/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.2
 Text Domain:  bricks
*/
/* ============================================================================
   HEAT PUMPS PALMERSTON NORTH — Production stylesheet
   Rebrand of the roofing template: solar gold + charcoal climate palette.

   Palette (client-supplied):
     Gold        #F9BC14   --p-brand      (primary action / warm accent)
     Deep gold   #E0A50A   --p-brand-2    (hover gold / accents on dark)
     Charcoal 1  #1F2027   --p-ink-deep   (darkest surfaces)
     Charcoal 2  #2E2F38   --p-ink        (dark surfaces + headings on light)
     Charcoal 3  #43444F   --p-ink-soft
     Grey        #5C5E6B   --p-muted      (body copy on light)
     Light grey  #DBDCE1   --p-steel-light (body copy on dark)
     Off-white   #F4F5F7   --p-paper      (light surfaces)

   Derived tones (kept in-family, documented so they're easy to tune):
     #7A5A06  --p-brand-deep  deep amber — gold used AS TEXT on light bg,
                              and as the warm end of dark gradients
     #383944  --p-ink-mid     hover step between charcoal 2 and 3
     #9B9DA9  --p-steel       small labels on dark surfaces
     #EAEBEF  --p-paper-2     alternating light section tint
     #FFD34F  (inline)        bright gold gradient highlight

   Contrast rules baked into this file:
     · Anything with a GOLD BACKGROUND uses dark ink text/icons (never white).
     · Gold as TEXT only appears on dark surfaces. On light surfaces,
       gold-toned text uses --p-brand-deep (amber) instead.
   NOTE: class names keep the original "aroof-" prefixes so this file is a
   drop-in replacement — no HTML/Bricks structure changes required.
   ============================================================================ */

/* ----- Design tokens ------------------------------------------------------- */
:root {
  /* Brand */
  --p-brand:           #F9BC14;
  --p-brand-2:         #E0A50A;
  --p-brand-deep:      #7A5A06;
  --p-brand-tint:      rgba(249, 188, 20, 0.14);

  /* Ink (deepest → lightest) */
  --p-ink-deep:        #1F2027;
  --p-ink:             #2E2F38;
  --p-ink-mid:         #383944;
  --p-ink-soft:        #43444F;

  /* Neutral text + surfaces */
  --p-steel:           #9B9DA9;
  --p-steel-light:     #DBDCE1;
  --p-muted:           #5C5E6B;
  --p-paper:           #F4F5F7;
  --p-paper-2:         #EAEBEF;
  --p-white:           #ffffff;

  /* Hairlines */
  --p-line:             rgba(31, 32, 39, 0.10);
  --p-line-strong:      rgba(31, 32, 39, 0.18);
  --p-line-dark:        rgba(219, 220, 225, 0.10);
  --p-line-dark-strong: rgba(219, 220, 225, 0.20);

  /* Geometry — softened for a comfort / home-climate feel */
  --p-r-sm:            8px;
  --p-r-md:            12px;
  --p-r-lg:            16px;
  --p-r-pill:          999px;

  /* Easings */
  --p-ease:            cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ----- Base (scoped to our sections so it never leaks into the theme) ------ */
.main,
.main *,
#brx-content,
#brx-content * {
  box-sizing: border-box;
}
.main,
#brx-content {
  font-family: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--p-ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main img,
.main svg,
.main iframe,
#brx-content img,
#brx-content svg,
#brx-content iframe { display: block; max-width: 100%; }

/* Brand text selection */
.brx-body ::selection {
  background: var(--p-brand);
  color: var(--p-ink-deep);
}

/* Visible keyboard focus across our sections */
#brx-content :is(a, button, summary):focus-visible,
#brx-footer :is(a, button):focus-visible {
  outline: 2px solid var(--p-brand-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  #brx-content *, #brx-content *::before, #brx-content *::after,
  #brx-footer *, #brx-footer *::before, #brx-footer *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================================
   Hero
   ============================================================================ */
.aroof-hero {
    /* Set your hero photo URL via inline style:
       <section class="aroof-hero" style="--hero-bg: url('https://your-heatpump-photo.jpg');"> */
    --hero-bg: none;

    position: relative;
    background-color: var(--p-ink-deep);
    background-image:
      linear-gradient(135deg, rgba(20, 21, 27, 0.93) 0%, rgba(31, 32, 39, 0.80) 50%, rgba(122, 90, 6, 0.55) 100%),
      var(--hero-bg);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    color: var(--p-paper);
    padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 5vw, 5rem);
    overflow: hidden;
    font-family: 'Archivo', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
  }
  .aroof-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(219,220,225,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(219,220,225,0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 70% 50%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, #000 30%, transparent 75%);
  }
  /* Warm "heat" glow — gold is far more luminous than the old red,
     so opacities are kept low to stay atmospheric rather than loud */
  .aroof-hero::after {
    content: '';
    position: absolute;
    top: -10%; right: -15%;
    width: 70%; height: 90%;
    background: radial-gradient(ellipse, rgba(249,188,20,0.14), transparent 65%);
    pointer-events: none;
  }

  .aroof-hero .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }

  /* Left column */
  .aroof-hero .hero-content { min-width: 0; }

  .aroof-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--p-brand);
    margin-bottom: 1.75rem;
  }
  .aroof-hero .hero-eyebrow::before {
    content: '';
    width: 9px; height: 9px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(249,188,20,0.85), 0 0 32px rgba(249,188,20,0.4);
    animation: hero1pulse 2.4s ease-in-out infinite;
  }
  @keyframes hero1pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.85); }
  }

  /* Headline: normal case (was all-caps) — warmer, more residential,
     less "industrial demolition". Weight + tracking carry the punch. */
  .aroof-hero .hero-h1 {
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--p-paper);
    margin: 0 0 1.5rem 0;
    text-transform: none;
  }
  .aroof-hero .hero-h1 span {
    display: block;
    color: var(--p-brand);
  }
  .aroof-hero .hero-h1 .hero-loc {
    display: block;
    font-weight: 400;
    color: var(--p-steel-light);
    font-size: 0.36em;
    letter-spacing: 0.02em;
    text-transform: none;
    font-style: italic;
    margin-top: 0.75rem;
  }
  .aroof-hero .hero-h1 .hero-thin {
    display: block;
    font-weight: 400;
    color: var(--p-steel-light);
    font-size: 0.3em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 1rem;
  }

  /* Spec strip — CSS grid with responsive column counts.
     Selectors deliberately match nested `.brxe-text-basic` wrappers so the
     layout holds whether the HTML is raw (as pasted into a Code element) or
     wrapped by Bricks text elements. */
  .aroof-hero .hero-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.25rem 0;
    margin: 1.75rem 0;
    border-top: 1px solid var(--p-line-dark);
    border-bottom: 1px solid var(--p-line-dark);
  }
  .aroof-hero .hero-spec {
    padding: 0 1.25rem;
    border-right: 1px solid var(--p-line-dark);
    min-width: 0;
  }
  .aroof-hero .hero-spec:first-child { padding-left: 0; }
  .aroof-hero .hero-spec:last-child  { border-right: 0; padding-right: 0; }

  .aroof-hero .hero-spec-num,
  .aroof-hero .hero-spec-num .brxe-text-basic {
    display: block;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--p-paper);
    line-height: 1;
    white-space: nowrap;
  }
  .aroof-hero .hero-spec-num span,
  .aroof-hero .hero-spec-num .brxe-text-basic span {
    color: var(--p-brand);
  }
  .aroof-hero .hero-spec-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--p-steel);
    margin-top: 0.45rem;
  }

  /* Services tags — pill chips read friendlier than squared tags */
  .aroof-hero .hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .aroof-hero .hero-tag {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--p-steel-light);
    padding: 0.55rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(219,220,225,0.14);
    border-radius: var(--p-r-pill);
    transition: all 0.25s var(--p-ease);
  }
  .aroof-hero .hero-tag:hover {
    background: var(--p-brand-tint);
    border-color: rgba(249,188,20,0.6);
    color: var(--p-white);
  }

  /* CTA stack — phone + email, both with gold circle icon.
     Icon glyphs are dark ink on gold (white-on-gold fails contrast). */
  .aroof-hero .hero-cta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .aroof-hero .hero-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--p-paper);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    transition: color 0.2s;
    max-width: 100%;
  }
  .aroof-hero .hero-contact:hover { color: var(--p-brand); }
  .aroof-hero .hero-contact-icon {
    width: 42px; height: 42px;
    background: var(--p-brand);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--p-ink-deep);
    box-shadow: 0 0 24px rgba(249,188,20,0.35);
    flex-shrink: 0;
  }
  .aroof-hero .hero-contact-icon svg {
    width: 18px;
    height: 18px;
    display: block;
  }
  .aroof-hero .hero-contact-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-items: flex-start;
  }
  .aroof-hero .hero-contact-meta small {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--p-steel);
    font-weight: 600;
  }
  /* Email runs longer than the phone — drop the size a touch so it sits cleanly on one line */
  .aroof-hero .hero-contact--email {
    font-size: 1.1rem;
    word-break: break-word;
  }

  /* Right column — form panel. White (not paper) so it pops off the dark
     hero, rounded, with a faint warm halo pulling the eye to the CTA. */
  .aroof-hero .hero-form-wrap {
    position: relative;
    background: var(--p-white);
    color: var(--p-ink-deep);
    border-radius: var(--p-r-lg);
    padding: 2rem 2rem 2.25rem;
    box-shadow:
      0 30px 80px -20px rgba(15, 16, 21, 0.6),
      0 0 0 1px rgba(31, 32, 39, 0.05),
      0 0 70px -12px rgba(249, 188, 20, 0.22);
    border-top: 4px solid var(--p-brand);
  }
  .aroof-hero .hero-form-tag {
    position: absolute;
    top: -0.85rem; left: 1.5rem;
    background: var(--p-brand);
    color: var(--p-ink-deep);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: 5px;
    box-shadow: 0 6px 16px -6px rgba(249,188,20,0.6);
  }
  .aroof-hero .hero-form-h {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--p-ink-deep);
    margin: 0.5rem 0 0.35rem 0;
    text-transform: none;
    line-height: 1.1;
  }
  .aroof-hero .hero-form-sub {
    font-size: 0.88rem;
    color: var(--p-muted);
    margin: 0 0 1.5rem 0;
  }
  .aroof-hero .hero-form { display: grid; gap: 0.75rem; }
  .aroof-hero .hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .aroof-hero .hero-form input,
  .aroof-hero .hero-form select,
  .aroof-hero .hero-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1.5px solid var(--p-line-strong);
    border-radius: var(--p-r-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--p-ink-deep);
    caret-color: var(--p-brand-2);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .aroof-hero .hero-form input:focus,
  .aroof-hero .hero-form select:focus,
  .aroof-hero .hero-form textarea:focus {
    outline: none;
    border-color: var(--p-brand-2);
    box-shadow: 0 0 0 3px rgba(249,188,20,0.20);
  }
  .aroof-hero .hero-form textarea { resize: vertical; min-height: 70px; }
  /* Primary conversion button — gold with ink text */
  .aroof-hero .hero-form button {
    margin-top: 0.5rem;
    padding: 1.1rem 1.5rem;
    background: var(--p-brand);
    color: var(--p-ink-deep);
    border: none;
    border-radius: var(--p-r-sm);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 14px 30px -12px rgba(249,188,20,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
  }
  .aroof-hero .hero-form button:hover {
    background: var(--p-brand-2);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -12px rgba(224,165,10,0.6);
  }
  .aroof-hero .hero-form button::after { content: '→'; transition: transform 0.2s; }
  .aroof-hero .hero-form button:hover::after { transform: translateX(4px); }

  /* Responsive */
  @media (max-width: 980px) {
    .aroof-hero .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  @media (max-width: 720px) {
    /* 2-column spec grid */
    .aroof-hero .hero-specs {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 1.4rem;
    }
    .aroof-hero .hero-spec {
      padding: 0 1rem;
      border-right: 1px solid var(--p-line-dark);
    }
    .aroof-hero .hero-spec:nth-child(odd)  { padding-left: 0; padding-right: 1rem; border-right: 1px solid var(--p-line-dark); }
    .aroof-hero .hero-spec:nth-child(even) { padding-left: 1rem; padding-right: 0; border-right: 0; }
    .aroof-hero .hero-spec-num,
    .aroof-hero .hero-spec-num .brxe-text-basic { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
    .aroof-hero .hero-spec-label { font-size: 0.6rem; letter-spacing: 0.14em; }
  }
  @media (max-width: 560px) {
    .aroof-hero { padding: 5rem 1rem 3rem; min-height: auto; }
    .aroof-hero .hero-form-row { grid-template-columns: 1fr; }
    .aroof-hero .hero-cta-row { gap: 1rem; }
    .aroof-hero .hero-contact { font-size: 1.15rem; }
    .aroof-hero .hero-contact--email { font-size: 0.95rem; }
  }
  @media (max-width: 380px) {
    /* Single-column stack at very narrow widths */
    .aroof-hero .hero-specs { grid-template-columns: 1fr; row-gap: 0.9rem; padding: 1.1rem 0; }
    .aroof-hero .hero-spec,
    .aroof-hero .hero-spec:nth-child(odd),
    .aroof-hero .hero-spec:nth-child(even) {
      padding: 0.4rem 0;
      border-right: 0;
      border-bottom: 1px solid var(--p-line-dark);
    }
    .aroof-hero .hero-spec:last-child { border-bottom: 0; padding-bottom: 0; }
    .aroof-hero .hero-spec-num,
    .aroof-hero .hero-spec-num .brxe-text-basic { font-size: 1.25rem; }
  }
/* ============================================================================
   Intro
   ============================================================================ */
.aroof-intro {
    position: relative;
    background: var(--p-paper);
    color: var(--p-ink-soft);
    padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 3rem);
    overflow: hidden;
    font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  }
  .aroof-intro::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(31, 32, 39, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.65;
  }
  /* Soft warm tonal accent in top-right corner */
  .aroof-intro::after {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 50%; height: 80%;
    background: radial-gradient(ellipse, rgba(249, 188, 20, 0.07), transparent 65%);
    pointer-events: none;
  }

  .aroof-intro .intro-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }

  /* Left content */
  .aroof-intro .intro-content { min-width: 0; }

  /* Eyebrow on light bg: deep amber text (gold text fails contrast on white) */
  .aroof-intro .intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-brand-deep);
    margin-bottom: 1.5rem;
  }
  .aroof-intro .intro-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(249, 188, 20, 0.55);
    flex-shrink: 0;
  }

  .aroof-intro .intro-heading {
    font-size: clamp(1.8rem, 3.4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.022em;
    color: var(--p-ink);
    margin: 0 0 2rem 0;
    text-transform: none;
  }

  /* Body paragraphs */
  .aroof-intro .intro-body {
    margin-bottom: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--p-line);
  }
  .aroof-intro .intro-body p,
  .brxe-text{
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--p-muted);
    margin: 0 0 1.25rem 0;
  }
  .aroof-intro .intro-body p:last-child,
  .aroof-intro .intro-body .brxe-text:last-child{ margin-bottom: 0; }
  .aroof-intro .intro-body strong,
  .brxe-text a{
    color: var(--p-ink);
    font-weight: 700;
  }
  /* In-copy links get a gold underline so they read as brand actions */
  .brxe-text a{
    text-decoration: underline;
    text-decoration-color: var(--p-brand-2);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.2s, text-decoration-color 0.2s;
  }
  .brxe-text a:hover{
    color: var(--p-brand-deep);
    text-decoration-color: var(--p-brand);
  }
  .aroof-why .brxe-text a {
    color: var(--p-paper);
  }
  /* CTA button — ink base, flips to gold with ink text on hover */
  .aroof-intro .intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.05rem 1.85rem;
    background: var(--p-ink);
    color: var(--p-paper);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--p-r-sm);
    transition: background 0.25s var(--p-ease), color 0.25s var(--p-ease), transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 8px 20px -8px rgba(31, 32, 39, 0.35);
  }
  .aroof-intro .intro-cta:hover {
    background: var(--p-brand);
    color: var(--p-ink-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(249, 188, 20, 0.5);
  }
  .aroof-intro .intro-cta::after {
    content: '→';
    transition: transform 0.2s;
    font-size: 1.05em;
  }
  .aroof-intro .intro-cta:hover::after { transform: translateX(4px); }

  /* Right image — framed with gold corner brackets
     (brand-2 on light backgrounds for definition) */
  .aroof-intro .intro-image {
    position: relative;
    align-self: start;
    padding: 12px;
  }
  .aroof-intro .intro-image::before,
  .aroof-intro .intro-image::after {
    content: '';
    position: absolute;
    width: 60px; height: 60px;
    pointer-events: none;
    z-index: 1;
  }
  .aroof-intro .intro-image::before {
    top: 0; left: 0;
    border-top: 3px solid var(--p-brand-2);
    border-left: 3px solid var(--p-brand-2);
    border-top-left-radius: 10px;
  }
  .aroof-intro .intro-image::after {
    bottom: 0; right: 0;
    border-bottom: 3px solid var(--p-brand-2);
    border-right: 3px solid var(--p-brand-2);
    border-bottom-right-radius: 10px;
  }
  .aroof-intro .intro-image-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: var(--p-ink);
    background-size: cover;
    background-position: center;
    border-radius: var(--p-r-md);
    box-shadow:
      0 4px 12px rgba(31, 32, 39, 0.08),
      0 24px 60px -15px rgba(31, 32, 39, 0.28);
    /* SET YOUR HEAT PUMP / INSTALL PHOTO URL HERE — or remove this inline style
       and drop a Bricks Image element inside .intro-image instead */
  }
  /* Image label — only visible if no real image is set; remove this rule once your photo is in */
  .aroof-intro .intro-image-label {
    position: absolute;
    bottom: 1rem; left: 1.25rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
  }
  /* Caption strip — optional, sits below the image */
  .aroof-intro .intro-image-caption {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--p-muted);
    font-weight: 600;
  }
  .aroof-intro .intro-image-caption::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--p-brand-2);
    border-radius: 2px;
  }

  @media (max-width: 900px) {
    .aroof-intro .intro-inner { grid-template-columns: 1fr; }
    .aroof-intro .intro-image {
      max-width: 540px;
      margin-top: 1rem;
    }
    .aroof-intro .intro-image-inner { aspect-ratio: 16 / 11; }
  }
  @media (max-width: 560px) {
    .aroof-intro .intro-image::before,
    .aroof-intro .intro-image::after { width: 40px; height: 40px; }
  }

/* ============================================================================
   Mid-page sections
   ============================================================================ */
/* ===== Shared design tokens (declared at :root above) ===== */

  /* =====================================================================
     1.  DARK DIVIDER — full-width statement band
     ===================================================================== */
  .aroof-divider {
    position: relative;
    background: var(--p-ink-deep);
    color: var(--p-paper);
    padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
    overflow: hidden;
    font-family: 'Archivo', system-ui, sans-serif;
    text-align: center;
  }
  .aroof-divider::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(219,220,225,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  }
  .aroof-divider::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 80%;
    background: radial-gradient(ellipse, rgba(249, 188, 20, 0.08), transparent 65%);
    pointer-events: none;
  }
  .aroof-divider .divider-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
  }
  .aroof-divider .divider-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.022em;
    color: var(--p-paper);
    margin: 0 0 0.75rem 0;
  }
  .aroof-divider .divider-rule {
    width: 60px;
    height: 3px;
    background: var(--p-brand);
    margin: 0 auto 2rem;
    border-radius: var(--p-r-pill);
    box-shadow: 0 0 14px rgba(249,188,20,0.45);
  }
  .aroof-divider .divider-rule .line {
	display: none;
  }
  .aroof-divider .divider-body p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--p-steel-light);
    margin: 0 0 1.1rem 0;
  }
  .aroof-divider .divider-body p:last-child { margin-bottom: 0; }
  .aroof-divider .divider-body strong { color: var(--p-white); font-weight: 600; }

  /* =====================================================================
     2/3/4.  SERVICE SECTIONS — alternating image position
     ===================================================================== */
  .aroof-service {
    position: relative;
    background: var(--p-paper);
    color: var(--p-ink);
    padding: clamp(4rem, 7vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
    font-family: 'Archivo', system-ui, sans-serif;
    overflow: hidden;
  }
  /* Alternating subtle background tints to give rhythm between blocks */
  .aroof-service.alt-tint { background: var(--p-paper-2); }
  .aroof-service::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(31,32,39,0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    opacity: 0.6;
  }

  .aroof-service .service-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }

  /* Image position swap */
  .aroof-service--image-left .service-content { grid-column: 2; }
  .aroof-service--image-left .service-image { grid-column: 1; grid-row: 1; }

  .aroof-service .service-content { min-width: 0; }

  .aroof-service .service-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-brand-deep);
    margin-bottom: 1.25rem;
  }
  .aroof-service .service-eyebrow::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(249, 188, 20, 0.55);
    flex-shrink: 0;
  }

  .aroof-service .service-heading {
    font-size: clamp(1.65rem, 2.85vw, 2.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.022em;
    color: var(--p-ink-deep);
    margin: 0 0 0.75rem 0;
  }
  .aroof-service .service-subhead {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--p-ink);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.005em;
  }
  .aroof-service .service-body {
    padding-top: 1.25rem;
    border-top: 1px solid var(--p-line);
    margin-bottom: 2rem;
  }
  .aroof-service .service-body p {
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--p-muted);
    margin: 0 0 1rem 0;
  }
  .aroof-service .service-body p:last-child { margin-bottom: 0; }
  .aroof-service .service-body strong { color: var(--p-ink-deep); font-weight: 700; }

  .aroof-service .service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.85rem;
    background: var(--p-ink-deep);
    color: var(--p-paper);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--p-r-sm);
    transition: background 0.25s var(--p-ease), color 0.25s var(--p-ease), transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 8px 20px -8px rgba(31, 32, 39, 0.35);
  }
  .aroof-service .service-cta:hover {
    background: var(--p-brand);
    color: var(--p-ink-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(249, 188, 20, 0.5);
  }
  .aroof-service .service-cta::after {
    content: '→';
    transition: transform 0.2s;
    font-size: 1.05em;
  }
  .aroof-service .service-cta:hover::after { transform: translateX(4px); }

  /* Image with gold corner brackets */
  .aroof-service .service-image {
    position: relative;
    padding: 10px;
  }
  .aroof-service .service-image::before,
  .aroof-service .service-image::after {
    content: '';
    position: absolute;
    width: 50px; height: 50px;
    pointer-events: none;
    z-index: 1;
  }
  .aroof-service .service-image::before {
    top: 0; left: 0;
    border-top: 3px solid var(--p-brand-2);
    border-left: 3px solid var(--p-brand-2);
    border-top-left-radius: 10px;
  }
  .aroof-service .service-image::after {
    bottom: 0; right: 0;
    border-bottom: 3px solid var(--p-brand-2);
    border-right: 3px solid var(--p-brand-2);
    border-bottom-right-radius: 10px;
  }
  .aroof-service .service-image-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    background-color: var(--p-ink-deep);
    background-size: cover;
    background-position: center;
    border-radius: var(--p-r-md);
    box-shadow:
      0 4px 12px rgba(31, 32, 39, 0.08),
      0 24px 60px -15px rgba(31, 32, 39, 0.28);
  }
  .aroof-service .service-image-label {
    position: absolute;
    bottom: 1rem; left: 1.25rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
  }

  @media (max-width: 900px) {
    .aroof-service .service-inner { grid-template-columns: 1fr; }
    .aroof-service--image-left .service-content,
    .aroof-service--image-left .service-image,
    .aroof-service .service-content,
    .aroof-service .service-image { grid-column: 1; grid-row: auto; }
    .aroof-service--image-left .service-image,
    .aroof-service .service-image { order: 2; max-width: 540px; }
    .aroof-service--image-left .service-content,
    .aroof-service .service-content { order: 1; }
    .aroof-service .service-image-inner { aspect-ratio: 16/11; }
  }
  @media (max-width: 560px) {
    .aroof-service .service-image::before,
    .aroof-service .service-image::after { width: 34px; height: 34px; }
  }

  /* =====================================================================
     5.  CTA BANNER — "Contact us Today For a FREE..."
     ===================================================================== */
  .aroof-cta-band {
    /* Set your background image URL via inline style:
       <section class="aroof-cta-band" style="--cta-bg: url('https://your-photo.jpg');"> */
    --cta-bg: none;

    position: relative;
    background-color: var(--p-ink-deep);
    background-image:
      linear-gradient(95deg, rgba(20, 21, 27, 0.95) 0%, rgba(31, 32, 39, 0.82) 45%, rgba(224, 165, 10, 0.55) 100%),
      var(--cta-bg);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    color: var(--p-paper);
    padding: clamp(3rem, 5.5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
    overflow: hidden;
    font-family: 'Archivo', system-ui, sans-serif;
  }
  .aroof-cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
  }
  .aroof-cta-band::after {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 50%; height: 160%;
    background: radial-gradient(ellipse, rgba(249, 188, 20, 0.22), transparent 60%);
    pointer-events: none;
  }
  .aroof-cta-band .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr auto;
    align-items: center;
    gap: clamp(1.75rem, 4vw, 3.5rem);
  }
  .aroof-cta-band .cta-heading {
    font-size: clamp(1.45rem, 2.6vw, 2.15rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.018em;
    color: var(--p-paper);
    margin: 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--p-brand);
  }
  .aroof-cta-band .cta-heading strong {
    color: var(--p-brand);
    font-weight: 800;
  }
  /* Primary band CTA — gold surface, ink text */
  .aroof-cta-band .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--p-brand);
    color: var(--p-ink-deep);
    text-decoration: none;
    padding: 1.15rem 2rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--p-r-sm);
    box-shadow: 0 14px 36px -10px rgba(249, 188, 20, 0.55);
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
    white-space: nowrap;
  }
  .aroof-cta-band .cta-button:hover {
    background: var(--p-white);
    color: var(--p-ink-deep);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(244, 245, 247, 0.35);
  }
  .aroof-cta-band .cta-button::after {
    content: '→';
    transition: transform 0.2s;
    font-size: 1.1em;
  }
  .aroof-cta-band .cta-button:hover::after { transform: translateX(4px); }

  @media (max-width: 760px) {
    .aroof-cta-band .cta-inner { grid-template-columns: 1fr; }
    .aroof-cta-band .cta-heading {
      font-size: 1.35rem;
      padding-left: 1rem;
    }
    .aroof-cta-band .cta-button { justify-content: center; }
  }

  /* =====================================================================
     6.  WHY CHOOSE US — three commitments, dark, asymmetric
     ===================================================================== */
  .aroof-why {
    position: relative;
    background: var(--p-ink-deep);
    color: var(--p-paper);
    padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 3rem);
    overflow: hidden;
    font-family: 'Archivo', system-ui, sans-serif;
  }
  .aroof-why::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(219,220,225,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(219,220,225,0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 70% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, #000 30%, transparent 80%);
  }
  .aroof-why::after {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 60%; height: 90%;
    background: radial-gradient(ellipse, rgba(249, 188, 20, 0.11), transparent 65%);
    pointer-events: none;
  }

  .aroof-why .why-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }

  /* Left intro panel */
  .aroof-why .why-intro {
    position: sticky;
    top: 2rem;
  }
  .aroof-why .why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--p-brand);
    margin-bottom: 1.5rem;
  }
  .aroof-why .why-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(249, 188, 20, 0.6);
  }
  .aroof-why .why-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--p-paper);
    margin: 0 0 1.5rem 0;
    text-transform: none;
  }
  .aroof-why .why-heading span { color: var(--p-brand); }
  .aroof-why .why-lede {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--p-steel-light);
    margin: 0 0 2rem 0;
  }
  .aroof-why .why-lede strong { color: var(--p-white); font-weight: 600; }

  /* Trust badges row — pill chips */
  .aroof-why .why-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--p-line-dark);
  }
  .aroof-why .why-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--p-steel-light);
    padding: 0.55rem 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--p-line-dark);
    border-radius: var(--p-r-pill);
    transition: all 0.25s var(--p-ease);
  }
  .aroof-why .why-badge:hover {
    background: var(--p-brand-tint);
    border-color: rgba(249, 188, 20, 0.6);
    color: var(--p-white);
  }

  /* Right cards column — cards sit one charcoal step above the section
     background, so the stack reads as layered panels */
  .aroof-why .why-cards {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--p-line-dark);
    border: 1px solid var(--p-line-dark);
    border-radius: var(--p-r-lg);
    overflow: hidden;
  }
  .aroof-why .why-card {
    position: relative;
    background: var(--p-ink);
    padding: 2rem 2rem 2rem 5.5rem;
    transition: background 0.35s var(--p-ease);
    overflow: hidden;
  }
  .aroof-why .why-card:hover { background: var(--p-ink-mid); }
  /* Gold strip on hover */
  .aroof-why .why-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--p-brand);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--p-ease);
  }
  .aroof-why .why-card:hover::before { transform: scaleY(1); }
  /* Big gold number */
  .aroof-why .why-card-num {
    position: absolute;
    top: 1.85rem;
    left: 2rem;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--p-brand);
    font-variant-numeric: tabular-nums;
    transition: transform 0.4s var(--p-ease);
  }
  .aroof-why .why-card:hover .why-card-num { transform: translateX(3px); }
  .aroof-why .why-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--p-paper);
    margin: 0 0 0.75rem 0;
    text-transform: none;
  }
  .aroof-why .why-card-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--p-steel-light);
    margin: 0 0 1.25rem 0;
  }

  @media (max-width: 980px) {
    .aroof-why .why-inner { grid-template-columns: 1fr; }
    .aroof-why .why-intro { position: relative; top: auto; }
  }
  @media (max-width: 560px) {
    .aroof-why .why-card {
      padding: 1.75rem 1.5rem 1.75rem 1.5rem;
    }
    .aroof-why .why-card-num {
      position: relative;
      top: auto; left: auto;
      display: block;
      margin-bottom: 0.85rem;
      font-size: 2.2rem;
    }
  }

/* ============================================================================
   Product Showcase (legacy class names: .aroof-colorsteel / .colorsteel-*)
   Reuse for heat pump ranges: brands as .colorsteel-option cards, finishes or
   unit colours as swatches, and the strip for an add-on (e.g. Wi-Fi control).
   ============================================================================ */
.aroof-colorsteel {
    background: var(--p-paper);
    color: var(--p-ink-soft);
    padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 3rem);
    font-family: 'Archivo', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
  }

  .aroof-colorsteel .colorsteel-inner {
    max-width: 1440px;
    margin: 0 auto;
  }

  /* Header — centred but with edge meta */
  .aroof-colorsteel .colorsteel-head {
    text-align: center;
    margin-bottom: 3rem;
  }
  .aroof-colorsteel .colorsteel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-brand-deep);
    margin-bottom: 1rem;
  }
  .aroof-colorsteel .colorsteel-eyebrow::before,
  .aroof-colorsteel .colorsteel-eyebrow::after {
    content: '';
    width: 24px; height: 2px;
    background: var(--p-brand-2);
    border-radius: 2px;
    opacity: 0.7;
  }
  .aroof-colorsteel .colorsteel-heading {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--p-ink);
    margin: 0 0 1.25rem 0;
  }
  /* Accent word: gold highlighter behind ink text — keeps contrast on the
     light background (plain gold text would be unreadable here) */
  .aroof-colorsteel .colorsteel-heading span {
    color: inherit;
    background-image: linear-gradient(180deg, rgba(249,188,20,0) 58%, rgba(249,188,20,0.55) 58%);
    border-radius: 6px;
    padding: 0 0.08em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .aroof-colorsteel .colorsteel-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--p-muted);
    max-width: 640px;
    margin: 0 auto;
  }

  /* Swatch palette — the hero visual of this section */
  .aroof-colorsteel .colorsteel-palette {
    margin: 0 auto 4rem;
    max-width: 1100px;
  }
  .aroof-colorsteel .colorsteel-palette-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--p-muted);
    font-weight: 600;
  }
  .aroof-colorsteel .colorsteel-palette-label span:last-child {
    font-size: 0.7rem;
    color: var(--p-muted);
    opacity: 0.7;
  }
  .aroof-colorsteel .colorsteel-swatches {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    border: 1px solid var(--p-line);
    border-radius: var(--p-r-md);
    overflow: hidden;
    background: var(--p-line);
  }
  .aroof-colorsteel .colorsteel-swatch {
    position: relative;
    aspect-ratio: 1 / 1.45;
    display: flex;
    align-items: flex-end;
    padding: 0.85rem 0.75rem;
    color: #fff;
    transition: transform 0.4s var(--p-ease);
    overflow: hidden;
  }
  .aroof-colorsteel .colorsteel-swatch:hover { transform: translateY(-4px); z-index: 2; }
  .aroof-colorsteel .colorsteel-swatch::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  }
  .aroof-colorsteel .colorsteel-swatch-label {
    position: relative;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }
  .aroof-colorsteel .colorsteel-swatch-label small {
    display: block;
    font-size: 0.62rem;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
  }
  /* Light swatches need dark text */
  .aroof-colorsteel .colorsteel-swatch.is-light { color: var(--p-ink); }
  .aroof-colorsteel .colorsteel-swatch.is-light::before {
    background: linear-gradient(180deg, transparent 55%, rgba(255,255,255,0.7) 100%);
  }

  /* Options row — 2 product cards + 1 add-on tag */
  .aroof-colorsteel .colorsteel-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  .aroof-colorsteel .colorsteel-option {
    position: relative;
    background: var(--p-white);
    border: 1px solid var(--p-line);
    border-radius: var(--p-r-lg);
    padding: 2rem 2rem 1.85rem;
    transition: transform 0.4s var(--p-ease), box-shadow 0.4s, border-color 0.4s;
    overflow: hidden;
  }
  .aroof-colorsteel .colorsteel-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -20px rgba(31,32,39,0.18);
    border-color: rgba(249,188,20,0.45);
  }
  /* Top-stripe with swatch — --swatch comes from Bricks per-card settings */
  .aroof-colorsteel .colorsteel-option::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--swatch, var(--p-brand));
  }
  .aroof-colorsteel .colorsteel-option-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .aroof-colorsteel .colorsteel-option-name {
    font-family: 'Archivo', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--p-ink);
    margin: 0;
  }
  .aroof-colorsteel .colorsteel-option-name sup { font-size: 0.45em; vertical-align: super; font-weight: 500; }
  .aroof-colorsteel .colorsteel-option-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--p-brand-deep);
    background: var(--p-brand-tint);
    padding: 0.35rem 0.65rem;
    border-radius: var(--p-r-pill);
    white-space: nowrap;
  }
  .aroof-colorsteel .colorsteel-option-desc {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--p-ink-soft);
    margin: 0 0 1.25rem 0;
  }
  .aroof-colorsteel .colorsteel-option-specs {
    list-style: none;
    margin: 0;
    padding: 1.1rem 0 0 0;
    border-top: 1px solid var(--p-line);
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  .aroof-colorsteel .colorsteel-option-specs li {
    font-size: 0.78rem;
    color: var(--p-muted);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .aroof-colorsteel .colorsteel-option-specs strong {
    color: var(--p-ink);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: -0.005em;
  }

  /* Add-on strip — full width */
  .aroof-colorsteel .colorsteel-insulation {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--p-ink);
    color: #fff;
    border-radius: var(--p-r-md);
    margin-bottom: 4rem;
  }
  .aroof-colorsteel .colorsteel-ins-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--p-brand);
  }
  .aroof-colorsteel .colorsteel-ins-text {
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
    margin: 0;
  }
  .aroof-colorsteel .colorsteel-ins-text strong { color: #fff; font-weight: 700; }
  .aroof-colorsteel .colorsteel-ins-add {
    font-family: 'Archivo', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--p-brand);
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .aroof-colorsteel .colorsteel-ins-add::before { content: '+ '; }

  /* Footer */
  .aroof-colorsteel .colorsteel-footer {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
  }
  .aroof-colorsteel .colorsteel-map {
    background: var(--p-white);
    border: 1px solid var(--p-line);
    border-radius: var(--p-r-lg);
    overflow: hidden;
    min-height: 320px;
  }
  .aroof-colorsteel .colorsteel-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
  }
  .aroof-colorsteel .colorsteel-contact {
    background: var(--p-white);
    border: 1px solid var(--p-line);
    border-radius: var(--p-r-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .aroof-colorsteel .colorsteel-contact-h {
    font-family: 'Archivo', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--p-ink);
    margin: 0 0 0.65rem 0;
  }
  .aroof-colorsteel .colorsteel-contact-p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--p-muted);
    margin: 0 0 1.5rem 0;
  }
  /* Pill CTA — gold with ink text */
  .aroof-colorsteel .colorsteel-contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--p-brand);
    color: var(--p-ink-deep);
    padding: 0.9rem 1.25rem;
    border-radius: var(--p-r-pill);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: -0.005em;
    box-shadow: 0 10px 26px -10px rgba(249,188,20,0.55);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-bottom: 0.75rem;
  }
  .aroof-colorsteel .colorsteel-contact-cta:hover {
    background: var(--p-brand-2);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(224,165,10,0.6);
  }
  .aroof-colorsteel .colorsteel-contact-cta::after { content: '→'; }
  .aroof-colorsteel .colorsteel-contact-email {
    color: var(--p-ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    text-align: center;
    display: block;
    transition: color 0.2s;
  }
  .aroof-colorsteel .colorsteel-contact-email:hover { color: var(--p-brand-deep); }

  @media (max-width: 900px) {
    .aroof-colorsteel .colorsteel-swatches { grid-template-columns: repeat(4, 1fr); }
    .aroof-colorsteel .colorsteel-options { grid-template-columns: 1fr; }
    .aroof-colorsteel .colorsteel-footer { grid-template-columns: 1fr; }
    .aroof-colorsteel .colorsteel-insulation { grid-template-columns: 1fr; text-align: center; }
  }
  @media (max-width: 480px) {
    .aroof-colorsteel .colorsteel-swatches { grid-template-columns: repeat(2, 1fr); }
    .aroof-colorsteel .colorsteel-option-head { flex-direction: column; align-items: start; }
  }

/* ============================================================================
   Process
   ============================================================================ */
.aroof-process {
    position: relative;
    background: var(--p-ink);
    color: var(--p-paper);
    padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 3rem);
    overflow: hidden;
    font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  }
  /* Dotted texture overlay */
  .aroof-process::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(219,220,225,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.6;
  }
  /* Warm glow accent */
  .aroof-process::after {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 60%; height: 80%;
    background: radial-gradient(ellipse, rgba(249,188,20,0.12), transparent 60%);
    pointer-events: none;
  }

  .aroof-process .process-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
  }
  .aroof-process .process-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(219,220,225,0.12);
  }
  .aroof-process .process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--p-brand);
    margin-bottom: 1.25rem;
  }
  .aroof-process .process-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(249,188,20,0.7);
  }
  .aroof-process .process-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--p-paper);
    margin: 0;
    text-transform: none;
  }
  .aroof-process .process-heading span {
    color: var(--p-brand);
  }
  .aroof-process .process-count {
    font-family: 'Archivo', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--p-steel);
  }
  .aroof-process .process-count strong {
    color: var(--p-paper);
    font-weight: 800;
    font-size: 1.4rem;
    margin-right: 0.4rem;
    letter-spacing: -0.02em;
  }

  /* Grid: 4x2 desktop, 2x4 tablet, 1x8 mobile */
  .aroof-process .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(219,220,225,0.10);
    border: 1px solid rgba(219,220,225,0.10);
    border-radius: var(--p-r-lg);
    overflow: hidden;
  }

  .aroof-process .process-step {
    position: relative;
    background: var(--p-ink);
    padding: 2.25rem 1.75rem 2rem;
    overflow: hidden;
    transition: background 0.4s var(--p-ease);
    min-height: 280px;
    display: flex;
    flex-direction: column;
  }
  .aroof-process .process-step:hover {
    background: var(--p-ink-mid);
  }
  /* Left brand strip on hover */
  .aroof-process .process-step::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--p-brand);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--p-ease);
  }
  .aroof-process .process-step:hover::before {
    transform: scaleY(1);
  }

  /* Big gold step numbers — read like a glowing temperature display */
  .aroof-process .process-num {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(4.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: var(--p-brand);
    margin-bottom: 1.5rem;
    font-variant-numeric: tabular-nums;
    transition: transform 0.4s var(--p-ease), color 0.4s;
  }
  .aroof-process .process-step:hover .process-num {
    transform: translateX(4px);
  }

  .aroof-process .process-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--p-paper);
    margin: 0 0 0.7rem 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }
  .aroof-process .process-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--p-steel-light);
    margin: 0;
    flex: 1;
  }

  /* Tablet */
  @media (max-width: 1000px) {
    .aroof-process .process-grid { grid-template-columns: repeat(2, 1fr); }
  }
  /* Mobile */
  @media (max-width: 560px) {
    .aroof-process .process-grid { grid-template-columns: 1fr; }
    .aroof-process .process-step { min-height: 0; padding: 1.75rem 1.25rem; }
    .aroof-process .process-num { font-size: 3.5rem; margin-bottom: 1rem; }
    .aroof-process .process-head { grid-template-columns: 1fr; align-items: start; }
    .aroof-process .process-count { display: none; }
  }

/* ============================================================================
   Blog
   ============================================================================ */
.aroof-blog {
    font-family: 'Archivo', system-ui, sans-serif;
  }

  /* Top gold intro band — full gold with INK text (white-on-gold fails) */
  .aroof-blog .blog-intro-band {
    position: relative;
    background: linear-gradient(95deg, #E0A50A 0%, #F9BC14 50%, #FFD34F 100%);
    color: var(--p-ink-deep);
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 4vw, 3rem);
    overflow: hidden;
	width: 100%;
  }
  .aroof-blog .blog-intro-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(31,32,39,0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
  }
  .aroof-blog .blog-intro-band::after {
    /* Subtle downward triangle indicator into the dark section */
    content: '';
    position: absolute;
    bottom: -1px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 14px solid var(--p-brand);
    z-index: 2;
  }
  .aroof-blog .blog-intro-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
  }
  .aroof-blog .blog-intro-text {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: clamp(1.25rem, 2.4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--p-ink-deep);
  }
  .aroof-blog .blog-intro-text::before {
    content: '';
    width: 24px; height: 2px;
    background: rgba(31,32,39,0.4);
    border-radius: 2px;
  }
  .aroof-blog .blog-intro-text::after {
    content: '';
    width: 24px; height: 2px;
    background: rgba(31,32,39,0.4);
    border-radius: 2px;
  }

  /* Dark main section */
  .aroof-blog .blog-main {
    position: relative;
    background: var(--p-ink-deep);
    color: var(--p-paper);
    padding: clamp(4rem, 7vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
    overflow: hidden;
	width: 100%;
  }
  .aroof-blog .blog-main::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(219,220,225,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  }
  .aroof-blog .blog-main::after {
    content: '';
    position: absolute;
    top: -10%; left: -10%;
    width: 50%; height: 90%;
    background: radial-gradient(ellipse, rgba(249, 188, 20, 0.09), transparent 65%);
    pointer-events: none;
  }
  .aroof-blog .blog-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
  }

  /* Header */
  .aroof-blog .blog-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .aroof-blog .blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--p-brand);
    margin-bottom: 1rem;
  }
  .aroof-blog .blog-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(249, 188, 20, 0.6);
  }
  .aroof-blog .blog-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--p-paper);
    margin: 0;
    text-transform: none;
  }

  /* Cards grid */
  .aroof-blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .aroof-blog .blog-card {
    position: relative;
    background: var(--p-ink);
    border: 1px solid var(--p-line-dark);
    border-radius: var(--p-r-lg);
    overflow: hidden;
    transition: transform 0.4s var(--p-ease), border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }
  .aroof-blog .blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 188, 20, 0.55);
    box-shadow: 0 20px 50px -20px rgba(249, 188, 20, 0.22);
  }
  /* Gold strip on hover */
  .aroof-blog .blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--p-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--p-ease);
    z-index: 2;
  }
  .aroof-blog .blog-card:hover::before { transform: scaleX(1); }

  .aroof-blog .blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
  }
  /* Works whether the inner node is a div with a bg image OR an <img>
     (Bricks renders an <img> here — object-fit keeps it covering) */
  .aroof-blog .blog-card-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--p-ink-deep);
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--p-ease);
  }
  .aroof-blog .blog-card:hover .blog-card-image-inner {
    transform: scale(1.04);
  }
  /* Vignette overlay on image */
  .aroof-blog .blog-card-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(31, 32, 39, 0.4) 100%);
    pointer-events: none;
  }

  .aroof-blog .blog-card-content {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
  }
  .aroof-blog .blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--p-brand-2);
  }
  .aroof-blog .blog-card-date::before {
    content: '';
    width: 14px;
    height: 2px;
    background: var(--p-brand);
    border-radius: 2px;
  }
  .aroof-blog .blog-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.012em;
    color: var(--p-paper);
    margin: 0;
    text-transform: none;
    flex: 1;
  }
  .aroof-blog .blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--p-steel-light);
    margin-top: 0.5rem;
    transition: color 0.25s, gap 0.25s;
  }
  .aroof-blog .blog-card:hover .blog-card-link {
    color: var(--p-brand);
    gap: 0.8rem;
  }
  .aroof-blog .blog-card-link::after { content: '→'; }

  /* Footer link to all posts */
  .aroof-blog .blog-footer {
    margin-top: 3rem;
    text-align: center;
  }
  .aroof-blog .blog-all {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.85rem;
    background: transparent;
    color: var(--p-paper);
    border: 1.5px solid var(--p-line-dark-strong);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--p-r-sm);
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
  }
  .aroof-blog .blog-all:hover {
    background: var(--p-brand);
    border-color: var(--p-brand);
    color: var(--p-ink-deep);
    transform: translateY(-2px);
  }
  .aroof-blog .blog-all::after { content: '→'; transition: transform 0.2s; }
  .aroof-blog .blog-all:hover::after { transform: translateX(4px); }

  @media (max-width: 900px) {
    .aroof-blog .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  }
  @media (max-width: 560px) {
    .aroof-blog .blog-intro-text { font-size: 1.1rem; gap: 0.5rem; }
    .aroof-blog .blog-intro-text::before,
    .aroof-blog .blog-intro-text::after { width: 14px; }
    .aroof-blog .blog-card-content { padding: 1.25rem 1.25rem 1.5rem; }
  }

/* ============================================================================
   FAQ
   ============================================================================ */
.aroof-faq {
    position: relative;
    background: var(--p-paper);
    color: var(--p-ink-soft);
    padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 3rem);
    overflow: hidden;
    font-family: 'Archivo', system-ui, sans-serif;
  }
  .aroof-faq::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(31,32,39,0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    opacity: 0.7;
  }
  .aroof-faq::after {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 45%; height: 80%;
    background: radial-gradient(ellipse, rgba(249, 188, 20, 0.06), transparent 65%);
    pointer-events: none;
  }

  .aroof-faq .faq-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
  }

  /* Header */
  .aroof-faq .faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .aroof-faq .faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--p-brand-deep);
    margin-bottom: 1rem;
  }
  .aroof-faq .faq-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(249, 188, 20, 0.55);
  }
  .aroof-faq .faq-heading {
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.022em;
    color: var(--p-ink);
    margin: 0;
    text-transform: none;
  }

  /* 2-column grid of FAQs */
  .aroof-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .aroof-faq details {
    background: var(--p-white);
    border: 1px solid var(--p-line);
    border-radius: var(--p-r-md);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .aroof-faq details:hover {
    border-color: var(--p-line-strong);
  }
  .aroof-faq details[open] {
    border-color: var(--p-brand-2);
    box-shadow: 0 6px 20px -8px rgba(224, 165, 10, 0.25);
  }
  /* Left gold strip when open */
  .aroof-faq details::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--p-brand);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s var(--p-ease);
    z-index: 1;
  }
  .aroof-faq details[open]::before { transform: scaleY(1); }

  .aroof-faq summary {
    display: grid;
    grid-template-columns: 36px 1fr 28px;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.5rem 1.15rem 1.25rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.25s;
  }
  .aroof-faq summary::-webkit-details-marker { display: none; }
  .aroof-faq summary::marker { content: ''; }
  .aroof-faq summary:hover { background: var(--p-paper); }
  .aroof-faq details[open] summary { background: var(--p-paper); }

  .aroof-faq .faq-num {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--p-brand-deep);
    font-variant-numeric: tabular-nums;
  }
  .aroof-faq .faq-q {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: var(--p-ink);
    margin: 0;
  }
  .aroof-faq .faq-toggle {
    position: relative;
    width: 28px; height: 28px;
    border: 1.5px solid var(--p-line-strong);
    border-radius: 50%;
    transition: background 0.25s, border-color 0.25s, transform 0.3s;
    flex-shrink: 0;
  }
  .aroof-faq .faq-toggle .line {
    display: none;
  }
  .aroof-faq .faq-toggle::before,
  .aroof-faq .faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--p-ink);
    transition: transform 0.3s var(--p-ease), background 0.25s;
  }
  .aroof-faq .faq-toggle::before {
    width: 11px; height: 1.5px;
    transform: translate(-50%, -50%);
  }
  .aroof-faq .faq-toggle::after {
    width: 1.5px; height: 11px;
    transform: translate(-50%, -50%);
  }
  /* Open state: gold circle, ink glyph */
  .aroof-faq details[open] .faq-toggle {
    background: var(--p-brand);
    border-color: var(--p-brand);
    transform: rotate(180deg);
  }
  .aroof-faq details[open] .faq-toggle::before,
  .aroof-faq details[open] .faq-toggle::after {
    background: var(--p-ink-deep);
  }
  .aroof-faq details[open] .faq-toggle::after {
    transform: translate(-50%, -50%) scaleY(0);
  }

  .aroof-faq .faq-a {
    padding: 0 1.5rem 1.5rem 4.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--p-muted);
    margin: 0;
    border-top: 1px solid var(--p-line);
    padding-top: 1.15rem;
  }
  .aroof-faq .faq-a strong { color: var(--p-ink); font-weight: 700; }

  @media (max-width: 780px) {
    .aroof-faq .faq-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .aroof-faq summary { grid-template-columns: 28px 1fr 24px; padding: 1rem 1rem 1rem 1rem; gap: 0.75rem; }
    .aroof-faq .faq-q { font-size: 0.95rem; }
    .aroof-faq .faq-a { padding-left: 1rem; padding-right: 1rem; }
  }

/* ============================================================================
   Pricing
   ============================================================================ */
   .aroof-pricing {
    position: relative;
    background: var(--p-paper);
    color: var(--p-ink-soft); /* fix: original referenced undefined --p-ink-2 */
    padding: clamp(4.5rem, 7vw, 7rem) clamp(1.25rem, 4vw, 3rem);
    overflow: hidden;
    font-family: 'Archivo', system-ui, sans-serif;
  }
  .aroof-pricing::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(31, 32, 39, 0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    opacity: 0.65;
  }
  .aroof-pricing::after {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 45%; height: 80%;
    background: radial-gradient(ellipse, rgba(249, 188, 20, 0.06), transparent 65%);
    pointer-events: none;
  }

  .aroof-pricing .pricing-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
  }

  /* Header */
  .aroof-pricing .pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
  .aroof-pricing .pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--p-brand-deep);
    margin-bottom: 1.25rem;
  }
  .aroof-pricing .pricing-eyebrow::before,
  .aroof-pricing .pricing-eyebrow::after {
    content: '';
    width: 18px; height: 2px;
    background: var(--p-brand-2);
    border-radius: 2px;
    opacity: 0.7;
  }
  .aroof-pricing .pricing-heading {
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--p-ink);
    margin: 0 0 1.25rem 0;
  }
  /* Accent word: gold highlighter (see product showcase note) */
  .aroof-pricing .pricing-heading span {
    color: inherit;
    background-image: linear-gradient(180deg, rgba(249,188,20,0) 58%, rgba(249,188,20,0.55) 58%);
    border-radius: 6px;
    padding: 0 0.08em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .aroof-pricing .pricing-lede {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--p-muted);
    margin: 0;
  }

  /* Table caption strip */
  .aroof-pricing .pricing-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
    padding: 0 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--p-muted);
    font-weight: 600;
  }
  .aroof-pricing .pricing-caption span:last-child { color: var(--p-brand-deep); }

  /* Pricing table — desktop. Switched to border-collapse: separate so the
     card can carry rounded corners; row rules moved from <tr> to <td>. */
  .aroof-pricing .pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--p-white);
    border: 1px solid var(--p-line);
    border-radius: var(--p-r-lg);
    box-shadow: 0 12px 32px -18px rgba(31, 32, 39, 0.18);
    margin-bottom: 2.5rem;
  }
  .aroof-pricing .pricing-table thead th {
    background: var(--p-ink);
    color: var(--p-paper);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--p-brand);
    white-space: nowrap;
  }
  .aroof-pricing .pricing-table thead th:first-child { border-top-left-radius: 15px; }
  .aroof-pricing .pricing-table thead th:last-child  { border-top-right-radius: 15px; }
  .aroof-pricing .pricing-table thead th:nth-child(2),
  .aroof-pricing .pricing-table thead th:nth-child(3) {
    text-align: left;
  }
  .aroof-pricing .pricing-table tbody tr {
    transition: background 0.2s;
  }
  .aroof-pricing .pricing-table tbody td {
    border-bottom: 1px solid var(--p-line);
  }
  .aroof-pricing .pricing-table tbody tr:last-child td { border-bottom: 0; }
  .aroof-pricing .pricing-table tbody tr:last-child td:first-child { border-bottom-left-radius: 15px; }
  .aroof-pricing .pricing-table tbody tr:last-child td:last-child  { border-bottom-right-radius: 15px; }
  .aroof-pricing .pricing-table tbody tr:hover { background: var(--p-paper); }

  .aroof-pricing .pricing-table td {
    padding: 1.15rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--p-ink-soft); /* fix: original referenced undefined --p-ink-2 */
    vertical-align: top;
  }
  .aroof-pricing .pricing-table td.pricing-job {
    font-weight: 600;
    color: var(--p-ink);
    letter-spacing: -0.005em;
    width: 44%;
  }
  /* Prices: deep amber, not raw gold — gold text on white is unreadable */
  .aroof-pricing .pricing-table td.pricing-cost {
    font-weight: 800;
    color: var(--p-brand-deep);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    white-space: nowrap;
    width: 34%;
  }
  .aroof-pricing .pricing-table td.pricing-cost.is-quote {
    color: var(--p-ink);
    font-style: italic;
    font-weight: 700;
  }
  .aroof-pricing .pricing-table td.pricing-time {
    color: var(--p-muted);
    font-weight: 500;
    white-space: nowrap;
    width: 22%;
  }
  .aroof-pricing .pricing-table td.pricing-time::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--p-brand-2);
    border-radius: 50%;
    margin-right: 0.6rem;
    vertical-align: middle;
  }

  /* Callout panels — 2-column grid */
  .aroof-pricing .pricing-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .aroof-pricing .pricing-note {
    background: var(--p-white);
    border: 1px solid var(--p-line);
    border-top: 3px solid var(--p-brand);
    border-radius: var(--p-r-md);
    padding: 1.5rem 1.65rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--p-muted);
  }
  .aroof-pricing .pricing-note-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--p-brand-deep);
    background: var(--p-brand-tint);
    padding: 0.3rem 0.65rem;
    border-radius: var(--p-r-pill);
    margin-bottom: 0.85rem;
  }
  .aroof-pricing .pricing-note strong { color: var(--p-ink); font-weight: 700; }

  /* CTA band */
  .aroof-pricing .pricing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: var(--p-ink);
    color: var(--p-paper);
    padding: 1.5rem 2rem;
    border-radius: var(--p-r-lg);
    position: relative;
    overflow: hidden;
  }
  .aroof-pricing .pricing-cta::before {
    content: '';
    position: absolute;
    top: 0; right: -10%;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse, rgba(249, 188, 20, 0.18), transparent 65%);
    pointer-events: none;
  }
  .aroof-pricing .pricing-cta-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .aroof-pricing .pricing-cta-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-brand);
  }
  .aroof-pricing .pricing-cta-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--p-paper);
  }
  .aroof-pricing .pricing-cta-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.75rem;
    background: var(--p-brand);
    color: var(--p-ink-deep);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--p-r-sm);
    transition: background 0.25s var(--p-ease), color 0.25s var(--p-ease), transform 0.2s;
    box-shadow: 0 8px 22px -8px rgba(249, 188, 20, 0.6);
    white-space: nowrap;
  }
  .aroof-pricing .pricing-cta-link::after {
    content: '→';
    transition: transform 0.2s;
  }
  .aroof-pricing .pricing-cta-link:hover {
    background: var(--p-white);
    color: var(--p-ink-deep);
    transform: translateY(-2px);
  }
  .aroof-pricing .pricing-cta-link:hover::after { transform: translateX(4px); }

  /* Responsive: stack callout cards, then transform the table into card rows */
  @media (max-width: 820px) {
    .aroof-pricing .pricing-notes { grid-template-columns: 1fr; }
  }
  @media (max-width: 720px) {
    /* Transform the table into stacked cards on mobile */
    .aroof-pricing .pricing-table,
    .aroof-pricing .pricing-table thead,
    .aroof-pricing .pricing-table tbody,
    .aroof-pricing .pricing-table tr,
    .aroof-pricing .pricing-table td {
      display: block;
      width: 100% !important;
    }
    .aroof-pricing .pricing-table thead { display: none; }
    .aroof-pricing .pricing-table {
      background: transparent;
      box-shadow: none;
      border: 0;
      border-radius: 0;
    }
    .aroof-pricing .pricing-table tbody tr {
      background: var(--p-white);
      border: 1px solid var(--p-line);
      border-top: 3px solid var(--p-brand);
      border-radius: var(--p-r-md);
      margin-bottom: 0.85rem;
      padding: 1.1rem 1.25rem 0.4rem;
    }
    .aroof-pricing .pricing-table tbody tr:hover { background: var(--p-white); }
    .aroof-pricing .pricing-table tbody td { border-bottom: 0; }
    .aroof-pricing .pricing-table tbody tr:last-child td:first-child,
    .aroof-pricing .pricing-table tbody tr:last-child td:last-child { border-radius: 0; }
    .aroof-pricing .pricing-table td {
      padding: 0.5rem 0;
      position: relative;
      padding-left: 7.5rem;
      font-size: 0.92rem;
    }
    .aroof-pricing .pricing-table td::before {
      content: attr(data-label);
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 7rem;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--p-muted);
    }
    .aroof-pricing .pricing-table td.pricing-job {
      padding-left: 0;
      padding-bottom: 0.65rem;
      margin-bottom: 0.65rem;
      border-bottom: 1px solid var(--p-line);
      font-size: 1rem;
    }
    .aroof-pricing .pricing-table td.pricing-job::before { display: none; }
    .aroof-pricing .pricing-table td.pricing-time::before {
      content: attr(data-label);
      background: transparent;
      width: 7rem;
      height: auto;
      border-radius: 0;
      margin-right: 0;
    }

    .aroof-pricing .pricing-cta { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
    .aroof-pricing .pricing-cta-link { width: 100%; justify-content: center; }
  }
/* ============================================================================
   Footer
   ============================================================================ */
.aroof-footer {
    position: relative;
    background: var(--p-ink-deep);
    color: var(--p-steel-light);
    font-family: 'Archivo', system-ui, sans-serif;
    overflow: hidden;
  }
  .aroof-footer::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(219,220,225,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(219,220,225,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 80% 30%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 80% 30%, #000 30%, transparent 80%);
  }
  .aroof-footer::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 60%;
    background: radial-gradient(ellipse at top right, rgba(249, 188, 20, 0.08), transparent 65%);
    pointer-events: none;
  }

  /* Main grid */
  .aroof-footer .footer-main {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(3.5rem, 5.5vw, 5.5rem) clamp(1.5rem, 4vw, 3rem) clamp(2.5rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
    gap: clamp(2rem, 4vw, 3.5rem);
	width: 100%;
  }

  /* Column 1 — brand */
  .aroof-footer .footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }
  .aroof-footer .footer-logo {
    display: inline-block;
    max-width: 200px;
  }
  .aroof-footer .footer-logo img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  /* SVG-style logo placeholder — replace with your real logo */
  .aroof-footer .footer-logo-svg {
    width: 100%;
    height: auto;
  }

  .aroof-footer .footer-hours {
    border-top: 1px solid var(--p-line-dark);
    padding-top: 1.25rem;
  }
  .aroof-footer .footer-hours-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-brand-2);
    margin-bottom: 1rem;
  }
  .aroof-footer .footer-hours-label::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(249, 188, 20, 0.55);
  }
  .aroof-footer .footer-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
  }
  .aroof-footer .footer-hours-list li {
    display: grid;
    grid-template-columns: 90px 1fr;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--p-steel-light);
  }
  .aroof-footer .footer-hours-list li span:first-child {
    color: var(--p-steel);
    font-weight: 500;
  }
  .aroof-footer .footer-hours-list li.is-closed span:last-child {
    color: var(--p-steel);
    font-style: italic;
  }

  .aroof-footer .footer-social {
    display: flex;
    gap: 0.65rem;
  }
  .aroof-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--p-line-dark-strong);
    border-radius: 50%;
    color: var(--p-steel-light);
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
  }
  .aroof-footer .footer-social a:hover {
    background: var(--p-brand);
    border-color: var(--p-brand);
    color: var(--p-ink-deep);
    transform: translateY(-2px);
  }
  .aroof-footer .footer-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }

  /* Columns 2 & 3 — links */
  .aroof-footer .footer-col-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-brand-2);
    margin: 0 0 1.25rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--p-line-dark);
  }
  .aroof-footer .footer-col-title::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(249, 188, 20, 0.55);
  }
  .aroof-footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
  }
  .aroof-footer .footer-links a {
    color: var(--p-steel-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s, padding-left 0.25s var(--p-ease);
  }
  .aroof-footer .footer-links a::before {
    content: '→';
    color: var(--p-brand);
    opacity: 0;
    margin-left: -0.95rem;
    transition: opacity 0.25s, margin-left 0.25s;
    font-weight: 700;
  }
  .aroof-footer .footer-links a:hover {
    color: var(--p-white);
  }
  .aroof-footer .footer-links a:hover::before {
    opacity: 1;
    margin-left: 0;
  }
  /* Direct-contact items (phone, email) get gold icon dots with ink glyphs */
  .aroof-footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--p-steel-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition: color 0.2s;
    margin-bottom: 0.85rem;
  }
  .aroof-footer .footer-contact-item:hover { color: var(--p-white); }
  .aroof-footer .footer-contact-icon {
    width: 30px;
    height: 30px;
    background: var(--p-brand);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--p-ink-deep);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(249, 188, 20, 0.3);
  }
  .aroof-footer .footer-contact-icon svg {
    width: 13px;
    height: 13px;
    display: block;
  }
  .aroof-footer .footer-policies {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--p-line-dark);
  }

  /* Column 4 — map */
  .aroof-footer .footer-map-col { min-width: 0; }
  .aroof-footer .footer-map-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-brand-2);
    margin: 0 0 1.25rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--p-line-dark);
  }
  .aroof-footer .footer-map-label::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--p-brand);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(249, 188, 20, 0.55);
  }
  .aroof-footer .footer-map-frame {
    position: relative;
    border: 1px solid var(--p-line-dark-strong);
    border-radius: var(--p-r-sm);
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: var(--p-ink-mid);
  }
  .aroof-footer .footer-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.65) contrast(1.05);
  }
  /* Gold corner brackets on the map */
  .aroof-footer .footer-map-frame::before,
  .aroof-footer .footer-map-frame::after {
    content: '';
    position: absolute;
    width: 24px; height: 24px;
    pointer-events: none;
    z-index: 2;
  }
  .aroof-footer .footer-map-frame::before {
    top: -1px; left: -1px;
    border-top: 2px solid var(--p-brand);
    border-left: 2px solid var(--p-brand);
    border-top-left-radius: 8px;
  }
  .aroof-footer .footer-map-frame::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--p-brand);
    border-right: 2px solid var(--p-brand);
    border-bottom-right-radius: 8px;
  }

  /* Bottom strip */
  .aroof-footer .footer-bottom {
    position: relative;
    z-index: 1;
    background: var(--p-ink);
    border-top: 1px solid var(--p-line-dark);
	width: 100%;
  }
  .aroof-footer .footer-bottom-inner{
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--p-steel);
  }
  .aroof-footer .footer-bottom-inner .brxe-text{
    font-size: 0.82rem;
    color: var(--p-steel);
	margin: 0px;
  }
  .aroof-footer .footer-bottom a {
    color: var(--p-steel-light);
    text-decoration: none;
    transition: color 0.2s;
  }
  .aroof-footer .footer-bottom a:hover { color: var(--p-brand); }

  /* Responsive */
  @media (max-width: 1000px) {
    .aroof-footer .footer-main {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }
    .aroof-footer .footer-brand-col { grid-column: 1 / -1; }
    .aroof-footer .footer-map-col { grid-column: 1 / -1; max-width: 540px; }
  }
  @media (max-width: 640px) {
    .aroof-footer .footer-main {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .aroof-footer .footer-bottom-inner {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      font-size: 0.78rem;
    }
    .aroof-footer .footer-bottom-inner .brxe-text {
      text-align: left;
      font-size: 0.78rem;
    }
  }

/* ============================================================================
   BRAND SWEEP — overrides for colours hardcoded in Bricks inline CSS and the
   FluentForm custom CSS (old red #ba181e, purple #8f42ec, black form button).
   These use !important + slightly higher specificity so they win against the
   inline styles that load after this file. Safe to delete any block below
   once you've changed the same value inside Bricks / FluentForm settings.
   ============================================================================ */

/* Mega-menu promo tiles ("Get A Free Quote") — were red / purple */
#brxe-tloljd,
#brxe-joltin,
.mm-slate-item-promo.brxe-block {
  background-color: var(--p-brand) !important;
  color: var(--p-ink-deep) !important;
}
.mm-slate-item-promo .mm__freebies-item__link,
#brxe-tloljd .mm__freebies-item__link,
#brxe-joltin .mm__freebies-item__link {
  color: var(--p-ink-deep) !important;
}
.mm-slate-item-promo.brxe-block:hover {
  background-color: var(--p-brand-2) !important;
}

/* Header nav CTA pill — was black; now gold with ink text */
#brxe-rpbavx .mm:not(.brx-open) .mm__nav-items > li:last-of-type a.mm__nav-link,
#brxe-rpbavx .mm:not(.brx-open) .mm__nav-items > li:last-of-type > .brx-submenu-toggle {
  background-color: var(--p-brand) !important;
  color: var(--p-ink-deep) !important;
  border-radius: var(--p-r-sm) !important;
  font-weight: 700 !important;
}
#brxe-rpbavx .mm:not(.brx-open) .mm__nav-items > li:last-of-type a:hover.mm__nav-link {
  background-color: var(--p-brand-2) !important;
  color: var(--p-ink-deep) !important;
  box-shadow: 0 10px 24px -10px rgba(224, 165, 10, 0.6) !important;
}
#brxe-rpbavx .mm.brx-open ul.mm__nav-items > li:last-of-type .mm__nav-link,
#brxe-rpbavx .mm.brx-open ul.mm__nav-items > li:last-of-type > .brx-submenu-toggle {
  background-color: var(--p-brand) !important;
  color: var(--p-ink-deep) !important;
  border-radius: var(--p-r-sm) !important;
}
#brxe-rpbavx .mm.brx-open ul.mm__nav-items > li:last-of-type .mm__nav-link > a {
  color: inherit !important;
}

/* Dropdown panels — replace the purple-tinted shadows with neutral charcoal */
.mm .mm__dropdown--mega .mm__dropdown-content,
.mm .mm__dropdown--menu .mm__dropdown-content {
  box-shadow: 0 24px 60px -18px rgba(31, 32, 39, 0.28) !important;
}

/* Single-post banner links — were red on hover */
main .banner-text a:hover {
  color: var(--p-brand) !important;
}

/* FluentForm (quote form) — button was black with a red hover; inputs
   restyled to match the panel. Higher specificity than the plugin's
   .banner_section_form_css rules, so these win. */
form.banner_section_form_css .ff-btn,
form.banner_section_form_css .ff-btn-submit {
  background-color: var(--p-brand) !important;
  color: var(--p-ink-deep) !important;
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  border-radius: var(--p-r-sm) !important;
  box-shadow: 0 14px 30px -12px rgba(249, 188, 20, 0.55);
}
form.banner_section_form_css .ff-btn:hover,
form.banner_section_form_css .ff-btn-submit:hover {
  background-color: var(--p-brand-2) !important;
  color: var(--p-ink-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(224, 165, 10, 0.6);
}
form.banner_section_form_css input,
form.banner_section_form_css textarea,
form.banner_section_form_css select {
  border: 1.5px solid var(--p-line-strong) !important;
  border-radius: var(--p-r-sm) !important;
  color: var(--p-ink-deep) !important;
  caret-color: var(--p-brand-2);
  transition: border-color 0.2s, box-shadow 0.2s;
}
form.banner_section_form_css input:focus,
form.banner_section_form_css textarea:focus,
form.banner_section_form_css select:focus {
  outline: none !important;
  border-color: var(--p-brand-2) !important;
  box-shadow: 0 0 0 3px rgba(249, 188, 20, 0.20) !important;
}