/* ==========================================================================
   GoPoxy — Epoxy Floors & Coatings
   Design system + components
   ========================================================================== */

/* --------------------------------------------------------------- Tokens   */

:root {
    /* Brand */
    --orange:        #E8621A;
    --orange-600:    #D2540F;
    --orange-300:    #F79A5F;
    --orange-tint:   #FFF3EE;

    /* Neutrals */
    --ink:           #14141F;
    --charcoal:      #1A1A2E;
    --charcoal-2:    #23233A;
    --slate:         #4A4A5C;
    --muted:         #6E6E80;
    --line:          #E4E4EA;
    --line-soft:     #EFEFF3;
    --surface:       #F7F7F9;
    --surface-warm:  #FBF9F7;
    --white:         #FFFFFF;

    /* Support */
    --green:         #0F7A54;
    --amber:         #B45309;

    /* Type */
    --font-display: 'Sora', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Space + shape */
    --gutter:    7%;      /* full-bleed layout: side padding, no max width */
    --narrow:    820px;
    --radius:    14px;
    --radius-sm: 10px;
    --radius-lg: 22px;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(20,20,31,.05), 0 2px 8px rgba(20,20,31,.04);
    --shadow:    0 4px 12px rgba(20,20,31,.06), 0 12px 32px rgba(20,20,31,.07);
    --shadow-lg: 0 8px 24px rgba(20,20,31,.10), 0 28px 64px rgba(20,20,31,.12);
    --shadow-orange: 0 8px 24px rgba(232,98,26,.28);

    --ease: cubic-bezier(.22,.61,.36,1);
    --header-h: 88px;
}

/* --------------------------------------------------------------- Reset    */

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

/* The `hidden` attribute must always win. Any component that sets its own
   `display` (flex, grid…) would otherwise override the browser default of
   `[hidden] { display: none }` and leave an invisible element on the page —
   which, if it is fixed and full-screen, silently swallows every click. */
[hidden] { display: none !important; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--slate);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange-600); }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 .6em;
    font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 1.35rem + 3.6vw, 4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.75rem, 1.15rem + 2.4vw, 2.85rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    border-radius: 4px;
}

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

.skip-link {
    position: absolute; top: -60px; left: 16px; z-index: 999;
    background: var(--charcoal); color: #fff;
    padding: 12px 20px; border-radius: 0 0 8px 8px;
    transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------- Layout   */

/* Full-bleed: content spans the viewport with a 7% gutter each side. */
.container {
    width: 100%;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* Long-form reading columns (FAQ, legal pages) stay centred and measured —
   full-width body text would run to an unreadable line length. */
.container--narrow {
    max-width: calc(var(--narrow) + var(--gutter) * 2);
}

.section { padding: clamp(64px, 8vw, 118px) 0; }
.section--tight { padding: clamp(48px, 5vw, 76px) 0; }
.section--surface { background: var(--surface); }
.section--warm { background: var(--surface-warm); }
.section--dark { background: var(--charcoal); color: rgba(255,255,255,.76); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------- Section head   */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
}
.section--dark .eyebrow { color: var(--orange-300); }
.section--dark .eyebrow::before { background: var(--orange-300); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { font-size: 1.08rem; color: var(--muted); margin-bottom: 0; }
.section--dark .section-head p { color: rgba(255,255,255,.72); }

.lead { font-size: 1.16rem; line-height: 1.72; color: var(--slate); }

/* --------------------------------------------------------------- Buttons  */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 16px 30px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: .96rem;
    font-weight: 600;
    letter-spacing: -.01em;
    text-align: center;
    cursor: pointer;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease),
                background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.btn i { font-size: .92em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { background: var(--orange-600); color: #fff; box-shadow: 0 12px 30px rgba(232,98,26,.38); }

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

.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn--ghost:hover { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

.btn--light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.btn--light:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

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

.btn--sm { padding: 12px 22px; font-size: .88rem; }
.btn--lg { padding: 19px 38px; font-size: 1.03rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* Text link with arrow */
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .94rem;
    color: var(--orange);
}
.arrow-link i { transition: transform .25s var(--ease); }
.arrow-link:hover i { transform: translateX(5px); }

/* --------------------------------------------------------------- Header   */

.topbar {
    background: var(--charcoal);
    color: rgba(255,255,255,.7);
    font-size: .84rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 44px;
    flex-wrap: wrap;
}
.topbar__list { display: flex; align-items: center; gap: 26px; list-style: none; flex-wrap: wrap; }
.topbar__list a, .topbar__list span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.72); }
.topbar__list a:hover { color: #fff; }
.topbar__list i { color: var(--orange); font-size: .9em; }
.topbar__socials { display: flex; gap: 8px; }
.topbar__socials a {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
    transition: background .2s var(--ease), color .2s var(--ease);
}
.topbar__socials a:hover { background: var(--orange); color: #fff; }
.topbar__socials i { color: inherit; }

.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,.94);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
    transition: transform .32s var(--ease), box-shadow .25s var(--ease);
    will-change: transform;
}
/* Past 10% of the page the header slides away while scrolling down, and
   comes straight back on the first upward scroll. */
.header.is-hidden { transform: translateY(-100%); }
.header.is-stuck { box-shadow: var(--shadow); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo img { width: 64px; height: 64px; border-radius: 13px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--charcoal);
    letter-spacing: -.03em;
}
.logo__sub {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--orange);
}

/* Primary navigation */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; list-style: none; }
.nav__link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 15px;
    border-radius: 9px;
    font-family: var(--font-display);
    font-size: .93rem;
    font-weight: 500;
    color: var(--charcoal);
    white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__link:hover, .nav__item:hover > .nav__link { background: var(--orange-tint); color: var(--orange-600); }
.nav__link.is-active { color: var(--orange); font-weight: 600; }
.nav__link .fa-chevron-down { font-size: .62em; opacity: .5; transition: transform .25s var(--ease); }
.nav__item:hover .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 306px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__item:hover > .dropdown,
.nav__item:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown::before { content: ''; position: absolute; inset: -12px 0 auto; height: 12px; }

/* Two-column mega menu: flooring systems alongside spaces we floor. */
.dropdown--mega {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    width: min(660px, 88vw);
    min-width: 0;
    padding: 18px;
    /* Centred on its nav item so a wide panel cannot run off either edge. */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}
.nav__item:hover > .dropdown--mega,
.nav__item:focus-within > .dropdown--mega { transform: translateX(-50%) translateY(0); }
.dropdown--mega ul { list-style: none; }
.dropdown__title {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 13px 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line-soft);
    font-family: var(--font-display);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
}
.dropdown__title i { color: var(--orange); font-size: .92em; }

