/* ==========================================================================
   The Bubble Room — 1970s laundromat
   Cream #f7eedd · Avocado #7a8450 · Mustard #d9a426 · Pool #5e87a8
   Fredoka (display) + Quicksand (body) · porthole circles · zero JS
   ========================================================================== */

:root {
  --cream: #f7eedd;
  --cream-deep: #efe2c8;
  --avocado: #7a8450;
  --avocado-deep: #5c6539;
  --mustard: #d9a426;
  --mustard-deep: #b5860f;
  --pool: #5e87a8;
  --pool-deep: #44698a;
  --brown: #4a3f2c;
  --display: "Fredoka", "Comic Sans MS", sans-serif;
  --body: "Quicksand", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

[id] { scroll-margin-top: 1rem; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--brown);
  color: var(--cream);
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus { top: 0.5rem; }

:focus-visible {
  outline: 3px solid var(--pool-deep);
  outline-offset: 2px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--avocado-deep);
}

h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); }
h3 { font-size: 1.15rem; color: var(--brown); }

p { margin: 0 0 1em; }

a { color: var(--pool-deep); }

/* ---------- Header: brand row + one-line nav, no menu ---------- */

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 4px dotted var(--mustard);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--avocado-deep);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.4rem;
}

.site-nav a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--brown);
  text-decoration: none;
  padding: 0.3rem 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pool-deep);
  text-decoration: underline wavy var(--mustard);
  text-underline-offset: 6px;
}

@media (max-width: 480px) {
  .brand-text { font-size: 1.3rem; }
  .site-nav { width: 100%; }
  .site-nav ul { gap: 0; justify-content: space-between; }
  .site-nav a { font-size: 0.95rem; }
}

/* ---------- Hero with spinning drums ---------- */

.hero {
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.kicker {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--mustard-deep);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4rem);
}

.hero-lede { max-width: 34rem; font-size: 1.12rem; }

.hero-facts {
  display: inline-block;
  background: var(--cream-deep);
  border: 2px solid var(--mustard);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.98rem;
}

/* washer drums: stacked portholes */
.drum-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.drum {
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 26px;
  display: grid;
  place-items: center;
}

.drum-a { background: var(--avocado); }
.drum-b { background: var(--mustard); }
.drum-c { background: var(--pool); }

.porthole {
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.65) 0 14%, transparent 16%),
    radial-gradient(circle at 60% 65%, rgba(255, 255, 255, 0.25) 0 10%, transparent 12%),
    radial-gradient(circle, #cfe3ef 0 62%, #9fc3d8 62% 100%);
  border: 7px solid rgba(74, 63, 44, 0.35);
}

@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; }
  .drum-row { flex-direction: row; justify-content: center; }
  .drum { width: 6.4rem; height: 6.4rem; border-radius: 18px; }
  .porthole { width: 4.1rem; height: 4.1rem; border-width: 5px; }
}

/* ---------- Sections ---------- */

.section {
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
}

/* ---------- Price circles: machines as portholes ---------- */

.price-circles {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pc {
  width: 10.5rem;
  height: 10.5rem;
  border-radius: 50%;
  background: #fff;
  border: 6px solid var(--avocado);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.1rem;
  padding: 0.5rem;
}

.pc:nth-child(2) { border-color: var(--mustard); }
.pc:nth-child(3) { border-color: var(--pool); }

.pc-dry { background: var(--brown); border-color: var(--brown); color: var(--cream); }

.pc-size { font-family: var(--display); font-weight: 600; font-size: 1.1rem; }

.pc-price { font-family: var(--display); font-weight: 600; font-size: 2rem; color: var(--mustard-deep); }

.pc-dry .pc-price { color: var(--mustard); }

.pc-note { font-size: 0.82rem; opacity: 0.85; }

.amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.7rem 2rem;
}

.amenities li {
  padding-left: 1.7rem;
  position: relative;
  font-weight: 600;
}

.amenities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.85em;
  height: 0.85em;
  border-radius: 50%;
  border: 3px solid var(--pool);
  background: #fff;
}

/* ---------- WDF band ---------- */

.wdf-band {
  max-width: none;
  background: var(--avocado);
  color: var(--cream);
}

.wdf-band > * { max-width: 61rem; margin-left: auto; margin-right: auto; }

.wdf-band h2 { color: #fff; }

.wdf-steps {
  counter-reset: step;
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
}

.wdf-steps li { counter-increment: step; }

.wdf-steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--brown);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.wdf-steps strong { color: #fff; }

.wdf-note { margin: 0; }

.wdf-note a { color: var(--cream); font-weight: 600; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 50rem; }

.faq-list details {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 0.7rem;
  border: 2px solid var(--cream-deep);
}

.faq-list details[open] { border-color: var(--mustard); }

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.95rem 1.25rem;
}

.faq-list summary:hover { color: var(--pool-deep); }

.faq-list details p { padding: 0 1.25rem 1.1rem; margin: 0; }

/* ---------- Visit ---------- */

.visit-band {
  max-width: none;
  background: var(--cream-deep);
}

.visit-band > * { max-width: 61rem; margin-left: auto; margin-right: auto; }

.visit-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 2rem;
}

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

.site-footer {
  text-align: center;
  padding: 2.5rem 1.25rem;
  border-top: 4px dotted var(--mustard);
  font-size: 0.95rem;
}

.footer-fine { font-size: 0.82rem; opacity: 0.75; }

.social-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  justify-content: center;
  padding: 0 1.5rem;
  margin: 1.2rem auto 0;
}

.social-links a { display: inline-flex; color: var(--brown); opacity: 0.8; }

.social-links a:hover, .social-links a:focus-visible { opacity: 1; }

.social-links svg { width: 1.3rem; height: 1.3rem; }
