/* Bernard Hardwood Floors, monochrome theme. Ported from the design source. */

:root {
  --ink: #141414;
  --ink-dark: #0a0a0a;
  --band: #141414;
  --muted-bg: #f5f5f4;
  --white: #ffffff;
  --text-2: #6a6a6a;
  --text-3: #9a9a9a;
  --on-dark: #c8c8c8;
  --border: #e6e6e6;
  --border-light: #ededed;
  --border-faq: #dcdcdc;
  --border-dark: #262626;
  --font: 'Archivo', system-ui, -apple-system, sans-serif;
  --narrow: 'Archivo Narrow', system-ui, sans-serif;
  --wrap: 1240px;
  --pad: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font); line-height: 1.1; overflow-wrap: break-word; }
p { overflow-wrap: break-word; }

/* Layout */
.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: 88px; }
.section--muted { background: var(--muted-bg); }
.section--dark { background: var(--ink-dark); color: var(--white); }
.section--band { background: var(--band); color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 9999; background: var(--ink); color: #fff; padding: 10px 18px; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

/* Eyebrow + headings */
.eyebrow { font-family: var(--narrow); letter-spacing: 0.22em; text-transform: uppercase; font-size: 13px; color: var(--text-3); margin-bottom: 14px; }
.section--dark .eyebrow, .section--band .eyebrow { color: var(--text-3); }
.h-xl { font-size: clamp(30px, 4.6vw, 54px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.02; }
.h-lg { font-size: clamp(28px, 4vw, 46px); font-weight: 900; letter-spacing: -0.025em; }
.lede { color: var(--text-2); font-size: 17px; line-height: 1.6; max-width: 46ch; }
.section--dark .lede { color: #b5b5b5; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 28px; font-weight: 800; font-size: 15px; letter-spacing: 0.01em; border: 1.5px solid var(--ink); background: var(--ink); color: #fff; white-space: nowrap; }
.btn:hover { opacity: 0.88; color: #fff; }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--ink); opacity: 1; }
.link-arrow { font-weight: 700; font-size: 14px; letter-spacing: 0.02em; border-bottom: 2px solid currentColor; padding-bottom: 3px; display: inline-block; }

/* Announcement */
.announce { background: var(--band); color: #fff; display: flex; align-items: center; justify-content: center; gap: 28px; padding: 9px 24px; font-size: 13px; font-weight: 500; flex-wrap: wrap; text-align: center; }
.announce strong { font-weight: 700; }
.announce__fin { color: #cfcfcf; font-family: var(--narrow); letter-spacing: 0.12em; text-transform: uppercase; }
.announce__sep { width: 1px; height: 14px; background: #3a3a3a; }

/* Header */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-light); }
.hdr__nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 15px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 38px; height: 38px; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 19px; flex-shrink: 0; }
.brand__name { display: block; font-weight: 800; font-size: 16px; letter-spacing: 0.02em; line-height: 1; }
.brand__sub { display: block; font-family: var(--narrow); font-size: 11px; letter-spacing: 0.16em; color: #8a8a8a; text-transform: uppercase; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav__links { display: flex; align-items: center; gap: 26px; font-size: 14.5px; font-weight: 500; }
.nav__links a:hover { color: #5a5a5a; }
.hdr__cta { background: var(--ink); color: #fff; padding: 12px 22px; font-weight: 600; font-size: 14px; white-space: nowrap; }
.hdr__cta:hover { opacity: 0.85; color: #fff; }
.hdr__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: none; }
.hdr__toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }

/* Real logo */
.brand--logo { display: flex; align-items: center; }
.brand--logo .custom-logo-link { display: flex; align-items: center; }
.custom-logo { height: 46px; width: auto; display: block; }

/* Nav dropdowns */
.nav__links li { position: relative; }
.nav__links .menu-item-has-children > a::after { content: "\25BE"; font-size: 0.7em; margin-left: 6px; color: var(--text-3); }
.nav__links .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.09);
  padding: 8px 0; display: none; z-index: 60; list-style: none;
}
.nav__links li:hover > .sub-menu, .nav__links li:focus-within > .sub-menu { display: block; }
.nav__links .sub-menu li { display: block; }
.nav__links .sub-menu a { display: block; padding: 9px 20px; white-space: nowrap; font-size: 14px; font-weight: 500; }
.nav__links .sub-menu a:hover { background: var(--muted-bg); color: var(--ink); }
/* Third level (county > city) flies out to the side */
.nav__links .sub-menu .sub-menu { top: -9px; left: 100%; }
.nav__links .sub-menu .menu-item-has-children > a::after { content: "\25B8"; float: right; margin-left: 10px; color: var(--text-3); }
.nav__caret { display: none; }

/* Hero */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; background: var(--ink-dark); color: #fff; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; filter: grayscale(0.12); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.12) 100%); }
.hero__inner { position: relative; padding-block: 64px; width: 100%; }
.hero h1 { font-size: clamp(36px, 8vw, 96px); font-weight: 900; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 22px; overflow-wrap: break-word; text-shadow: 0 2px 20px rgba(0,0,0,0.45); }
.hero__sub, .hero__eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.hero__sub { font-size: clamp(18px, 2.4vw, 24px); color: #e0e0e0; max-width: 520px; line-height: 1.35; margin-bottom: 32px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.hero__tags li { border: 1px solid rgba(255,255,255,0.35); color: #f0f0f0; padding: 9px 18px; font-size: 14px; font-weight: 500; border-radius: 999px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__cta { display: flex; flex-direction: column; gap: 2px; min-width: 210px; padding: 16px 24px; }
.hero__cta--solid { background: #fff; color: var(--ink); }
.hero__cta--ghost { border: 1.5px solid #fff; color: #fff; }
.hero__cta b { font-size: 17px; font-weight: 800; }
.hero__cta span { font-size: 12.5px; font-weight: 500; }
.hero__cta--solid span { color: #5a5a5a; }
.hero__cta--ghost span { color: #c8c8c8; }

/* Trust strip */
.trust { background: var(--band); color: #fff; }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; padding-block: 22px; }
.trust__rating { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; }
.stars { color: #fff; letter-spacing: 2px; }
.badge { font-family: var(--narrow); text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; color: #d8d8d8; font-weight: 600; }

/* Centered statement */
.statement { max-width: 960px; margin-inline: auto; text-align: center; }
.statement h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.14; letter-spacing: -0.02em; text-wrap: balance; }
.statement .label { font-family: var(--narrow); letter-spacing: 0.2em; text-transform: uppercase; font-size: 14px; font-weight: 700; margin-bottom: 24px; }

/* Section head */
.sec-head { margin-bottom: 44px; }
.sec-head--center { text-align: center; max-width: 640px; margin-inline: auto; }

/* Card grid (services, work, combos) */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--hair { gap: 1px; background: var(--border); border: 1px solid var(--border); }
.card { background: #fff; display: flex; flex-direction: column; overflow: hidden; }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.card__body p { color: var(--text-2); font-size: 14.5px; line-height: 1.5; margin-bottom: 20px; flex: 1; }
.card__body .link-arrow { align-self: flex-start; color: var(--ink); }

/* Numbered features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 40px; }
.feature__num { font-size: 40px; font-weight: 900; color: #dcdcdc; font-family: var(--narrow); margin-bottom: 16px; line-height: 1; }
.feature h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.feature p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }

/* Work gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery figure { aspect-ratio: 4/3; overflow: hidden; background: #222; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }

/* Before / after (real GBP project photos) */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.ba-card { margin: 0; border: 1px solid #e2e2e0; background: #111; overflow: hidden; }
.ba-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section--dark .ba-card { border-color: #2a2a2a; }

/* Video embeds (real job-site YouTube footage) */
.sec-sub { max-width: 640px; margin: 14px auto 0; color: #5a5a5a; font-size: 16px; line-height: 1.6; }
.video-grid { display: grid; gap: 26px; }
.video-grid--multi { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.video-grid--single { max-width: 860px; margin-inline: auto; }
.video-card { margin: 0; }
.video-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #111; border: 1px solid #e2e2e0; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { margin-top: 14px; font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.45; }
.section--dark .video-frame { border-color: #2a2a2a; }
.section--dark .video-cap { color: #ededed; }
.section--dark .sec-sub { color: #b5b5b5; }

/* Cost guide */
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.answer-box { border-left: 4px solid var(--ink); background: var(--muted-bg); padding: 20px 24px; margin: 22px 0; }
.answer-box p { margin: 0; font-size: 17px; line-height: 1.6; color: #2a2a2a; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 8px; }
.cost-table { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 560px; background: #fff; }
.cost-table th, .cost-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid #e5e5e3; vertical-align: top; }
.cost-table thead th { font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: #6a6a6a; background: #fafafa; }
.cost-table tbody tr:last-child td { border-bottom: 0; }
.cost-table td:nth-child(2) { font-weight: 700; white-space: nowrap; }
.cost-note { display: block; margin-top: 6px; font-size: 13.5px; font-weight: 400; color: #6a6a6a; line-height: 1.5; }
.cost-disclaimer { margin-top: 18px; font-size: 13.5px; color: #7a7a7a; font-style: italic; }
.cost-callout { display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; justify-content: space-between; border: 1px solid #e2e2e0; background: var(--muted-bg); padding: 24px 28px; margin-top: 28px; }
.cost-callout--wide { background: var(--ink-dark); border-color: var(--ink-dark); }
.cost-callout--wide .cost-callout__label { color: #fff; }
.cost-callout--wide .cost-callout__note { color: #b5b5b5; }
.cost-callout__label { font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #6a6a6a; margin: 0 0 6px; }
.cost-callout__price { font-size: 24px; font-weight: 900; color: var(--ink); margin: 0 0 6px; }
.cost-callout__note { font-size: 14.5px; color: #5a5a5a; line-height: 1.55; margin: 0; max-width: 46ch; }

/* Blog + post */
.post-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 14px; color: #6a6a6a; margin-bottom: 26px; }
.post-meta strong { color: var(--ink); }
.post-body { max-width: 760px; }
.post-body h2 { margin: 40px 0 14px; }
.post-body h3 { margin: 28px 0 10px; }
.post-body p { margin-bottom: 18px; }
.post-body ul { margin: 0 0 20px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.post-body ul li { position: relative; padding-left: 26px; color: #3a3a3a; line-height: 1.6; }
.post-body ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--ink); }
.post-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.key-takeaways { border-left: 4px solid var(--ink); background: var(--muted-bg); padding: 20px 24px; margin: 26px 0; }
.key-takeaways > p:first-child { font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #6a6a6a; margin: 0 0 12px; }
.key-takeaways ul { margin: 0; }
.post-table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 8px 0 24px; display: block; overflow-x: auto; }
.post-table th, .post-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid #e5e5e3; vertical-align: top; }
.post-table thead th { font-size: 12.5px; letter-spacing: 0.03em; text-transform: uppercase; color: #6a6a6a; background: #fafafa; }
.post-chart { margin: 8px 0 26px; }
.post-chart svg { width: 100%; height: auto; }
.post-author { display: flex; gap: 18px; align-items: center; max-width: 760px; margin-top: 40px; padding: 22px; border: 1px solid #e2e2e0; background: var(--muted-bg); }
.post-author img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.post-author__name { font-weight: 800; margin: 0 0 4px; }
.post-author__bio { font-size: 14px; color: #5a5a5a; line-height: 1.55; margin: 0; }
.post-card__date { font-size: 13px; color: #8a8a8a; margin-bottom: 8px; }
.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h3 a:hover { text-decoration: underline; }

/* CTA band */
.ctaband { text-align: center; }
.ctaband__inner { max-width: 900px; margin-inline: auto; }
.ctaband h2 { font-size: clamp(26px, 4.4vw, 46px); font-weight: 900; letter-spacing: -0.025em; margin-bottom: 26px; text-wrap: balance; }
.ctaband__meta { margin-top: 24px; font-size: 14px; color: #b5b5b5; line-height: 1.6; }
.ctaband__meta a { color: #fff; font-weight: 600; }

/* Split (tips / about) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { aspect-ratio: 3/2; overflow: hidden; background: #eee; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.tip { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.4; color: #3a3a3a; }
.tip::before { content: "+"; color: var(--ink); font-weight: 900; }

/* FAQ */
.faq-list { border-top: 1px solid var(--border-faq); max-width: 840px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border-faq); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 17px; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-sign { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-sign::before, .faq-sign::after { content: ""; position: absolute; background: var(--ink); }
.faq-sign::before { top: 7px; left: 0; width: 100%; height: 2px; }
.faq-sign::after { left: 7px; top: 0; width: 2px; height: 100%; transition: opacity 0.15s; }
.faq-item[open] .faq-sign::after { opacity: 0; }
.faq-item p { padding: 0 4px 24px; color: #5a5a5a; font-size: 15px; line-height: 1.6; max-width: 700px; }

/* Reviews aggregate */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.rev-card { border: 1px solid var(--border); padding: 40px 30px; text-align: center; }
.rev-card .stars { color: var(--ink); letter-spacing: 2px; }
.rev-card__big { font-size: 44px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; margin: 12px 0 6px; }
.rev-card__label { font-family: var(--narrow); letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; font-weight: 600; color: var(--text-2); }

/* Breadcrumbs */
.crumbs { font-size: 13px; color: var(--text-3); padding-block: 16px; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin: 0 8px; }

/* Page content (service/city/combo/generic) */
.page-hero { position: relative; overflow: hidden; background: var(--ink-dark); color: #fff; }
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; filter: grayscale(0.1); }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.46) 50%, rgba(0,0,0,0.18) 100%); }
.page-hero .crumbs, .page-hero__inner { position: relative; z-index: 1; }
.page-hero .crumbs { color: #cfcfcf; }
.page-hero .crumbs a { color: #cfcfcf; }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero__inner { padding-block: 64px; max-width: 820px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.02; margin-bottom: 18px; text-shadow: 0 2px 18px rgba(0,0,0,0.45); }
.page-hero p { text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.page-hero p { color: #d0d0d0; font-size: 18px; line-height: 1.55; }
.prose { max-width: 760px; }
.prose h2 { font-size: 30px; font-weight: 900; letter-spacing: -0.02em; margin: 40px 0 16px; }
.prose h3 { font-size: 22px; font-weight: 800; margin: 28px 0 12px; }
.prose p { color: #3a3a3a; font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.checklist { display: grid; gap: 12px; margin: 20px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: #3a3a3a; }
.checklist li::before { content: ""; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; background: var(--ink); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; }

/* Chips / internal link lists */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1px solid var(--border); padding: 10px 18px; font-size: 14px; font-weight: 600; }
.chip:hover { border-color: var(--ink); }

/* Contact form embed */
.form-embed { border: 1px solid var(--border); min-height: 640px; }
.form-embed iframe { width: 100%; min-height: 640px; border: 0; }

/* Footer */
.ft { background: var(--ink-dark); color: var(--on-dark); }
.ft__inner { padding: 80px var(--pad) 32px; max-width: var(--wrap); margin-inline: auto; }
.ft__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-dark); }
.ft__brand .brand__mark { border-color: #fff; color: #fff; }
.ft__logo { margin-bottom: 4px; }
.ft__logo a { display: inline-flex; }
.ft__logo img { height: 52px; width: auto; }
.ft__brand .brand__name { color: #fff; }
.ft__tag { font-size: 14.5px; line-height: 1.6; max-width: 280px; color: var(--text-3); margin-top: 16px; }
.ft__addr { font-size: 14.5px; margin-top: 20px; line-height: 1.6; }
.ft__phone { margin-top: 12px; }
.ft__phone a { color: #fff; font-weight: 700; }
.ft__heading { font-family: var(--narrow); letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; color: #fff; font-weight: 700; margin-bottom: 18px; }
.ft__list { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.ft__list a, .ft__areas a { color: var(--text-3); }
.ft__list a:hover, .ft__areas a:hover { color: #fff; }
.ft__areas { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 14px; }
.ft__bottom { padding-top: 26px; font-size: 13px; color: #7a7a7a; text-align: center; }

/* Responsive */
@media (max-width: 991px) {
  :root { --pad: 24px; }
  .section { padding-block: 64px; }
  .nav__links, .hdr__cta { display: none; }
  .hdr__toggle { display: flex; }
  .hdr.is-open .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--border-light); padding: 8px 0 20px; max-height: calc(100vh - 64px); max-height: calc(100dvh - 64px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
  .hdr.is-open .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .hdr.is-open .nav__links a { display: block; padding: 14px var(--pad); border-bottom: 1px solid var(--border-light); }
  .hdr.is-open .nav__links .menu-item-has-children { display: flex; flex-wrap: wrap; align-items: stretch; }
  .hdr.is-open .nav__links .menu-item-has-children > a { flex: 1 1 auto; }
  .hdr.is-open .nav__caret { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 58px; border: 0; border-bottom: 1px solid var(--border-light); background: transparent; cursor: pointer; }
  .hdr.is-open .nav__caret span { width: 9px; height: 9px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); transition: transform .2s ease; margin-top: -3px; }
  .hdr.is-open .nav__caret[aria-expanded="true"] span { transform: rotate(-135deg); margin-top: 3px; }
  .hdr.is-open .nav__links .sub-menu { position: static; display: none; border: none; box-shadow: none; padding: 0; min-width: 0; flex-basis: 100%; }
  .hdr.is-open .nav__links li.is-expanded > .sub-menu { display: block; }
  .hdr.is-open .nav__links .sub-menu a { padding-left: calc(var(--pad) + 18px); background: var(--muted-bg); font-size: 0.95em; }
  .hdr.is-open .nav__links .sub-menu .sub-menu a { padding-left: calc(var(--pad) + 36px); }
  .hdr.is-open .nav__links .menu-item-has-children > a::after { content: ""; }
  .hdr.is-open .hdr__cta { display: block; margin: 16px var(--pad) 0; text-align: center; }
  .hdr__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hdr__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hdr__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  :root { --pad: 16px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split__media { order: -1; }
  .ft__cols { grid-template-columns: 1fr; gap: 32px; }
  .trust__inner { justify-content: center; text-align: center; }
  .hero__cta { flex: 1; min-width: 100%; }
}
@media (max-width: 479px) {
  .tips-grid { grid-template-columns: 1fr; }
  .announce__sep { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .eyebrow { letter-spacing: 0.12em; font-size: 12px; }
}

/* Sticky mobile call / quote bar */
.mobile-cta { display: none; }
@media (max-width: 767px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
  }
  .mobile-cta__btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 12px; font-weight: 800; font-size: 15.5px; letter-spacing: 0.01em;
    text-decoration: none;
  }
  .mobile-cta__call { background: #fff; color: var(--ink); border-top: 1px solid var(--border); }
  .mobile-cta__quote { background: var(--ink); color: #fff; }
  body { padding-bottom: 54px; }
}