.dropdown a {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 11px 13px;
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    transition: background .18s var(--ease);
}
.dropdown a:hover { background: var(--surface); }
.dropdown i {
    flex-shrink: 0;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 9px;
    background: var(--orange-tint);
    color: var(--orange);
    font-size: .88rem;
}
.dropdown a:hover i { background: var(--orange); color: #fff; }
.dropdown strong {
    display: block;
    font-family: var(--font-display);
    font-size: .93rem;
    font-weight: 600;
    line-height: 1.35;
}
.dropdown small { display: block; font-size: .78rem; color: var(--muted); line-height: 1.45; }

.header__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.header__phone {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-right: 4px;
}
.header__phone i {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--orange-tint);
    color: var(--orange);
}
.header__phone span { display: block; font-size: .7rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.header__phone strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.02rem;
    color: var(--charcoal);
    letter-spacing: -.02em;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    width: 46px; height: 46px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    color: var(--charcoal);
    font-size: 1.1rem;
}
.nav-toggle:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

/* Mobile drawer */
.drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(400px, 88vw);
    z-index: 400;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateX(102%);
    transition: transform .34s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line-soft);
    position: sticky; top: 0; background: #fff; z-index: 2;
}
.drawer__close {
    width: 42px; height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--charcoal);
    font-size: 1.05rem;
}
.drawer__close:hover { background: var(--charcoal); color: #fff; }
.drawer__body { padding: 14px 22px 30px; }
.drawer__link {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 15px 2px;
    border-bottom: 1px solid var(--line-soft);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--charcoal);
}
/* The accordion toggles are <button>s wearing .drawer__link. Without this the
   browser's own button styling applies — grey face, outset border and
   shrink-to-fit width — so they look nothing like the links beside them. */
button.drawer__link {
    width: 100%;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    text-align: left;
    -webkit-appearance: none;
    appearance: none;
}
button.drawer__link:hover { color: var(--orange); }

.drawer__link i { color: var(--orange); font-size: .82em; }
.drawer__sub { list-style: none; padding: 4px 0 10px 4px; }
.drawer__sub a {
    display: flex; align-items: center; gap: 11px;
    padding: 11px 2px;
    font-size: .94rem;
    color: var(--slate);
}
.drawer__sub a:hover { color: var(--orange); }
.drawer__sub i { color: var(--orange); width: 18px; text-align: center; font-size: .88rem; }
.drawer__foot { padding: 22px 22px 34px; display: grid; gap: 12px; }

.backdrop {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(20,20,31,.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
}
.backdrop.is-open { opacity: 1; visibility: visible; }

body.is-locked { overflow: hidden; }

/* ----------------------------------------------------------------- Hero   */

.hero {
    position: relative;
    background: var(--charcoal);
    color: rgba(255,255,255,.8);
    overflow: hidden;
    isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(100deg, rgba(20,20,31,.96) 0%, rgba(26,26,46,.9) 44%, rgba(26,26,46,.62) 72%, rgba(26,26,46,.5) 100%),
        radial-gradient(1100px 620px at 88% 12%, rgba(232,98,26,.28), transparent 68%);
}
/* padding-block only — a padding shorthand here would reset the
   container's inline gutter to zero and push content to the edge. */
.hero__inner { padding-block: clamp(72px, 9vw, 132px) clamp(64px, 7vw, 104px); }
.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--orange-300); }
.hero__tagline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #fff;
    margin-bottom: 26px;
}
.hero__tagline i {
    width: 26px; height: 26px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: .68rem;
}
.hero__text { font-size: 1.14rem; line-height: 1.72; color: rgba(255,255,255,.78); max-width: 56ch; margin-bottom: 34px; }
.hero .btn-row { margin-bottom: 40px; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 28px; list-style: none; }
.hero__trust li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.82); }
.hero__trust i { color: var(--orange-300); }

/* Hero quote card */
.quote-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.quote-card__head {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-600) 100%);
    color: #fff;
    padding: 26px 30px;
}
.quote-card__head h2 {
    color: #fff;
    font-size: 1.34rem;
    margin-bottom: 6px;
    letter-spacing: -.02em;
}
.quote-card__head p { font-size: .9rem; color: rgba(255,255,255,.9); margin: 0; }
.quote-card__body { padding: 26px 30px 30px; }

/* Stats strip */
.stats {
    background: var(--orange);
    color: #fff;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.22);
}
.stats__item {
    background: var(--orange);
    padding: 38px 24px;
    text-align: center;
}
.stats__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.4rem + 2.2vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 8px;
}
.stats__label { font-size: .86rem; font-weight: 500; color: rgba(255,255,255,.9); letter-spacing: .04em; }
.stats__item i { display: block; font-size: 1.15rem; margin-bottom: 14px; color: rgba(255,255,255,.72); }

/* --------------------------------------------------------------- Cards    */

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }

