/* ==========================================================================
   Knight Dry Cleaners & Laundry — knight-dry-cleaners-and-laundry
   OTLU Sites, Starter tier. One page.

   Palette source: the shop's own signboard in Hanuman Gali — deep navy
   ground, brass crest and lettering. Light mode is a cool "bluing white",
   the faint blue cast laundries have used for two hundred years to make
   whites read whiter; dark mode is the board itself at night.
   No yellow anywhere: the mustard Instagram post is an outlier, the
   painted board is the brand.

   Everything below reads the tokens. Nothing hard-codes a colour.
   ========================================================================== */

/* ---------- fonts: self-hosted, subset, no third-party request ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-var-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-var-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-var-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   THE TOKENS — three blocks, in this order.
   The :not() is what lets a pinned light choice beat a dark device.
   ========================================================================== */

:root {
  /* the six */
  --bg:         #ECF0F6;   /* bluing white — cool, deliberately not #fff */
  --ink:        #101F38;   /* deep navy-black, never #000 */
  --muted:      #47597A;
  --line:       #C7D2E1;
  --accent:     #8A6218;   /* the brass off their crest, darkened to carry text */
  --accent-ink: #FFFFFF;

  /* derived: the inverted band, raised paper, and two borrowed-back values.
     --edge is --line lifted until it clears 3:1, because a button or a form
     field's border is a UI component and has to be discernible, where a
     decorative hairline does not.
     --accent-on-panel is the brass lifted for the navy band, for exactly the
     reason dark mode needs a lifted accent: the light-mode brass goes muddy
     on navy (3.0:1) and this clears it (7.8:1). */
  --panel:           #101F38;
  --panel-ink:       #EDE8DC;
  --paper:           #F7F9FC;
  --edge:            #75849E;
  --accent-on-panel: #D8AC55;

  --shadow: 0 1px 2px rgba(16, 31, 56, .05);

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:         #0A1424;
    --ink:        #E9E5DB;
    --muted:      #94A4BC;
    --line:       #21334F;
    --accent:     #D8AC55;   /* lifted: more light, less saturation */
    --accent-ink: #0A1424;

    --panel:           #060E1A;
    --panel-ink:       #E9E5DB;
    --paper:           #0E1A2D;
    --edge:            #526A92;
    --accent-on-panel: #D8AC55;

    --shadow: 0 1px 2px rgba(0, 0, 0, .3);

    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg:         #0A1424;
  --ink:        #E9E5DB;
  --muted:      #94A4BC;
  --line:       #21334F;
  --accent:     #D8AC55;
  --accent-ink: #0A1424;

  --panel:           #060E1A;
  --panel-ink:       #E9E5DB;
  --paper:           #0E1A2D;
  --edge:            #526A92;
  --accent-on-panel: #D8AC55;

  --shadow: 0 1px 2px rgba(0, 0, 0, .3);

  color-scheme: dark;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.66;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

h1, h2, h3 {
  font-family: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif;
  font-weight: 660;
  line-height: 1.06;
  letter-spacing: -.018em;
  margin: 0;
  text-wrap: balance;
}

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

a { color: inherit; }

img, svg { max-width: 100%; }

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

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

/* ---------- layout ---------- */

.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 56px);
}

section { padding-block: clamp(60px, 8.5vw, 120px); }

.eyebrow {
  font-size: .715rem;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1em;
  display: block;
}

.lead {
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.h2-lg {
  font-variation-settings: 'opsz' 96;
  font-size: clamp(1.95rem, 4.4vw, 3.15rem);
  letter-spacing: -.022em;
  max-width: 17ch;
}

.btns--mt { margin-top: 22px; }

/* the crest's cross is cut out of the helm in the colour it is sitting on,
   so it has to follow the surface rather than always being --bg */
.card { --crest-cut: var(--paper); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;
  padding: 12px 22px;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--bg);
  font-family: inherit;
  font-size: .945rem;
  font-weight: 600;
  letter-spacing: .005em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--edge);
}
.btn--line:hover { background: transparent; border-color: var(--accent); color: var(--accent); }

.btn--brass {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn--brass:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.btn svg { width: 19px; height: 19px; flex: none; }

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- header ---------- */

.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(4px)) {
  .hdr { background: var(--bg); }
}

