/* ============================================================
   PH PLASTERING & RENDERING — Derby
   style.css
   ------------------------------------------------------------
   Mobile-first. No frameworks, no build step.
   Palette: deep charcoal / warm off-white / burnt orange accent.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour */
  --charcoal:      #1c1e22;
  --charcoal-2:    #24272c;
  --charcoal-3:    #32363d;
  --off-white:     #f7f4ef;
  --off-white-2:   #efeae1;
  --accent:        #c9601f;   /* burnt orange */
  --accent-dark:   #a94c14;
  --accent-light:  #e8823e;
  --ink:           #1c1e22;
  --ink-soft:      #55595f;
  --ink-faint:     #85898f;
  --line:          #e0dad0;
  --line-dark:     #3a3e45;
  --white:         #ffffff;
  --success:       #2f7d4f;
  --error:         #c0392b;

  /* Type */
  --font-head: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Layout */
  --wrap: 1160px;
  --gutter: 20px;
  --header-h: 68px;
  --radius: 12px;
  --radius-sm: 8px;

  /* Depth */
  --shadow-sm: 0 1px 2px rgba(18, 20, 23, .06), 0 2px 8px rgba(18, 20, 23, .05);
  --shadow-md: 0 4px 12px rgba(18, 20, 23, .08), 0 12px 28px rgba(18, 20, 23, .07);
  --shadow-lg: 0 10px 24px rgba(18, 20, 23, .12), 0 24px 56px rgba(18, 20, 23, .12);

  /* Motion */
  --ease: cubic-bezier(.22, .68, .32, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

a { color: var(--accent-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 9vw, 4.4rem); }
h2 { font-size: clamp(2rem, 6.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 4vw, 1.55rem); }

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .ico { width: 20px; height: 20px; fill: currentColor; flex: none; }

.btn-lg { padding: 17px 28px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201, 96, 31, .3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 10px 26px rgba(201, 96, 31, .38);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(247, 244, 239, .38);
  color: var(--off-white);
}
.btn-ghost:hover {
  background: rgba(247, 244, 239, .1);
  border-color: var(--off-white);
  color: var(--off-white);
  transform: translateY(-2px);
}

/* ---------- 4. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 22px rgba(0, 0, 0, .28); }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--off-white);
  flex: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: .02em;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: .01em;
  color: var(--off-white);
}
.brand-sub {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.site-nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.header-call {
  background: var(--accent);
  color: #fff;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(201, 96, 31, .32);
}
.header-call:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.call-label { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.call-small {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}
.call-number { font-weight: 700; font-size: .98rem; white-space: nowrap; }

/* Narrow phones: the header call button collapses to an icon so the
   brand and menu button still fit. The full number stays visible in
   the hero and in the fixed tap-to-call bar at the bottom. */
@media (max-width: 559px) {
  .header-call { width: 44px; height: 44px; padding: 0; }
  .call-label { display: none; }
  .brand-name { font-size: 1.14rem; }
  .brand-sub { font-size: .62rem; letter-spacing: .07em; }
  .brand-mark { width: 36px; height: 36px; font-size: 1.16rem; }
}

/* Roomier phones: show the number, drop the "Call now" label. */
@media (min-width: 560px) and (max-width: 899px) {
  .call-small { display: none; }
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.site-nav.is-open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--charcoal-2);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 18px 32px rgba(0, 0, 0, .3);
}
.site-nav.is-open ul { list-style: none; padding: 8px var(--gutter) 16px; }
.site-nav.is-open li + li { border-top: 1px solid var(--line-dark); }
.site-nav.is-open a {
  display: block;
  padding: 14px 2px;
  color: var(--off-white);
  text-decoration: none;
  font-weight: 500;
}
.site-nav.is-open a:hover { color: var(--accent-light); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--off-white);
  overflow: hidden;
}
/* Layered gradients + a faint trowel-sweep texture, all CSS — no image request */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(201, 96, 31, .26), transparent 62%),
    radial-gradient(700px 520px at 8% 96%, rgba(201, 96, 31, .1), transparent 60%),
    repeating-linear-gradient(118deg,
      rgba(255, 255, 255, .022) 0px,
      rgba(255, 255, 255, .022) 2px,
      transparent 2px,
      transparent 9px),
    linear-gradient(168deg, #22252a 0%, #1c1e22 55%, #191b1f 100%);
}
.hero-inner {
  position: relative;
  padding: 56px 20px 64px;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.hero h1 { color: var(--off-white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  color: rgba(247, 244, 239, .78);
  max-width: 640px;
  margin: 0 auto 30px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 14px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.trust-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 244, 239, .12);
}
.trust-text { font-size: .93rem; color: rgba(247, 244, 239, .74); }
.trust-text strong { color: var(--off-white); }

.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 22px; height: 22px; fill: #f2a93b; }
.stars-sm svg { width: 17px; height: 17px; }

/* ---------- 6. Quick facts strip ---------- */
.strip {
  background: var(--charcoal-2);
  border-top: 1px solid var(--line-dark);
  color: var(--off-white);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border-left: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
}
.strip-item {
  background: var(--charcoal-2);
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.strip-big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--accent-light);
  line-height: 1;
}
.strip-label {
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, .62);
}

