/* ============================================================
   QUICK'S JUNK REMOVAL — styles.css
   Bold black / yellow / white. Mobile-first, fully responsive.
   Brand tokens live in :root — change colors in one place.
   ============================================================ */

:root {
  --black:        #0d0d0d;
  --black-soft:   #171614;
  --yellow:       #f7c400;   /* primary brand yellow */
  --yellow-deep:  #e0b100;
  --white:        #ffffff;
  --off-white:    #f4f2ee;   /* light section background */
  --off-white-2:  #eceae4;   /* alternate light background */
  --gray:         #6d6a63;
  --line:         rgba(255, 255, 255, 0.12);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       12px;
  --radius-lg:    18px;
  --shadow:       0 10px 30px rgba(0, 0, 0, 0.18);
  --header-h:     64px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 { line-height: 1.1; margin: 0 0 0.5em; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Accessible skip-to-content pattern for screen readers */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.25); }
.btn:active { transform: translateY(0); }

.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-deep); }

.btn-outline {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-dark { background: var(--black); color: var(--white); }

.btn-big { font-size: 1.05rem; padding: 1rem 1.8rem; }

.btn small,
.nav-cta small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

/* ---------- Type helpers ---------- */
.yellow { color: var(--yellow); }
.yellow-on-light { color: var(--yellow-deep); }

.yellow-link { color: var(--yellow); font-weight: 800; text-decoration: none; }
.yellow-link:hover { text-decoration: underline; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.5rem;
}
.dark-title { color: var(--black); }

.underline-yellow { border-bottom: 4px solid var(--yellow); padding-bottom: 2px; }

.section-sub {
  text-align: center;
  margin: -0.75rem auto 2rem;
  max-width: 46ch;
  color: var(--gray);
}

/* Section background rhythm (dark ↔ light, as in the mockup) */
.section-light     { background: var(--off-white); padding: 4rem 0; }
.section-light-alt { background: var(--off-white-2); padding: 4rem 0; }
.section-dark      { background: var(--black-soft); color: var(--white); padding: 4rem 0; }
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.4rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 10px;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.brand-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--white);
}
.brand-text small {
  display: block;
  color: var(--yellow);
  font-size: 0.6em;
  letter-spacing: 0.28em;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--line);
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-links {
  /* Mobile: dropdown panel */
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem 1.4rem;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-links.open { display: flex; }

.nav-links a:not(.btn) {
  display: block;
  padding: 0.7rem 0.4rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
}
.nav-links a:not(.btn):hover { color: var(--yellow); }

.nav-cta-item { margin-top: 0.6rem; }
.nav-cta { width: 100%; justify-content: center; border-radius: 999px; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: 0;
    padding: 0;
  }
  .nav-links a:not(.btn) { padding: 0.5rem 0.7rem; font-size: 0.82rem; }
  .nav-cta-item { margin: 0 0 0 0.5rem; }
  .nav-cta { width: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}

/* --- Background media layer (video or image), fades in at 0.0s --- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  /* Slow Ken Burns drift so a still image feels alive until a video is added */
  animation: heroDrift 26s ease-in-out infinite alternate;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80rem 40rem at 85% -10%, rgba(247,196,0,0.12), transparent 60%),
    linear-gradient(180deg, rgba(13,13,13,0.55), rgba(13,13,13,0.88));
}

@keyframes heroDrift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.08) translateY(-2%); }
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-bottom: 0.4em;
}

.hero-sub { font-size: 1.1rem; font-weight: 600; margin: 0 0 1.1rem; }

.trust-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-weight: 700;
  font-size: 0.92rem;
}
.trust-points i { color: var(--yellow); margin-right: 0.35rem; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-note { margin-top: 1rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* --- Stats row (counts up at 1.4s) --- */
.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin: 1.6rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--yellow);
  line-height: 1;
  min-width: 3ch;
}
.hero-stats small {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

.hero-photo { position: relative; margin: 0; }
.hero-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-badge {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  font-size: 0.72rem;
  line-height: 1.35;
  box-shadow: var(--shadow);
  max-width: 230px;
}
.hero-badge i {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--yellow);
  border-radius: 9px;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-badge strong { color: var(--black); }
.hero-badge strong + br + * { color: var(--gray); }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
}

/* ============================================================
   PREMIUM INTRO SEQUENCE (page load)
   Timeline:
     0.0s  hero background fades in
     0.2s  logo slides down + fades in
     0.4s  "JUNK" fades up
     0.6s  "GONE." slides in (yellow accent)
     0.8s  "YOUR SPACE BACK." appears
     1.0s  trust badges fade in one by one
     1.2s  CTA buttons slide up with a subtle bounce
     1.4s  stats fade in & count up (JS)
   All of it is skipped for prefers-reduced-motion (see bottom).
   ============================================================ */