.card__badge {
    position: absolute;
    top: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(20,20,31,.82);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .04em;
}
.card__badge i { color: var(--orange-300); font-size: .82em; }
.card__badge--price { left: auto; right: 14px; background: var(--orange); }
.card__badge--price i { color: #fff; }

.card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card__icon {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 13px;
    background: var(--orange-tint);
    color: var(--orange);
    font-size: 1.24rem;
    margin-bottom: 18px;
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.card:hover .card__icon { background: var(--orange); color: #fff; transform: rotate(-6deg); }
.card h3 { margin-bottom: 10px; font-size: 1.24rem; }
.card h3 a { color: inherit; }
.card:hover h3 a { color: var(--orange); }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 20px; }
.card__foot { margin-top: auto; padding-top: 4px; }

/* Feature card (no image) */
.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.feature__icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--orange-tint);
    color: var(--orange);
    font-size: 1.34rem;
    margin-bottom: 20px;
    transition: background .3s var(--ease), color .3s var(--ease);
}
.feature:hover .feature__icon { background: var(--orange); color: #fff; }
.feature h3 { font-size: 1.16rem; margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }

.section--dark .feature {
    background: rgba(255,255,255,.045);
    border-color: rgba(255,255,255,.1);
}
.section--dark .feature:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.section--dark .feature__icon { background: rgba(232,98,26,.18); color: var(--orange-300); }
.section--dark .feature p { color: rgba(255,255,255,.7); }

/* ---------------------------------------------------------- Process steps */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
    display: inline-grid;
    place-items: center;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: background .3s var(--ease), color .3s var(--ease);
}
.step:hover .step__num { background: var(--orange); color: #fff; }
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 39px; left: 62px; right: -26px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
    z-index: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .93rem; color: var(--muted); margin: 0; }

.section--dark .step__num { background: transparent; border-color: var(--orange-300); color: var(--orange-300); }
.section--dark .step:hover .step__num { background: var(--orange); border-color: var(--orange); color: #fff; }
.section--dark .step p { color: rgba(255,255,255,.68); }
.section--dark .step:not(:last-child)::after {
    background: repeating-linear-gradient(90deg, rgba(255,255,255,.2) 0 8px, transparent 8px 16px);
}

/* ------------------------------------------------------------- Split rows */

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(38px, 5vw, 76px);
    align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media { position: relative; }
.split__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: var(--shadow);
}
.split__media--stack { padding-bottom: 60px; padding-right: 56px; }
.split__media--stack .split__inset {
    position: absolute;
    bottom: 0; right: 0;
    width: 54%;
    border-radius: var(--radius);
    border: 6px solid #fff;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Floating badge on imagery */
.media-badge {
    position: absolute;
    left: -18px; bottom: 34px;
    display: flex; align-items: center; gap: 14px;
    padding: 18px 24px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-orange);
}
.media-badge i { font-size: 1.7rem; opacity: .9; }
.media-badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.1; letter-spacing: -.03em; }
.media-badge span { font-size: .82rem; color: rgba(255,255,255,.9); }

/* ------------------------------------------------------------- Check list */

.checks { list-style: none; display: grid; gap: 15px; margin: 26px 0; }
.checks li { display: flex; align-items: flex-start; gap: 13px; font-size: .99rem; }
.checks i {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: grid; place-items: center;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--orange-tint);
    color: var(--orange);
    font-size: .7rem;
}
.section--dark .checks i { background: rgba(232,98,26,.2); color: var(--orange-300); }
.checks strong { color: var(--charcoal); }
.section--dark .checks strong { color: #fff; }

/* Icon list with description */
.icon-list { list-style: none; display: grid; gap: 26px; }
.icon-list li { display: flex; gap: 18px; }
.icon-list i {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--orange-tint);
    color: var(--orange);
    font-size: 1.1rem;
}
.icon-list h4 { margin-bottom: 5px; font-size: 1.06rem; }
.icon-list p { font-size: .95rem; color: var(--muted); margin: 0; }
.section--dark .icon-list i { background: rgba(232,98,26,.18); color: var(--orange-300); }
.section--dark .icon-list p { color: rgba(255,255,255,.68); }

/* ------------------------------------------------------------ Testimonial */

.quote-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    height: 100%;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-item__stars { display: flex; gap: 3px; color: #F5A623; margin-bottom: 16px; font-size: .88rem; }
.quote-item__mark { color: var(--orange); opacity: .18; font-size: 2rem; margin-bottom: 10px; }
.quote-item p { font-size: .99rem; color: var(--slate); margin-bottom: 22px; }
.quote-item__who { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.quote-item__avatar {
    width: 46px; height: 46px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--charcoal);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}
.quote-item__name { display: block; font-family: var(--font-display); font-weight: 600; color: var(--charcoal); font-size: .98rem; }
.quote-item__meta { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--muted); }
.quote-item__meta i { color: var(--orange); font-size: .8em; }

/* ------------------------------------------------------------------- FAQ  */

.faq { display: grid; gap: 14px; }
.faq__item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq__item[open] { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    font-family: var(--font-display);
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    list-style: none;
    transition: color .2s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--orange); }
.faq__q i {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--orange-tint);
    color: var(--orange);
    font-size: .8rem;
    transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq__item[open] .faq__q i { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq__a { padding: 0 26px 24px; color: var(--muted); font-size: .99rem; }
.faq__a p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------- Page head */

.page-head {
    position: relative;
    background: var(--charcoal);
    color: rgba(255,255,255,.76);
    padding: clamp(56px, 7vw, 96px) 0 clamp(52px, 6vw, 84px);
    overflow: hidden;
    isolation: isolate;
}
.page-head__media { position: absolute; inset: 0; z-index: -2; }
.page-head__media img { width: 100%; height: 100%; object-fit: cover; }
.page-head::after {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(95deg, rgba(20,20,31,.96) 6%, rgba(26,26,46,.88) 52%, rgba(26,26,46,.66) 100%),
        radial-gradient(760px 420px at 85% 0%, rgba(232,98,26,.3), transparent 70%);
}
.page-head h1 { color: #fff; margin-bottom: 16px; max-width: 20ch; }
.page-head p { font-size: 1.1rem; color: rgba(255,255,255,.76); max-width: 62ch; margin: 0; }
.page-head--article h1 { max-width: 26ch; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    list-style: none;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,.72); }
.breadcrumb a:hover { color: var(--orange-300); }
.breadcrumb i { font-size: .6rem; opacity: .5; }
.breadcrumb [aria-current] { color: var(--orange-300); }

/* --------------------------------------------------------------- Article  */

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: clamp(40px, 4vw, 64px);
    align-items: start;
}