/* ---------- 7. Section shells ---------- */
.section { padding: 62px 0; }
.section-tint { background: var(--off-white-2); }
.section-dark { background: var(--charcoal); color: var(--off-white); }
.section-dark h2, .section-dark h3 { color: var(--off-white); }
.section-dark .section-lead { color: rgba(247, 244, 239, .74); }

.section-head { max-width: 680px; margin-bottom: 38px; }
.section-lead { font-size: 1.05rem; color: var(--ink-soft); margin: 0; }
.section-foot {
  margin-top: 30px;
  font-size: 1rem;
  color: var(--ink-soft);
}
.section-dark .section-foot { color: rgba(247, 244, 239, .74); }
.link-call { font-weight: 700; color: var(--accent-dark); white-space: nowrap; }
.section-dark .link-call { color: var(--accent-light); }

/* ---------- 8. Services ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 96, 31, .38);
}
.card-ico {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(201, 96, 31, .1);
  margin-bottom: 16px;
}
.card-ico svg { width: 26px; height: 26px; fill: var(--accent); }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ---------- 9. Why choose us ---------- */
.why-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}
.why-ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(201, 96, 31, .16);
  flex: none;
}
.why-ico svg { width: 22px; height: 22px; fill: var(--accent-light); }
.why-item h3 { font-size: 1.24rem; margin-bottom: 4px; }
.why-item p { margin: 0; color: rgba(247, 244, 239, .7); font-size: .96rem; }

.cta-band {
  margin-top: 38px;
  padding: 26px 22px;
  background: var(--charcoal-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.cta-band p {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--off-white);
}

/* ---------- 10. Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.shot {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-3);
  box-shadow: var(--shadow-sm);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.shot:hover img { transform: scale(1.045); }

/* Styled placeholder shown only while the photo is missing */
.shot-ph { display: none; }
.shot.is-empty img { display: none; }
.shot.is-empty {
  background:
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, .028) 0px,
      rgba(255, 255, 255, .028) 10px,
      transparent 10px,
      transparent 20px),
    linear-gradient(160deg, #33373e, #262a30);
  border: 1px dashed rgba(247, 244, 239, .2);
}
.shot.is-empty .shot-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
  text-align: center;
  padding: 16px;
}
.shot-ph span {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 700;
  color: rgba(247, 244, 239, .72);
  letter-spacing: .04em;
}
.shot-ph small {
  font-size: .72rem;
  color: rgba(247, 244, 239, .42);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------- 11. Testimonials ---------- */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review blockquote { margin: 0; }
.review blockquote p {
  margin: 0;
  font-size: 1.01rem;
  color: var(--ink);
  line-height: 1.7;
}
.review figcaption {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.review figcaption strong { font-weight: 700; font-size: 1rem; }
.review figcaption span { font-size: .87rem; color: var(--ink-faint); }

/* ---------- 12. Areas ---------- */
.areas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.areas li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: .97rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s var(--ease), transform .18s var(--ease);
}
.areas li:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- 13. Quote form ---------- */
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}
.quote-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 26px;
}
.quote-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 244, 239, .84);
  font-size: .99rem;
}
.quote-points svg { width: 22px; height: 22px; fill: var(--accent-light); flex: none; }

.quote-call {
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}
.quote-call-label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, .55);
  margin-bottom: 12px;
}

.quote-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .93rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.req { color: var(--accent-dark); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px; /* 16px prevents iOS zoom-on-focus */
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2355595f'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 22px;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: #a9adb3; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 96, 31, .16);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
  background: #fdf5f4;
}