.hdr__in {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding-block: 9px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
  color: var(--ink);
}
.brand__crest { width: 30px; height: auto; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 40;
  font-weight: 680;
  font-size: 1.115rem;
  letter-spacing: -.012em;
}
.brand__sub {
  font-size: .585rem;
  font-weight: 650;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 11px 12px;
  font-size: .885rem;
  font-weight: 520;
  color: var(--muted);
  text-decoration: none;
  border-radius: 2px;
  transition: color .15s ease;
}
.nav a:hover { color: var(--ink); }

.hdr__act { display: flex; align-items: center; gap: 8px; }

.hdr .btn { min-height: 44px; padding: 9px 16px; font-size: .875rem; }

/* theme toggle — one button, two states */
.tt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  border: 1.5px solid var(--edge);
  border-radius: 2px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  flex: none;
  transition: color .15s ease, border-color .15s ease;
}
.tt:hover { color: var(--accent); border-color: var(--accent); }
.tt svg { width: 18px; height: 18px; }
.tt .tt__moon { display: none; }
.tt[aria-pressed="true"] .tt__sun { display: none; }
.tt[aria-pressed="true"] .tt__moon { display: block; }

/* hamburger */
.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  padding: 0;
  border: 1.5px solid var(--edge);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex: none;
}
.burger svg { width: 19px; height: 19px; }
.burger .burger__x { display: none; }
.burger[aria-expanded="true"] .burger__m { display: none; }
.burger[aria-expanded="true"] .burger__x { display: block; }

@media (max-width: 880px) {
  .burger { display: inline-flex; }
  .hdr__nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 6px clamp(18px, 5vw, 56px) 20px;
  }
  .hdr__nav[data-open="true"] { display: block; }
  .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a {
    padding: 15px 2px;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .nav a:last-child { border-bottom: 0; }
  .hdr__call { display: none; }
}
@media (max-width: 420px) {
  .brand__name { font-size: 1rem; }
  .hdr__wa span { display: none; }
  .hdr .btn.hdr__wa { padding: 8px 11px; }
}

/* ==========================================================================
   Hero — type-first. There is no hero photograph and none is missing:
   the customer has no usable pictures of the shop, so the page is set
   rather than illustrated.
   ========================================================================== */

.hero { padding-block: clamp(48px, 7vw, 104px) clamp(52px, 7vw, 96px); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.hero h1 {
  font-variation-settings: 'opsz' 144;
  font-weight: 700;
  font-size: clamp(2.55rem, 6.6vw, 5.15rem);
  line-height: .99;
  letter-spacing: -.026em;
  margin: 0 0 .26em;
  max-width: 15ch;
}

.hero__said {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  font-weight: 480;
  font-size: clamp(1.42rem, 3.2vw, 2.36rem);
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--accent);
  margin: 0 0 .85em;
}

.hero__lead { margin-bottom: 1.7em; max-width: 44ch; }