.article-hero {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow);
}
.article-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    padding-bottom: 26px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
    font-size: .88rem;
    color: var(--muted);
}
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta i { color: var(--orange); }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--orange-tint);
    color: var(--orange-600);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.tag:hover { background: var(--orange); color: #fff; }
.tag i { font-size: .78em; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; }

/* Imported WordPress article body ------------------------------------------
   Posts arrive with their own inline styling in the same palette. These rules
   set the typographic baseline and stop wide elements breaking the layout.  */

.prose { font-size: 1.06rem; line-height: 1.78; color: var(--slate); }
.prose > *:first-child { margin-top: 0; }
.prose h2 {
    font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.1rem);
    margin: 2.2em 0 .7em;
    scroll-margin-top: calc(var(--header-h) + 24px);
}
.prose h3 { font-size: clamp(1.22rem, 1.1rem + .6vw, 1.45rem); margin: 1.8em 0 .6em; }
.prose h4 { font-size: 1.1rem; margin: 1.5em 0 .5em; }
.prose p { margin: 0 0 1.3em; }
.prose ul, .prose ol { margin: 0 0 1.4em; padding-left: 1.35em; }
.prose li { margin-bottom: .6em; }
.prose li::marker { color: var(--orange); font-weight: 700; }
.prose a { color: var(--orange); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--orange-600); }
.prose strong { color: var(--charcoal); font-weight: 600; }
.prose img { border-radius: var(--radius); margin: 1.8em 0; }
.prose blockquote {
    margin: 1.8em 0;
    padding: 22px 28px;
    border-left: 4px solid var(--orange);
    background: var(--orange-tint);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.06rem;
    color: var(--charcoal);
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    font-size: .95rem;
}
.prose th, .prose td { padding: 13px 16px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--charcoal); color: #fff; font-family: var(--font-display); font-weight: 600; }
.prose tr:nth-child(even) td { background: var(--surface); }
/* Tables and other wide blocks scroll inside the column instead of the page */
.prose > div, .prose > table { max-width: 100%; overflow-x: auto; }
.prose nav a { text-decoration: none; }

/* --------------------------------------------------------------- Sidebar  */

.sidebar { display: grid; gap: 24px; position: sticky; top: calc(var(--header-h) + 24px); }

.widget {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
}
.widget h3 {
    font-size: 1.06rem;
    padding-bottom: 15px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line-soft);
    display: flex; align-items: center; gap: 10px;
}
.widget h3 i { color: var(--orange); font-size: .92em; }
.widget ul { list-style: none; display: grid; gap: 4px; }
.widget ul a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: .93rem;
    color: var(--charcoal);
    transition: background .2s var(--ease), color .2s var(--ease);
}
.widget ul a:hover { background: var(--orange-tint); color: var(--orange-600); }
.widget ul a .count {
    flex-shrink: 0;
    min-width: 26px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--surface);
    font-size: .76rem;
    font-weight: 600;
    text-align: center;
    color: var(--muted);
}
.widget ul a:hover .count { background: var(--orange); color: #fff; }

.widget--cta {
    background: linear-gradient(155deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
    border: none;
    color: rgba(255,255,255,.76);
    text-align: center;
    padding: 32px 26px;
}
.widget--cta h3 { color: #fff; border: none; padding: 0; margin-bottom: 10px; justify-content: center; }
.widget--cta p { font-size: .93rem; margin-bottom: 22px; }
.widget--cta .btn { width: 100%; }
.widget--cta__icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(232,98,26,.2);
    color: var(--orange-300);
    font-size: 1.35rem;
}

.mini-post { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.mini-post:last-child { border-bottom: none; padding-bottom: 0; }
.mini-post img { width: 74px; height: 62px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.mini-post h4 { font-size: .9rem; line-height: 1.45; margin-bottom: 5px; }
.mini-post h4 a { color: var(--charcoal); }
.mini-post h4 a:hover { color: var(--orange); }
.mini-post time { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.mini-post time i { color: var(--orange); font-size: .82em; }

/* ------------------------------------------------------------------ Forms */

.field { margin-bottom: 17px; }
.field label {
    display: block;
    font-family: var(--font-display);
    font-size: .86rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 7px;
}
.field label .req { color: var(--orange); }

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    font-family: var(--font-body);
    font-size: .97rem;
    color: var(--charcoal);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(232,98,26,.13);
}
.field input::placeholder, .field textarea::placeholder { color: #A8A8B4; }

.field--select { position: relative; }
.field--select select { padding-right: 44px; cursor: pointer; }
.field--select > i {
    position: absolute;
    right: 17px; bottom: 17px;
    color: var(--muted);
    pointer-events: none;
    font-size: .78rem;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.form-note {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .82rem;
    color: var(--muted);
    margin-top: 15px;
    justify-content: center;
}
.form-note i { color: var(--green); }

.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.alert {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    font-size: .94rem;
}
.alert i { margin-top: 3px; }
.alert--error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert--ok { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }

/* ---------------------------------------------------------------- CTA band */

.cta-band {
    position: relative;
    background: var(--charcoal);
    color: rgba(255,255,255,.78);
    overflow: hidden;
    isolation: isolate;
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(90deg, rgba(20,20,31,.97) 0%, rgba(26,26,46,.9) 55%, rgba(26,26,46,.72) 100%),
        radial-gradient(700px 400px at 92% 50%, rgba(232,98,26,.3), transparent 70%);
}
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    /* padding-block only — see .hero__inner */
    padding-block: clamp(52px, 6vw, 82px);
    flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; max-width: 18ch; }
.cta-band p { max-width: 56ch; margin: 0; font-size: 1.05rem; }
.cta-band .btn-row { flex-shrink: 0; }

/* ------------------------------------------------------------- CTA panel */
/* A raised orange panel. Deliberately different from .cta-band (the dark
   full-bleed band) so the two calls to action never look like duplicates. */

.section--flush { padding-top: 0; }

.cta-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 4vw, 56px);
    padding: clamp(32px, 4vw, 56px) clamp(26px, 4vw, 58px);
    border-radius: var(--radius-lg);
    background: linear-gradient(125deg, var(--orange) 0%, var(--orange-600) 58%, #B3450B 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 22px 54px rgba(232, 98, 26, .30);
}

/* Soft highlights so the panel is not a flat block of orange. */
.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(640px 320px at 86% 8%,  rgba(255,255,255,.24), transparent 62%),
        radial-gradient(460px 280px at 4% 96%,  rgba(255,255,255,.13), transparent 60%);
}
/* Faint diagonal rules, echoing a floated floor edge. */
.cta-panel::after {
    content: '';
    position: absolute;
    top: -40%; right: -8%;
    width: 46%; height: 190%;
    z-index: -1;
    background: repeating-linear-gradient(
        58deg,
        rgba(255,255,255,.075) 0 2px,
        transparent 2px 22px
    );
    transform: rotate(-4deg);
    pointer-events: none;
}

.cta-panel__body { flex: 1 1 440px; min-width: 0; }

.cta-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px 7px 8px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.26);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.cta-panel__eyebrow i {
    display: grid;
    place-items: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #fff;
    color: var(--orange);
    font-size: .68rem;
}

.cta-panel h2 {
    color: #fff;
    font-size: clamp(1.6rem, 1.1rem + 1.9vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 14px;
    max-width: 20ch;
}
.cta-panel p {
    color: rgba(255,255,255,.92);
    font-size: 1.04rem;
    line-height: 1.65;
    max-width: 52ch;
    margin-bottom: 22px;
}

.cta-panel__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    list-style: none;
    margin: 0;
}
.cta-panel__points li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .93rem;
    font-weight: 500;
    color: rgba(255,255,255,.95);
}
.cta-panel__points i { color: #fff; font-size: .92em; }

/* Actions column */
.cta-panel__actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 290px;
    max-width: 100%;
}
.cta-panel__actions .btn { width: 100%; }
.cta-panel__actions .btn--white { box-shadow: 0 10px 26px rgba(20,20,31,.22); }

.cta-panel__phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #fff;
    transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.cta-panel__phone:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.55);
    color: #fff;
    transform: translateY(-2px);
}
.cta-panel__phone > i {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--orange);
    font-size: .96rem;
}
.cta-panel__phone small {
    display: block;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
}
.cta-panel__phone strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

