/* ============================================================
   LJ Roofing — public site styles
   Design language: navy + orange, Space Grotesk display type,
   square corners, hairline-bordered grids, call-first CTAs.
   ============================================================ */

:root {
    --navy:        #1e3a5f;
    --navy-deep:   #17304f;
    --ink:         #0f1827;
    --orange:      #e85d04;
    --orange-dark: #c94f02;
    --text:        #111827;
    --muted:       #5b6472;
    --muted-2:     #8a94a2;
    --faint:       #9aa4b2;
    --line:        #d8dde3;
    --bg-soft:     #f8fafc;
    --font-body:    'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); }
a:hover { color: var(--orange-dark); }
::selection { background: var(--orange); color: #fff; }

img { max-width: 100%; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Subtle diagonal hairline pattern used on dark/orange panels */
.pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 14px);
    pointer-events: none;
}

/* ── Buttons ────────────────────────────────────────────── */

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; }

.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-deep); color: #fff; }

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.btn-large { padding: 17px 32px; }

/* Big call-us button: kicker + large number */
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: var(--orange);
    color: #fff;
    padding: 18px 32px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.btn-call:hover { background: var(--orange-dark); color: #fff; }

.btn-call svg { flex-shrink: 0; }

.btn-call__kicker {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .78;
}

.btn-call__number {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.btn-call--lg { padding: 20px 34px; }
.btn-call--lg .btn-call__number { font-size: 26px; }

.btn-call--white { background: #fff; color: var(--navy); }
.btn-call--white:hover { background: var(--navy); color: #fff; }

.btn-call--navy { background: var(--navy); color: #fff; }
.btn-call--navy:hover { background: var(--navy-deep); color: #fff; }
.btn-call--navy svg { fill: var(--orange); }

/* Inline orange phone link with underline */
.call-link {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    border-bottom: 2px solid var(--orange);
    letter-spacing: -.01em;
    white-space: nowrap;
}
.call-link:hover { color: var(--orange-dark); border-color: var(--orange-dark); }

/* "Not sure...? Call ..." tail line under grids */
.call-line {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 16px;
    color: var(--muted);
}

/* ── Navigation ─────────────────────────────────────────── */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.site-nav__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav__logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 34px;
    height: 34px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -.02em;
}

.logo-mark-img {
    height: 30px;
    width: auto;
    display: block;
}

.logo-text {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -.02em;
}

.site-nav__links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 22px;
    flex: 1;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 2px;
}

.site-nav__link {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 0;
    white-space: nowrap;
    display: inline-block;
    letter-spacing: .005em;
    border-bottom: 2px solid transparent;
}
.site-nav__link:hover { color: #fff; }
.site-nav__link.active { color: #fff; border-bottom-color: var(--orange); }

.site-nav__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 13px 22px;
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.site-nav__cta:hover { background: var(--orange-dark); color: #fff; }

.site-nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,.3);
    cursor: pointer;
    padding: 8px;
}
.site-nav__hamburger span {
    display: block;
    height: 2px;
    background: #fff;
}

/* ── Hero ───────────────────────────────────────────────── */

.section--hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    color: #fff;
}

.hero__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 54%;
    background: var(--navy-deep);
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__container {
    position: relative;
    padding-top: 104px;
    padding-bottom: 96px;
}

.section--hero-large .hero__container { padding-top: 132px; padding-bottom: 124px; }
.section--hero-small .hero__container { padding-top: 72px;  padding-bottom: 64px; }

.hero__rule {
    width: 56px;
    height: 3px;
    background: var(--orange);
    margin-bottom: 32px;
}

.hero__heading {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.035em;
    color: #fff;
    margin: 0 0 22px;
    max-width: 18ch;
}

.section--hero-large .hero__heading { font-size: clamp(44px, 6.2vw, 88px); line-height: .98; max-width: 16ch; }

.hero__subheading {
    font-size: clamp(17px, 1.4vw, 20px);
    color: rgba(255,255,255,.78);
    margin: 0 0 36px;
    line-height: 1.55;
    max-width: 620px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero__note {
    margin: 22px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,.5);
}

/* ── Section shells ─────────────────────────────────────── */

.section { padding: 96px 0; background: #fff; }
.section--soft { background: var(--bg-soft); }

.section__header { margin-bottom: 48px; }

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.section-eyebrow__num {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .12em;
}

.section-eyebrow__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin: 0;
    color: var(--text);
}

.section-subheading {
    font-size: 17px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.6;
    margin: 14px 0 0;
}

.section__header .section-rule {
    height: 1px;
    background: var(--line);
    margin-top: 32px;
}

.section__empty { color: var(--muted); }

/* ── Bordered cell grids (services + areas) ─────────────── */

.cell-grid {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.services-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.areas-grid    { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }

.service-card {
    display: flex;
    flex-direction: column;
    padding: 30px 28px 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    background: #fff;
    transition: background .15s, color .15s;
    min-height: 230px;
}
.service-card:hover { background: var(--navy); color: #fff; }

.service-card__num {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .12em;
    margin-bottom: 22px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.015em;
    margin: 0 0 10px;
    color: inherit;
}

.service-card__desc {
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
    color: inherit;
    opacity: .62;
}

.service-card__link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    margin-top: auto;
    color: inherit;
    opacity: .9;
}

.area-card {
    display: block;
    padding: 22px 22px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    background: #fff;
    transition: background .15s, color .15s;
}
.area-card:hover { background: var(--navy); color: #fff; }

.area-card__name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.015em;
    color: inherit;
    margin: 0;
}

.area-card__postcodes {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .09em;
    margin: 6px 0 0;
    color: inherit;
    opacity: .55;
}

/* ── FAQs ───────────────────────────────────────────────── */

.faq-accordion {
    max-width: 900px;
    border-top: 1px solid var(--line);
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 0;
    display: grid;
    grid-template-columns: 44px 1fr 24px;
    align-items: start;
    gap: 8px;
    font-family: inherit;
    color: var(--text);
}

.faq-item__num {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .12em;
    padding-top: 5px;
}

.faq-item__q {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.015em;
}

.faq-plus {
    margin-top: 5px;
    transition: transform .25s ease;
}
.faq-item--open .faq-plus { transform: rotate(45deg); }

.faq-item__answer { padding: 0 24px 26px 44px; }
.faq-item__answer p {
    margin: 0 0 10px;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 64ch;
}
.faq-item__answer p:last-child { margin-bottom: 0; }

/* ── Orange CTA band ────────────────────────────────────── */

.section--cta-banner {
    position: relative;
    background: var(--orange);
    overflow: hidden;
    padding: 0;
}

.cta-banner__container {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
}

.cta-banner__heading {
    font-family: var(--font-display);
    color: #fff;
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -.03em;
    margin: 0 0 12px;
    max-width: 20ch;
}

.cta-banner__subheading {
    color: rgba(255,255,255,.88);
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
}

.cta-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.cta-banner__alt {
    font-size: 14.5px;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.5);
    padding-bottom: 2px;
}
.cta-banner__alt:hover { color: #fff; border-color: #fff; }

/* ── Forms ──────────────────────────────────────────────── */

.form-group { margin-bottom: 22px; }

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.form-required { color: var(--orange); }

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 0;
    /* 16px minimum stops iOS zooming the page when a field is focused */
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    color: var(--text);
}
.form-input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: inset 0 0 0 1px var(--navy);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-select { appearance: auto; }

.btn-submit {
    background: var(--navy);
    color: #fff;
    padding: 17px 34px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.btn-submit:hover { background: var(--navy-deep); }

.form-privacy { margin: 22px 0 0; font-size: 13px; color: var(--muted-2); }
.form-privacy small { font-size: inherit; }

.form-errors {
    border: 1px solid #f3b0a0;
    border-left: 3px solid var(--orange-dark);
    background: #fdf1ec;
    color: #8a2c02;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-size: 14.5px;
}
.form-errors p { margin: 0 0 6px; }
.form-errors ul { margin: 0; padding-left: 18px; }

.form-error-msg { display: block; margin-top: 6px; font-size: 13px; color: var(--orange-dark); }

/* Contact preference block on the quote form */
.contact-pref {
    border-left: 2px solid var(--orange);
    padding-left: 20px;
    margin-bottom: 22px;
}
.contact-pref__title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
}
.contact-pref__hint {
    margin: 0 0 16px;
    font-size: 13.5px;
    color: var(--muted-2);
}
.contact-pref__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.contact-pref__grid .form-group { margin-bottom: 0; }

/* ── Contact page layout ────────────────────────────────── */

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-layout--centered {
    grid-template-columns: 1fr;
    max-width: 760px;
}

.contact-col-rule {
    height: 1px;
    background: var(--line);
    margin-bottom: 32px;
}

/* Big navy call card */
.call-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--navy);
    padding: 34px 30px;
    text-decoration: none;
    margin-bottom: 28px;
}
.call-card:hover { background: var(--navy-deep); }

.call-card__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}
.call-card__inner svg { flex-shrink: 0; fill: var(--orange); }

.call-card__kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 4px;
}

