/* ==========================================================================
   Kapada Drycleaners & Laundry — OTLU Sites (Starter)
   One hand-written stylesheet. Nothing loaded from another domain.

   Colour is decided in one place, six variables deep, and everything
   below reads them. See site.json for where each one came from.
   ========================================================================== */

/* ---------- Type. Self-hosted, subset, swap. ------------------------------
   Archivo carries the working half of the site — rates, hours, the address —
   and its latin-ext cut is what makes ₹ (U+20B9) render in the site's own
   typeface instead of dropping to a fallback.
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif-latin-italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* The rupee sign, for the display face.

   Instrument Serif has no U+20B9 in any subset, so every ₹ set in it — the
   "₹0" in the opener, the "₹0" on the pickup section, and any rate card added
   later — would silently drop to whatever serif the phone happens to have.
   This is a 752-byte cut of Playfair Display containing that one glyph,
   declared under the same family name and fenced to U+20B9, so the browser
   reaches for it only for that character. Playfair matches: same 1000 upem,
   708 cap height against Instrument Serif's 720, and the same high stroke
   contrast. Declared for both styles so an italic ₹ still gets a real glyph. */

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/rupee-serif.woff2") format("woff2");
  unicode-range: U+20B9;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/rupee-serif.woff2") format("woff2");
  unicode-range: U+20B9;
}

/* ---------- Colour ------------------------------------------------------ */

:root {
  --bg: #eef3f7;
  --bg-deep: #dfe9f0;
  --surface: #ffffff;
  --ink: #0b2231;
  --ink-invert: #f2f7fa;
  --muted: #4a6c81;
  --line: #cfdde7;
  --line-soft: #e0e9f0;
  --accent: #00598f;
  --accent-hover: #004672;
  --accent-ink: #ffffff;
  --accent-wash: #e2ecf4;
  --gold: #845c09;
  --gold-bright: #e1a10b;
  --plate: #062a3e;
  --plate-ink: #eaf3f9;
  --plate-muted: #a8c6d8;
  --plate-line: #17506e;
  --shadow: 0 1px 2px rgba(6, 42, 62, 0.05), 0 12px 28px -18px rgba(6, 42, 62, 0.35);

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #062a3e;
    --bg-deep: #04202f;
    --surface: #0a3550;
    --ink: #e9f2f8;
    --ink-invert: #062032;
    --muted: #a2c1d3;
    --line: #14506f;
    --line-soft: #0f4462;
    --accent: #6bc2f0;
    --accent-hover: #96d5f7;
    --accent-ink: #032031;
    --accent-wash: #0c3f5c;
    --gold: #f0c163;
    --gold-bright: #f0c163;
    --plate: #031a27;
    --plate-ink: #eaf3f9;
    --plate-muted: #a8c6d8;
    --plate-line: #0f4361;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 14px 30px -18px rgba(0, 0, 0, 0.7);

    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg: #062a3e;
  --bg-deep: #04202f;
  --surface: #0a3550;
  --ink: #e9f2f8;
  --ink-invert: #062032;
  --muted: #a2c1d3;
  --line: #14506f;
  --line-soft: #0f4462;
  --accent: #6bc2f0;
  --accent-hover: #96d5f7;
  --accent-ink: #032031;
  --accent-wash: #0c3f5c;
  --gold: #f0c163;
  --gold-bright: #f0c163;
  --plate: #031a27;
  --plate-ink: #eaf3f9;
  --plate-muted: #a8c6d8;
  --plate-line: #0f4361;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 14px 30px -18px rgba(0, 0, 0, 0.7);

  color-scheme: dark;
}

/* ---------- Reset & base ------------------------------------------------ */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.004em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-hover); }

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

h1, h2, h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: min(100% - 2.5rem, 74rem);
  margin-inline: auto;
}

@media (max-width: 26em) {
  .wrap { width: calc(100% - 1.75rem); }
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.75rem 1.1rem;
  z-index: 100;
  border-radius: 0 0 6px 0;
}
.skip:focus { left: 0; }

/* ---------- Small caps label used throughout --------------------------- */

.label {
  font-size: 0.6875rem;
  font-weight: 620;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.label::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--gold-bright);
  flex: none;
}