@keyframes introFade      { from { opacity: 0; } to { opacity: 1; } }
@keyframes introFadeUp    { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes introSlideDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
@keyframes introSlideIn   { from { opacity: 0; transform: translateX(-30px) skewX(-4deg); } to { opacity: 1; transform: none; } }
@keyframes introBounceUp  {
  0%   { opacity: 0; transform: translateY(30px); }
  70%  { opacity: 1; transform: translateY(-5px); }
  85%  { transform: translateY(2px); }
  100% { opacity: 1; transform: none; }
}

/* 0.0s — background */
.hero-bg { opacity: 0; animation: introFade 0.9s ease-out 0s both; }

/* 0.2s — logo (header brand) */
.intro-logo { animation: introSlideDown 0.55s ease-out 0.2s both; }

/* Headline words */
.hl { display: inline-block; }
.hl-junk { animation: introFadeUp 0.55s ease-out 0.4s both; }
.hl-gone { animation: introSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both; }
.hl-back { animation: introFadeUp 0.55s ease-out 0.8s both; }

/* Supporting copy rides between the headline and the badges */
.intro-sub { animation: introFadeUp 0.5s ease-out 0.9s both; }

/* 1.0s — trust badges, one by one */
.hero-trust li { animation: introFadeUp 0.45s ease-out both; }
.hero-trust li:nth-child(1) { animation-delay: 1.0s; }
.hero-trust li:nth-child(2) { animation-delay: 1.1s; }
.hero-trust li:nth-child(3) { animation-delay: 1.2s; }

/* 1.2s — CTA buttons with a subtle bounce */
.intro-buttons { animation: introBounceUp 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both; }
.intro-note    { animation: introFade 0.5s ease-out 1.35s both; }

/* 1.4s — stats (JS starts the count-up at the same moment) */
.intro-stats { animation: introFadeUp 0.55s ease-out 1.4s both; }

/* Team photo settles in alongside the headline */
.intro-photo { animation: introFadeUp 0.7s ease-out 0.7s both; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { padding: 3rem 0; }

.benefit-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  text-align: center;
}

.benefit i { font-size: 2rem; color: var(--black); margin-bottom: 0.6rem; }
.benefit h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}
.benefit p { margin: 0; color: var(--gray); font-size: 0.92rem; max-width: 30ch; margin-inline: auto; }

