/*
 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.1
 Text Domain:  bricks
*/
/* ============================================================================
   ASBESTOS ROOFING — Production stylesheet
   Single source of design tokens at :root, scoped section styles below.
   ============================================================================ */
/* ----- Design tokens ------------------------------------------------------- */
:root {
  /* Brand */
  --p-brand:           #ba181e;
  --p-brand-2:         #d62229;
  --p-brand-deep:      #7a0e13;
 
  /* Ink (deepest → lightest) */
  --p-ink-deep:        #0e1114;
  --p-ink:             #14171a;
  --p-ink-mid:         #1c2025;
  --p-ink-soft:        #2a2f36;
 
  /* Neutral text + surfaces */
  --p-steel:           #8a939e;
  --p-steel-light:     #c5cdd6;
  --p-muted:           #5a626e;
  --p-paper:           #f5f2ec;
  --p-paper-2:         #ebe7df;
  --p-white:           #ffffff;
 
  /* Hairlines */
  --p-line:            rgba(20, 23, 26, 0.10);
  --p-line-strong:     rgba(20, 23, 26, 0.18);
  --p-line-dark:       rgba(197, 205, 214, 0.10);
  --p-line-dark-strong: rgba(197, 205, 214, 0.18);
 
  /* 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 * {
  box-sizing: border-box;
}
.main {
  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 { display: block; max-width: 100%; }
 
 
/* ============================================================================
   Hero
   ============================================================================ */
.aroof-hero {
    /* Set your hero photo URL via inline style:
       <section class="aroof-hero" style="--hero-bg: url('https://your-roof-photo.jpg');"> */
    --hero-bg: none;
 
    position: relative;
    background-color: var(--p-ink-deep);
    background-image:
      linear-gradient(135deg, rgba(14, 17, 20, 0.88) 0%, rgba(14, 17, 20, 0.72) 50%, rgba(122, 14, 19, 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;
    display: flex;
    align-items: center;
  }
  .aroof-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(197,205,214,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(197,205,214,0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 70% 50%, #000 30%, transparent 75%);
  }
  .aroof-hero::after {
    content: '';
    position: absolute;
    top: -10%; right: -15%;
    width: 70%; height: 90%;
    background: radial-gradient(ellipse, rgba(186,24,30,0.22), 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-2);
    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 var(--p-brand), 0 0 32px rgba(186,24,30,0.5);
    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); }
  }
 
  .aroof-hero .hero-h1 {
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--p-paper);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
  }
  .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.38em;
    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 */
  .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 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(197,205,214,0.12);
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.2,0.7,0.2,1);
  }
  .aroof-hero .hero-tag:hover {
    background: rgba(186,24,30,0.12);
    border-color: var(--p-brand);
    color: var(--p-paper);
  }
 
  /* CTA stack — phone + email, both with red circle icon */
  .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-2); }
  .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: #fff;
    box-shadow: 0 0 24px rgba(186,24,30,0.4);
    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 */
  .aroof-hero .hero-form-wrap {
    position: relative;
    background: var(--p-paper);
    color: var(--p-ink-deep);
    border-radius: 6px;
    padding: 2rem 2rem 2.25rem;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
    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: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 0.7rem;
    border-radius: 3px;
  }
  .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: uppercase;
    line-height: 1.05;
  }
  .aroof-hero .hero-form-sub {
    font-size: 0.88rem;
    color: #6c7480;
    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 rgba(20,23,26,0.10);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--p-ink-deep);
    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);
    box-shadow: 0 0 0 3px rgba(186,24,30,0.10);
  }
  .aroof-hero .hero-form textarea { resize: vertical; min-height: 70px; }
  .aroof-hero .hero-form button {
    margin-top: 0.5rem;
    padding: 1.1rem 1.5rem;
    background: var(--p-ink-deep);
    color: var(--p-paper);
    border: none;
    border-radius: 4px;
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
  }
  .aroof-hero .hero-form button:hover {
    background: var(--p-brand);
    transform: translateY(-2px);
  }
  .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: 560px) {
    .aroof-hero { padding: 5rem 1rem 3rem; min-height: auto; }
    .aroof-hero .hero-form-row { grid-template-columns: 1fr; }
    .aroof-hero .hero-spec { flex: 1 1 50%; padding: 0.5rem 0.75rem; border-right: 0; }
    .aroof-hero .hero-spec:nth-child(odd) { border-right: 1px solid rgba(197,205,214,0.10); }
    .aroof-hero .hero-cta-row { gap: 1rem; }
    .aroof-hero .hero-contact { font-size: 1.15rem; }
    .aroof-hero .hero-contact--email { font-size: 0.95rem; }
  }
 
