/* ============================================================
   Sidekick Junk Removal — sitewide styles
   Palette taken straight from the logo: black, signal yellow,
   white. Structure mirrors sidekickcanberra.com.au.
   ============================================================ */

:root {
  --ink: #16161a;
  --black: #0d0d0f;
  --charcoal: #131316;
  --charcoal-2: #202024;
  --yellow: #f5c518;
  --yellow-dark: #d9a800;
  --yellow-soft: #ffd94f;
  --amber-text: #7a5c00;
  --cream: #faf9f6;
  --cream-2: #f0eee7;
  --paper: #ffffff;
  --grey: #6a6a66;
  --line: #e2e0d7;
  --line-dark: rgba(255, 255, 255, 0.12);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --step-hero: clamp(2.6rem, 6.5vw, 4.6rem);
  --step-1: clamp(2rem, 4.5vw, 3.1rem);
  --step-2: clamp(1.45rem, 2.6vw, 1.9rem);
  --step-3: 1.15rem;

  --space: clamp(4.5rem, 9vw, 8rem);
  --radius: 12px;
  --radius-lg: 22px;
  --shadow: 0 18px 45px -18px rgba(15, 15, 15, 0.32);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  overflow-x: hidden;
}

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

a { color: var(--amber-text); text-decoration: none; }
a:hover { color: var(--ink); }

::selection { background: var(--yellow); color: var(--ink); }

/* ---------- page fade transitions ---------- */

body {
  opacity: 0;
  transition: opacity 0.45s ease;
}
body.is-loaded { opacity: 1; }
body.is-leaving { opacity: 0; transition: opacity 0.3s ease; }

/* ---------- shared layout ---------- */

.wrap {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section { padding-block: var(--space); }
.section--tight { padding-block: calc(var(--space) * 0.6); }
.section--dark {
  background: var(--charcoal);
  color: #eceae4;
}
.section--paper { background: var(--paper); }

/* a thin yellow rule across the top of a band */
.section--edge { border-top: 5px solid var(--yellow); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid var(--yellow);
}
.section--dark .eyebrow { color: var(--yellow); border-bottom-color: rgba(245, 197, 24, 0.45); }
.hero .eyebrow {
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 800;
}

.heading-xl { font-size: var(--step-hero); }
.heading-lg { font-size: var(--step-1); margin-bottom: 1.4rem; }
.heading-md { font-size: var(--step-2); margin-bottom: 0.8rem; }

/* On light backgrounds the accent is a yellow highlighter stroke — pure
   yellow type on white is unreadable. On dark, the yellow speaks for itself. */
.accent {
  color: var(--ink);
  background-image: linear-gradient(transparent 58%, var(--yellow) 58%, var(--yellow) 94%, transparent 94%);
  padding-inline: 0.06em;
}
.section--dark .accent,
.hero .accent,
.cta-band .accent,
.page-hero .accent {
  color: var(--yellow);
  background-image: none;
  padding-inline: 0;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  max-width: 44rem;
  color: var(--grey);
}
.section--dark .lede { color: #b6b5ae; }

.rule--yellow {
  border: 0;
  border-top: 4px solid var(--yellow);
  width: 64px;
  margin: 1.8rem 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  background: var(--yellow);
  color: var(--ink);
}
.btn--solid:hover {
  background: var(--yellow-soft);
  color: var(--ink);
  box-shadow: 0 12px 25px -10px rgba(245, 197, 24, 0.75);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn--ink {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ink:hover { background: var(--ink); color: var(--yellow); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* ---------- header / nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  background: linear-gradient(rgba(10, 10, 11, 0.8), rgba(10, 10, 11, 0));
}
.site-header.is-solid {
  background: rgba(13, 13, 15, 0.97);
  box-shadow: 0 6px 25px -12px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  transition: padding 0.35s ease;
}
.site-header.is-solid .nav { padding-block: 0.6rem; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
}
.brand img {
  height: 50px;
  width: auto;
  transition: height 0.35s ease;
}
.site-header.is-solid .brand img { height: 40px; }
.brand-name {
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 1.06rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.12;
}
.brand-name span {
  display: block;
  font-family: var(--font);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--yellow);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  padding-block: 0.3rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--yellow);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: #fff; }

.nav-links .nav-cta {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  transition: background 0.25s ease, transform 0.25s var(--ease);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--yellow-soft); color: var(--ink); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(13, 13, 15, 0.99);
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
  }
  .nav-links a { font-size: 1.25rem; }
  body.nav-open .nav-links { transform: translateY(0); }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}
.hero--short { min-height: 62vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 46%;
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.08);
  animation: hero-drift 14s var(--ease) forwards;
}
@keyframes hero-drift {
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(10, 10, 11, 0.86) 0%, rgba(10, 10, 11, 0.55) 46%, rgba(10, 10, 11, 0.12) 78%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.55) 0%, rgba(10, 10, 11, 0.15) 38%, rgba(10, 10, 11, 0.88) 100%);
}