/* the Google rating — a real, checkable number, linked to the real reviews */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 9px 15px 9px 13px;
  border: 1px solid var(--edge);
  border-radius: 2px;
  text-decoration: none;
  font-size: .875rem;
  color: var(--muted);
  min-height: 44px;
  transition: border-color .15s ease;
}
.rating:hover { border-color: var(--accent); }
.rating strong {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 30;
  font-weight: 700;
  font-size: 1.13rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.rating__stars { display: inline-flex; gap: 1.5px; color: var(--accent); }
.rating__stars svg { width: 13px; height: 13px; }

/* ---------- the care label ----------
   A garment care label, because that is the object this trade lives on.
   The symbols are the real ISO 3758 ones, not decoration. */

.label {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 4px;
  box-shadow: var(--shadow);
}
.label__in {
  border: 1px dashed var(--line);
  padding: clamp(20px, 2.4vw, 28px) clamp(16px, 2.2vw, 24px);
  text-align: center;
}
.label__brand {
  font-size: .615rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
}
.label__hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 15px 0;
}
.label__syms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 8px;
  margin: 4px 0 2px;
}
.label__sym { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.label__sym svg { width: 27px; height: 27px; color: var(--ink); }
.label__sym span {
  font-size: .555rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}
.label__foot {
  font-size: .625rem;
  font-weight: 620;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.75;
}
.label__foot b { color: var(--accent); font-weight: 700; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .label { max-width: 380px; }
}

/* ==========================================================================
   Services — an editorial list, not a card grid.
   ========================================================================== */

.svcs { counter-reset: s; list-style: none; margin: 44px 0 0; padding: 0; }

.svc {
  display: grid;
  grid-template-columns: 3.4rem 2.7rem minmax(0, 1fr);
  gap: 0 clamp(14px, 2vw, 26px);
  align-items: start;
  padding: clamp(22px, 2.6vw, 30px) 0;
  border-top: 1px solid var(--line);
}
.svc:last-child { border-bottom: 1px solid var(--line); }

.svc__no {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60;
  font-weight: 350;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -.02em;
  padding-top: .1em;
}
.svc__sym { width: 2.7rem; height: 2.7rem; color: var(--ink); opacity: .92; }
.svc h3 {
  font-variation-settings: 'opsz' 44;
  font-weight: 640;
  font-size: clamp(1.28rem, 2.1vw, 1.63rem);
  margin-bottom: .3em;
}
.svc p { color: var(--muted); max-width: 54ch; margin: 0; font-size: 1.0125rem; }

@media (max-width: 620px) {
  .svc { grid-template-columns: 2.2rem minmax(0, 1fr); gap: 0 16px; }
  .svc__no { font-size: 1.25rem; }
  .svc__sym { grid-column: 1; grid-row: 2; align-self: start; width: 2.2rem; height: 2.2rem; margin-top: 12px; }
  .svc__body { grid-column: 2; grid-row: 1 / span 2; }
}

.svcs__after {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 34px;
}
.svcs__after p { margin: 0; color: var(--muted); font-size: .96rem; max-width: 40ch; }

/* ==========================================================================
   Pickup — the full-bleed inverted band. This is the weight change that
   gives the scroll a shape.
   ========================================================================== */

.band {
  background: var(--panel);
  color: var(--panel-ink);
  --accent: var(--accent-on-panel);
}
.band .eyebrow { color: var(--accent); }
.band h2 {
  font-variation-settings: 'opsz' 110;
  font-weight: 660;
  font-size: clamp(2.1rem, 5vw, 3.65rem);
  letter-spacing: -.024em;
  max-width: 16ch;
}
.band .lead { color: color-mix(in srgb, var(--panel-ink) 72%, transparent); }
.band .btn {
  background: var(--panel-ink);
  border-color: var(--panel-ink);
  color: var(--panel);
}
.band .btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.band .btn--line {
  background: transparent;
  color: var(--panel-ink);
  border-color: color-mix(in srgb, var(--panel-ink) 44%, transparent);
}
.band .btn--line:hover { background: transparent; border-color: var(--accent); color: var(--accent); }

.band__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: end;
}
@media (max-width: 820px) { .band__top { grid-template-columns: 1fr; align-items: start; } }

/* the three steps, on a dashed line — a sequence, not three cards */
.steps {
  list-style: none;
  margin: clamp(46px, 6vw, 74px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 20px;
  border-top: 1px dashed color-mix(in srgb, var(--panel-ink) 26%, transparent);
}
.step { position: relative; padding-top: 58px; }
.step__n {
  position: absolute;
  top: 0; left: 0;
  width: 41px; height: 41px;
  display: flex; align-items: center; justify-content: center;
  background: var(--panel);
  color: var(--accent);
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 40;
  font-weight: 600;
  font-size: 1.28rem;
  line-height: 1;
}
.step h3 {
  font-variation-settings: 'opsz' 34;
  font-size: 1.17rem;
  font-weight: 640;
  margin-bottom: .38em;
}
.step p {
  margin: 0;
  font-size: .965rem;
  color: color-mix(in srgb, var(--panel-ink) 68%, transparent);
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .steps::before { top: 0; bottom: 0; left: 20px; right: auto; border-top: 0; border-left: 1px dashed color-mix(in srgb, var(--panel-ink) 26%, transparent); }
  .step { padding-top: 0; padding-left: 60px; min-height: 41px; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; } }

.about h2 {
  font-variation-settings: 'opsz' 96;
  font-size: clamp(1.95rem, 4.4vw, 3.15rem);
  letter-spacing: -.022em;
  margin-bottom: .5em;
  max-width: 18ch;
}
.about__body p { color: var(--muted); max-width: 58ch; font-size: 1.065rem; }
.about__body strong { color: var(--ink); font-weight: 600; }
.about__body a { color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 1px; }

.card {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(22px, 2.6vw, 30px);
  background: var(--paper);
}
.card__crest { width: 66px; height: auto; margin-bottom: 18px; }
.card h3 {
  font-variation-settings: 'opsz' 36;
  font-size: 1.22rem;
  margin-bottom: .45em;
}
.card p { color: var(--muted); font-size: .955rem; }
.card .btns { margin-top: 18px; }

/* ==========================================================================
   Visit
   ========================================================================== */

.visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(30px, 4.5vw, 68px);
  align-items: start;
  margin-top: 42px;
}
@media (max-width: 800px) { .visit__grid { grid-template-columns: 1fr; } }

