/* Loon Appliance Rental, Twin Cities washer/dryer rental
   Plain, fast, mobile-first. No framework, no build step.
   This audience skews mobile and low-bandwidth; every choice here favors
   legibility and load speed over decoration. */

:root {
  --ink: #16202b;
  --ink-soft: #4a5866;
  --line: #dde3ea;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --brand: #14563f;      /* deep green: trustworthy, not corporate-blue */
  --brand-dark: #0e3f2e;
  --accent: #d9822b;     /* warm, used sparingly for CTAs */
  --radius: 10px;
  --wrap: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font: 17px/1.62 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: .6em; }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1em; }
a { color: var(--brand); }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.narrow { width: min(720px, 100% - 2.5rem); }

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: #fff; padding: .7rem 1rem; z-index: 100;
}
.skip:focus { left: .5rem; top: .5rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* Honeypot field for the intake form: off-screen for real visitors, still
   present in the DOM for form-filling bots to trip. */
.hp {
  position: absolute; left: -9999px; top: -9999px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 1.4rem; padding: .8rem 0; }
.brand {
  font-weight: 800; font-size: clamp(.95rem, 4.2vw, 1.22rem);
  text-decoration: none;
  color: var(--brand-dark); letter-spacing: -.02em; white-space: nowrap;
}
.brand span { color: var(--accent); }
.brand.small { font-size: 1.05rem; margin: 0 0 .4rem; }
.nav nav { display: none; gap: 1.4rem; margin-left: auto; }
.nav nav a { color: var(--ink-soft); text-decoration: none; font-size: .95rem; }
.nav nav a:hover { color: var(--brand); }
.nav .btn-sm { margin-left: auto; }
@media (min-width: 820px) {
  .nav nav { display: flex; }
  .nav .btn-sm { margin-left: 0; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; background: var(--brand); color: #fff;
  padding: .85rem 1.5rem; border-radius: var(--radius);
  text-decoration: none; font-weight: 650; border: 2px solid var(--brand);
  cursor: pointer; font-size: 1rem;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-sm { padding: .5rem .95rem; font-size: .9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.08rem; width: 100%; }
.btn-ghost { background: transparent; color: var(--brand); }
.btn-ghost:hover { background: var(--bg-alt); color: var(--brand-dark); }

/* ---------- hero ---------- */
.hero { padding: 3rem 0 2.5rem; background: linear-gradient(180deg, var(--bg-alt), var(--bg)); }
.hero-inner { display: grid; gap: 2.2rem; }
@media (min-width: 900px) {
  .hero { padding: 4.5rem 0 3.5rem; }
  .hero-inner { grid-template-columns: 1.35fr .95fr; align-items: start; gap: 3rem; }
}
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.4rem; }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.ticks.wide { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.ticks li { padding-left: 1.7rem; position: relative; color: var(--ink-soft); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: .72rem; height: .38rem;
  border-left: 2.5px solid var(--brand); border-bottom: 2.5px solid var(--brand);
  transform: rotate(-45deg);
}

/* ---------- cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
}
.price-card { box-shadow: 0 6px 24px rgba(22,32,43,.07); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .08em;
  font-size: .74rem; font-weight: 700; color: var(--ink-soft); margin: 0 0 .3rem;
}
.price { font-size: 3.4rem; font-weight: 800; margin: 0; line-height: 1; color: var(--brand-dark); }
.price span { font-size: 1.6rem; vertical-align: super; }
.price small { font-size: 1rem; font-weight: 500; color: var(--ink-soft); }
.price-sub { color: var(--ink-soft); margin: .35rem 0 0; }
.price-card hr { border: 0; border-top: 1px solid var(--line); margin: 1.1rem 0; }
.mini { margin: 0; display: grid; gap: .45rem; }
.mini > div { display: flex; justify-content: space-between; gap: 1rem; }
.mini dt { color: var(--ink-soft); }
.mini dd { margin: 0; font-weight: 650; }

/* ---------- strip ---------- */
.strip { background: var(--brand-dark); color: #eaf3ee; }
.strip-inner { padding: 1.1rem 0; }
.strip p { margin: 0; font-size: .98rem; }
.strip strong { color: #fff; }

/* ---------- sections ---------- */
.section { padding: 3.4rem 0; }
.section.alt { background: var(--bg-alt); }
.sub { color: var(--ink-soft); max-width: 60ch; }

.steps { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.8rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2.2rem; } }
.steps p { color: var(--ink-soft); margin: 0; }
.num {
  display: inline-grid; place-items: center;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 700;
  margin-bottom: .7rem;
}

.grid3 { display: grid; gap: 1.2rem; margin-top: 1.8rem; }
@media (min-width: 800px) { .grid3 { grid-template-columns: repeat(3, 1fr); } }
.grid3 p { color: var(--ink-soft); margin: 0; }

/* ---------- table ---------- */
.table-scroll { overflow-x: auto; margin: 1.6rem 0; }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th, td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
thead th { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
tbody th { font-weight: 650; }
tbody td:nth-child(2) { font-weight: 700; color: var(--brand-dark); white-space: nowrap; }

.callout {
  background: #f1f6f3; border: 1px solid #d5e3db;
  border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem;
}
.callout h3 { margin-top: 0; }

/* ---------- chips ---------- */
.chips { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li {
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .38rem .95rem; font-size: .93rem; color: var(--ink-soft);
}

/* ---------- faq ---------- */
details {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: .7rem;
}
details[open] { border-color: #c3cfdb; }
summary { cursor: pointer; font-weight: 650; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--brand); font-weight: 700; }
details[open] summary::after { content: "\2212"; }
details p { margin: .8rem 0 0; color: var(--ink-soft); }

/* ---------- form ---------- */
.apply { background: var(--bg-alt); }
.form { margin-top: 1.8rem; }
.form label {
  display: block; margin-bottom: 1rem;
  font-weight: 600; font-size: .93rem;
}
.form .row { display: grid; gap: 0 1rem; }
@media (min-width: 620px) { .form .row { grid-template-columns: 1fr 1fr; } }
input[type=text], input[type=tel], input[type=email], textarea {
  display: block; width: 100%; margin-top: .35rem;
  padding: .75rem .85rem; font: inherit; font-weight: 400;
  border: 1px solid #c3cfdb; border-radius: 8px; background: #fff;
}
input:focus, textarea:focus, summary:focus-visible, .btn:focus-visible {
  outline: 3px solid rgba(20,86,63,.35); outline-offset: 1px;
}
textarea { resize: vertical; }
fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; margin: 0 0 1rem; background: #fff; }
legend { font-weight: 700; font-size: .93rem; padding: 0 .4rem; }
.hint { font-size: .87rem; color: var(--ink-soft); font-weight: 400; margin: 0 0 .6rem; }
.opt { display: flex; align-items: flex-start; gap: .6rem; font-weight: 400; margin-bottom: .45rem; }
.opt input { margin-top: .28rem; flex: none; }
.consent { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem; }

.fineprint { font-size: .84rem; color: var(--ink-soft); font-weight: 400; margin-top: .8rem; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #b9c6d3; padding: 2.5rem 0; margin-top: 0; }
.footer-inner { display: grid; gap: 1.6rem; }
@media (min-width: 800px) { .footer-inner { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 2.5rem; } }
.footer a { color: #fff; }
.footer .brand { color: #fff; }
.footer p { margin: 0 0 .4rem; }
.footer .fineprint { color: #8a99a8; }