.hint { font-size: .82rem; color: var(--ink-faint); margin: 6px 0 0; }
.err {
  display: none;
  font-size: .85rem;
  font-weight: 600;
  color: var(--error);
  margin: 6px 0 0;
}
.err.is-shown { display: block; }

/* Honeypot — hidden from people, still reachable by bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: .82rem;
  color: var(--ink-faint);
  text-align: center;
  margin: 12px 0 0;
}
.form-status {
  margin: 14px 0 0;
  padding: 0;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  line-height: 1.55;
}
.form-status.is-shown { padding: 14px 16px; }
.form-status.is-ok { background: #eaf5ee; color: var(--success); border: 1px solid #c3e2ce; }
.form-status.is-info { background: #fdf1e8; color: var(--accent-dark); border: 1px solid #f2d3ba; }
.form-status.is-bad { background: #fdf0ee; color: var(--error); border: 1px solid #f0cdc7; }
.form-status a { color: inherit; font-weight: 700; }

/* ---------- 14. Footer ---------- */
.site-footer {
  background: #16181b;
  color: rgba(247, 244, 239, .7);
  padding-top: 48px;
  /* Keeps the floating call bar from covering the last line on mobile */
  padding-bottom: 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 34px;
}
.brand-footer { margin-bottom: 14px; }
.footer-blurb { font-size: .93rem; margin: 0; max-width: 42ch; }
.footer-h {
  font-family: var(--font-head);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0 0 14px;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: .94rem; }
.footer-list a { color: rgba(247, 244, 239, .74); text-decoration: none; }
.footer-list a:hover { color: var(--accent-light); text-decoration: underline; }
.footer-phone {
  font-family: var(--font-head);
  font-size: 1.6rem !important;
  font-weight: 700;
  color: var(--accent-light) !important;
  letter-spacing: .01em;
}
.footer-areas { font-size: .93rem; margin: 0; }

.footer-bar {
  border-top: 1px solid var(--line-dark);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .84rem;
  color: rgba(247, 244, 239, .48);
}
.footer-bar p { margin: 0; }

/* ---------- 15. Floating tap-to-call bar (mobile) ---------- */
.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(28, 30, 34, .93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-dark);
}
.call-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.04rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(201, 96, 31, .4);
}
.call-bar-btn:hover { background: var(--accent-dark); color: #fff; }
.call-bar-btn .ico { width: 21px; height: 21px; fill: currentColor; }

/* ---------- 16. Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Never leave content hidden if JS fails to run */
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   17. Breakpoints
   ============================================================ */

/* ---- >= 560px ---- */
@media (min-width: 560px) {
  .hero-cta { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .trust-line { flex-direction: row; justify-content: center; gap: 14px; }
  .cta-band { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-bar { flex-direction: row; justify-content: space-between; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

/* ---- >= 720px ---- */
@media (min-width: 720px) {
  :root { --gutter: 28px; }
  .section { padding: 84px 0; }
  .hero-inner { padding: 92px 24px 96px; }
  .strip-grid { grid-template-columns: repeat(4, 1fr); }
  .strip-item { padding: 26px 16px; }
  .strip-big { font-size: 2.2rem; }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .quote-form { padding: 34px 32px 30px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 4px 34px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
  .site-footer { padding-bottom: 40px; }
}

/* ---- >= 900px : desktop nav on, mobile call bar off ---- */
@media (min-width: 900px) {
  :root { --header-h: 76px; }

  .site-nav {
    display: block;
    margin-left: auto;
    margin-right: 8px;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
  .site-nav a {
    display: block;
    padding: 9px 13px;
    color: rgba(247, 244, 239, .82);
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: color .16s var(--ease), background-color .16s var(--ease);
  }
  .site-nav a:hover { color: var(--off-white); background: rgba(247, 244, 239, .08); }

  .nav-toggle { display: none; }
  .call-bar { display: none; }

  .cards { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-wrap { grid-template-columns: 1fr 1fr; gap: 54px; }
}

/* ---- >= 1080px ---- */
@media (min-width: 1080px) {
  .hero-inner { padding: 116px 24px 118px; }
  .section-head { margin-bottom: 48px; }
  .cards { gap: 22px; }
  .gallery-grid { gap: 18px; }
  .reviews { gap: 22px; }
}

/* ---------- 18. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 19. Print ---------- */
@media print {
  .site-header, .call-bar, .nav-toggle, .hero-cta, .quote-form { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .section-dark, .site-footer { background: #fff !important; color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