.hero-inner {
  padding-block: clamp(6rem, 12vh, 9rem) clamp(3.5rem, 8vh, 6rem);
  max-width: 46rem;
  text-shadow: 0 2px 24px rgba(5, 5, 5, 0.55);
}
.hero .lede { color: rgba(255, 255, 255, 0.88); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
}
.hero-meta b { display: block; font-size: 1.02rem; }
.hero-meta .label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 800;
}

/* keep the last hero-meta item clear of the floating quote button */
@media (max-width: 560px) {
  .hero-meta { gap: 1.3rem 2rem; margin-top: 2.2rem; }
  .hero-inner { padding-bottom: 6rem; }
  .scroll-hint { display: none; }
}

.scroll-hint {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 2.2rem;
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.scroll-hint::after {
  content: "";
  position: absolute;
  left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--yellow);
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint {
  0% { top: -40%; }
  60%, 100% { top: 110%; }
}

/* ---------- grids & cards ---------- */

.grid {
  display: grid;
  gap: 1.4rem;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border-left: 4px solid var(--yellow);
  padding: 1.7rem 1.7rem 1.6rem;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.card h3 { font-size: 1.12rem; margin-bottom: 0.55rem; }
.card p { color: var(--grey); font-size: 0.95rem; }
.card .card-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.9rem;
}

.section--dark .card {
  background: var(--charcoal-2);
  border-left-color: var(--yellow);
}
.section--dark .card h3 { color: #fff; }
.section--dark .card p { color: #b6b5ae; }

/* ---------- photo feature rows ---------- */

.job-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.job-row + .job-row { margin-top: calc(var(--space) * 0.9); }
@media (min-width: 901px) {
  .job-row:nth-of-type(even) .job-media { order: 2; }
}
@media (max-width: 900px) {
  .job-row { grid-template-columns: 1fr; }
}

/* portrait job photos sit in a framed, rounded panel */
.shot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal-2);
  aspect-ratio: 4 / 4.6;
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.6rem 1.3rem 1.1rem;
  background: linear-gradient(transparent, rgba(10, 10, 11, 0.88));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}
.shot-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

/* ---------- what we take / don't take ---------- */

.take-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 860px) { .take-grid { grid-template-columns: 1fr; } }

.take-panel {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--yellow);
}
.take-panel--muted { border-top-color: var(--line); box-shadow: none; background: var(--cream-2); }
.take-panel h3 { font-size: 1.25rem; margin-bottom: 1.2rem; }

/* on a dark band the panel has to darken too, or it inherits the section's
   light text colour onto a white card */
.section--dark .take-panel {
  background: var(--charcoal-2);
  color: #eceae4;
  box-shadow: none;
}
.section--dark .take-panel h3 { color: #fff; }
.section--dark .take-panel--muted { background: var(--charcoal); border-top-color: var(--line-dark); }

.tick-list { list-style: none; }
.tick-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 0.96rem;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--yellow);
}
.tick-list--plain li::before { background: var(--line); }