/* ============================================================================
   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(20, 23, 26, 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(186, 24, 30, 0.05), 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; }
 
  .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);
    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(186, 24, 30, 0.5);
    flex-shrink: 0;
  }
 
  .aroof-intro .intro-heading {
    font-size: clamp(1.8rem, 3.4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.022em;
    color: var(--p-ink);
    margin: 0 0 2rem 0;
    text-transform: uppercase;
  }
 
  /* 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 {
    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 { margin-bottom: 0; }
  .aroof-intro .intro-body strong {
    color: var(--p-ink);
    font-weight: 700;
  }
 
  /* CTA button — industrial v3 style */
  .aroof-intro .intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.05rem 1.85rem;
    background: var(--p-ink);
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 8px 20px -8px rgba(20, 23, 26, 0.35);
  }
  .aroof-intro .intro-cta:hover {
    background: var(--p-brand);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(186, 24, 30, 0.45);
  }
  .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 red corner brackets */
  .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);
    border-left: 3px solid var(--p-brand);
  }
  .aroof-intro .intro-image::after {
    bottom: 0; right: 0;
    border-bottom: 3px solid var(--p-brand);
    border-right: 3px solid var(--p-brand);
  }
  .aroof-intro .intro-image-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: var(--p-ink);
    background-size: cover;
    background-position: center;
    box-shadow:
      0 4px 12px rgba(20, 23, 26, 0.08),
      0 24px 60px -15px rgba(20, 23, 26, 0.28);
    /* SET YOUR ROOF 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: 1px;
    background: var(--p-brand);
  }
 
  @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 (re-declared per section for scoping safety) ===== */
 
  /* =====================================================================
     1.  DARK DIVIDER — "Specialist Asbestos Roof Replacement"
     ===================================================================== */
  .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(197,205,214,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    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(186, 24, 30, 0.10), 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: 2px;
  }
  .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-paper); 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(20,23,26,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);
    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(186, 24, 30, 0.5);
    flex-shrink: 0;
  }
 
  .aroof-service .service-heading {
    font-size: clamp(1.65rem, 2.85vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    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-dark);
    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: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 8px 20px -8px rgba(20, 23, 26, 0.35);
  }
  .aroof-service .service-cta:hover {
    background: var(--p-brand);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(186, 24, 30, 0.45);
  }
  .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 red 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);
    border-left: 3px solid var(--p-brand);
  }
  .aroof-service .service-image::after {
    bottom: 0; right: 0;
    border-bottom: 3px solid var(--p-brand);
    border-right: 3px solid var(--p-brand);
  }
  .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;
    box-shadow:
      0 4px 12px rgba(20, 23, 26, 0.08),
      0 24px 60px -15px rgba(20, 23, 26, 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-roof.jpg');"> */
    --cta-bg: none;
 
    position: relative;
    background-color: var(--p-ink-deep);
    background-image:
      linear-gradient(95deg, rgba(14, 17, 20, 0.94) 0%, rgba(14, 17, 20, 0.78) 45%, rgba(186, 24, 30, 0.62) 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(186, 24, 30, 0.32), 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-2);
    font-weight: 800;
  }
  .aroof-cta-band .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--p-brand);
    color: #fff;
    text-decoration: none;
    padding: 1.15rem 2rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 14px 36px -10px rgba(186, 24, 30, 0.6);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    white-space: nowrap;
  }
  .aroof-cta-band .cta-button:hover {
    background: var(--p-paper);
    color: var(--p-ink-deep);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(245, 242, 236, 0.4);
  }
  .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(197,205,214,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(197,205,214,0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    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(186, 24, 30, 0.16), 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-2);
    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(186, 24, 30, 0.55);
  }
  .aroof-why .why-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--p-paper);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
  }
  .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-paper); font-weight: 600; }
 
  /* Trust badges row */
  .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.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--p-line-dark);
    border-radius: 3px;
    transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .aroof-why .why-badge:hover {
    background: rgba(186, 24, 30, 0.12);
    border-color: var(--p-brand);
    color: var(--p-paper);
  }
 
  /* Right cards column */
  .aroof-why .why-cards {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--p-line-dark);
    border: 1px solid var(--p-line-dark);
  }
  .aroof-why .why-card {
    position: relative;
    background: var(--p-ink);
    padding: 2rem 2rem 2rem 5.5rem;
    transition: background 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
    overflow: hidden;
  }
  .aroof-why .why-card:hover { background: var(--p-ink-mid); }
  /* Red 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 cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .aroof-why .why-card:hover::before { transform: scaleY(1); }
  /* Big red 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 cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .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: uppercase;
  }
  .aroof-why .why-card-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--p-steel-light);
    margin: 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;
    }
  }
 
/* ============================================================================
   COLORSTEEL® Showcase
   ============================================================================ */