@media (max-width: 900px) {
    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    /* Once stacked, flex-basis governs height — reset it or the body is
       forced to 440px tall regardless of how much content it holds. */
    .cta-panel__body { flex: 0 0 auto; width: 100%; }
    .cta-panel__actions { width: 100%; }
    .cta-panel h2, .cta-panel p { max-width: none; }
}
@media (max-width: 640px) {
    .cta-panel { padding: 28px 22px; border-radius: var(--radius); gap: 24px; }
    .cta-panel__eyebrow { margin-bottom: 14px; font-size: .72rem; }
    .cta-panel h2 { font-size: 1.5rem; margin-bottom: 10px; }
    .cta-panel p { font-size: .96rem; margin-bottom: 18px; }
    .cta-panel__points { gap: 8px 18px; }
    .cta-panel__points li { font-size: .86rem; }
    .cta-panel__phone { padding: 12px 16px; }
    .cta-panel::after { display: none; }
}

/* Orange callout box */
.callout {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 30px 34px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-600) 100%);
    color: #fff;
    box-shadow: var(--shadow-orange);
    flex-wrap: wrap;
}
.callout__icon {
    width: 62px; height: 62px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,.18);
    font-size: 1.5rem;
}
.callout h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.callout p { color: rgba(255,255,255,.9); margin: 0; font-size: .98rem; }
.callout__body { flex: 1; min-width: 240px; }

/* ---------------------------------------------------------- Space tiles */
/* Image-backed tiles for the "flooring by space" grid. Deliberately a
   different treatment from .card so two grids never sit back to back
   looking identical. */

/* Carousel wrapper. Slide widths are sized so the neighbouring cards peek in
   by 10% each side:
     desktop  10% + 3 cards + 10%  = 3.2 slides + 4 gaps
     tablet   10% + 2 cards + 10%  = 2.2 slides + 3 gaps
     mobile   10% + 1 card  + 10%  = 1.2 slides + 2 gaps                     */

.carousel { position: relative; }

.carousel__track {
    --gap: 20px;
    display: flex;
    align-items: stretch;
    gap: var(--gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    /* Room for the hover lift and shadow, which overflow would otherwise clip. */
    padding-block: 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__track > * {
    flex: 0 0 calc((100% - 4 * var(--gap)) / 3.2);
    scroll-snap-align: center;
}

/* Controls */
.carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 26px;
}
.carousel__btn {
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--charcoal);
    font-size: .92rem;
    transition: all .25s var(--ease);
}
.carousel__btn:hover:not(:disabled) {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: var(--shadow-orange);
}
.carousel__btn:disabled { opacity: .35; cursor: default; }

.carousel__dots { display: flex; align-items: center; gap: 9px; }
.carousel__dot {
    width: 9px; height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--line);
    transition: all .3s var(--ease);
}
.carousel__dot:hover { background: var(--orange-300); }
.carousel__dot.is-active { width: 30px; background: var(--orange); }

.section--dark .carousel__btn { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }
.section--dark .carousel__dot { background: rgba(255,255,255,.25); }
.section--dark .carousel__dot.is-active { background: var(--orange); }

/* Below the desktop breakpoint, drop straight to one card. A 2-up layout
   cannot centre-snap symmetrically — an even count leaves the active card
   off-centre — so the peek would stop reading as a peek. */
@media (max-width: 1024px) {
    .carousel__track > * { flex-basis: calc((100% - 2 * var(--gap)) / 1.2); }
}
@media (max-width: 640px) {
    .carousel__track { --gap: 14px; padding-block: 10px; }
    .carousel__nav { gap: 14px; margin-top: 20px; }
    .carousel__btn { width: 42px; height: 42px; }
}

/* Image on top, text in a dark panel underneath — nothing sits over the photo. */
.space-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--charcoal);
    color: #fff;
    box-shadow: var(--shadow);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.space-tile:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); color: #fff; }

.space-tile__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--charcoal-2);
}
.space-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.space-tile:hover .space-tile__img { transform: scale(1.07); }

.space-tile__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