.call-card__number {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.4vw, 31px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.025em;
    line-height: 1.1;
}

/* Contact facts rows (email / address / hours) */
.contact-facts { border-top: 1px solid var(--line); margin-bottom: 28px; }

.contact-fact { padding: 18px 0; border-bottom: 1px solid var(--line); }

.contact-fact__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 6px;
}

.contact-fact__value,
.contact-fact__value a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    font-style: normal;
}
.contact-fact__value a:hover { color: var(--orange); }

.contact-map iframe {
    border: 1px solid var(--line);
    display: block;
    filter: grayscale(1) contrast(1.05);
    width: 100%;
}

/* Tail line: "Rather talk it through?" */
.form-tail {
    max-width: 760px;
    margin-top: 44px;
    border-top: 1px solid var(--line);
    padding-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 17px;
    color: var(--muted);
}

/* ── Two column ─────────────────────────────────────────── */

.two-col__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: start;
}

.two-col__content { font-size: 16.5px; line-height: 1.75; color: var(--muted); }
.two-col__content p { margin: 0 0 20px; }
.two-col__content p:last-child { margin-bottom: 0; }
.two-col__text .section-heading { margin-bottom: 28px; }

/* Definition-style rows (About: Why choose us) */
.why-table { border-top: 1px solid var(--line); margin-bottom: 36px; }
.why-table__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.why-table__label {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}
.why-table__value { font-size: 14px; color: var(--muted); text-align: right; }

