/* ==========================================================================
   Urbon Sheds — site styles
   Palette and metrics measured from a full-page capture of the live site.
   ========================================================================== */

@font-face {
  font-family: 'Nohemi';
  src: url('https://irp.cdn-website.com/76ece2ff/fonts/Nohemi-Regular-8e1_400.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Nohemi';
  src: url('https://irp.cdn-website.com/76ece2ff/fonts/Nohemi-Bold-5085_400.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  --dark: #292929;
  --dark-2: #1f1f1f;
  --heading: #313131;
  --accent: #0097b2;
  --accent-dark: #007e95;
  --cyan: #1db6e8;          /* active nav link, review stars */
  --sand: #eeece9;
  --white: #fff;
  --text: #3a3a3a;
  --muted: #6b6b6b;
  --title-grey: #787878;    /* card headings on the live site are grey, not black */
  --line: #e2dfdb;
  --radius: 14px;
  --shadow: 0 3px 16px rgba(0, 0, 0, .09);
  --shadow-lg: 0 10px 34px rgba(0, 0, 0, .14);
  --head: 'Nohemi', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --wrap: 1200px;
  --hero-h: 508px;
  --hero-bar-h: 104px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.45;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .55em;
  color: var(--heading);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.2rem, 2.95vw, 3.55rem); }
h2 { font-size: clamp(1.9rem, 2.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 1.6vw, 1.9rem); }

p { margin: 0 0 1.35em; }
p:last-child { margin-bottom: 0; }

/* Key phrases inside body copy are bold grey on the live site. */
.split__body strong, .card__body strong { color: var(--title-grey); font-weight: 600; }

.wrap { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }
.section { padding: 100px 0; }
.section--sand { background: var(--sand); }
/* the locations block carries more air than a standard section */
.section--locations { padding: 130px 0 170px; }
/* per-block rhythm, tuned against the live page's landmark positions */
.section--reviews { padding: 64px 0 68px; }
.section--services { padding: 0 0 196px; }
/* the DIY block fades into the sand that the locations block sits on */
.section--fade { background: linear-gradient(#fff 34%, var(--sand)); }
.section--fade .split__media img { height: 646px; }
/* the pillar block fades from white into the sand that the strip sits on */
/* index pages carry more air around their single card grid */
.section--index { padding: 150px 0; }
/* the contact page runs tighter, with a shorter closing image */
.section--compact { padding: 70px 0; }
.section--compact .split__media img { height: 360px; }
.section--tight { padding: 30px 0 105px; background: linear-gradient(#fff, var(--sand)); }
.center { text-align: center; }
.lede { max-width: 820px; margin: 0 auto 2.8rem; text-align: center; color: var(--muted); }

/* Centred section headings, sized to match the live site (~50px at 1920). */
.section > .wrap > h2,
.section > .wrap > h3 {
  text-align: center;
  font-size: clamp(1.9rem, 2.7vw, 3.15rem);
  margin-bottom: 2.9rem;
}

/* ---------- buttons ---------- */
/* The live site's buttons are sentence case with no tracking — only labels
   that are written in caps (e.g. "QUOTE REQUEST") render as caps. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  padding: 19px 36px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn--dark { background: var(--dark); }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .85); }
.btn--ghost:hover { background: #fff; color: var(--dark); }
.btn--sm { font-size: .95rem; padding: 15px 28px; }

/* Circular arrow used on cards, pills and the hero bar. */
.arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #10343c;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
  flex: none;
  transition: background .2s, transform .2s;
}
.card:hover .arrow, .pill:hover .arrow { background: var(--accent-dark); transform: translate(2px, 2px); }

/* ---------- header ---------- */
/* The live site pins the header over the content on every page
   (.hasStickyHeader .dmHeaderContainer { position: fixed }) with no spacer,
   so the hero sits underneath it. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  padding-top: 12px;
}
/* Measured off the live page: a full pill 1760px wide, centred with an 80px
   margin either side, 78px tall. */
.site-header__bar {
  background: var(--dark);
  border-radius: 500px;
  margin-inline: 80px;
  height: 78px;
  padding: 0 11px 0 88px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Inner pages use the same floating bar; their hero photo runs up behind it. */
.site-header--solid .site-header__bar { background: rgba(41, 41, 41, .94); }

.logo { display: flex; align-items: center; flex: none; }
.logo img { height: 57px; width: auto; }

/* Centred on the pill itself, not between the logo and the button — that is
   how the live site positions it (nav centre == pill centre). */
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav > li { position: relative; list-style: none; }
.nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 10px;
  transition: color .2s;
}
.nav a:hover, .nav .is-active > a { color: var(--cyan); }
.nav .caret { display: flex; opacity: .9; }
.nav .caret svg { width: 11px; height: 11px; }

.submenu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 260px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s;
}
.nav > li:hover .submenu, .nav > li:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.submenu a {
  color: var(--heading);
  display: block;
  padding: 10px 22px;
  letter-spacing: 0;
  text-transform: none;
  font-size: .95rem;
}
.submenu a:hover { background: var(--sand); color: var(--accent); }

.nav-cta {
  flex: none;
  height: 56px;
  font-size: 1rem;
  padding: 0 55px;
}
/* ---------- click-to-call (inline voice embed) ----------
   Mounted in the header beside the quote button. Styled as the secondary
   action: outlined on the dark pill so the solid teal QUOTE REQUEST stays
   the primary call to action. */
.nav-actions { display: flex; align-items: center; gap: 16px; flex: none; }

#lexisgrid-voice .lgv-wrap { position: relative; }
#lexisgrid-voice .lgv-btn {
  display: flex;
  align-items: center;
  gap: .6em;
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .55);
  color: #fff;
  font-family: var(--body);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, color .2s;
}
#lexisgrid-voice .lgv-btn:hover {
  background: #fff;
  box-shadow: inset 0 0 0 1.5px #fff;
  color: var(--dark);
}
#lexisgrid-voice .lgv-btn .lgv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  animation: urbon-pulse 1.8s infinite;
}
@keyframes urbon-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 151, 178, .6); }
  70%  { box-shadow: 0 0 0 8px rgba(0, 151, 178, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 151, 178, 0); }
}
#lexisgrid-voice .lgv-btn.lgv-connecting { background: rgba(255, 255, 255, .16); color: #fff; }
/* in-call stays red — "end call" must not read as a normal brand button */
#lexisgrid-voice .lgv-btn.lgv-active {
  background: #dc2626;
  box-shadow: inset 0 0 0 1.5px #dc2626;
  color: #fff;
}
#lexisgrid-voice .lgv-btn.lgv-active .lgv-dot { background: #fff; animation: none; }
#lexisgrid-voice .lgv-btn.lgv-active .lgv-square { background: #fff; width: 7px; height: 7px; }
/* status sits out of flow so a state change cannot resize the header pill */
#lexisgrid-voice .lgv-status {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: .7rem;
  color: #fff;
  opacity: .8;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 6px 2px;
}

