/* ============================================
   UrbanWash — Design Tokens
   Palette pulled directly from the brand logo:
   lake-dusk navy, glacier teal, meltwater pale,
   pine green (B2B accent), mist & paper neutrals.
   ============================================ */

:root {
  --navy: #0B3D5C;
  --teal: #1789A8;
  --teal-deep: #126E89;
  --pale: #5FBFCB;
  --mist: #E8F4F1;
  --pine: #3C7A5C;
  --pine-deep: #2F6249;
  --paper: #FAFAF8;
  --ink: #14242C;
  --ink-soft: #4B6470;
  --line: rgba(11, 61, 92, 0.14);
  --shadow: 0 12px 32px -12px rgba(11, 61, 92, 0.25);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

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

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

a { color: inherit; }

button { font-family: inherit; }

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

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 500;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0; }

/* ============================================
   Header
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.brand img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.brand-name span { color: var(--teal); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.header-cta:hover { background: var(--teal-deep); transform: translateY(-1px); }

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 64px 0 0;
  background: linear-gradient(180deg, #F2F8F7 0%, var(--paper) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  margin: 14px 0 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal-deep);
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--mist); }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(11,61,92,0.18));
}

/* Ridge line divider — signature element, recurs three times
   at decreasing amplitude: mountain -> foothill -> still lake */
.ridge {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -2px;
}

/* ============================================
   How it works
   ============================================ */

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 560px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin-top: 10px;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.step-mark {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal-deep);
  background: var(--mist);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.step p {
  color: var(--ink-soft);
  font-size: 14.5px;
}

.bg-mist { background: var(--mist); }

/* ============================================
   Pricing
   ============================================ */

.tabs {
  display: inline-flex;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 28px;
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.tab-btn[aria-selected="true"] {
  background: var(--navy);
  color: white;
}

.tab-btn.b2b[aria-selected="true"] {
  background: var(--pine);
}

.price-table-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

table.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.price-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--mist);
  padding: 12px 18px;
  font-weight: 500;
}

.price-table td {
  padding: 13px 18px;
  border-top: 1px solid var(--line);
}

.price-table td.price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  text-align: right;
}

.price-table tr:hover td { background: #FBFCFC; }

.price-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 14px;
}

[hidden] { display: none !important; }

/* ============================================
   Booking form
   ============================================ */

.booking-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.15s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  outline: none;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.client-type-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.client-type-toggle input { position: absolute; opacity: 0; pointer-events: none; }

.client-type-toggle label {
  flex: 1;
  text-align: center;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all 0.15s ease;
  margin: 0;
}

.client-type-toggle input:checked + label {
  border-color: var(--teal);
  background: var(--mist);
  color: var(--teal-deep);
}

.map-block {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
}

#map {
  height: 260px;
  width: 100%;
  background: var(--mist);
}

.map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: var(--mist);
  font-size: 13px;
  color: var(--ink-soft);
}

.locate-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
  cursor: pointer;
}
.locate-btn:hover { border-color: var(--teal); }

.coords-readout {
  font-family: var(--font-mono);
  font-size: 12px;
}

.submit-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.submit-row .btn { flex: 1; justify-content: center; }

.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1FAE54; }

.btn-email { background: var(--navy); color: white; }
.btn-email:hover { background: #082C42; }

.form-hint {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 16px;
  text-align: center;
}

.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--mist);
  color: var(--teal-deep);
  font-size: 13.5px;
  font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand img { height: 36px; width: 36px; border-radius: 50%; }

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 600;
  color: white;
  font-size: 17px;
}

.site-footer p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.65); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--pale); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 220px; margin: 0 auto; }
  .hero-visual img { max-width: 220px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-panel { padding: 28px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 10px 12px; }
  .submit-row { flex-direction: column; }
}