.aroof-colorsteel {
    background: var(--p-paper);
    color: var(--p-ink-soft);
    padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 3rem);
    font-family: 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: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-brand);
    margin-bottom: 1rem;
  }
  .aroof-colorsteel .colorsteel-eyebrow::before,
  .aroof-colorsteel .colorsteel-eyebrow::after {
    content: '';
    width: 24px; height: 1px;
    background: var(--p-brand);
    opacity: 0.6;
  }
  .aroof-colorsteel .colorsteel-heading {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--p-ink);
    margin: 0 0 1.25rem 0;
  }
  .aroof-colorsteel .colorsteel-heading span { color: var(--p-brand); }
  .aroof-colorsteel .colorsteel-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--p-muted);
    max-width: 640px;
    margin: 0 auto;
  }
 
  /* COLORSTEEL palette — the hero visual */
  .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: 4px;
    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 cubic-bezier(0.2,0.7,0.2,1);
    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: 6px;
    padding: 2rem 2rem 1.85rem;
    transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), 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(20,23,26,0.18);
    border-color: rgba(186,24,30,0.3);
  }
  /* Top-stripe with swatch */
  .aroof-colorsteel .colorsteel-option::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--swatch);
  }
  .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);
    background: rgba(186,24,30,0.08);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    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;
  }
 
  /* Insulation 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: 6px;
    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: 6px;
    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: 6px;
    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;
  }
  .aroof-colorsteel .colorsteel-contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--p-brand);
    color: #fff;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.005em;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 0.75rem;
  }
  .aroof-colorsteel .colorsteel-contact-cta:hover { background: #d62229; transform: translateY(-2px); }
  .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); }
 
  @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(197,205,214,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.6;
  }
  /* Red glow accent */
  .aroof-process::after {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 60%; height: 80%;
    background: radial-gradient(ellipse, rgba(186,24,30,0.18), 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(197,205,214,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-2);
    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 var(--p-brand);
  }
  .aroof-process .process-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--p-paper);
    margin: 0;
    text-transform: uppercase;
  }
  .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(197,205,214,0.10);
    border: 1px solid rgba(197,205,214,0.10);
  }
 
  .aroof-process .process-step {
    position: relative;
    background: var(--p-ink);
    padding: 2.25rem 1.75rem 2rem;
    overflow: hidden;
    transition: background 0.4s cubic-bezier(0.2,0.7,0.2,1);
    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 cubic-bezier(0.2,0.7,0.2,1);
  }
  .aroof-process .process-step:hover::before {
    transform: scaleY(1);
  }
 
  .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 cubic-bezier(0.2,0.7,0.2,1), 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 red intro band */
  .aroof-blog .blog-intro-band {
    position: relative;
    background: linear-gradient(95deg, var(--p-brand-deep) 0%, var(--p-brand) 50%, var(--p-brand-2) 100%);
    color: #fff;
    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(255,255,255,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-2);
    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: #fff;
  }
  .aroof-blog .blog-intro-text::before {
    content: '';
    width: 24px; height: 1px;
    background: rgba(255,255,255,0.6);
  }
  .aroof-blog .blog-intro-text::after {
    content: '';
    width: 24px; height: 1px;
    background: rgba(255,255,255,0.6);
  }
 
  /* 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(197,205,214,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    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(186, 24, 30, 0.12), 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-2);
    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(186, 24, 30, 0.55);
  }
  .aroof-blog .blog-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--p-paper);
    margin: 0;
    text-transform: uppercase;
  }
 
  /* 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);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), 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: var(--p-brand);
    box-shadow: 0 20px 50px -20px rgba(186, 24, 30, 0.3);
  }
  /* Red 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 cubic-bezier(0.2, 0.7, 0.2, 1);
    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;
  }
  .aroof-blog .blog-card-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--p-ink-deep);
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .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(14, 17, 20, 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: 1px;
    background: var(--p-brand);
  }
  .aroof-blog .blog-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.012em;
    color: var(--p-paper);
    margin: 0;
    text-transform: uppercase;
    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-2);
    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);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
  }
  .aroof-blog .blog-all:hover {
    background: var(--p-brand);
    border-color: var(--p-brand);
    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(20,23,26,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(186, 24, 30, 0.05), 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);
    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(186, 24, 30, 0.5);
  }
  .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: uppercase;
  }
 
  /* 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: 2px;
    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);
    box-shadow: 0 4px 16px -6px rgba(186, 24, 30, 0.15);
  }
  /* Left red 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 cubic-bezier(0.2, 0.7, 0.2, 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);
    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 cubic-bezier(0.2, 0.7, 0.2, 1), 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%);
  }
  .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: #fff;
  }
  .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; }
  }
 
/* ============================================================================
   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(197,205,214,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(197,205,214,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    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(186, 24, 30, 0.10), 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);
  }
 
  /* 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(186, 24, 30, 0.5);
  }
  .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: #fff;
    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(186, 24, 30, 0.5);
  }
  .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 cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .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: #fff;
  }
  .aroof-footer .footer-links a:hover::before {
    opacity: 1;
    margin-left: 0;
  }
  /* Direct-contact items (phone, email) get red icon dots */
  .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: #fff; }
  .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: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(186, 24, 30, 0.35);
  }
  .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(186, 24, 30, 0.5);
  }
  .aroof-footer .footer-map-frame {
    position: relative;
    border: 1px solid var(--p-line-dark-strong);
    border-radius: 4px;
    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.6) contrast(1.05) invert(0.05);
  }
  /* Red 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);
  }
  .aroof-footer .footer-map-frame::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--p-brand);
    border-right: 2px solid var(--p-brand);
  }
 
  /* 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 a {
    color: var(--p-steel-light);
    text-decoration: none;
    transition: color 0.2s;
  }
  .aroof-footer .footer-bottom a:hover { color: var(--p-brand-2); }
 
  /* 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;
    }
  }