/* =====================================================================
   Western Suburbs Wash 2.0
   A faithful recreation of Pink's Window Services site structure,
   skinned with Western Suburbs Wash branding and colours.
   Palette (WSW): maroon #45211a, green #486750, blush #f2b7cc, cream #faf6ec.
   ===================================================================== */
:root {
  --maroon: #45211a;
  --maroon-deep: #361a15;
  --green: #486750;
  --green-bright: #5f8267;
  --blush: #f2b7cc;
  --blush-deep: #d98aa6;
  --cream: #faf6ec;
  --cream-2: #f3ece0;
  --ink: #2b211d;
  --ink-soft: #5c4f47;
  --white: #ffffff;
  --shadow: 0 20px 50px -20px rgba(69, 33, 26, 0.3);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Barlow Condensed', 'Inter', system-ui, sans-serif; line-height: 1.05; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1200px, 92vw); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 1.15rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.95rem 1.8rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--maroon); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--maroon-deep); }
.btn--outline { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }

/* ================= NAVBAR ================= */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 236, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(69,33,26,0.12);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.8rem; }
.navbar__logo { display: flex; align-items: center; gap: 0.6rem; font-family: 'Barlow Condensed'; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--maroon); }
.navbar__logo img, .navbar__logo svg { width: 2rem; height: 2rem; }
.navbar__links { display: flex; gap: 1.8rem; align-items: center; }
.navbar__links a { font-family: 'Barlow Condensed'; font-size: 1.05rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.navbar__links a:hover { color: var(--maroon); }
.navbar__cta { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Barlow Condensed'; font-weight: 700; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.65rem 1.3rem; background: var(--maroon); color: #fff !important; border-radius: 999px; }
.navbar__toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--maroon); cursor: pointer; }

@media (max-width: 900px) {
  .navbar__links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--cream); padding: 1rem 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(69,33,26,0.12); display: none; }
  .navbar__links.is-open { display: flex; }
  .navbar__toggle { display: block; }
}

/* ================= HERO (video background) ================= */
.hero {
  position: relative; min-height: 92vh; overflow: hidden;
  display: flex; align-items: center;
  background: var(--maroon-deep);
}
.hero__media { position: absolute; inset: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(54,26,21,0.6), rgba(54,26,21,0.25) 50%, rgba(54,26,21,0.7)); }
.hero__inner { position: relative; z-index: 2; padding-block: 6rem; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(242,183,204,0.2); color: #fff; padding: 0.45rem 1rem; border-radius: 999px; font-family: 'Barlow Condensed'; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2); }
.hero__title { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: -0.01em; margin-top: 1.2rem; max-width: 12ch; }
.hero__title span { color: var(--blush); }
.hero__lede { margin-top: 1.6rem; max-width: 52ch; font-size: clamp(1.05rem, 2vw, 1.25rem); color: #f3e9e2; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ================= PERKS row ================= */
.perks { background: var(--cream); }
.perks__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.perk { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.4rem; border: 1px solid rgba(69,33,26,0.1); box-shadow: 0 10px 30px -20px rgba(69,33,26,0.25); }
.perk__icon { width: 2.6rem; height: 2.6rem; border-radius: 10px; background: rgba(72,103,80,0.15); color: var(--green); display: grid; place-items: center; margin-bottom: 1rem; }
.perk__icon svg { width: 1.4rem; height: 1.4rem; }
.perk h3 { font-size: 1.3rem; color: var(--maroon); }
.perk p { margin-top: 0.4rem; color: var(--ink-soft); font-size: 0.98rem; }

/* ================= CALLOUT banner ================= */
.callout {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-bright) 100%);
  color: #fff; text-align: center;
}
.callout h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 20ch; margin-inline: auto; text-transform: uppercase; }
.callout p { margin-top: 1rem; max-width: 52ch; margin-inline: auto; color: #f0f4ee; }
.callout__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ================= GALLERY (marquee) ================= */
.gallery { background: var(--cream-2); }
.gallery__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; }
.gallery__head .eyebrow { font-family: 'Barlow Condensed'; letter-spacing: 0.2em; text-transform: uppercase; color: var(--maroon); font-weight: 600; }
.gallery__head h2 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin-top: 0.4rem; max-width: 18ch; }
.gallery__instagram { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Barlow Condensed'; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--maroon); }
.marquee { overflow: hidden; position: relative; }
.marquee__track { display: flex; gap: 1.2rem; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { width: 340px; height: 340px; object-fit: cover; border-radius: var(--radius); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================= PROMISE trio ================= */
.promise { background: #fff; text-align: center; }
.promise__head .eyebrow { font-family: 'Barlow Condensed'; letter-spacing: 0.2em; text-transform: uppercase; color: var(--maroon); font-weight: 600; }
.promise__head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-top: 0.5rem; text-transform: uppercase; }
.promise__head p { margin-top: 1rem; color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.promise__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.promise__item { padding: 1.8rem 1.4rem; border-radius: var(--radius); background: var(--cream); border: 1px solid rgba(69,33,26,0.1); }
.promise__num { font-family: 'Barlow Condensed'; font-size: 3rem; font-weight: 700; color: var(--blush-deep); }
.promise__item h3 { font-size: 1.35rem; color: var(--maroon); margin-top: 0.4rem; }
.promise__item p { margin-top: 0.4rem; color: var(--ink-soft); }

/* ================= REVIEWS carousel ================= */
.reviews { background: var(--maroon-deep); color: #fff; }
.reviews__head { text-align: center; max-width: 60ch; margin-inline: auto; }
.reviews__head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); text-transform: uppercase; }
.reviews__carousel { margin-top: 3rem; display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; }
.review { flex: 0 0 auto; width: min(420px, 90%); scroll-snap-align: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2rem; }
.review__stars { color: var(--blush); margin-bottom: 1rem; letter-spacing: 0.2em; }
.review blockquote { font-size: 1.05rem; color: #f3e9e2; font-style: italic; }
.review__name { margin-top: 1.2rem; font-family: 'Barlow Condensed'; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blush); }

/* ================= FOOTER ================= */
.footer { background: var(--maroon-deep); color: #f3e9e2; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 3rem; padding-block: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand { max-width: 34ch; }
.footer__brand h3 { font-size: 1.6rem; text-transform: uppercase; color: #fff; }
.footer__brand p { margin-top: 0.8rem; color: #cfbdb2; font-size: 0.98rem; }
.footer__col h4 { font-family: 'Barlow Condensed'; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blush); margin-bottom: 1rem; }
.footer__col ul { display: grid; gap: 0.55rem; }
.footer__col a { color: #cfbdb2; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.6rem; font-size: 0.9rem; color: #a89286; }
.footer__legal a { color: #a89286; margin-left: 1rem; }
.footer__legal a:hover { color: #fff; }

/* ================= MODAL (Find / Estimate) ================= */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(54,26,21,0.6); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal-overlay.is-open { display: flex; }
.modal { background: #fff; border-radius: var(--radius); padding: 2rem; width: min(560px, 100%); max-height: 90vh; overflow-y: auto; }
.modal__close { float: right; background: none; border: 0; font-size: 1.5rem; color: var(--maroon); cursor: pointer; }
.modal h3 { font-size: 1.8rem; text-transform: uppercase; color: var(--maroon); }
.modal p { color: var(--ink-soft); margin: 0.6rem 0 1.4rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: 'Barlow Condensed'; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.35rem; }
.field input, .field select, .field textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(69,33,26,0.2); border-radius: 8px; font-family: inherit; font-size: 1rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--green); }
.modal .btn { width: 100%; margin-top: 0.5rem; }

.logo-droplet { fill: var(--green); }