/* ---------- load size guide ---------- */

.load-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .load-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .load-grid { grid-template-columns: 1fr; } }

.load {
  background: var(--charcoal-2);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  border-top: 4px solid var(--yellow);
  transition: transform 0.35s var(--ease);
}
.load:hover { transform: translateY(-5px); }
.load .bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.load .bar i { display: block; height: 100%; background: var(--yellow); }
.load b { display: block; color: #fff; font-size: 1.1rem; margin-bottom: 0.4rem; }
.load span { color: #b6b5ae; font-size: 0.9rem; }

/* ---------- stats strip ---------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
@media (max-width: 620px) { .stat-strip { grid-template-columns: 1fr; } }
.stat b {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat b em { color: var(--yellow); font-style: normal; }
.stat span { color: #b6b5ae; font-size: 0.92rem; }

/* ---------- service area pills ---------- */

.suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.suburb {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}
.suburb:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }
.suburb--muted { border-color: var(--line); color: var(--grey); }
.suburb--muted:hover { background: transparent; border-color: var(--line); }
.section--dark .suburb { border-color: var(--yellow); color: var(--yellow); }
.section--dark .suburb:hover { background: var(--yellow); color: var(--ink); }
.section--dark .suburb--muted { border-color: var(--line-dark); color: #8d8c85; }
.section--dark .suburb--muted:hover { background: transparent; }

/* ---------- trust badges ---------- */

.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
@media (max-width: 780px) { .badges { grid-template-columns: 1fr; } }
.badge {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  border-left: 4px solid var(--yellow);
}
.section--dark .badge { background: var(--charcoal-2); }
.badge .mark {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
}
.badge b { display: block; font-size: 1rem; margin-bottom: 0.2rem; }
.badge p { font-size: 0.9rem; color: var(--grey); }
.section--dark .badge b { color: #fff; }
.section--dark .badge p { color: #b6b5ae; }

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

.cta-band {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--yellow);
}
@media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 { font-size: var(--step-1); }
.cta-band p { color: #b6b5ae; margin-top: 1rem; }

/* ---------- process steps ---------- */

.steps { counter-reset: step; }
.step {
  position: relative;
  padding: 1.8rem 1.6rem 1.6rem 1.8rem;
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 4px solid var(--yellow);
  counter-increment: step;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step::before {
  content: "0" counter(step);
  font-size: 2.4rem;
  font-weight: 800;
  -webkit-text-stroke: 1.5px var(--yellow-dark);
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.step h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.94rem; color: var(--grey); }

/* ---------- forms ---------- */

.quote-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) { .quote-layout { grid-template-columns: 1fr; } }

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--yellow);
}

.field { margin-bottom: 1.35rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.field label .opt { color: var(--grey); font-weight: 600; letter-spacing: 0.1em; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.35);
}
.field textarea { min-height: 130px; resize: vertical; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
@media (max-width: 560px) { .check-grid { grid-template-columns: 1fr; } }
/* these are labels inside .field, so the selector has to outweigh
   `.field label` to undo its uppercase treatment */
.field .check, .check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.check:hover { border-color: var(--yellow-dark); }
.check input {
  accent-color: var(--yellow-dark);
  width: 1.05rem; height: 1.05rem;
  flex: none;
}
.check:has(input:checked) {
  border-color: var(--yellow-dark);
  background: rgba(245, 197, 24, 0.14);
}

.form-note {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 1rem;
}
.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(245, 197, 24, 0.18);
  border: 1.5px solid var(--yellow-dark);
  font-weight: 600;
  font-size: 0.92rem;
}
.form-status.is-visible { display: block; }

/* ---------- contact cards ---------- */

.contact-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 5px solid var(--yellow);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); }
.contact-card .label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 0.4rem;
}
.contact-card b { font-size: 1.3rem; display: block; margin-bottom: 0.2rem; }
.contact-card a.big {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}
.contact-card a.big:hover { color: var(--amber-text); }
.contact-card p { color: var(--grey); font-size: 0.92rem; margin-top: 0.6rem; }