/* Compact call card used inside content columns */
.call-card--inline { padding: 22px 26px; margin-bottom: 0; }
.call-card--inline .call-card__number { font-size: 22px; }

/* ── Text pages (privacy / terms) ───────────────────────── */

.text-block__content { font-size: 16px; line-height: 1.75; color: var(--muted); }
.text-block__content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text);
    margin: 36px 0 12px;
}
.text-block__content h2:first-child { margin-top: 0; }
.text-block__content p { margin: 0 0 16px; }
.text-block__content ul { margin: 0 0 16px; padding-left: 22px; }
.text-block .section-heading { margin-bottom: 24px; }

/* ── Gallery ────────────────────────────────────────────── */

.gallery-header-note {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: .14em;
    text-transform: uppercase;
    padding-bottom: 6px;
}

.gallery-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.gallery-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.gallery-item {
    position: relative;
    cursor: pointer;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.gallery-item__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.gallery-item__caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: rgba(15,24,39,.78);
    color: #fff;
    font-size: 13px;
    padding: 10px 14px;
}

.gallery-empty__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-bottom: 36px;
}

.gallery-empty__slot {
    aspect-ratio: 4 / 3;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background-color: var(--bg-soft);
    background-image: repeating-linear-gradient(135deg, rgba(30,58,95,.06) 0 1px, transparent 1px 12px);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-empty__slot span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--faint);
    letter-spacing: .12em;
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; }
.lightbox__overlay { position: absolute; inset: 0; background: rgba(15,24,39,.92); }
.lightbox__content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}
.lightbox__img { max-width: 100%; max-height: 100%; }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: none;
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    width: 44px;
    height: 44px;
    cursor: pointer;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.15); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── Service detail ─────────────────────────────────────── */