/* Icon badge straddling the join between photo and panel. It lives in the
   body — not in the media wrapper, whose overflow:hidden (needed for the
   image zoom) would clip it — and is pulled up with a negative margin so it
   takes no height in the flow. */
.space-tile__icon {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    margin-top: -46px;
    margin-bottom: 15px;
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--orange);
    color: #fff;
    font-size: 1.02rem;
    box-shadow: 0 6px 18px rgba(20,20,31,.45);
    transition: transform .3s var(--ease);
}
.space-tile:hover .space-tile__icon { transform: rotate(-6deg) scale(1.06); }

.space-tile__name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color .25s var(--ease);
}
.space-tile:hover .space-tile__name { color: var(--orange-300); }

.space-tile__desc {
    display: block;
    font-size: .88rem;
    line-height: 1.6;
    color: rgba(255,255,255,.68);
    margin-bottom: 18px;
}

.space-tile__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.14);
}
.space-tile__more {
    font-family: var(--font-display);
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255,255,255,.82);
}
.space-tile:hover .space-tile__more { color: #fff; }

.space-tile__go {
    width: 34px; height: 34px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    font-size: .78rem;
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.space-tile:hover .space-tile__go { background: #fff; color: var(--orange); transform: translateX(4px); }

@media (max-width: 640px) {
    .space-tile__body { padding: 20px; }
    .space-tile__icon { width: 42px; height: 42px; margin-top: -42px; margin-bottom: 13px; }
}

/* --------------------------------------------------------------- Gallery */

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 38px;
}
.gallery-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: all .25s var(--ease);
}
.gallery-filter__btn i { color: var(--orange); font-size: .9em; transition: color .25s var(--ease); }
.gallery-filter__btn:hover { border-color: var(--orange); background: var(--orange-tint); }
.gallery-filter__btn.is-active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: var(--shadow-orange);
}
.gallery-filter__btn.is-active i { color: #fff; }
.gallery-filter__count {
    min-width: 22px;
    padding: 1px 7px;
    border-radius: 999px;
    background: var(--surface);
    font-size: .74rem;
    font-weight: 700;
    color: var(--muted);
}
.gallery-filter__btn.is-active .gallery-filter__count { background: rgba(255,255,255,.24); color: #fff; }

.gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.gallery--wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.gallery__item {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .3s var(--ease);
}
.gallery__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery__item[hidden] { display: none; }

/* Fade used when the filter re-runs. */
.gallery__item.is-filtering { opacity: 0; transform: scale(.96); }

.gallery__open {
    display: block;
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    line-height: 0;
}
.gallery__open img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.gallery__item:hover .gallery__open img { transform: scale(1.07); }

/* Hover state: just the zoom cue, centred. The old caption ("Project" plus
   details) has been removed, so the heavy bottom gradient it sat on went with
   it — an even tint reads better behind a single icon. */
.gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 20, 31, .42);
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.gallery__item:hover .gallery__overlay,
.gallery__open:focus-visible .gallery__overlay { opacity: 1; }

.gallery__zoom {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: .92rem;
    transform: scale(.7);
    transition: transform .3s var(--ease);
}
.gallery__item:hover .gallery__zoom { transform: scale(1); }


.gallery__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 56px 20px;
    color: var(--muted);
}
.gallery__empty i { color: var(--orange); }

/* -------------------------------------------------------------- Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vh 4vw;
    background: rgba(12,12,20,.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .28s var(--ease);
}
.lightbox.is-open { opacity: 1; }

.lightbox__figure {
    margin: 0;
    width: 100%;
    max-width: 1400px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* The stage holds the image and becomes scrollable once zoomed, so a large
   image can be panned in both directions. */
.lightbox__stage {
    max-width: 100%;
    max-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.35) transparent;
}
.lightbox__stage:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.lightbox__stage::-webkit-scrollbar { width: 10px; height: 10px; }
.lightbox__stage::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.3);
    border-radius: 999px;
}

.lightbox__img {
    max-width: 100%;
    max-height: 68vh;
    width: auto;
    /* Explicit so a portrait photo is never squashed: the whole image is shown,
       scaled down to fit, whatever shape it is. */
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    transform: scale(.96);
    transition: transform .32s var(--ease), opacity .2s var(--ease);
    cursor: zoom-in;
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__img.is-loading { opacity: .35; }

/* Zoomed: the image renders at natural size and the stage scrolls. */
.lightbox.is-zoomed .lightbox__stage {
    overflow: auto;
    cursor: grab;
    align-items: flex-start;
    justify-content: flex-start;
    overscroll-behavior: contain;
}
.lightbox.is-zoomed .lightbox__stage.is-grabbing { cursor: grabbing; }
.lightbox.is-zoomed .lightbox__img {
    max-width: none;
    max-height: none;
    width: auto;
    cursor: inherit;
    transform: none;
    border-radius: 0;
}

/* Thumbnail filmstrip */
.lightbox__thumbs {
    display: flex;
    gap: 10px;
    max-width: 100%;
    padding: 4px 2px 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
}
.lightbox__thumbs::-webkit-scrollbar { height: 8px; }
.lightbox__thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.28); border-radius: 999px; }

.lightbox__thumb {
    flex: 0 0 auto;
    width: 88px;
    height: 62px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    opacity: .5;
    scroll-snap-align: center;
    transition: opacity .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__thumb:hover { opacity: .85; transform: translateY(-2px); }
.lightbox__thumb.is-active { opacity: 1; border-color: var(--orange); }

.lightbox__zoom {
    position: absolute;
    top: 22px; right: 84px;
    width: 50px; height: 50px;
    display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 1.02rem;
    transition: background .22s var(--ease), transform .22s var(--ease);
}
.lightbox__zoom:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.08); }
.lightbox.is-zoomed .lightbox__zoom { background: var(--orange); border-color: var(--orange); }

.lightbox__hint {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    font-size: .78rem;
    color: rgba(255,255,255,.42);
    white-space: nowrap;
    pointer-events: none;
}
.lightbox__hint i { color: rgba(255,255,255,.55); }
.lightbox__hint kbd {
    padding: 2px 7px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: .72rem;
}

