/* ================================================================
   Kraken Car Wash — marketing site
   Brand palette: bright green #73a500 · white · ink #1f1f1f · soft #f6f7f4
   Mobile-first. Breakpoints: 640 / 1024.
   ================================================================ */

:root {
  --green: #73a500;
  --green-dark: #5e8800;
  --green-bg: #ecf4d4;
  --ink: #1f1f1f;
  --ink-2: #4a4a4a;
  --ink-3: #6c6c6c;
  --soft: #f6f7f4;
  --soft-2: #ececec;
  --border: #d8d8d8;
  --border-soft: #e5e5e5;
  --white: #ffffff;
  --warn: #b54a2c;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --font: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1120px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05), 0 1px 1px rgba(0,0,0,.04);
  --shadow-md: 0 4px 18px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3.2rem, 8.5vw, 5.6rem); }
h2 { font-size: clamp(2.8rem, 6.5vw, 4.4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h4 { font-size: 1.1rem; margin-bottom: 0.4em; }
p  { margin: 0 0 1em; color: var(--ink-2); }

ul, ol { padding-left: 1.2em; margin: 0 0 1em; color: var(--ink-2); }
li { margin: 0.35em 0; }

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

.eyebrow {
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0 0 0.5em;
  line-height: 1.1;
}
.eyebrow--light { color: rgba(255,255,255,.85); }

.accent { color: var(--green-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--white);
  padding: 12px 16px; z-index: 1000; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.05s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  font-family: var(--font);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-dark); color: var(--white); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }

.btn--inverse { background: var(--white); color: var(--green-dark); }
.btn--inverse:hover { background: var(--green-bg); color: var(--green-dark); }

.btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.btn--sm { padding: 9px 16px; font-size: 0.92rem; min-height: 38px; }

/* ---------- Header / nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { display: block; }

.nav__links {
  display: flex; align-items: center; gap: 22px;
}
.nav__links a {
  color: var(--ink); font-weight: 600; font-size: 0.95rem;
}
.nav__links a:hover { color: var(--green-dark); text-decoration: none; }
.nav__links a.btn--primary { color: var(--white); }
.nav__links a.btn--primary:hover { color: var(--white); }
.nav__links a.btn--ghost { color: var(--ink); }
.nav__links a.btn--ghost:hover { color: var(--white); }

.nav__toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__toggle span {
  display: block; width: 24px; height: 3px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
    padding: 6px 0;
  }
  .nav__links a {
    display: block; padding: 14px 24px; width: 100%;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links a.btn {
    margin: 12px 24px; width: calc(100% - 48px);
  }
  .nav.is-open .nav__links { display: flex; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */

.hero {
  background: var(--white);
  padding: 48px 0 56px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "brand" "copy";
  gap: 24px;
  align-items: start;
}
.hero__copy { grid-area: copy; }
.hero__brand {
  grid-area: brand;
  display: flex; justify-content: center; align-items: center;
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    grid-template-areas: "copy brand";
    gap: 48px;
  }
}
.hero__brand img {
  width: clamp(220px, 38vw, 420px);
  height: auto;
}
.hero h1 { margin-bottom: 0.4em; }
.hero__sub {
  display: inline-block;
  font-size: 0.55em;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  margin-top: 0.25em;
}
.hero__scan {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.12em;
}
.hero__scan:hover { color: var(--green-dark); }
.hero .lede {
  font-size: 1.25rem; color: var(--ink-2); max-width: 640px;
  margin: 0 0 1.6em;
}
.hero__ctas { justify-content: flex-start; }
.hero__meta { justify-content: flex-start; }
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.5em;
}
.hero__meta {
  font-size: 0.95rem; color: var(--ink-3);
  display: flex; align-items: center; gap: 8px;
}
.dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
}
.dot--open { box-shadow: 0 0 0 4px rgba(115,165,0,.18); }

@media (min-width: 1024px) {
  .hero { padding: 72px 0 80px; }
}

/* ---------- Status row ---------- */

.status {
  background: var(--green);
  color: var(--white);
  padding: 14px 0;
  text-align: center;
  font-size: 0.97rem;
}
.status p { color: var(--white); margin: 0; }
.status strong { color: var(--white); }

/* ---------- Locations ---------- */