/* ---------- Masthead ---------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.masthead__in {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  flex: none;
  margin-right: auto;
}

.brand svg { width: 2.05rem; height: 2.05rem; color: var(--accent); flex: none; }

.brand__name {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.045em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand__sub {
  display: block;
  font-size: 0.5625rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.14rem;
}

.nav { display: flex; align-items: center; gap: 0.35rem; }

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 520;
  padding: 0.5rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
}

.nav a:hover { color: var(--accent); background: var(--accent-wash); }

.masthead__tools { display: flex; align-items: center; gap: 0.5rem; flex: none; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle svg { width: 1.05rem; height: 1.05rem; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle[aria-pressed="true"] .icon-sun { display: block; }
.theme-toggle[aria-pressed="true"] .icon-moon { display: none; }

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.hamburger svg { width: 1.15rem; height: 1.15rem; }
.hamburger .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: block; }
.hamburger[aria-expanded="true"] .icon-open { display: none; }

@media (max-width: 60em) {
  .hamburger { display: inline-flex; }
  .masthead__in { flex-wrap: wrap; }
  .nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0.7rem;
    border-top: 1px solid var(--line-soft);
    margin-top: -1px;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a {
    padding: 0.82rem 0.2rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav a:last-child { border-bottom: 0; }
  .masthead__cta { display: none; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.875rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 620;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}

.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--accent-ink); }
.btn svg { width: 1.05rem; height: 1.05rem; flex: none; }

.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent-wash); color: var(--accent-hover); }

.btn--wa { background: var(--gold-bright); border-color: var(--gold-bright); color: #241a02; }
.btn--wa:hover { background: #c98d08; border-color: #c98d08; color: #241a02; }

.btn--sm { min-height: 2.5rem; padding: 0.45rem 0.95rem; font-size: 0.875rem; }

.btn--onplate { background: var(--plate-ink); border-color: var(--plate-ink); color: var(--plate); }
.btn--onplate:hover { background: #ffffff; border-color: #ffffff; color: var(--plate); }
.btn--onplate-ghost { background: transparent; border-color: var(--plate-line); color: var(--plate-ink); }
.btn--onplate-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--plate-ink); color: var(--plate-ink); }

.actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* ---------- The opener: type first, no hero photograph ------------------ */

.opener { padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4.5rem); }

.opener__tag {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--gold);
  margin: 0 0 1.4rem;
  letter-spacing: 0.005em;
}

.opener__grid { display: grid; gap: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 2.75rem; }

.opener h1 {
  font-size: clamp(2.7rem, 8.4vw, 5.6rem);
  line-height: 0.98;
  max-width: 15ch;
  margin: 0;
}

.opener h1 em { font-style: italic; color: var(--accent); }

