/* ==========================================================================
   Waste Away — Skip Hire Made Simple
   Design tokens: gold #FFC400, near-black #121212, taken directly from
   the client's existing card branding. Hazard-stripe motif is the one
   signature device, reused sparingly as a section divider.
   ========================================================================== */

:root {
  --gold: #FFC400;
  --gold-dark: #D9A700;
  --black: #121212;
  --charcoal: #1B1B1B;
  --paper: #F6F4EE;
  --white: #FFFFFF;
  --ink: #17130A;
  --muted: #5B5750;
  --line: rgba(18,18,18,0.12);

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1160px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0 0 1em; color: var(--ink); }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 10px;
}
.section-dark .eyebrow { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  padding: 15px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-wa svg { width: 18px; height: 18px; flex: none; }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 3px solid var(--gold);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { border-bottom-color: var(--gold); color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hazard stripe divider (signature element) ---------- */
.stripe {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--black),
    var(--black) 18px,
    var(--gold) 18px,
    var(--gold) 36px
  );
}
.stripe-thin { height: 8px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 76px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60%;
  height: 160%;
  background: var(--charcoal);
  transform: skewX(-12deg);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 680px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero-meta strong { color: var(--gold); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-paper { background: var(--paper); }

.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-dark .section-head p { color: rgba(255,255,255,0.78); }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { position: relative; padding-top: 6px; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Skip size cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-art {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 18px 20px 0;
}
.card-art img { width: 100%; height: auto; display: block; }
.card-body { padding: 24px 26px 0; display: flex; flex-direction: column; flex: 1; }
.card-tag {
  align-self: flex-start;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--muted); flex: 1; }
.card-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- Bulk banner ---------- */
.bulk-banner {
  background: var(--gold);
  color: var(--black);
  padding: 48px 0;
}
.bulk-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.bulk-grid h2 { font-size: clamp(1.5rem, 3vw, 2rem); max-width: 520px; margin-bottom: 6px; }
.bulk-grid p { color: rgba(18,18,18,0.75); margin: 0; max-width: 480px; }
.bulk-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Areas served ---------- */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin-bottom: 30px;
}
.zone h3 {
  font-size: 0.95rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--black);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 0.88rem;
  padding: 7px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}
.zone-note {
  font-size: 0.95rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* ---------- Why us ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.trust-item p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.trust-num {
  font-family: var(--font-display);
  color: var(--gold-dark);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--gold); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.75); padding: 52px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand img { height: 26px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 280px; }
.footer-heading {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 10px; font-size: 0.94rem; }
.footer-list a { text-decoration: none; color: rgba(255,255,255,0.8); }
.footer-list a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Sticky WhatsApp (mobile) ---------- */
/* ---------- Floating action buttons (always visible) ---------- */
.float-actions {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.float-btn:hover { transform: scale(1.07); box-shadow: 0 10px 26px rgba(0,0,0,0.34); }
.float-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.float-btn svg { width: 27px; height: 27px; flex: none; }
.float-wa { background: #25D366; color: #FFFFFF; }
.float-call { background: var(--gold); color: var(--black); border: 2px solid var(--black); }

.float-label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.float-btn:hover .float-label,
.float-btn:focus-visible .float-label { opacity: 1; }
@media (max-width: 900px) {
  .float-label { display: none; }
}

@media (max-width: 900px) {
  .float-actions { bottom: 16px; right: 16px; gap: 12px; }
  .float-btn { width: 52px; height: 52px; }
  .float-btn svg { width: 24px; height: 24px; }
}

/* ---------- Contact page ---------- */
.contact-hero { background: var(--black); color: var(--white); padding: 56px 0 44px; }
.contact-hero h1 { color: var(--gold); font-size: clamp(2rem, 5vw, 2.9rem); margin-bottom: 12px; }
.contact-hero p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0; }


.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-line {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  color: var(--white);
}
.contact-line:first-of-type { padding-top: 0; }
.contact-line svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.contact-line .label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}
.contact-line .value { font-size: 1rem; }
.contact-card .btn { margin-top: 22px; }

.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.form-wrap h2 { font-size: 1.4rem; margin-bottom: 8px; }
.form-wrap > p { color: var(--muted); margin-bottom: 26px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }
.form-note a { color: var(--gold-dark); }

.map-embed {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: flex; }

  .steps, .cards, .trust-grid { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 44px; }
  .hero::before { display: none; }
  .bulk-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .site-nav-drawer {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--black);
    z-index: 49;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }
  .site-nav-drawer.open { transform: translateX(0); }
  .site-nav-drawer a {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 1.05rem;
  }
  .site-nav-drawer a:hover { color: var(--gold); }
  .site-nav-drawer .header-phone { margin-top: 18px; font-size: 1.05rem; }
}
