/* ==========================================================================
   DCL Kitchens — one stylesheet, no framework, no build step.

   Direction: "workshop ledger". The client's differentiator is that he MAKES
   the kitchens rather than reselling a catalogue, and his existing photography
   is supplier CGI that cannot carry a premium feel on its own. So the premium
   signal is carried structurally instead: measured type, named materials,
   specification tables, hairline rules, and generous space. The page should
   read like a maker's spec sheet, not a showroom flyer.
   ========================================================================== */

/* --------------------------------------------------------------- 1. fonts */
/* Gambetta, Indian Type Foundry, via Fontshare under the ITF Free Font
   Licence: free for commercial use and self-hosting. An old-style serif with
   real calligraphic character, chosen over the usual display faces because a
   maker's brand should not sound like every other site built this year. */
@font-face {
  font-family: 'Gambetta';
  src: url('/assets/fonts/gambetta-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gambetta';
  src: url('/assets/fonts/gambetta-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gambetta';
  src: url('/assets/fonts/gambetta-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
/* Switzer, Indian Type Foundry, via Fontshare under the ITF Free Font Licence.
   A neutral Swiss text face: it reads cleanly at 16px and leaves the character
   to Gambetta rather than competing with it. */
@font-face {
  font-family: 'Switzer';
  src: url('/assets/fonts/switzer-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('/assets/fonts/switzer-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('/assets/fonts/switzer-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* --------------------------------------------------------------- 2. tokens */
:root {
  /* Ground and ink. Warm rather than neutral: a cold grey reads as tech,
     and this is a timber workshop. */
  --bone:      #F5F2ED;
  --bone-2:    #EFEAE1;
  --paper:     #FFFDFA;
  --ink:       #12100E;
  --ink-2:     #3A342C;
  --muted:     #5C554C;
  --rule:      #DCD4C6;
  --rule-soft: #E8E2D7;
  --deep:      #22302A;   /* inverted bands: a deep kitchen green */
  --deep-2:    #1A2620;
  --brass:     #8F6F3E;   /* text-safe brass: 4.9:1 on --bone */
  --brass-lt:  #B08D57;   /* decorative brass, rules and marks only */

  --measure: 52ch;  /* ~620px, which measures ~69 real characters */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --shell: 1240px;
  --shell-narrow: 780px;

  --step--1: clamp(0.82rem, 0.79rem + 0.13vw, 0.89rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.38vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.72vw, 1.95rem);
  --step-3:  clamp(1.8rem, 1.53rem + 1.32vw, 2.75rem);
  --step-4:  clamp(2rem, 1.6rem + 2vw, 3.35rem);
  --step-5:  clamp(2.35rem, 1.75rem + 3vw, 4.45rem);

  --sans: 'Switzer', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Gambetta', ui-serif, Georgia, 'Times New Roman', serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------- 3. reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; text-wrap: balance; }
p, ul, ol, dl, table, figure { margin: 0; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--brass-lt); color: #fff; }

/* --------------------------------------------------------------- 4. layout */
.shell { width: min(100% - var(--gutter) * 2, var(--shell)); margin-inline: auto; }
/* A narrow reading column that keeps the SAME left edge as every full-width
   section. Centring it instead gives the page a ragged left margin that reads
   as an accident rather than a decision. */
.shell--narrow { width: min(100% - var(--gutter) * 2, var(--shell)); margin-inline: auto; }
.shell--narrow > * { max-width: var(--shell-narrow); }
.band { padding-block: clamp(3.5rem, 7vw, 7rem); }
.band--tight { padding-block: clamp(2.5rem, 4.5vw, 4rem); }
.band--alt { background: var(--bone-2); }
.band--paper { background: var(--paper); }
.band--deep { background: var(--deep); color: #EDE7DC; }
.band--deep h1, .band--deep h2, .band--deep h3 { color: #F7F3EA; }
.band--deep .lede, .band--deep p { color: #CFC7B8; }
.band--deep a { color: #F7F3EA; }
.band + .band--alt, .band--alt + .band { border-top: 1px solid var(--rule-soft); }

.stack > * + * { margin-top: 1.1em; }
.stack-lg > * + * { margin-top: clamp(2rem, 4vw, 3.25rem); }

/* --------------------------------------------------------------- 5. type */
.display { font-family: var(--serif); font-weight: 600; line-height: 1.0;
  letter-spacing: -0.016em; }
h1.display { font-size: var(--step-5); line-height: 0.98; }
h2.display { font-size: var(--step-4); line-height: 1.02; }
h3.display { font-size: var(--step-2); line-height: 1.2; letter-spacing: -0.008em; }
.h-sm { font-family: var(--sans); font-weight: 600; font-size: var(--step-1);
  letter-spacing: -0.01em; line-height: 1.25; }

.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-2); max-width: 56ch; }
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.05em; }
.prose > * + h2, .prose > * + h3 { margin-top: 1.9em; }
.prose > h1 + *, .prose > h2 + * { margin-top: 0.85em; }
.prose > h3 + * { margin-top: 0.6em; }
.prose a { text-decoration-thickness: 1px; text-underline-offset: 3px;
  text-decoration-color: var(--brass-lt); }
.prose a:hover { text-decoration-color: var(--ink); }
.muted { color: var(--muted); }
.small { font-size: var(--step--1); }
/* `ch` resolves against the element's own font size, so a small paragraph in a
   prose column needs its own cap or it runs half again as long as the body. */
.prose .small, .prose .form-note, .prose figcaption { max-width: 52ch; }

/* A tracked label, used ONLY as a table/figure caption or a rule heading —
   never floated above a page heading as an eyebrow. */
.label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.band--deep .label { color: #A79C88; }

/* --------------------------------------------------------------- 6. header */
.masthead {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bone) 97%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.masthead__bar { display: flex; align-items: center; gap: 1.5rem;
  padding-block: 0.85rem; }
.masthead__logo { flex: 0 0 auto; display: block; }
.masthead__logo img { height: 40px; width: auto; }
.masthead__spacer { flex: 1 1 auto; }
.nav { display: flex; align-items: center; gap: clamp(0.75rem, 1.6vw, 1.6rem); }
.nav a {
  text-decoration: none; font-size: 0.86rem; font-weight: 500;
  color: var(--ink-2); white-space: nowrap; padding-block: 0.35rem;
  border-bottom: 1.5px solid transparent;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--brass-lt); }
.nav a[aria-current='page'] { color: var(--ink); border-bottom-color: var(--ink); }
.masthead__tel {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  font-weight: 600; text-decoration: none; font-size: 0.92rem;
}
.masthead__tel:hover { color: var(--brass); }
.masthead__tel svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--brass); }

.navtoggle { display: none; }

/* --------------------------------------------------------------- 7. buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.85rem 1.5rem; border-radius: 2px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; cursor: pointer;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
              border-color 0.18s var(--ease);
}
.btn--primary { background: var(--ink); color: var(--bone); }
.btn--primary:hover { background: var(--deep); }
.btn--ghost { border-color: var(--rule); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper); }
.band--deep .btn--primary { background: var(--brass-lt); color: #17130C; }
.band--deep .btn--primary:hover { background: #C6A470; }
.band--deep .btn--ghost { border-color: #4A5A50; color: #EDE7DC; }
.band--deep .btn--ghost:hover { border-color: #EDE7DC; background: rgba(255,255,255,0.05); }
.btn svg { width: 16px; height: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* --------------------------------------------------------------- 8. hero */
.hero { position: relative; background: var(--deep); color: #EDE7DC; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(16,24,20,0.95) 0%, rgba(16,24,20,0.90) 26%,
                    rgba(16,24,20,0.60) 52%, rgba(16,24,20,0.16) 78%, rgba(16,24,20,0.06) 100%),
    linear-gradient(to top, rgba(16,24,20,0.55) 0%, rgba(16,24,20,0) 42%);
}
@media (max-width: 899px) {
  .hero__media::after {
    background: linear-gradient(to top, rgba(16,24,20,0.94) 12%, rgba(16,24,20,0.80) 48%,
                rgba(16,24,20,0.62) 100%);
  }
}
.hero__inner { position: relative; padding-block: clamp(4.5rem, 11vw, 9.5rem); }
.hero__body { max-width: 46ch; }
.hero h1 { max-width: 17ch; }
@media (max-width: 699px) { .hero h1 { max-width: 14ch; } }
.hero .btn--primary { background: var(--brass-lt); color: #17130C; }
.hero .btn--primary:hover { background: #C6A470; }
.hero .btn--ghost { border-color: rgba(237,231,220,0.42); color: #EDE7DC; }
.hero .btn--ghost:hover { border-color: #EDE7DC; background: rgba(255,255,255,0.07); }
.hero h1 { color: #FBF8F2; }
.hero .lede { color: #D3CCBE; margin-top: 1.4rem; max-width: 46ch; }
.hero .btn-row { margin-top: 2.2rem; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 0 clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(237,231,220,0.22);
}
.hero__fact { padding-block: 0.4rem; }
.hero__fact dt { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #A79C88; }
.hero__fact dd { margin: 0.3rem 0 0; font-family: var(--serif); font-weight: 500;
  font-size: var(--step-1); color: #F2EDE3; }

/* --------------------------------------------------------------- 9. grids */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .split--wide-left { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
  .split--wide-right { grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); }
  .split--sticky > :first-child { position: sticky; top: 6rem; }
  /* A media column that fills the height of the prose beside it, so a short
     landscape photograph cannot leave half the section empty. */
  .split--media { align-items: stretch; }
  .split--media > .split__media { display: flex; min-height: 100%; }
  .split--media > .split__media picture { display: block; width: 100%; }
  .split--media > .split__media img { width: 100%; height: 100%; object-fit: cover; }
}
.split__media img { background: var(--bone-2); }

.cols { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 640px) { .cols--2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 860px) { .cols--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 640px) and (max-width: 859px) { .cols--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 900px) { .cols--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (min-width: 560px) and (max-width: 899px) { .cols--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* -------------------------------------------------------- 10. numbered steps
   The sequence carries real information here (a kitchen is made in order), so
   the numbers are content, not decoration. */
.steps { counter-reset: step; border-top: 1px solid var(--rule); }
.step { counter-increment: step; display: grid; gap: 0.35rem 1.75rem;
  padding-block: clamp(1.5rem, 3vw, 2.25rem); border-bottom: 1px solid var(--rule); }
@media (min-width: 720px) {
  .step { grid-template-columns: 3.5rem minmax(0, 22ch) minmax(0, 1fr); align-items: baseline; }
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-weight: 600;
  font-size: var(--step-1); color: var(--brass); line-height: 1;
}
.step__title { font-weight: 600; font-size: var(--step-1); letter-spacing: -0.01em; }
.step__body { color: var(--muted); max-width: 58ch; }
.step__meta { display: block; margin-top: 0.5rem; }

/* --------------------------------------------------------- 11. spec tables */
.spec { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.spec caption { text-align: left; padding-bottom: 0.9rem; }
.spec th, .spec td { text-align: left; padding: 0.85rem 1rem 0.85rem 0;
  border-bottom: 1px solid var(--rule); vertical-align: top; }
.spec thead th { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); border-bottom-color: var(--ink);
  padding-bottom: 0.6rem; }
.spec tbody th { font-weight: 600; }
.spec td:last-child, .spec th:last-child { padding-right: 0; }
.spec .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.table-scroll { overflow-x: auto; }

/* ------------------------------------------------------------ 12. figures */
.figure { margin: 0; }
.figure img { width: 100%; background: var(--bone-2); }
.figure figcaption { margin-top: 0.7rem; font-size: var(--step--1); color: var(--muted); }
.figure--frame img { border: 1px solid var(--rule); }

.gallery { display: grid; gap: clamp(0.75rem, 1.6vw, 1.25rem); }
@media (min-width: 620px) { .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 980px) { .gallery { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.gallery .figure img { aspect-ratio: 4 / 3; object-fit: cover; }

/* ------------------------------------------------------------ 13. project */
.project { display: block; text-decoration: none; }
.project img { aspect-ratio: 4 / 3; object-fit: cover; background: var(--bone-2);
  transition: filter 0.3s var(--ease); }
.project:hover img { filter: brightness(1.04); }
.project__name { margin-top: 0.85rem; font-weight: 600; font-size: var(--step-1);
  letter-spacing: -0.01em; }
.project:hover .project__name { text-decoration: underline;
  text-decoration-color: var(--brass-lt); text-underline-offset: 3px; }
.project__meta { margin-top: 0.25rem; font-size: var(--step--1); color: var(--muted); }
.band--deep .project__meta { color: #A79C88; }
.project__meta .sep { padding-inline: 0.45em; color: inherit; }


/* ------------------------------------------------------------- 14. quote */
.quote { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem); }
.quote blockquote { margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: var(--step-2); line-height: 1.35; letter-spacing: -0.014em; max-width: 34ch; }
.quote figcaption { margin-top: 1rem; font-size: var(--step--1); color: var(--muted); }

/* -------------------------------------------------------------- 15. forms */
.field { display: block; margin-bottom: 1.15rem; }
.field > span { display: block; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 0.4rem; }
.field .hint { display: block; font-weight: 400; color: var(--muted);
  font-size: 0.78rem; margin-top: 0.15rem; }
.input, .select, .textarea {
  width: 100%; padding: 0.75rem 0.85rem; background: var(--paper);
  border: 1px solid var(--rule); border-radius: 2px; font-size: 0.95rem;
}
.input:hover, .select:hover, .textarea:hover { border-color: #C6BCA9; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--ink); outline-offset: 1px; }
.textarea { min-height: 8rem; resize: vertical; }
.choice-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: block; padding: 0.55rem 0.95rem; border: 1px solid var(--rule);
  border-radius: 2px; font-size: 0.88rem; background: var(--paper); cursor: pointer; }
.choice input:checked + span { border-color: var(--ink); background: var(--ink);
  color: var(--bone); }
.choice input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 2px; }
.form-note { font-size: var(--step--1); color: var(--muted); }

/* --------------------------------------------------------------- 16. faq */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem;
  padding-block: 1.15rem; cursor: pointer; font-weight: 600; font-size: var(--step-1);
  letter-spacing: -0.008em; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: 0 0 auto; width: 13px; height: 13px; margin-top: 0.5rem;
  border-right: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg); transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > .prose { padding-bottom: 1.35rem; color: var(--muted); }

/* ------------------------------------------------------------- 17. areas */
.areas { display: flex; flex-wrap: wrap; gap: 0.4rem 0.5rem; }
.area { font-size: 0.86rem; padding: 0.35rem 0.7rem; border: 1px solid var(--rule);
  border-radius: 2px; color: var(--ink-2); background: var(--paper); }
.band--deep .area { border-color: #3E4C44; background: transparent; color: #D3CCBE; }

/* ------------------------------------------------------------ 18. callout */
.callout { border: 1px solid var(--rule); background: var(--paper);
  padding: clamp(1.25rem, 2.5vw, 1.9rem); border-radius: 2px; }
.callout--deep { background: var(--deep); border-color: var(--deep); color: #EDE7DC; }

/* ------------------------------------------------------- 19. demo notice */
.demo {
  background: var(--ink); color: #E6DFD2; font-size: 0.8rem; line-height: 1.5;
  padding-block: 0.6rem;
}
.demo a { color: #E8C58A; }
.demo strong { color: #fff; font-weight: 600; }
.demo p { margin: 0; }

/* ------------------------------------------------------------- 20. footer */
.foot { background: var(--deep-2); color: #BDB4A4; padding-block: clamp(3rem, 6vw, 4.5rem);
  font-size: 0.92rem; }
.foot a { color: #D8D0C1; text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot h2, .foot h3 { color: #F0EADF; }
.foot__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 700px) { .foot__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .foot__grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; } }
.foot__logo { height: 44px; width: auto; margin-bottom: 1.25rem; }
.foot__title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #9C9382; margin-bottom: 0.9rem; }
.foot ul { list-style: none; padding: 0; }
.foot ul:not(.areas) li + li { margin-top: 0.5rem; }
.foot .areas { display: flex; flex-wrap: wrap; gap: 0.35rem 0.4rem; }
.foot .areas .area { border-color: #3B4841; background: transparent; color: #BDB4A4;
  font-size: 0.8rem; padding: 0.22rem 0.55rem; }
.foot__base { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid #33403A; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  justify-content: space-between; font-size: 0.82rem; color: #A69C89; }
address { font-style: normal; }

/* --------------------------------------------------------- 21. breadcrumbs */
.crumbs { font-size: var(--step--1); color: var(--muted); padding-block: 1.1rem;
  border-bottom: 1px solid var(--rule-soft); }
.crumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.crumbs li + li::before { content: '/'; margin-right: 0.45rem; color: var(--rule); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ------------------------------------------------------------ 22. utility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--bone); padding: 0.7rem 1.1rem;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }
.rule { border: 0; border-top: 1px solid var(--rule); margin-block: 0; }

/* -------------------------------------------------- 23. one authored moment
   The hero settles once on load. Nothing else animates on scroll: a repeated
   entrance on every band is the tell this build is avoiding. */
@keyframes settle {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hero__body > * { animation: settle 0.7s var(--ease) both; }
.hero__body > *:nth-child(2) { animation-delay: 0.07s; }
.hero__body > *:nth-child(3) { animation-delay: 0.13s; }
.hero__facts { animation: settle 0.7s var(--ease) 0.18s both; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------------------------------------------------------- 24. mobile nav */
@media (max-width: 1119px) {
  .masthead__bar { flex-wrap: wrap; gap: 0.75rem 1rem; }
  .nav {
    order: 3; width: 100%; overflow-x: auto; gap: 1.1rem;
    padding-top: 0.6rem; border-top: 1px solid var(--rule-soft);
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .masthead__logo img { height: 34px; }
}
@media (max-width: 520px) {
  .masthead__tel span { display: none; }
  .masthead__tel::after { content: 'Call'; }
}

/* --------------------------------------------- 25. placeholder figure mark
   Any number the owner has not supplied yet renders inside this, so a demo
   figure can never be mistaken for a quote. */
.tbc {
  text-decoration: none;
  border-bottom: 1px dashed var(--brass);
  cursor: help;
}
.tbc::after {
  content: '*'; font-size: 0.75em; vertical-align: super;
  color: var(--brass); margin-left: 1px;
}
.band--deep .tbc { border-bottom-color: var(--brass-lt); }
.band--deep .tbc::after { color: var(--brass-lt); }