.locations { padding: 72px 0; }
.locations h2 { margin-bottom: 0.8em; }
.locations__grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .locations__grid { grid-template-columns: 1fr 1fr; }
}
.loc {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.loc:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.loc__photo {
  aspect-ratio: 21 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background: var(--soft);
}
.loc__photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.loc:hover .loc__photo img { transform: scale(1.04); }
.loc__body { padding: 22px 24px 26px; }
.loc__addr { font-size: 1.05rem; line-height: 1.45; }
.loc__addr a { color: var(--ink); }
.loc__addr a:hover { color: var(--green-dark); }
.loc__features {
  list-style: none; padding: 0; margin: 14px 0 18px;
}
.loc__features li {
  padding: 6px 0; border-bottom: 1px dashed var(--border-soft);
  color: var(--ink-2); font-size: 0.97rem;
}
.loc__features li:last-child { border-bottom: 0; }
.loc__features li em { color: var(--ink-3); font-style: normal; }
.loc__cta { display: flex; gap: 10px; flex-wrap: wrap; }
.loc__cta .btn { flex: 1; min-width: 130px; }

/* ---------- Pricing ---------- */

.pricing { padding: 72px 0; background: var(--soft); }
.pricing .lead { color: var(--ink-2); font-size: 1.1rem; margin-bottom: 2em; max-width: 640px; }
.pricing__grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}
.tier {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 26px 26px;
  position: relative;
  display: flex; flex-direction: column;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.tier:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tier h3 { margin-top: 0; font-size: 1.4rem; }
.tier__price {
  font-size: 2.6rem; font-weight: 800; color: var(--green-dark);
  margin: 4px 0 12px; line-height: 1;
}
.tier ul { list-style: none; padding: 0; margin: 0; }
.tier li {
  padding: 8px 0; border-bottom: 1px dashed var(--border-soft);
  color: var(--ink-2);
}
.tier li:last-child { border-bottom: 0; }
.tier--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-bg);
}
.tier__badge {
  position: absolute; top: -12px; right: 18px;
  background: var(--green); color: var(--white);
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.pricing__note {
  margin-top: 24px; color: var(--ink-3); font-size: 0.97rem;
}

.bundle {
  margin-top: 40px;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  box-shadow: 0 0 0 6px var(--green-bg);
}
.bundle__copy h3 { margin: 0.2em 0 0.6em; }
.bundle__list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 8px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .bundle__list { grid-template-columns: repeat(3, 1fr); }
}
.bundle__list li {
  background: var(--green-bg);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 1.05rem;
  color: var(--ink);
}
.bundle__list strong { color: var(--green-dark); font-size: 1.15rem; }
.bundle__was {
  color: var(--ink-3); text-decoration: line-through; margin-right: 6px;
}

/* ---------- Self-serve ---------- */

.selfserve { padding: 72px 0; }
.selfserve__inner {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 760px) {
  .selfserve__inner { grid-template-columns: 1.1fr 1fr; }
}
.selfserve__photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--border-soft);
}
.selfserve__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.selfserve__points {
  list-style: none; padding: 0; margin: 1.2em 0;
}
.selfserve__points li {
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 1.05rem;
  color: var(--ink-2);
}
.selfserve__points li:last-child {
  border-bottom: 1px solid var(--border-soft);
}
.selfserve__points strong { color: var(--ink); margin-right: 4px; }
.selfserve__cta { margin-top: 1em; }

/* ---------- Pay your way ---------- */

.pay { padding: 72px 0; background: var(--soft); }
.pay__grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 1em;
}
@media (min-width: 760px) {
  .pay__grid { grid-template-columns: repeat(3, 1fr); }
}
.pay__item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
}
.pay__icon {
  width: 56px; height: 56px;
  background: var(--green-bg);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700;
  margin: 0 auto 14px;
}
.pay__item h3 { margin-bottom: 0.4em; }
.pay__item p { margin: 0; }

/* ---------- App download row ---------- */