.lightbox__cap { text-align: center; color: rgba(255,255,255,.7); max-width: 62ch; }
.lightbox__cap strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: #fff;
    margin-bottom: 5px;
}
.lightbox__cap span { font-size: .92rem; }
.lightbox__count {
    display: block;
    margin-top: 10px;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    transition: background .22s var(--ease), transform .22s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.08); }

.lightbox__close { top: 22px; right: 22px; width: 50px; height: 50px; font-size: 1.2rem; }
.lightbox__nav { top: 50%; margin-top: -27px; width: 54px; height: 54px; font-size: 1.1rem; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ----------------------------------------------------------- Price table */

.price-table {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
}
.price-table table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: .97rem;
}
.price-table thead th {
    background: var(--charcoal);
    color: #fff;
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: left;
    padding: 16px 22px;
    white-space: nowrap;
}
.price-table tbody th,
.price-table tbody td {
    padding: 18px 22px;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
    vertical-align: top;
}
.price-table tbody th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
}
.price-table tbody td { color: var(--muted); }
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover th,
.price-table tbody tr:hover td { background: var(--orange-tint); }

.price-table__price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--orange-600) !important;
    white-space: nowrap;
}

.price-table__note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 20px 0 0;
    font-size: .9rem;
    color: var(--muted);
}
.price-table__note i { color: var(--orange); margin-top: 4px; flex-shrink: 0; }

@media (max-width: 640px) {
    .price-table thead th,
    .price-table tbody th,
    .price-table tbody td { padding: 14px 16px; }
}

/* ------------------------------------------------------------ Suburb grid */

.suburb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
    list-style: none;
}
.suburb-grid a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    font-size: .93rem;
    color: var(--charcoal);
    transition: all .22s var(--ease);
}
.suburb-grid a:hover {
    border-color: var(--orange);
    background: var(--orange-tint);
    color: var(--orange-600);
    transform: translateX(4px);
}
.suburb-grid i { color: var(--orange); font-size: .84rem; }

.region-block { margin-bottom: 44px; }
.region-block:last-child { margin-bottom: 0; }
.region-block__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--line-soft);
}
.region-block__head i {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 11px;
    background: var(--orange);
    color: #fff;
    font-size: 1rem;
}
.region-block__head h3 { margin: 0; font-size: 1.24rem; }
.region-block__head span { margin-left: auto; font-size: .85rem; color: var(--muted); }

/* Inline suburb chips (footer / compact lists) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.chips a {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.66);
    font-size: .82rem;
    transition: all .2s var(--ease);
}
.chips a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ------------------------------------------------------------- Pagination */

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagination a, .pagination span {
    min-width: 46px; height: 46px;
    display: inline-grid; place-items: center;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: .93rem;
    font-weight: 600;
    color: var(--charcoal);
    background: #fff;
    transition: all .2s var(--ease);
}
.pagination a:hover { border-color: var(--orange); background: var(--orange-tint); color: var(--orange-600); }
.pagination .is-active { background: var(--orange); border-color: var(--orange); color: #fff; }
.pagination .is-disabled { opacity: .4; pointer-events: none; }

/* ------------------------------------------------------------- Contact bits */

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.contact-card i {
    flex-shrink: 0;
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--orange-tint);
    color: var(--orange);
    font-size: 1.24rem;
    transition: background .3s var(--ease), color .3s var(--ease);
}
.contact-card:hover i { background: var(--orange); color: #fff; }
.contact-card span { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 3px; }
.contact-card strong { font-family: var(--font-display); font-size: 1.04rem; color: var(--charcoal); font-weight: 600; word-break: break-word; }
.contact-card a { color: inherit; }

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    line-height: 0;
    border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 440px; border: 0; display: block; }

/* ---------------------------------------------------------------- Footer  */

.footer {
    background: var(--ink);
    color: rgba(255,255,255,.6);
    font-size: .93rem;
}
.footer a { color: rgba(255,255,255,.6); }
.footer a:hover { color: var(--orange-300); }

.footer__main {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr)) 1.3fr;
    gap: 40px;
    padding: clamp(56px, 6vw, 84px) 0 52px;
}
.footer__brand .logo__name { color: #fff; }
.footer__brand p { margin: 22px 0; max-width: 38ch; line-height: 1.75; }

.footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    position: relative;
}
.footer h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 40px; height: 2px;
    background: var(--orange);
}

.footer__links { list-style: none; display: grid; gap: 12px; }
.footer__links a { display: inline-flex; align-items: center; gap: 10px; }
.footer__links i { color: var(--orange); font-size: .68rem; transition: transform .2s var(--ease); }
.footer__links a:hover i { transform: translateX(3px); }

.footer__contact { list-style: none; display: grid; gap: 18px; }
.footer__contact li { display: flex; gap: 14px; align-items: flex-start; }
.footer__contact i {
    flex-shrink: 0;
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: var(--orange);
    font-size: .9rem;
}
.footer__contact span { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.footer__contact strong { color: #fff; font-weight: 500; font-size: .96rem; }

.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 11px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    transition: all .25s var(--ease);
}
.footer__socials a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }

/* Google Business Profile badge in the footer brand column. */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 20px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.85);
    transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.google-badge:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}
.google-badge > .fa-google {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    color: #4285F4;
    font-size: .96rem;
}
.google-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: .93rem;
    font-weight: 600;
    color: #fff;
}
.google-badge small { display: block; font-size: .78rem; color: rgba(255,255,255,.6); }
.google-badge > .fa-arrow-up-right-from-square { font-size: .74rem; opacity: .5; }

.footer__areas { padding: 34px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer__areas h4 { border: none; padding: 0; margin-bottom: 16px; font-size: .92rem; }
.footer__areas h4::after { display: none; }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .87rem;
    flex-wrap: wrap;
}
.footer__legal { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }

/* -------------------------------------------------------- Floating action */

.fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 180;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.fab a {
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.24rem;
    box-shadow: var(--shadow-lg);
    transition: transform .25s var(--ease);
}
.fab a:hover { transform: scale(1.08); color: #fff; }
.fab__call { background: var(--orange); }

/* Sticky mobile call bar */
.mobile-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 190;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(20,20,31,.1);
    /* Kept slim so it takes as little of the screen as possible. */
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
}
.mobile-bar__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-bar .btn {
    padding: 9px 10px;
    min-height: 40px;
    font-size: .85rem;
    border-radius: 999px;
}
.mobile-bar .btn i { font-size: 1em; }