.opener__lede {
  font-size: clamp(1.0625rem, 1.9vw, 1.25rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.opener__lede strong { color: var(--ink); font-weight: 600; }

/* Two columns once there is room: the headline holds the left, the lede and
   the buttons sit against its baseline on the right. */
@media (min-width: 64em) {
  .opener__grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: end;
  }
  .opener h1 { max-width: none; font-size: clamp(3.4rem, 5.3vw, 5rem); }
  .opener__aside { padding-bottom: 0.35rem; }
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  list-style: none;
  padding: 0;
  margin: 0;
}

.facts li {
  padding: 1.1rem 1.4rem 0.2rem 0;
  border-right: 1px solid var(--line);
}

.facts li:last-child { border-right: 0; padding-right: 0; }

.facts b {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.facts span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.28rem;
  line-height: 1.42;
}

@media (max-width: 40em) {
  .facts { grid-template-columns: 1fr; }
  .facts li { border-right: 0; border-bottom: 1px solid var(--line); padding: 0.9rem 0; }
  .facts li:last-child { border-bottom: 0; }
}

/* ---------- Full-bleed photographic plate ------------------------------- */

.plate {
  margin: 0;
  position: relative;
  background: var(--plate);
  overflow: hidden;
}

.plate img {
  width: 100%;
  height: clamp(15rem, 34vw, 25rem);
  object-fit: cover;
  object-position: 50% 58%;
  opacity: 0.92;
}

.plate figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.5rem 0 1.35rem;
  background: linear-gradient(to top, rgba(3, 20, 30, 0.88), rgba(3, 20, 30, 0));
  color: var(--plate-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

.plate figcaption .wrap { display: block; }
.plate figcaption b { color: #fff; font-weight: 620; }

/* ---------- Section frame ----------------------------------------------- */

.band { padding: clamp(3.25rem, 7vw, 5.75rem) 0; }
.band--surface { background: var(--surface); border-block: 1px solid var(--line-soft); }
.band--deep { background: var(--bg-deep); }

.band__head { max-width: 42rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }

.band__head h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 0.9rem;
}

.band__head p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  max-width: 52ch;
}

/* ---------- Services: an editorial list, not a grid of cards ------------ */

.services {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 58em) {
  .services { grid-template-columns: 1fr; }
}

.svc { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }

.svc > li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0 1.25rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.svc > li:first-child h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.svc > li:first-child p { font-size: 1.0625rem; color: var(--ink); }

.svc__no {
  font-size: 0.75rem;
  font-weight: 620;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  padding-top: 0.5rem;
}

.svc h3 {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  margin-bottom: 0.4rem;
}

.svc p { font-size: 0.9688rem; color: var(--muted); margin: 0; max-width: 48ch; }

@media (max-width: 34em) {
  .svc > li { grid-template-columns: 2.1rem 1fr; }
}

/* the two garment plates beside the list — kept on a light card in BOTH
   schemes, because these were shot on white and would otherwise glow */
.garments { display: grid; gap: 1.1rem; }

.garment {
  margin: 0;
  background: #f7f9fb;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
}

.garment img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.garment figcaption {
  padding: 0.7rem 0.85rem 0.8rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #4a6c81;
  border-top: 1px solid #e4ebf1;
  background: #ffffff;
}

@media (max-width: 58em) {
  .garments { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 30em) {
  .garments { grid-template-columns: 1fr; }
}

/* ---------- Turnaround: the saturated band ------------------------------ */

.speed {
  background: var(--accent);
  color: var(--accent-ink);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .speed { background: #04456e; color: #eaf4fb; }
}
:root[data-theme="dark"] .speed { background: #04456e; color: #eaf4fb; }

.speed .label { color: rgba(255, 255, 255, 0.72); }
.speed .label::before { background: var(--gold-bright); }

.speed__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 52em) { .speed__grid { grid-template-columns: 1fr; } }

.speed__item { border-top: 1px solid rgba(255, 255, 255, 0.28); padding-top: 1.15rem; }

.speed__big {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.9rem, 7vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 0.55rem;
}

.speed__big small { font-size: 0.4em; letter-spacing: 0.02em; }

.speed__item h3 {
  font-family: "Archivo", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #f8d894; /* lifted off #e1a10b so 12px caps still clear 4.5:1 on the blue */
}

.speed__item p { color: rgba(255, 255, 255, 0.82); font-size: 0.9375rem; margin: 0; }

/* ---------- Pickup: their own artwork, and how it works ----------------- */

.pickup {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 54em) {
  .pickup { grid-template-columns: 1fr; }
  .pickup__art { max-width: 20rem; }
}

.pickup__art { margin: 0; border-radius: 4px; overflow: hidden; border: 1px solid var(--line-soft); }
.pickup__art img { width: 100%; }

.steps { list-style: none; margin: 1.75rem 0 2rem; padding: 0; display: grid; gap: 1.1rem; }

.steps li {
  display: grid;
  grid-template-columns: 1.9rem 1fr;
  gap: 0.9rem;
  align-items: start;
}

.steps b {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--accent);
  font-variant-numeric: lining-nums;
}

.steps p { margin: 0; font-size: 0.9688rem; }
.steps strong { font-weight: 620; }

.free {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 2.9rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 0.4rem;
}

.free span {
  font-family: "Archivo", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Areas ------------------------------------------------------- */

.areas {
  columns: 4 11rem;
  column-gap: 2rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.areas li {
  break-inside: avoid;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9375rem;
  color: var(--ink);
}

.areas li[data-home] { font-weight: 640; color: var(--accent); }

/* ---------- About ------------------------------------------------------- */

.about { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4rem); }

@media (max-width: 54em) { .about { grid-template-columns: 1fr; } }

.about p { color: var(--muted); }
.about p strong { color: var(--ink); font-weight: 600; }

.quote {
  margin: 0 0 1.6rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.35rem);
  line-height: 1.18;
  color: var(--ink);
}

.rating {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.5rem 1.6rem 1.7rem;
  background: var(--bg-deep);
}

.rating p { font-size: 0.875rem; margin: 0.6rem 0 1.15rem; color: var(--muted); }

.rating p.rating__score {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 3.1rem;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}

.rating__stars { display: inline-flex; gap: 0.14rem; color: var(--gold-bright); }
.rating__stars svg { width: 1.05rem; height: 1.05rem; }

/* ---------- Visit + enquiry, the closing plate -------------------------- */

.close {
  background: var(--plate);
  color: var(--plate-ink);
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.close a { color: #8fd0f5; }
.close a:hover { color: #b6e2fb; }
.close .label { color: var(--plate-muted); }

/* buttons keep their own colours inside the dark band */
.close a.btn--onplate { color: var(--plate); }
.close a.btn--onplate:hover { color: var(--plate); }
.close a.btn--onplate-ghost { color: var(--plate-ink); }
.close a.btn--onplate-ghost:hover { color: var(--plate-ink); }
.close a.btn--wa,
.close a.btn--wa:hover { color: #241a02; }

.close__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.25rem, 6vw, 4.5rem);
}

@media (max-width: 54em) { .close__grid { grid-template-columns: 1fr; } }

.close h2 { font-size: clamp(1.95rem, 4.4vw, 2.85rem); margin-bottom: 1.1rem; }
.close h3 {
  font-family: "Archivo", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plate-muted);
  margin: 0 0 0.5rem;
}

.close address { font-style: normal; font-size: 1.0625rem; line-height: 1.62; }

.detail { border-top: 1px solid var(--plate-line); padding: 1.15rem 0; }
.detail:last-of-type { border-bottom: 1px solid var(--plate-line); }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.15rem 0; }
.hours span:last-child { font-variant-numeric: tabular-nums; }

.phones { display: grid; gap: 0.55rem; margin: 0.35rem 0 0; }

.phone-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.phone-line b {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Enquiry form ------------------------------------------------ */

.enquiry { display: grid; gap: 1rem; }

.enquiry__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry__field { display: grid; gap: 0.4rem; }

.enquiry__field label {
  font-size: 0.75rem;
  font-weight: 620;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--plate-muted);
}

.enquiry__optional { text-transform: none; letter-spacing: 0; font-weight: 400; opacity: 0.75; }

.enquiry input,
.enquiry textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--plate-ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--plate-line);
  border-radius: 3px;
  padding: 0.72rem 0.85rem;
  min-height: 2.875rem;
}