.visit h2 {
  font-variation-settings: 'opsz' 96;
  font-size: clamp(1.95rem, 4.4vw, 3.15rem);
  letter-spacing: -.022em;
  max-width: 16ch;
}

.addr {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 40;
  font-weight: 480;
  font-size: clamp(1.16rem, 2.1vw, 1.44rem);
  line-height: 1.45;
  font-style: normal;
  letter-spacing: -.005em;
  margin: 0 0 .8em;
  max-width: 26ch;
}
.visit__near { color: var(--muted); font-size: .985rem; max-width: 42ch; }

.hours { border-top: 1px solid var(--line); padding-top: 22px; }
.hours dl {
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.hours dt {
  font-size: .715rem;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
}
.hours dd {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -.02em;
}
.note { font-size: .89rem; color: var(--muted); margin: 0; }

/* ==========================================================================
   Enquiry
   ========================================================================== */

.enq { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.enq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 800px) { .enq__grid { grid-template-columns: 1fr; } }

.enq h2 {
  font-variation-settings: 'opsz' 96;
  font-size: clamp(1.95rem, 4.4vw, 3.05rem);
  letter-spacing: -.022em;
  margin-bottom: .5em;
  max-width: 14ch;
}

.enquiry { display: grid; gap: 15px; }
.enquiry__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.enquiry__field { display: grid; gap: 6px; }
.enquiry label {
  font-size: .715rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.enquiry__optional { font-weight: 500; letter-spacing: .06em; opacity: .8; }
.enquiry input,
.enquiry textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--edge);
  border-radius: 2px;
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}
.enquiry textarea { min-height: 118px; resize: vertical; }
.enquiry input:focus, .enquiry textarea:focus { border-color: var(--accent); outline: none; }
.enquiry button[type="submit"] {
  justify-self: start;
  min-height: 48px;
  padding: 12px 30px;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--bg);
  font-family: inherit;
  font-size: .945rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}
.enquiry button[type="submit"]:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.enquiry button[disabled] { opacity: .6; cursor: default; }
.enquiry__done {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 40;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0;
}

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

.ftr {
  padding-block: clamp(46px, 6vw, 74px) 34px;
  font-size: .93rem;
}
.ftr__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 56px);
  padding-bottom: 34px;
}
@media (max-width: 760px) { .ftr__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ftr__grid { grid-template-columns: 1fr; gap: 28px; } }

.ftr h2 {
  font-family: 'Archivo', sans-serif;
  font-size: .715rem;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  letter-spacing: .17em;
}
.ftr address { font-style: normal; color: var(--muted); line-height: 1.7; max-width: 30ch; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: 0; }
.ftr li a { display: inline-block; padding: 10px 0; color: var(--muted); text-decoration: none; }
.ftr li a:hover { color: var(--accent); }
.ftr__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.ftr__brand svg { width: 34px; height: auto; }
.ftr__brand span {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 40;
  font-weight: 660;
  font-size: 1.1rem;
  letter-spacing: -.012em;
  line-height: 1.15;
}

.ftr__end {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: .855rem;
}

/* the OTLU Sites credit — quiet, at the foot, below their own line */
.built-by {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--muted);
  font-size: .78rem;
  opacity: .72;
  transition: opacity .15s ease;
}
.built-by { padding: 12px 0; }
.built-by:hover { opacity: 1; }
.built-by img { width: 84px; height: 18px; display: block; }
.built-by .on-dark { display: none; }
:root[data-theme="dark"] .built-by .on-light { display: none; }
:root[data-theme="dark"] .built-by .on-dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .built-by .on-light { display: none; }
  :root:not([data-theme="light"]) .built-by .on-dark { display: block; }
}

/* ==========================================================================
   Print — menus and address pages get printed, and a printed page with a
   navigation bar and a WhatsApp button on it looks careless.
   ========================================================================== */

@media print {
  .hdr, .tt, .burger, .btns, .btn, .rating, .enq, .skip, .built-by, .svcs__after { display: none !important; }
  html, body { background: #fff; color: #000; }
  body { font-size: 11pt; }
  section { padding-block: 14pt; }
  .band { background: #fff; color: #000; border-block: 1pt solid #000; }
  .band .lead, .step p { color: #000; }
  .step__n { background: #fff; color: #000; }
  .hero h1 { font-size: 26pt; }
  .hero__said { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; word-break: break-all; }
  .label { break-inside: avoid; }
}