.section--service-detail .section__container > div { margin-bottom: 64px; }
.section--service-detail .section__container > div:last-child { margin-bottom: 0; }

.service-detail__description {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 820px;
}
.service-detail__description p { margin: 0 0 20px; }

.section--service-detail .section-heading {
    font-size: clamp(24px, 2.6vw, 34px);
    margin-bottom: 28px;
}

.signs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 720px;
    border-top: 1px solid var(--line);
}
.signs-list__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15.5px;
    color: var(--text);
}
.signs-list__icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.process-steps { max-width: 760px; border-top: 1px solid var(--line); }
.process-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}
.process-step__number {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.015em;
    margin: 0 0 4px;
}
.process-step__description { margin: 0; font-size: 14.5px; color: var(--muted); }

.materials-info-box {
    border: 1px solid var(--line);
    border-left: 3px solid var(--orange);
    padding: 26px 30px;
    max-width: 820px;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--muted);
}
.materials-info-box p { margin: 0 0 14px; }
.materials-info-box p:last-child { margin-bottom: 0; }
.materials-info-box strong { color: var(--text); }

.pricing-block { max-width: 820px; font-size: 15.5px; color: var(--muted); }
.pricing-block__description { margin-bottom: 20px; }
.pricing-badge {
    display: inline-block;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    padding: 10px 16px;
    margin-bottom: 24px;
}
.pricing-block__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.related-services-list {
    max-width: 720px;
    border-top: 1px solid var(--line);
}
.related-service-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    transition: background .15s, color .15s;
}
.related-service-link:hover { background: var(--navy); color: #fff; padding-left: 14px; padding-right: 14px; }
.related-service-link__name { font-family: var(--font-display); font-weight: 600; font-size: 16px; }

/* ── Stats / trust badges / testimonials (kept for reuse) ── */

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    text-align: center;
}
.stat-item__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 700;
    letter-spacing: -.025em;
    color: var(--orange);
}
.stat-item__label {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .75;
}

.trust-badges-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.trust-badge {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.trust-badge__icon { color: var(--orange); flex-shrink: 0; }
.trust-badge__title { font-family: var(--font-display); font-size: 16px; letter-spacing: -.01em; }
.trust-badge__description { margin: 4px 0 0; font-size: 13.5px; color: var(--muted); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.testimonial-card {
    background: #fff;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}
.testimonial-card__stars { color: var(--orange); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card__quote {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
    flex: 1;
}
.testimonial-card__author strong { font-family: var(--font-display); font-size: 15px; display: block; }
.testimonial-card__author span { font-size: 13px; color: var(--muted-2); }

/* ── Map section ────────────────────────────────────────── */

.map-embed iframe { filter: grayscale(1) contrast(1.05); }

/* ── Footer ─────────────────────────────────────────────── */

.site-footer { background: var(--ink); color: rgba(255,255,255,.72); }

.footer-callband { border-bottom: 1px solid rgba(255,255,255,.1); }

.footer-callband__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 44px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-callband__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.site-footer__container { padding-top: 64px; padding-bottom: 52px; }

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
}

.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }

.footer-tagline {
    font-size: 14.5px;
    margin: 0 0 24px;
    color: rgba(255,255,255,.6);
    max-width: 34ch;
    line-height: 1.6;
}

.footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-contact__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,.62);
    text-decoration: none;
}
a.footer-contact__item:hover { color: #fff; }

.site-footer h4 {
    color: rgba(255,255,255,.5);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.site-footer__links ul,
.site-footer__hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.site-footer__links a {
    color: rgba(255,255,255,.62);
    text-decoration: none;
    font-size: 14px;
}
.site-footer__links a:hover { color: #fff; }

.footer-social { display: flex; gap: 10px; margin-top: 24px; }

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.65);
    transition: background .15s, color .15s;
}
.footer-social__link:hover { background: var(--orange); color: #fff; }

.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }

.site-footer__bottom .container {
    padding-top: 22px;
    padding-bottom: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,.42);
}
.site-footer__bottom p { margin: 0; }