.enquiry textarea { min-height: 6.5rem; resize: vertical; line-height: 1.55; }

.enquiry input:focus,
.enquiry textarea:focus {
  outline: 2px solid #8fd0f5;
  outline-offset: 1px;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.09);
}

.enquiry input::placeholder { color: rgba(200, 224, 238, 0.5); }

.enquiry button[type="submit"] {
  justify-self: start;
  min-height: 2.875rem;
  padding: 0.7rem 1.6rem;
  border: 0;
  border-radius: 3px;
  background: var(--gold-bright);
  color: #241a02;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
}

.enquiry button[type="submit"]:hover { background: #f3b62c; }
.enquiry button[type="submit"]:disabled { opacity: 0.6; cursor: default; }

.enquiry__done { font-size: 1.0625rem; color: var(--plate-ink); }

.enquiry__note { font-size: 0.8125rem; color: var(--plate-muted); margin: 0; }

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

.foot { padding: 2.75rem 0 2.25rem; background: var(--bg); font-size: 0.875rem; }

.foot__in {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.foot p { color: var(--muted); margin: 0 0 0.4rem; }
.foot__links { display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem; }
.foot__links a { color: var(--muted); text-decoration: none; }
.foot__links a:hover { color: var(--accent); text-decoration: underline; }

.foot__legal {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8125rem;
}

.built-by {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  opacity: 0.85;
}

.built-by:hover { opacity: 1; color: var(--muted); }
.built-by img { height: 1.05rem; width: auto; }
.built-by .on-dark { display: none; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .built-by .on-dark { display: block; }
  :root:not([data-theme="light"]) .built-by .on-light { display: none; }
}

:root[data-theme="dark"] .built-by .on-dark { display: block; }
:root[data-theme="dark"] .built-by .on-light { display: none; }

/* ---------- 404 --------------------------------------------------------- */

.oops { padding: clamp(4rem, 14vw, 9rem) 0; }
.oops h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); margin-bottom: 1.1rem; }
.oops p { color: var(--muted); font-size: 1.125rem; max-width: 44ch; margin-bottom: 2rem; }

/* ---------- Print ------------------------------------------------------- */

@media print {
  .masthead,
  .theme-toggle,
  .hamburger,
  .actions,
  .enquiry,
  .plate,
  .pickup__art,
  .built-by,
  .skip { display: none !important; }

  html, body { background: #fff !important; color: #000 !important; font-size: 11pt; }
  .band, .speed, .close, .opener, .band--surface, .band--deep, .foot {
    padding: 0.6cm 0 !important;
    background: #fff !important;
    color: #000 !important;
    border: 0 !important;
  }
  p, li, address, .svc p, .steps p, .band__head p, .opener__lede, .rating p,
  .close h2, .close h3, .close address, .speed__item p, .speed__big, .facts b,
  .facts span, .garment figcaption, .foot p { color: #000 !important; }
  .label, .speed__item h3, .steps b, .opener__tag, .free span { color: #444 !important; }
  .rating, .garment, .pickup__art { border-color: #bbb !important; background: #fff !important; }
  .svc > li, .detail, .facts li, .areas li { border-color: #bbb !important; }
  a { color: #000 !important; text-decoration: none; }
  .areas { columns: 3; }
  h2 { break-after: avoid; }
  .svc > li, .speed__item, .detail { break-inside: avoid; }
}