/* WhatsApp green, so it reads as the messaging channel it is. */
.btn--whatsapp { background: #25D366; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.32); }
.btn--whatsapp:hover { background: #1DA851; color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.4); }
.btn--whatsapp i { font-size: 1.1em; }

/* -------------------------------------------------------------- Utilities */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 34px; }
.mt-5 { margin-top: 48px; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Scroll reveal.
   Only ever hidden when JS is running (the .js class is set by an inline
   script in <head>), so content stays visible if scripts fail to load. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .js .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------ Breakpoints */

/* The 7% gutter leaves the header less room than a fixed container would, so
   it sheds the phone block earlier than the nav collapses. */
@media (max-width: 1400px) {
    .nav__link { padding: 10px 12px; font-size: .9rem; }
    .header__phone span { display: none; }
    .header__phone i { width: 36px; height: 36px; }
}

@media (max-width: 1200px) {
    .header__phone { display: none; }
    .nav__link { padding: 10px 10px; font-size: .88rem; }
    .article-layout { grid-template-columns: minmax(0, 1fr) 300px; }
}

@media (max-width: 1024px) {
    .nav, .header__phone { display: none; }
    .nav-toggle { display: grid; place-items: center; }
    .header__cta .btn { display: none; }
    .article-layout { grid-template-columns: minmax(0, 1fr); }
    .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
    .hero__grid { grid-template-columns: minmax(0, 1fr); }
    .quote-card { max-width: 560px; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .step:nth-child(2)::after { display: none; }
    .footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
}

@media (max-width: 1240px) and (min-width: 861px) {
    .footer__main { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    body { font-size: 16px; }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .gallery, .gallery--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .lightbox__nav { width: 44px; height: 44px; margin-top: -22px; }
    .lightbox__nav--prev { left: 12px; }
    .lightbox__nav--next { right: 12px; }
    .lightbox__close { top: 14px; right: 14px; width: 44px; height: 44px; }
    .split { grid-template-columns: minmax(0, 1fr); }
    .split--reverse .split__media { order: 0; }
    .split__media--stack { padding-bottom: 0; padding-right: 0; }
    .split__media--stack .split__inset { display: none; }
    .media-badge { left: 16px; bottom: 16px; padding: 14px 18px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .topbar__list li:not(:first-child) { display: none; }
}

@media (max-width: 640px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
    .steps { grid-template-columns: minmax(0, 1fr); row-gap: 32px; }
    .step::after { display: none !important; }
    .sidebar { grid-template-columns: minmax(0, 1fr); }
    .field-row { grid-template-columns: minmax(0, 1fr); }
    .footer__main { grid-template-columns: minmax(0, 1fr); gap: 36px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    /* Buttons go full width on mobile, so the generous desktop padding makes
       them look oversized. Trimmed to a comfortable 44-52px — still above the
       44px minimum tap target, just not a slab. Order matters: the size
       modifiers must come after .btn to win on equal specificity. */
    .btn {
        width: 100%;
        padding: 10px 18px;      /* + 2px border top/bottom = ~49px tall */
        font-size: .92rem;
    }
    .btn--lg { padding: 12px 22px; font-size: .95rem; }
    .btn--sm { padding: 9px 16px;  font-size: .85rem; }
    .btn i { font-size: .9em; }

    .btn-row { flex-direction: column; gap: 10px; }
    .hero .btn-row .btn { width: 100%; }
    /* The logo and the menu toggle are the only things in the header here,
       so the lockup is trimmed just enough to clear the 7% gutter. */
    .logo { gap: 11px; }
    .logo img { width: 54px; height: 54px; }
    .logo__name { font-size: 1.18rem; }
    .logo__sub { font-size: .64rem; letter-spacing: .1em; }
    .mobile-bar { display: block; }
    /* No floating actions on mobile — the sticky bar at the bottom covers
       both WhatsApp and the quote form. */
    .fab { display: none; }
    body { padding-bottom: 62px; }
    .quote-card__head, .quote-card__body { padding-inline: 22px; }
    .callout { padding: 24px; }
    .prose { font-size: 1rem; }
    .map-embed iframe { height: 320px; }
    .gallery, .gallery--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .gallery__overlay { padding: 12px; opacity: 1; background: linear-gradient(to top, rgba(20,20,31,.8) 0%, rgba(20,20,31,0) 58%); }
            .gallery__zoom { width: 32px; height: 32px; font-size: .78rem; transform: scale(1); top: 10px; right: 10px; }
    .gallery-filter { gap: 8px; }
    .gallery-filter__btn { padding: 9px 15px; font-size: .82rem; width: auto; }
    .lightbox { padding: 2vh 3vw; }
    .lightbox__stage, .lightbox__img { max-height: 52vh; }
    .lightbox__zoom { top: 14px; right: 66px; width: 44px; height: 44px; }
    .lightbox__thumb { width: 64px; height: 46px; }
    .lightbox__hint { display: none; }
}

/* Small phones: the logo lockup plus the menu toggle has to clear the 7%
   gutter, so trim the lockup a little further. */
@media (max-width: 400px) {
    .header__inner { gap: 12px; }
    .logo { gap: 10px; }
    .logo img { width: 52px; height: 52px; border-radius: 12px; }
    .logo__name { font-size: 1.16rem; }
    /* The logo artwork already carries "Epoxy Floors & Coatings", so the
       duplicate text line is dropped here rather than shrunk to ~8px. The
       drawer and footer keep it, where there is room to set it legibly. */
    .header .logo__sub { display: none; }
}

/* ------------------------------------------------------------------ Print */

@media print {
    .header, .topbar, .footer, .fab, .mobile-bar, .cta-band, .sidebar, .drawer, .backdrop { display: none !important; }
    body { color: #000; font-size: 12pt; }
    .article-layout { display: block; }
    a { color: #000; text-decoration: underline; }
}