/* ── Sticky call bar (phones only) ──────────────────────── */

.mobile-actionbar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
}

.mobile-actionbar a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 10px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
}

.mobile-actionbar__call { background: var(--orange); color: #fff; }
.mobile-actionbar__call:hover { background: var(--orange-dark); color: #fff; }

.mobile-actionbar__alt { background: var(--navy); color: #fff; }
.mobile-actionbar__alt:hover { background: var(--navy-deep); color: #fff; }

/* ── Utilities ──────────────────────────────────────────── */

.text-left   { text-align: left; }
.text-center { text-align: center; }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1000px) {
    .contact-layout { grid-template-columns: 1fr; gap: 56px; }
    .contact-layout__info { order: -1; } /* call-first on small screens */
    .two-col__grid { grid-template-columns: 1fr; gap: 56px; }
    .cta-banner__container { grid-template-columns: 1fr; gap: 32px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 820px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }

    /* Sticky call bar takes over; leave room for it above the fold end */
    body { padding-bottom: 66px; }
    .mobile-actionbar { display: flex; }

    .site-nav__container { padding: 0 20px; gap: 14px; min-height: 62px; }
    .logo-mark-img { height: 26px; }
    .logo-text { font-size: 17px; }
    .site-nav__hamburger { display: flex; margin-left: auto; }
    .site-nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .site-nav__links.open { display: flex; }
    .site-nav__links li a { display: block; padding: 13px 20px; border-bottom: none; }
    .site-nav__cta { padding: 11px 16px; font-size: 15px; }
    .site-nav__cta .site-nav__cta-label { display: none; }

    .hero__container,
    .section--hero-large .hero__container { padding-top: 72px; padding-bottom: 64px; }
    .hero__panel { width: 70%; }

    .btn-call { width: 100%; justify-content: center; }
    .hero__actions .btn-ghost { width: 100%; }

    .contact-pref__grid { grid-template-columns: 1fr; }
    .gallery-grid--cols-3, .gallery-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .gallery-empty__grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-callband__inner { justify-content: flex-start; }
}

@media (max-width: 520px) {
    .gallery-grid--cols-2, .gallery-grid--cols-3, .gallery-grid--cols-4 { grid-template-columns: 1fr; }
    .gallery-empty__grid { grid-template-columns: 1fr; }
    .process-step { grid-template-columns: 44px 1fr; }

    /* Areas stay two-up on phones: postcode cells are small and scannable */
    .areas-grid { grid-template-columns: repeat(2, 1fr); }

    .hero__container,
    .section--hero-large .hero__container { padding-top: 56px; padding-bottom: 52px; }
    .hero__rule { margin-bottom: 24px; }
    .section { padding: 56px 0; }
    .section__header { margin-bottom: 36px; }

    .faq-item__question { grid-template-columns: 34px 1fr 24px; }
    .faq-item__answer { padding-left: 34px; }

    .cta-banner__container { padding-top: 56px; padding-bottom: 56px; }
    .footer-callband__inner { padding: 32px 20px; }
    .footer-callband .btn-call { width: 100%; justify-content: center; }

    /* Keep the big call buttons inside a 320px viewport */
    .btn-call--lg { padding: 16px 22px; }
    .btn-call--lg .btn-call__number { font-size: 21px; }
}