/* ---------- home hero ---------- */
/* Left half is a flat grey panel, right half is the photo, and a full-width
   teal "Get a Quote" bar sits under the panel. */
.hero { position: relative; display: flex; }
.hero__panel {
  width: 50%;
  background: #5c5c5c;
  color: #fff;
  /* Sits in the top 508px only — the teal bar fills the 104px beneath it. */
  align-self: flex-start;
  min-height: var(--hero-h);
  padding: 120px 60px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__panel h1 { color: #fff; margin-bottom: .42em; max-width: 790px; }
.hero__panel p { color: #fff; font-size: 1.15rem; line-height: 1.55; max-width: 770px; margin: 0; }
.hero__panel strong { font-weight: 600; }
.hero__panel a.inline { color: #fff; font-weight: 600; }
.hero__panel a.inline:hover { color: var(--cyan); }

/* Explicit height: a percentage height on the img would otherwise fall back
   to the photo's own aspect ratio and stretch the hero past the teal bar. */
.hero__media { width: 50%; height: calc(var(--hero-h) + var(--hero-bar-h)); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: var(--hero-bar-h);
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 77px 0 110px;
  transition: background .2s;
}
/* scoped to the label — `.arrow` is a span too and must stay hard right */
.hero__bar .label {
  font-family: var(--head);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-right: auto;
}
.hero__bar .arrow { width: 58px; height: 58px; background: #4a4a4a; color: #fff; font-size: 1.6rem; }
.hero__bar:hover { background: var(--accent-dark); }
.hero__bar:hover .arrow { background: var(--dark); }

/* ---------- inner page hero ---------- */
/* Same construction as the home hero, but a shorter panel holding the page
   title and one button instead of the intro paragraph. */
.hero--inner { --hero-h: 454px; --hero-bar-h: 101px; }
.hero--inner .hero__panel {
  align-items: flex-start;
  gap: 30px;
  padding: 120px 60px 40px 80px;
}
.hero--inner .hero__panel h1 { margin: 0; max-width: 20ch; }

/* icon bullet list in the benefits split */
.benefits { list-style: none; padding: 0; margin: 0 0 1.35em; display: grid; gap: 12px; }
.benefits li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.45; }
.benefits__ico { color: var(--accent); flex: none; display: flex; margin-top: 2px; }
.benefits__ico svg { width: 19px; height: 19px; }
.benefits strong { color: var(--heading); font-weight: 600; }


.page-hero { position: relative; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { content: ''; position: absolute; inset: 0; background: rgba(30, 30, 30, .5); }
.page-hero__inner {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  /* extra top padding clears the 95px fixed header over the photo */
  padding: 160px 0 100px;
}
.page-hero h1 { color: #fff; max-width: 18ch; margin: 0; }
.page-hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- location page: trust bar ---------- */
.trustbar { background: #fff; padding: 26px 0 0; }
.trustbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trustbar__item {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--heading);
}
.trustbar__ico { color: var(--accent); flex: none; display: flex; }
.trustbar__ico svg { width: 26px; height: 26px; }

/* ---------- two-column tick list ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.checklist li { position: relative; padding-left: 26px; font-size: .98rem; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: .42em;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- enquiry block ---------- */
.enquiry { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: start; }
.enquiry__form, .enquiry__details {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.enquiry h3 { text-align: left; margin-bottom: 1.1rem; }
.enquiry .form { max-width: none; }
.enquiry__hours-title {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--heading);
  margin: 26px 0 12px;
}
.enquiry .hours { margin-top: 0; font-size: .92rem; color: var(--muted); }
.enquiry .hours span:first-child { flex: 0 0 110px; color: var(--text); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 900px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border-radius: 10px; box-shadow: var(--shadow); overflow: hidden; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  position: relative;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  inset: 50% 7px auto 7px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
.faq__plus::after { transform: translateY(-50%) rotate(90deg); transition: transform .2s; }
.faq__item[open] .faq__plus::after { transform: translateY(-50%) rotate(0); }
.faq__body { padding: 0 24px 22px; color: var(--text); font-size: .97rem; line-height: 1.5; }

/* ---------- reviews (Google-style, flat cards in a carousel) ---------- */
.reviews-wrap { position: relative; width: min(100% - 48px, 950px); margin-inline: auto; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review { display: flex; flex-direction: column; gap: 11px; }
.review__head { display: flex; align-items: center; gap: 13px; }
.review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a5bb5, #c4508e);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: .9rem;
  flex: none;
  position: relative;
}
/* small Google badge tucked into the corner of the avatar */
.review__avatar::after {
  content: 'G';
  position: absolute;
  left: -3px;
  bottom: -3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}
.review__name { font-weight: 600; font-size: 1rem; color: var(--heading); display: flex; align-items: center; gap: 6px; }
.review__tick { width: 14px; height: 14px; flex: none; }
.review__ago { font-size: .82rem; color: #8b8b8b; margin-top: 1px; }
.review__stars { color: var(--cyan); letter-spacing: 1px; font-size: 1.05rem; }
.review__text { font-size: .97rem; color: var(--text); line-height: 1.38; margin: 0; }
.review__more { font-size: .95rem; color: #a9cfe6; }
.review__more:hover { color: var(--accent); }
.review__shots { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 4px; }
.review__shot { position: relative; }
.review__shot img { width: 100%; height: 118px; object-fit: cover; border-radius: 3px; }
.review__shot[data-more]::after {
  content: '+' attr(data-more);
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 3px;
}
.reviews-next {
  position: absolute;
  right: -46px;
  top: 232px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: #8e8e8e;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: .95rem;
  box-shadow: var(--shadow);
}
.reviews-next:hover { background: var(--dark); }

/* ---------- pillar cards (One Stop Shop) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 342px);
  justify-content: center;
  column-gap: 60px;
  row-gap: 62px;
}
.pillar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 185px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar__icon { color: #111; display: flex; }
.pillar__icon svg { width: 54px; height: 54px; }
.pillar h5 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0;
  color: var(--heading);
  line-height: 1.12;
}

/* ---------- gallery strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 0 20px 70px;
  background: var(--sand);
}
.strip img { width: 100%; height: 295px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--flip .split__media { order: 2; }
.split__media img {
  width: 100%;
  height: 528px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split__body h2 { text-align: left; margin-bottom: .5em; }
.split__body p { font-size: 1.05rem; line-height: 1.45; }
.split__body .btn { margin-top: .6rem; }
.split__body ul { padding-left: 1.2rem; margin: 0 0 1.35em; }
.split__body li { margin-bottom: .5em; }

/* ---------- product / service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__img { height: 228px; margin-bottom: 20px; }
.card__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.card__body { display: flex; flex-direction: column; flex: 1; gap: 14px; }
.card__body h3 { margin: 0; color: var(--title-grey); font-size: 1.85rem; }
.card__body p { font-size: 1.02rem; color: var(--text); line-height: 1.42; margin: 0; }
.card__foot { margin-top: auto; display: flex; justify-content: flex-end; padding-top: 14px; }
.card--text { min-height: 250px; }

/* ---------- full-bleed CTA band ---------- */
/* The live site runs this photo at full brightness with white text over it. */
.band { position: relative; }
.band__media { position: absolute; inset: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .05));
}
.band--short .band__inner { min-height: 580px; padding-top: 230px; }
.band--short h2, .band--short h3 { font-size: clamp(2rem, 3.1vw, 3.6rem); }
.band__inner {
  position: relative;
  min-height: 790px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  padding: 430px 0 0;   /* heading sits ~2/3 down the photo, as on the live site */
}
.band h2, .band h3 {
  color: #fff;
  margin: 0;
  font-size: clamp(2.1rem, 3.9vw, 4.55rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

/* ---------- locations pills ---------- */
.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1180px;
  margin-inline: auto;
}
.pill {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-height: 90px;
  padding: 0 24px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pill h3 { margin: 0; font-size: 1.6rem; color: var(--title-grey); }
.pill .arrow { width: 44px; height: 44px; font-size: 1.25rem; }

/* ---------- map + brands ---------- */
.map { position: relative; }
.map iframe { display: block; width: 100%; height: 600px; border: 0; }

/* white logo card straddling the map and the footer */
.brands { background: var(--dark); }
.brands__inner {
  position: relative;
  margin: -84px auto 0;
  width: min(100% - 80px, 1760px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.brands__inner img { height: 64px; width: auto; max-width: 200px; object-fit: contain; transition: .2s; }
.brands__inner img:hover { transform: scale(1.04); }

/* ---------- forms ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 760px; }
.form > * { grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
.form--two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--heading); }
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.form-note { font-size: .85rem; color: var(--muted); grid-column: 1 / -1; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico { color: var(--accent); font-size: 1.2rem; width: 26px; flex: none; }
.contact-list strong { display: block; font-family: var(--head); }

/* ---------- quote page ---------- */
.quote-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 38px;
}
.quote-card h3 { text-align: left; margin-bottom: .7rem; font-size: 1.5rem; }
.enquiry__note { font-size: .88rem; color: var(--muted); margin-bottom: 1.4rem; line-height: 1.45; }

.quote-legend {
  grid-column: 1 / -1;
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--heading);
  margin: 18px 0 0;
}
.quote-legend span { font-weight: 400; color: var(--muted); }

.checks { grid-column: 1 / -1; display: grid; gap: 10px; }
.check { display: flex; align-items: center; gap: 10px; font-size: .95rem; cursor: pointer; }
.check input { width: 17px; height: 17px; accent-color: var(--accent); flex: none; }

.dropzone {
  grid-column: 1 / -1;
  border: 1px dashed #c8c8c8;
  border-radius: 10px;
  background: #fafafa;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  cursor: pointer;
  font-size: .88rem;
  color: var(--muted);
  transition: border-color .2s, background .2s;
}
.dropzone:hover { border-color: var(--accent); background: #f4fbfc; }
.dropzone strong { color: var(--accent); font-weight: 600; }
.dropzone__ico { font-size: 1.5rem; color: #b5b5b5; line-height: 1; }
.dropzone input { display: none; }

.quote-aside { display: flex; justify-content: center; padding-top: 80px; }
.quote-diagram { width: 100%; max-width: 420px; height: auto; }

/* dark-on-light social row inside the contact card */
.socials--dark { margin-top: 22px; }
.socials--dark a { background: var(--accent); color: #fff; }
.socials--dark a:hover { background: var(--accent-dark); }

/* sand variant of the reassurance strip */
.trustbar--sand { background: var(--sand); padding: 44px 0; }
.trustbar--sand .trustbar__item { background: #fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: #fff; font-size: 1.02rem; }
/* the footer runs the full 1760px band, not the 1200px content wrap */
.site-footer .wrap { width: min(100% - 96px, 1760px); padding-left: 20px; }
.footer-top {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 92px;
  padding: 105px 0 109px;
}
.footer-brand img { height: 72px; margin-bottom: 30px; }
.footer-brand h3 { color: #fff; font-size: 2.1rem; margin-bottom: 28px; }
.footer-brand .actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-brand .actions .btn { min-width: 200px; justify-content: center; }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.footer-cols h6 {
  color: #fff;
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 26px 0 0;
}
.footer-cols > div > h6:first-child { margin-top: 0; }
.footer-cols ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 15px; }
.footer-cols li { text-transform: uppercase; letter-spacing: .02em; }
.footer-cols a { color: rgba(255, 255, 255, .92); }
.footer-cols a:hover, .footer-cols a.is-here { color: var(--cyan); }
.footer-contact li { text-transform: none; }

.hours { display: grid; gap: 13px; margin-top: 16px; }
.hours div { display: flex; gap: 12px; }
.hours span:first-child { flex: 0 0 120px; }
.hours span:last-child { white-space: nowrap; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  transition: background .2s;
}
.socials a:hover { background: var(--accent); }
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

/* ==========================================================================
   Responsive — breakpoints match the live site: mobile <=767px,
   tablet 768-1024px, desktop >=1025px.
   ========================================================================== */

@media (max-width: 1400px) {
  .pillars { grid-template-columns: repeat(3, 1fr); column-gap: 40px; }
  .strip img { height: 210px; }
  .brands__inner img { height: 46px; max-width: 150px; }
  .site-header__bar { margin-inline: 30px; padding-left: 40px; }
  .site-footer .wrap { width: calc(100% - 60px); padding-left: 0; }
}

/* ---------- tablet and below: nav collapses to a drawer ---------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  /* the call button stays on mobile — it is the point of the demo */
  .nav-actions { order: 2; margin-left: auto; gap: 0; }
  .nav-toggle { order: 3; margin-left: 14px; }
  #lexisgrid-voice .lgv-btn { height: 42px; padding: 0 18px; font-size: .76rem; }

  /* the live site drops position:fixed on touch, so the bar joins the flow */
  .site-header { position: static; padding-top: 0; background: var(--dark); }
  .site-header__bar {
    display: flex;
    margin-inline: 0;
    border-radius: 0;
    height: auto;
    min-height: 74px;
    padding: 0 24px;
  }
  .site-header--solid .site-header__bar { background: none; }
  .logo img { height: 46px; }
  .page-hero__inner { padding: 90px 0; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* clear the desktop centring transform, or the panel sits half its
       own width to the left of the viewport */
    transform: none;
    background: var(--dark-2);
    padding: 10px 24px 22px;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 300;
  }
  .nav.is-open > li { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .nav.is-open a { padding: 14px 0; justify-content: space-between; }
  .nav.is-open .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 14px;
    display: none;
  }
  .nav.is-open li.open > .submenu { display: block; }
  .nav.is-open .submenu a { color: rgba(255, 255, 255, .8); padding: 9px 0; }
  .nav.is-open .submenu a:hover { background: none; }

  .section { padding: 70px 0; }
  .section--locations { padding: 80px 0 90px; }
  .section--services { padding: 0 0 90px; }
  .reviews, .pillars, .cards { grid-template-columns: 1fr 1fr; }
  .pill { flex: 0 0 calc(50% - 15px); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--flip .split__media { order: 0; }
  .split__media img, .section--fade .split__media img { height: 340px; }
  .split__body h2 { text-align: left; }

  /* hero stacks: photo on top, grey panel under it, teal bar full width */
  .hero { flex-direction: column; }
  .hero__media { width: 100%; height: 260px; order: -1; }
  .hero__panel { width: 100%; min-height: 0; padding: 56px 28px 120px; }
  .hero__bar { width: 100%; height: 88px; padding: 0 24px; }

  /* location / quote page components */
  .trustbar .wrap { grid-template-columns: 1fr 1fr; }
  .enquiry { grid-template-columns: 1fr; gap: 26px; }
  .quote-grid { grid-template-columns: 1fr; gap: 34px; }
  .quote-aside { padding-top: 0; }
  .section--index { padding: 80px 0; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; padding: 64px 0 60px; }
  .strip { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .reviews-next { display: none; }
  .band__inner { min-height: 520px; padding-top: 180px; }
  .brands__inner { margin-top: -40px; padding: 18px 24px; }
}

/* ---------- phones ---------- */
@media (max-width: 767px) {
  .wrap, .reviews-wrap { width: calc(100% - 32px); }
  .site-footer .wrap { width: calc(100% - 32px); }
  .section { padding: 54px 0; }

  /* the live site centres the hero copy on mobile (m-text-align-center) and
     steps the type down a size */
  .hero__panel { text-align: center; align-items: center; padding: 44px 24px 110px; }
  .hero__panel h1 { font-size: clamp(2rem, 11vw, 2.8rem); max-width: 100%; }
  .hero__panel p { font-size: .95rem; max-width: 100%; }
  .hero__media { height: 200px; }
  .hero__bar { justify-content: center; gap: 16px; padding: 0 20px; height: 80px; }
  .hero__bar .label { font-size: 1.6rem; margin-right: 0; }
  .hero__bar .arrow { width: 44px; height: 44px; font-size: 1.25rem; }

  .page-hero__inner { padding: 64px 0; min-height: 300px; align-items: center; text-align: center; }
  .page-hero h1 { max-width: 100%; }
  .page-hero .actions { justify-content: center; }

  .section > .wrap > h2, .section > .wrap > h3 { margin-bottom: 1.8rem; }
  .reviews, .cards, .form--two { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; column-gap: 14px; row-gap: 14px; }
  .pillar { min-height: 150px; padding: 22px 12px; }
  .pillar h5 { font-size: 1.1rem; }
  .pillar__icon svg { width: 40px; height: 40px; }
  .pill { flex: 0 0 100%; }

  .strip { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 12px 44px; }
  .strip img { height: 110px; }

  .split__media img, .section--fade .split__media img { height: 240px; }
  .band__inner { min-height: 380px; padding-top: 120px; gap: 20px; }
  .section--locations { padding: 54px 0 64px; }
  .section--services { padding: 0 0 54px; }

  /* stacked into one column, so the groups need their own separation —
     the first h6 in each column has its top margin zeroed for the desktop grid */
  .trustbar .wrap { grid-template-columns: 1fr; gap: 12px; }
  .trustbar { padding: 18px 0 0; }
  .trustbar--sand { padding: 30px 0; }
  .checklist { grid-template-columns: 1fr; }
  .enquiry__form, .enquiry__details, .quote-card { padding: 22px; }
  .form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .faq__item summary { padding: 16px 18px; font-size: .95rem; }
  .faq__body { padding: 0 18px 18px; }
  .section--index { padding: 54px 0; }
  .section--compact { padding: 44px 0; }
  .section--compact .split__media img { height: 220px; }
  .footer-cols { grid-template-columns: 1fr; gap: 30px; }
  .footer-top { padding: 48px 0 40px; }
  .brands__inner { justify-content: center; gap: 22px; margin-top: -30px; }
  .brands__inner img { height: 34px; max-width: 110px; }
  .map iframe { height: 320px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  #lexisgrid-voice .lgv-btn { height: 38px; padding: 0 14px; font-size: .7rem; letter-spacing: .04em; }
  #lexisgrid-voice .lgv-status { font-size: .62rem; }
}