@media (min-width: 640px)  { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit + .benefit { border-left: 1px solid #dcd9d2; }
  .benefit { padding-inline: 1rem; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 2.25rem;
  text-align: center;
  counter-reset: step;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 84px; height: 84px;
  margin: 0 auto 1rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-size: 1.9rem;
  box-shadow: 0 0 0 6px rgba(247,196,0,0.15);
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.step-label { display: block; color: var(--white); font-size: 0.85em; margin-bottom: 0.15em; }
.step p { margin: 0 auto; max-width: 28ch; color: rgba(255,255,255,0.78); font-size: 0.95rem; }

@media (min-width: 820px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
  }
  /* Arrow connectors between steps, like the mockup */
  .step { position: relative; }
  .step + .step::before {
    content: "\f30b"; /* fa long-arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--yellow);
    font-size: 1.6rem;
    position: absolute;
    left: -0.8rem;
    top: 32px;
    transform: translateX(-50%);
  }
}

.how-cta { text-align: center; margin-top: 2.75rem; }
.how-cta p { margin-top: 0.8rem; font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* ============================================================
   SEE US IN ACTION
   ============================================================ */
.action-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.action-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--black);
}

.action-card img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.action-card:hover img { transform: scale(1.04); }

.action-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
}
.action-card figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.action-card figcaption span { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

@media (min-width: 640px)  { .action-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .action-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   SHORTS (horizontally scrollable video cards)
   ============================================================ */
.shorts-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 62%;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.shorts-scroller::-webkit-scrollbar { height: 8px; }
.shorts-scroller::-webkit-scrollbar-thumb { background: #cfccc4; border-radius: 4px; }

.short-card { scroll-snap-align: start; }

.short-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
  box-shadow: var(--shadow);
}

.short-btn img {
  width: 100%;
  aspect-ratio: 9 / 14;      /* vertical "short" format */
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.short-btn:hover img { transform: scale(1.05); opacity: 1; }

.short-btn .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1rem;
}
.short-btn .play i {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  background: rgba(0,0,0,0.55);
  border: 2px solid var(--white);
  border-radius: 50%;
  padding-left: 3px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.short-btn:hover .play i { background: var(--yellow); color: var(--black); border-color: var(--yellow); transform: scale(1.08); }

.short-btn .duration {
  position: absolute;
  right: 0.5rem; bottom: 0.5rem;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 5px;
}

.short-card h3 {
  margin: 0.6rem 0 0;
  background: var(--yellow);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.shorts-social {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.shorts-social a {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  margin-left: 0.35rem;
  background: var(--black);
  color: var(--white);
  border-radius: 9px;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.shorts-social a:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }

@media (min-width: 640px)  { .shorts-scroller { grid-auto-columns: 34%; } }
@media (min-width: 1000px) { .shorts-scroller { grid-auto-columns: minmax(0, 1fr); grid-auto-flow: row; grid-template-columns: repeat(5, 1fr); overflow: visible; } }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area {
  background: var(--black-soft);
  color: var(--white);
  padding: 4rem 0;
}

.area-grid { display: grid; gap: 2rem; }

.area-panel .section-title { text-align: left; }

.zip-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 0.4rem;
}
.zip-form input {
  flex: 1 1 180px;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font: inherit;
  font-weight: 600;
}
.zip-form input:focus-visible { outline: 3px solid var(--yellow); }

.zip-result { min-height: 1.4em; font-weight: 700; margin: 0.4rem 0 0; }
.zip-result.ok  { color: #7ddf8c; }
.zip-result.no  { color: #ffb0a3; }

.area-points { margin-top: 1.4rem; flex-direction: column; gap: 0.45rem; }

.area-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: #dfe7dd;
}

.area-map { position: absolute; inset: 0; z-index: 1; }

.area-list {
  position: relative;
  z-index: 2;
  margin: 1rem;
  margin-left: auto;
  width: min(250px, calc(100% - 2rem));
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}
.area-list h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.area-list ul { list-style: none; margin: 0 0 0.75rem; padding: 0; }
.area-list li { padding: 0.15rem 0; }
.area-list li::before {
  content: "\f058"; /* fa circle-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--yellow-deep);
  margin-right: 0.45rem;
}
.area-list p { margin: 0; font-weight: 600; }
.area-list .yellow-link { color: var(--black); }

@media (min-width: 980px) {
  .area-grid { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
  .area-map-wrap { min-height: 480px; display: flex; align-items: flex-start; justify-content: flex-end; }
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-wrap { max-width: 860px; }

.booking-form {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.field label {
  display: block;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.field label span[aria-hidden] { color: var(--yellow-deep); }
.hint { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--gray); font-size: 0.8rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 2px solid #ddd9d0;
  border-radius: var(--radius);
  font: inherit;
  background: var(--off-white);
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--yellow); outline: none; }

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #d3472e; }

.field textarea { resize: vertical; }

.field input[type="file"] { padding: 0.6rem; background: var(--white); }

.error {
  margin: 0.3rem 0 0;
  color: #b23a24;
  font-size: 0.8rem;
  font-weight: 600;
  min-height: 1em;
}

.form-status {
  margin: 0.8rem 0 0;
  font-weight: 700;
  border-radius: var(--radius);
}
.form-status.ok {
  background: #e8f6e9;
  color: #23662c;
  padding: 0.9rem 1rem;
  border: 2px solid #bfe3c4;
}
.form-status.err {
  background: #fbebe7;
  color: #8f2d1a;
  padding: 0.9rem 1rem;
  border: 2px solid #efc3b8;
}

@media (min-width: 720px) {
  .booking-form { grid-template-columns: 1fr 1fr; padding: 2rem; }
  .field-wide { grid-column: 1 / -1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; gap: 2rem; align-items: center; }

.about-photo { margin: 0; }
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-copy .section-title { text-align: left; }
.about-copy p { color: rgba(255,255,255,0.82); }
.about-copy .btn { margin-top: 0.6rem; }

@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* ============================================================
   GALLERY & LIGHTBOX
   ============================================================ */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
  padding: 0;
  border: 0;
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;      /* responsive cropping */
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 84vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 48px; height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.review-grid { display: grid; gap: 1.25rem; }

.review {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 0.95rem;
}
.review .stars { color: var(--yellow-deep); letter-spacing: 0.2em; margin: 0 0 0.7rem; }
.review p { margin: 0 0 0.8rem; }
.review footer { font-weight: 800; }

@media (min-width: 820px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   CTA BANNER & FOOTER
   ============================================================ */
.cta-banner { background: var(--yellow); padding: 1.4rem 0; }

.cta-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}
.cta-banner p { margin: 0; font-size: 1.05rem; }
.cta-banner .fa-phone:first-child { margin-right: 0.4rem; }

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 2.5rem;
  font-size: 0.9rem;
}

.footer-grid { display: grid; gap: 2rem; }

.footer-logo { margin-bottom: 0.8rem; }
.footer-brand p { margin: 0.3rem 0; max-width: 30ch; }
.copyright { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.footer-col h3 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { padding: 0.22rem 0; }
.footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-col a:hover { color: var(--yellow); }
.footer-contact i { color: var(--yellow); width: 1.3em; }

.footer-social { margin-top: 1rem; }
.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  margin-right: 0.4rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }

@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.3fr; } }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   (elements get .reveal in HTML; JS adds .visible on scroll)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .short-btn img, .action-card img, .gallery-item img { transition: none; }

  /* Skip the entire intro sequence — everything appears immediately */
  .hero-bg,
  .intro-logo,
  .hl-junk, .hl-gone, .hl-back,
  .intro-sub, .hero-trust li,
  .intro-buttons, .intro-note, .intro-stats, .intro-photo {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-bg-media { animation: none; }
}