/* ---------- photo strip ---------- */

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
@media (max-width: 720px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }
.photo-strip img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), filter 0.4s ease;
}
.photo-strip img:hover { transform: scale(1.03); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--black);
  color: #b6b5ae;
  padding-block: calc(var(--space) * 0.7) 2rem;
  border-top: 5px solid var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.55rem; font-size: 0.92rem; }
.site-footer a { color: #b6b5ae; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--yellow); }
.footer-brand img { height: 124px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.92rem; max-width: 26rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #8d8c85;
}

/* ---------- inner page hero ---------- */

.page-hero {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(8rem, 18vh, 11rem) 0 clamp(3rem, 7vh, 4.5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--yellow);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -140px; top: -120px;
  width: 460px; height: 460px;
  background: url("../assets/img/logo-mark.png") center / contain no-repeat;
  opacity: 0.07;
  transform: rotate(-8deg);
  pointer-events: none;
}
.page-hero .lede { color: #b6b5ae; }

/* ---------- reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.photo-strip.reveal img {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.4s ease;
}
.photo-strip.reveal.is-in img { opacity: 1; transform: none; }
.photo-strip.reveal.is-in img:nth-child(1) { transition-delay: 0.05s; }
.photo-strip.reveal.is-in img:nth-child(2) { transition-delay: 0.15s; }
.photo-strip.reveal.is-in img:nth-child(3) { transition-delay: 0.25s; }

/* ---------- quick quote widget ---------- */

.quick-quote {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.qq-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--yellow);
  color: var(--ink);
  border: 0;
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 14px 30px -10px rgba(15, 15, 15, 0.6);
  transition: transform 0.25s var(--ease), background 0.25s ease,
    box-shadow 0.25s var(--ease);
}
.qq-toggle:hover {
  background: var(--yellow-soft);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -10px rgba(15, 15, 15, 0.65);
}
.qq-toggle .qq-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ink);
  animation: qq-pulse 2s ease-in-out infinite;
}
@keyframes qq-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.qq-panel {
  width: min(340px, calc(100vw - 2rem));
  background: var(--paper);
  border-radius: var(--radius-lg);
  border-top: 5px solid var(--yellow);
  box-shadow: 0 24px 60px -18px rgba(15, 15, 15, 0.55);
  padding: 1.4rem 1.4rem 1.2rem;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.quick-quote.qq-open .qq-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.qq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}
.qq-head b { font-size: 1.08rem; }
.qq-close {
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--grey);
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}
.qq-close:hover { color: var(--ink); }

.qq-panel p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 0.9rem;
}
.qq-panel form { display: grid; gap: 0.6rem; }
.qq-panel input,
.qq-panel textarea {
  width: 100%;
  font: inherit;
  font-size: 0.92rem;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.qq-panel input:focus,
.qq-panel textarea:focus {
  outline: none;
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.35);
}
.qq-panel textarea { resize: none; }
.qq-panel .btn { width: 100%; padding: 0.8rem 1rem; }
.qq-alt {
  text-align: center;
  margin: 0.8rem 0 0 !important;
}
.qq-alt a { font-weight: 800; }
.qq-status {
  display: none;
  margin-top: 0.7rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius);
  background: rgba(245, 197, 24, 0.18);
  border: 1.5px solid var(--yellow-dark);
  font-size: 0.82rem;
  font-weight: 600;
}
.qq-status.is-visible { display: block; }

@media (max-width: 560px) {
  .qq-toggle { padding: 0.85rem 1.25rem; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; transform: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