.app {
  padding: 72px 0;
  background: var(--green);
  color: var(--white);
}
.app h2, .app p, .app .eyebrow { color: var(--white); }
.app .eyebrow { color: rgba(255,255,255,.9); }
.app__inner {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 760px) {
  .app__inner { grid-template-columns: 1.4fr 1fr; }
}
.app__badges {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.4em;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--white);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  text-decoration: none;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.15);
}
.store-badge:hover { background: #000; color: var(--white); text-decoration: none; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.05; }
.store-badge__small { font-size: 0.7rem; opacity: 0.8; }
.store-badge__big { font-size: 1.05rem; font-weight: 700; }
.app__qr {
  display: flex; justify-content: center;
  margin: 0 auto;
}
.app__qr img {
  width: clamp(240px, 32vw, 360px);
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  background: #F2F0EF;
}

/* ---------- Fleet ---------- */

.fleet { padding: 80px 0; }
.fleet h2 { max-width: 880px; }
.fleet .lead {
  font-size: 1.18rem; color: var(--ink-2); max-width: 820px;
  margin-bottom: 1.4em;
}
.fleet h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-top: 1.6em; margin-bottom: 0.7em;
}
.fleet__photo {
  aspect-ratio: 16 / 9; max-height: 360px; overflow: hidden;
  border-radius: var(--r-lg); margin: 1.4em 0 2em;
  border: 1px solid var(--border-soft);
}
.fleet__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fleet__how a { color: var(--green-dark); font-weight: 700; }
.fleet__how a:hover { text-decoration: underline; }
.fleet__tiers {
  background: var(--soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  margin-bottom: 1em;
}
.fleet__tiers h3 { margin-top: 0; }
.fleet__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8em 0 1em;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
.fleet__table th, .fleet__table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: 1.05rem;
}
.fleet__table th {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.fleet__table tbody tr:last-child td { border-bottom: 0; }
.fleet__table tbody tr:nth-child(odd) { background: var(--soft); }
.fleet__table tbody tr:last-child {
  background: var(--green-bg);
}
.fleet__table tbody tr:last-child td { font-size: 1.1rem; }
.fleet__fineprint {
  font-size: 0.93rem; color: var(--ink-3); margin: 0;
}
.fleet__how ol { padding-left: 1.4em; }
.fleet__how li { margin: 0.6em 0; font-size: 1.05rem; }
.fleet__who p { margin: 0.4em 0; }
.fleet__cta {
  margin-top: 2.4em;
  background: var(--ink); color: var(--white);
  padding: 32px 28px;
  border-radius: var(--r-lg);
  text-align: center;
}
.fleet__cta h3 { color: var(--white); margin-top: 0; }
.fleet__cta p { color: rgba(255,255,255,.85); }
.fleet__contact {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 1.2em;
}
.fleet__cta .btn--ghost {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.fleet__cta .btn--ghost:hover {
  background: var(--white); color: var(--ink);
}

/* ---------- Reviews ---------- */

.reviews { padding: 72px 0; background: var(--soft); }
.reviews__grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 1em;
}
@media (min-width: 760px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}
.review {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  margin: 0;
}
.review p {
  font-size: 1rem; font-style: italic; color: var(--ink); margin: 0 0 0.8em;
}
.review footer {
  font-size: 0.88rem; color: var(--ink-3); font-weight: 600;
}

/* ---------- Support ---------- */

.support { padding: 72px 0; background: var(--soft); }
.support h2 { margin-bottom: 0.4em; }
.support p:not(.eyebrow) { font-size: 1.05rem; max-width: 760px; }
.support__list {
  list-style: none; padding: 0;
  max-width: 760px;
  margin: 1.4em 0 1.6em;
}
.support__list li {
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 1.05rem;
  color: var(--ink-2);
}
.support__list li:last-child {
  border-bottom: 1px solid var(--border-soft);
}
.support__list strong { color: var(--ink); margin-right: 4px; }
.support__cta { margin-top: 0.4em; }

/* ---------- Hours ---------- */

.hours { padding: 56px 0; }
.hours h2 { margin-bottom: 0.5em; }
.hours p { font-size: 1.05rem; max-width: 760px; }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink); color: rgba(255,255,255,.8);
  padding: 56px 0 0;
  margin-top: 24px;
}
.footer h4 { color: var(--white); }
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: var(--green); text-decoration: none; }
.footer__inner {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer__brand img {
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}
.footer__brand p { color: rgba(255,255,255,.65); }
.footer__col p { color: rgba(255,255,255,.75); margin: 0 0 0.9em; }
.footer__base {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
}
.footer__base p { margin: 0; color: inherit; }

/* ---------- Tiny utility ---------- */

@media (max-width: 480px) {
  .hero__ctas .btn { flex: 1 1 100%; }
}
