/* ==========================================================================
   Car Repair Sàrl — landing page
   Modernist: white ground, Archivo, red accent, square corners, 2px rules.
   Tokens are the source of truth; every text/background pair below is at or
   above WCAG AA contrast (4.5:1 body, 3:1 large text and UI edges).
   ========================================================================== */

/* — Archivo, self-hosted variable font (400–800) —
   One file, subset to the glyphs this site uses. Regenerate with
   `python3 tools/subset-fonts.py`; the build fails if a page needs a glyph
   that is not in it. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('fonts/archivo-subset.de40c534.woff2') format('woff2');
}

:root {
  color-scheme: light;

  --color-bg: #ffffff;
  --color-text: #201e1d;

  /* Dark plate: the header and any surface the logo sits on. The logo mark is
     white + copper, so it needs a dark backing to read at all. */
  --color-plate: #1a1918;
  --color-plate-text: #ffffff;      /* 17.56:1 on the plate */
  --color-plate-muted: #b3aeaa;     /* 7.99:1 on the plate */

  /* Copper, taken from the logo. The bright value fills large shapes and reads
     on the dark plate; the deeper values carry text on white, where 4.5:1 is
     required and the logo copper itself only reaches 3.37:1. */
  --color-accent: #b8804f;          /* logo copper — fills, and text on plate
                                       at 5.22:1 */
  --color-accent-text: #9c5f33;     /* 5.12:1 on white, and 5.12:1 for white
                                       text on top of it */
  --color-accent-deep: #7d4a24;     /* 7.30:1 — hover / pressed */

  /* The logo's bronze is not flat: it is a sheen, dark at the letter edges
     (#91603c) and bright through the middle (#be8b63). Buttons reuse that,
     at the same hue (26°), in two ramps.

     On white the button carries WHITE text, so the brightest stop is the one
     that must clear 4.5:1 — hence the whole ramp is darkened. On the dark
     plate the button carries DARK text, so the darkest stop governs and the
     ramp sits where the logo's own bronze does. */
  --bronze-hi: #a36737;             /* 4.61:1 for white text */
  --bronze-lo: #7d4c25;             /* 7.20:1 for white text */
  --gradient-bronze:
    linear-gradient(100deg, var(--bronze-lo) 0%, var(--bronze-hi) 46%, var(--bronze-lo) 100%);
  --gradient-bronze-hover:
    linear-gradient(100deg, #69401f 0%, #89562f 46%, #69401f 100%);
  --gradient-bronze-active:
    linear-gradient(100deg, #5a361b 0%, #764a28 46%, #5a361b 100%);
  /* dark text on bronze, used on the plate */
  --gradient-bronze-bright:
    linear-gradient(100deg, #b87d4f 0%, #d59d71 46%, #b87d4f 100%);

  --color-neutral-100: #f8f4f4;
  --color-neutral-400: #bab6b6;
  --color-neutral-700: #605d5d;     /* 6.52:1 on white */
  --color-neutral-800: #444141;     /* 9.26:1 on neutral-100 */

  /* 3.26:1 on white: structural rules read as real edges, not hairlines. */
  --color-divider: color-mix(in srgb, #201e1d 50%, transparent);
  --color-open: #157f43;            /* 5.06:1 on white */

  --font-heading: 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --gutter-left: max(var(--gutter), env(safe-area-inset-left));
  --gutter-right: max(var(--gutter), env(safe-area-inset-right));
  --shell: 1560px;

  /* Photography treatment. Set both to `none` for colour. */
  --photo-filter: grayscale(1) contrast(1.06);
  --map-filter: grayscale(1) contrast(1.05);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

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

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: color-mix(in srgb, #b8804f 30%, transparent);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  scroll-margin-top: 88px;
}

p { margin: 0; text-wrap: pretty; }
dl, dd, dt { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }

a { color: var(--color-accent-text); text-underline-offset: 3px; }

img, picture { display: block; max-width: 100%; }

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--color-accent-deep);
  outline-offset: 2px;
}
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

.nowrap { white-space: nowrap; }

.skip-link {
  /* fixed, not absolute: focusable from any scroll position */
  position: fixed; top: 0; left: 0; z-index: 60;
  padding: 12px 18px;
  background: var(--color-text); color: #ffffff;
  font-family: var(--font-heading); font-weight: 800; font-size: 14px;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform .2s var(--ease);
}
.skip-link:focus-visible { transform: none; }

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 44px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 800;
  font-size: 14px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 2px solid transparent; border-radius: 0;
  padding: 8px 16px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { display: block; }
.btn-sm { min-height: 36px; padding: 6px 12px; font-size: 13px; }
.btn-lg { min-height: 52px; padding: 14px 22px; font-size: 15px; }

.btn-primary {
  /* background-color is the fallback and what contrast tooling measures; the
     gradient paints the sheen on top. Both clear 4.5:1 for white text. */
  background-color: var(--bronze-hi);
  background-image: var(--gradient-bronze);
  color: #ffffff;
}
.btn-primary:hover { background-color: #89562f; background-image: var(--gradient-bronze-hover); }
.btn-primary:active { background-color: #764a28; background-image: var(--gradient-bronze-active); }

.btn-secondary { border-color: var(--color-divider); color: var(--color-text); }
.btn-secondary:hover {
  background: color-mix(in srgb, var(--color-text) 7%, transparent);
  border-color: var(--color-text);
}
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }

/* — motion primitives — */
@keyframes cr-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes cr-wipe { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes cr-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes cr-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }
@keyframes cr-spin { to { transform: rotate(1turn); } }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Content is never trapped behind JS. */
.no-js .reveal { opacity: 1; transform: none; }

.progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--color-accent);
  z-index: 50;
}

/* Hazard rule — a body-shop nod, used once, as a section break. */
.hazard {
  height: 10px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-accent) 0 14px,
    var(--color-plate) 14px 28px
  );
  border-bottom: 2px solid var(--color-divider);
}

/* — private inauguration campaign — */
.event {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--color-plate); color: var(--color-plate-text);
  border-bottom: 2px solid var(--color-accent);
}
/* Oversized outlined date gives the panel an event-poster feel without adding
   another image download. It is decorative; the real date remains in <time>. */
.event::before {
  content: '18';
  position: absolute; z-index: -1; right: -0.04em; bottom: -0.35em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(184, 128, 79, .17);
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(220px, 34vw, 540px); line-height: 1;
  letter-spacing: -0.09em;
  pointer-events: none;
}
.event-inner {
  max-width: var(--shell); margin: 0 auto;
  padding: clamp(46px, 7vw, 104px) var(--gutter-right) clamp(52px, 7vw, 112px) var(--gutter-left);
  display: grid; grid-template-columns: minmax(220px, .64fr) minmax(0, 1.36fr);
  align-items: center; gap: clamp(42px, 8vw, 128px);
}
.event-date,
.event-copy { min-width: 0; }
.event-date {
  width: min(100%, 330px);
  padding: clamp(22px, 3vw, 38px);
  border: 2px solid var(--color-accent);
  box-shadow: clamp(8px, 1.2vw, 16px) clamp(8px, 1.2vw, 16px) 0 rgba(184, 128, 79, .22);
  background: rgba(26, 25, 24, .82);
}
.event-date time {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  column-gap: clamp(12px, 2vw, 24px);
  font-family: var(--font-heading); font-weight: 800; line-height: .85;
  font-variant-numeric: tabular-nums;
}
.event-day {
  grid-row: 1 / 3;
  font-size: clamp(78px, 10vw, 142px); letter-spacing: -.08em;
  color: var(--color-plate-text);
}
.event-month {
  align-self: end;
  font-size: clamp(25px, 3vw, 42px); letter-spacing: .04em;
  color: var(--color-accent);
}
.event-year {
  align-self: start;
  margin-top: 9px;
  font-size: clamp(13px, 1.4vw, 18px); letter-spacing: .2em;
  color: var(--color-plate-muted);
}
.event-date p {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .3);
  color: var(--color-plate-muted);
  font-size: 12px; font-weight: 700; line-height: 1.4;
  letter-spacing: .11em; text-transform: uppercase;
}
.event-kicker {
  margin-bottom: clamp(12px, 1.8vw, 20px);
  color: var(--color-accent);
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
}
.event h1,
.event h2 {
  max-width: none;
  color: var(--color-plate-text);
  font-size: clamp(42px, 7vw, 108px); line-height: .9;
  letter-spacing: -.045em; text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}
.event-lede {
  max-width: 50ch; margin-top: clamp(20px, 2.8vw, 34px);
  color: #d1cecc;
  font-size: clamp(16px, 1.5vw, 21px); line-height: 1.5;
}
.event-highlights {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-top: clamp(24px, 3.2vw, 38px);
  border-top: 1px solid rgba(255, 255, 255, .28);
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}
.event-highlights li {
  display: flex; align-items: center; gap: 12px;
  min-width: 0; padding: 18px 20px 18px 0;
  font-weight: 700;
}
.event-highlights li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .28);
}
.event-highlights svg { flex: none; color: var(--color-accent); }
.event-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px;
  margin-top: clamp(26px, 3vw, 38px);
}
.event-form {
  position: relative;
  max-width: 860px;
  margin-top: clamp(26px, 3vw, 38px);
  padding: clamp(20px, 2.7vw, 32px);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .3);
  border-top: 4px solid var(--color-accent);
}
.event-form-title {
  margin: 0 0 20px;
  color: var(--color-plate-text);
  font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -.01em;
}
.event-form-grid {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr) minmax(120px, .55fr);
  gap: 14px;
}
.event-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.event-field label {
  color: var(--color-plate-muted);
  font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.event-field input {
  width: 100%; min-height: 48px; padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .42); border-radius: 0;
  background: rgba(0, 0, 0, .28); color: var(--color-plate-text);
  font: inherit; font-size: 16px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.event-field input:hover { border-color: rgba(255, 255, 255, .7); }
.event-field input:focus-visible {
  border-color: var(--color-accent); background: rgba(0, 0, 0, .45);
  outline: 2px solid var(--color-accent); outline-offset: 1px;
}
.event-field-guests input { font-variant-numeric: tabular-nums; }
.event-privacy {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 16px;
  color: var(--color-plate-muted); font-size: 12px; line-height: 1.45;
}
.event-privacy input {
  width: 18px; height: 18px; flex: none; margin: 0;
  accent-color: var(--color-accent);
}
.event-privacy a { color: var(--color-plate-text); }
.event-trap {
  position: absolute !important; left: -10000px !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}
.event-form-actions {
  display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center;
  gap: 14px 18px; margin-top: 20px;
}
.event-form-actions > div { min-width: 0; }
.event-rsvp {
  min-height: 52px; padding: 13px 20px;
  background-color: #d59d71; background-image: var(--gradient-bronze-bright);
  color: var(--color-plate);
}
.event-rsvp:hover { background: #e2ad83; }
.event-rsvp:active { background: var(--color-accent); }
.event-rsvp:disabled { cursor: wait; opacity: .65; }
.event-rsvp::after {
  display: none; width: 16px; height: 16px; flex: none;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  content: '';
}
.event-form[aria-busy='true'] .event-rsvp::after {
  display: block; animation: cr-spin .75s linear infinite;
}
.event-form[aria-busy='true'] .event-rsvp svg { display: none; }
.event-link {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  color: var(--color-plate-text); text-decoration: none;
  font-weight: 800;
  border-bottom: 2px solid var(--color-accent);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.event-link:hover { color: var(--color-accent); border-bottom-color: currentColor; }
.event-rsvp-note {
  max-width: 62ch;
  color: var(--color-plate-muted); font-size: 12px; line-height: 1.5;
}
.event-rsvp-note + .event-rsvp-note { margin-top: 6px; }
.event-form-status {
  display: none; margin-top: 18px; padding: 14px 16px;
  border-left: 4px solid var(--color-accent);
  background: rgba(255, 255, 255, .09);
  color: var(--color-plate-text); font-weight: 700;
}
.event-form-status:not(:empty) { display: block; }
.event-form-status[data-state='error'] { border-left-color: #e17575; }
.event-form-status[data-state='success'] { border-left-color: #65b985; }
.event-form-status[data-state='editing'] { border-left-color: #e1b06e; }
.event-form-status[data-state='closed'] { border-left-color: #e1b06e; }
.event-form[data-closed='true'] :is(input, button):disabled { cursor: not-allowed; opacity: .55; }
.event-existing {
  margin-top: 18px; padding: 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-left: 4px solid #e1b06e;
  background: rgba(255, 255, 255, .1);
  color: var(--color-plate-text);
}
.event-existing[hidden] { display: none; }
.event-existing p { margin: 0; font-weight: 750; line-height: 1.5; }
.event-existing-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.event-existing-edit { background: var(--color-accent); color: #181512; }
.event-existing-cancel {
  border: 1px solid rgba(255, 255, 255, .45);
  background: transparent; color: var(--color-plate-text);
}
.event-cancel-dialog {
  width: min(calc(100% - 32px), 560px); max-height: min(720px, calc(100dvh - 32px));
  margin: auto; padding: 0; overflow: auto; overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, .22); border-top: 4px solid #d88b72;
  background: #292522; color: var(--color-plate-text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .58);
}
.event-cancel-dialog::backdrop {
  background: rgba(10, 9, 8, .78);
  backdrop-filter: blur(4px);
}
.event-cancel-dialog-inner { padding: clamp(24px, 5vw, 42px); }
.event-cancel-dialog-title {
  margin: 0 0 14px; color: var(--color-plate-text);
  font-size: clamp(24px, 4vw, 36px); line-height: 1.05; text-wrap: balance;
}
.event-cancel-dialog p {
  max-width: 52ch; color: var(--color-plate-muted); line-height: 1.65; text-wrap: pretty;
}
.event-cancel-dialog-actions {
  display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px;
  margin-top: 26px;
}
.event-cancel-dialog-dismiss {
  border: 1px solid rgba(255, 255, 255, .45);
  background: transparent; color: var(--color-plate-text);
}
.event-cancel-dialog-confirm { background: #d88b72; color: #181512; }
.event-cancel-dialog-dismiss:hover { border-color: var(--color-plate-text); background: rgba(255, 255, 255, .08); }
.event-cancel-dialog-confirm:hover { background: #e8a68f; }
.event-form[data-mode='editing'] input[readonly] {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  color: var(--color-plate-muted);
}
.event-form.is-complete .event-form-grid,
.event-form.is-complete .event-privacy,
.event-form.is-complete .event-form-actions { display: none; }
.event :focus-visible { outline-color: var(--color-accent); }
.event-standalone { min-height: calc(100vh - 78px); display: grid; align-items: center; }
.event-page .site-header { position: relative; }
.event-account { display: flex; align-items: center; gap: 14px; color: var(--color-plate-muted); font-size: 12px; }
.event-account form { margin: 0; }
.event-account button {
  min-height: 36px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.35);
  background: transparent; color: var(--color-plate-text); font: inherit; cursor: pointer;
}

/* — header — */
/* The header is a dark plate: the logo is a white-and-copper mark and would be
   invisible on white. It also gives the white page a lid to sit under. */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 24px;
  padding: 10px var(--gutter-right) 10px var(--gutter-left);
  padding-top: max(10px, env(safe-area-inset-top));
  background: var(--color-plate);
  color: var(--color-plate-text);
  border-bottom: 2px solid var(--color-accent);
}
.brand { display: flex; align-items: center; margin-right: auto; min-width: 0; }
.brand img {
  /* The mark carries a second line of type ("carrosserie peinture"); below
     ~52px that line stops being readable. */
  height: 56px; width: auto;
}

.lang { display: flex; align-items: center; gap: 2px; }
.lang a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; min-height: 34px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--color-plate-muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang a:hover { color: var(--color-plate-text); background: rgba(255, 255, 255, .12); }
.lang a[aria-current='page'] { background: var(--color-accent); color: var(--color-plate); }

.header-tel {
  padding: 8px 0;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--color-plate-text); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.header-tel:hover { color: var(--color-accent); border-bottom-color: currentColor; }
.site-header :focus-visible { outline-color: var(--color-accent); }

/* — hero — */
.hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  border-bottom: 2px solid var(--color-divider);
}
.hero-copy {
  padding: clamp(44px, 7vw, 96px) var(--gutter-right) clamp(36px, 4vw, 64px) var(--gutter-left);
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
}
.hero-kicker {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-neutral-700);
  animation: cr-rise .7s var(--ease) both;
}
.hero-kicker .place { color: var(--color-accent-text); }
.hero h1 {
  /* .96, not .9: uppercase "SÀRL" needs room for the grave accent, which
     otherwise touches the line above. */
  font-size: clamp(40px, 7vw, 104px); line-height: 0.96; letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: clamp(14px, 2vw, 24px) 0 0;
  animation: cr-rise .9s var(--ease) .08s both;
}
.hero-business-name { display: block; }
.hero-service-title {
  display: block;
  max-width: 32ch;
  margin-top: clamp(14px, 1.8vw, 24px);
  color: var(--color-neutral-700);
  font-size: clamp(17px, 1.65vw, 26px);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}
.hero-rule {
  height: 2px; background: var(--color-divider);
  margin: clamp(20px, 2.6vw, 34px) 0;
  transform-origin: left;
  animation: cr-wipe .9s var(--ease) .3s both;
}
.hero-lede {
  font-size: clamp(16px, 1.35vw, 20px); line-height: 1.5; max-width: 44ch;
  margin: 0 0 clamp(22px, 3vw, 32px);
  animation: cr-rise .9s var(--ease) .38s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: cr-rise .9s var(--ease) .46s both;
}
.hero-media {
  position: relative; overflow: hidden;
  min-height: clamp(300px, 46vh, 620px);
  border-left: 2px solid var(--color-divider);
  background: var(--color-neutral-100);
}
.hero-media picture { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: var(--photo-filter);
  animation: cr-zoom 1.6s var(--ease) both;
  transition: filter .7s var(--ease), transform .7s var(--ease);
}
/* Colour comes back where you touch it. The shop repaints cars; the page
   repaints itself. Hover only — never the sole carrier of information. */
@media (hover: hover) {
  .hero-media:hover img { filter: none; transform: scale(1.02); }
}
/* Rotated marker along the photo edge — cheap, and unmistakably this shop. */
.hero-edge-label {
  position: absolute; z-index: 2; bottom: clamp(16px, 3vw, 32px); left: 0;
  writing-mode: vertical-rl; transform: rotate(180deg);
  padding: 10px 6px;
  background: var(--color-bg);
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  white-space: nowrap;
}

/* — contact strip — */
.strip { border-bottom: 2px solid var(--color-divider); }
.strip-grid {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.strip-cell {
  padding: clamp(20px, 2.4vw, 32px) var(--gutter);
  border-right: 2px solid var(--color-divider);
  min-width: 0;
}
.strip-cell:last-child { border-right: 0; }
.label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-accent-text); margin-bottom: 10px;
}
.strip-cell address { font-size: 16px; line-height: 1.45; }
.strip-link {
  position: relative; display: inline-block;
  font-size: 16px; color: var(--color-text); text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 2px solid var(--color-divider);
  transition: color .2s var(--ease);
}
.strip-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--color-accent-text);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.strip-link:hover { color: var(--color-accent-text); }
.strip-link:hover::after, .strip-link:focus-visible::after { transform: scaleX(1); }

.status { display: flex; align-items: center; gap: 9px; font-size: 16px; }
.status-dot {
  width: 10px; height: 10px; flex: none;
  background: var(--color-neutral-700);
  animation: cr-pulse 2.4s ease-in-out infinite;
}
.status[data-open='true'] .status-dot { background: var(--color-open); }

/* — hours + services — */
.two-col {
  max-width: var(--shell); margin: 0 auto;
  padding: clamp(44px, 6vw, 88px) var(--gutter-right) clamp(44px, 6vw, 88px) var(--gutter-left);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 80px);
}
.section-title {
  font-size: clamp(24px, 3vw, 42px); letter-spacing: -0.02em; text-transform: uppercase;
  margin: 0 0 clamp(20px, 2.6vw, 32px);
}
.section-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline;
  gap: 12px; margin: 0 0 clamp(20px, 2.6vw, 32px);
}
.section-head .section-title { margin: 0; }
.section-hint {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-neutral-700);
}
.section-hint.accent { color: var(--color-accent-text); }

.hours { display: flex; flex-direction: column; }
.hours-row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0;
  border-top: 2px solid var(--color-divider);
  font-size: 16px;
}
.hours-row:last-child { border-bottom: 2px solid var(--color-divider); }
.hours-row.is-closed { color: var(--color-neutral-700); }
.hours-row dd {
  font-family: var(--font-heading); font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* — services accordion — */
.services { display: flex; flex-direction: column; }
.service { border-top: 2px solid var(--color-divider); }
.services .service:last-child { border-bottom: 2px solid var(--color-divider); }
.service-heading { margin: 0; font-size: inherit; letter-spacing: normal; }
.service-toggle {
  display: grid; grid-template-columns: 52px 1fr 28px; gap: 14px; align-items: baseline;
  width: 100%; padding: clamp(14px, 1.6vw, 22px) 0;
  font: inherit; text-align: left; color: inherit;
  background: transparent; border: 0; border-radius: 0; cursor: pointer;
  transition: padding-left .25s var(--ease);
}
.service-toggle:hover { padding-left: 10px; }
.service-num {
  font-family: var(--font-heading); font-weight: 800; font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent-text);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.service-name {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(18px, 1.9vw, 27px); letter-spacing: -0.015em;
  transition: color .25s var(--ease);
  min-width: 0; overflow-wrap: break-word;
}
.service-plus {
  justify-self: end; width: 16px; height: 2px;
  background: var(--color-text); position: relative;
  transition: background .25s var(--ease);
}
.service-plus::after {
  content: ''; position: absolute; inset: 0; background: currentColor;
  transform: rotate(90deg); transform-origin: center;
  transition: transform .35s var(--ease);
}
.service-detail {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .45s var(--ease), opacity .35s ease;
}
.service-detail p {
  margin: 0 0 clamp(14px, 1.6vw, 22px);
  padding-left: 66px;
  font-size: 15px; line-height: 1.55; max-width: 52ch;
  color: var(--color-neutral-700);
}
.service-page-link {
  display: inline-flex; align-items: center;
  min-height: 36px; margin: 0 0 clamp(16px, 1.8vw, 24px) 66px;
  color: var(--color-accent-text); font-weight: 800; text-decoration: none;
  border-bottom: 2px solid currentColor;
}
.service-page-link::after { content: '→'; margin-left: 9px; transition: transform .2s var(--ease); }
.service-page-link:hover::after { transform: translateX(4px); }
.service.is-open .service-name { color: var(--color-accent-text); }
.service.is-open .service-num {
  background: var(--color-accent-text); color: #ffffff;
  padding: 0 4px; margin-left: -4px;
}
.service.is-open .service-plus { background: var(--color-accent-text); }
.service.is-open .service-plus::after { transform: rotate(0deg); }
.service.is-open .service-detail { opacity: 1; }
/* Without JS every panel is open: the copy stays readable and indexable. */
.no-js .service-detail { max-height: none; opacity: 1; }
.no-js .service-plus { display: none; }

/* — gallery — */
.gallery-section {
  border-top: 2px solid var(--color-divider);
  padding: clamp(44px, 6vw, 88px) var(--gutter-right) clamp(44px, 6vw, 88px) var(--gutter-left);
  max-width: var(--shell); margin: 0 auto;
}
.gallery {
  /* Fixed column counts, not auto-fit: six tiles must fill whole rows, or the
     container's divider colour shows through as a grey block. */
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--color-divider); padding: 2px;
}
@media (max-width: 1000px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .gallery { grid-template-columns: 1fr; } }
.shot {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  background: var(--color-bg);
  filter: var(--photo-filter);
  transition: filter .5s ease, opacity .8s var(--ease), transform .8s var(--ease);
}
.shot picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: hover) {
  .shot:hover { filter: none; }
  .shot:hover .shot-index { background: var(--color-accent-text); }
}
.shot-index {
  position: absolute; top: 0; left: 0; z-index: 2;
  padding: 4px 8px;
  background: var(--color-text); color: #ffffff;
  font-family: var(--font-heading); font-weight: 800; font-size: 11px;
  font-variant-numeric: tabular-nums; letter-spacing: 0.08em;
}
.shot-empty {
  height: 100%;
  display: grid; place-items: center; padding: 16px 16px 16px 44px;
  background: var(--color-neutral-100);
  outline: 1px dashed var(--color-neutral-400); outline-offset: -8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-neutral-800); text-align: center;
}

/* — quote request — */
.quote-section {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 104px) var(--gutter-right) clamp(56px, 8vw, 116px) var(--gutter-left);
  border-top: 2px solid var(--color-divider);
  scroll-margin-top: 76px;
}
.quote-copy { position: sticky; top: 94px; }
.quote-copy .label { margin-bottom: 16px; color: var(--color-accent-text); }
.quote-copy h2 {
  max-width: 10ch;
  font-size: clamp(36px, 5vw, 74px);
  line-height: .98;
  text-transform: uppercase;
}
.quote-copy > p:last-child {
  max-width: 42ch;
  margin-top: 24px;
  color: var(--color-neutral-700);
  font-size: 16px;
}
.quote-form {
  position: relative;
  padding: clamp(22px, 3vw, 40px);
  border: 2px solid var(--color-divider);
  background: var(--color-neutral-100);
}
.quote-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}
.quote-field { min-width: 0; }
.quote-field-wide { grid-column: 1 / -1; }
.quote-field label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}
.quote-field :is(input, textarea) {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--color-neutral-700);
  border-radius: 0;
  padding: 10px 12px;
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
}
.quote-field textarea { min-height: 150px; resize: vertical; }
.quote-field input[type='file'] { min-height: 52px; padding: 6px; }
.quote-field input[type='file']::file-selector-button {
  min-height: 36px;
  margin-right: 12px;
  border: 0;
  border-radius: 0;
  padding: 7px 12px;
  background: var(--color-text);
  color: #ffffff;
  font: 800 12px/1.2 var(--font-heading);
  cursor: pointer;
}
.quote-field :is(input, textarea):hover { border-color: var(--color-text); }
.quote-field :is(input, textarea):focus-visible {
  border-color: var(--color-accent-deep);
  outline: 3px solid color-mix(in srgb, var(--color-accent) 45%, transparent);
  outline-offset: 1px;
}
.quote-help { margin-top: 7px; color: var(--color-neutral-700); font-size: 12px; }
.quote-privacy {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 24px;
  color: var(--color-neutral-800);
  font-size: 13px;
  cursor: pointer;
}
.quote-privacy input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--color-accent-deep); }
.quote-actions {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 16px 20px;
  align-items: center;
  margin-top: 26px;
}
.quote-status {
  min-width: 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
  color: var(--color-neutral-800);
  font-weight: 700;
}
.quote-status:empty { display: none; }
.quote-status[data-state='error'] { border-left-color: #b53e3e; }
.quote-status[data-state='success'] { border-left-color: var(--color-open); }
.quote-form[aria-busy='true'] button[type='submit'] { cursor: wait; opacity: .72; }
.quote-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* — map — */
.map-section {
  position: relative;
  border-top: 2px solid var(--color-divider);
  border-bottom: 2px solid var(--color-divider);
}
.map-card {
  position: absolute; top: 0; left: 0; z-index: 2;
  max-width: min(420px, 86vw);
  background: var(--color-bg);
  border-right: 2px solid var(--color-divider);
  border-bottom: 2px solid var(--color-divider);
  padding: clamp(20px, 2.6vw, 34px);
}
.map-card .label { margin-bottom: 12px; }
.map-address {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.15; letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.map-frame {
  /* Shorter until the visitor asks for the map: a full-height grey grid is a
     lot of dead space to hand someone who may never want it. */
  height: clamp(300px, 38vh, 440px);
  background-color: var(--color-neutral-100);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 39px, var(--color-neutral-400) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, var(--color-neutral-400) 39px 40px);
}
.map-frame[data-loaded] { height: clamp(420px, 62vh, 720px); }
.map-frame iframe {
  display: block; width: 100%; height: 100%; border: 0;
  filter: var(--map-filter);
  transition: filter .6s ease;
}

/* — closing banner — */
.cta {
  background-color: var(--color-accent-text);
  background-image: linear-gradient(100deg, #8f5529 0%, var(--bronze-hi) 50%, #8f5529 100%);
  color: #ffffff;
  padding: clamp(44px, 7vw, 100px) var(--gutter-right) clamp(44px, 7vw, 100px) var(--gutter-left);
}
.cta-inner { max-width: var(--shell); margin: 0 auto; }
.cta-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: clamp(16px, 2vw, 26px);
}
.cta h2 {
  font-size: clamp(30px, 5.6vw, 92px); line-height: 0.98; letter-spacing: -0.035em;
  text-transform: uppercase; color: #ffffff;
  margin: 0 0 clamp(26px, 4vw, 48px);
}
.cta-links { display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 64px); }
.cta-links a {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(19px, 2.4vw, 34px);
  color: #ffffff; text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 3px solid rgba(255, 255, 255, .7);
  transition: border-color .25s var(--ease);
}
.cta-links a:hover { border-color: #ffffff; }
.cta :focus-visible { outline-color: #ffffff; }

/* — footer — */
.site-footer {
  max-width: var(--shell); margin: 0 auto;
  padding: 22px var(--gutter-right) max(22px, env(safe-area-inset-bottom)) var(--gutter-left);
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: 12px; color: var(--color-neutral-700);
}
.site-footer .tagline { letter-spacing: 0.14em; text-transform: uppercase; }

/* — note under the opening hours — */
.hours-note {
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(18px, 2.2vw, 26px);
  background: var(--color-neutral-100);
  border-left: 6px solid var(--color-accent);
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.hours-note p { font-size: 15px; max-width: 40ch; color: var(--color-neutral-800); }

/* — mobile action bar — */
/* Phone and email stay one thumb away on small screens. Hidden on desktop,
   where both already sit in the header. */
.action-bar { display: none; }

@media (max-width: 700px) {
  .action-bar {
    position: fixed; z-index: 45; left: 0; right: 0; bottom: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--color-bg);
    border-top: 2px solid var(--color-text);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .action-bar-item {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 56px; padding: 10px 12px;
    font-family: var(--font-heading); font-weight: 800; font-size: 15px;
    text-decoration: none; color: var(--color-text);
    transition: background .2s var(--ease), color .2s var(--ease);
  }
  .action-bar-item:first-child {
    background-color: var(--bronze-hi);
    background-image: var(--gradient-bronze);
    color: #ffffff;
  }
  .action-bar-item:first-child:active {
    background-color: #764a28; background-image: var(--gradient-bronze-active);
  }
  .action-bar-item:last-child { border-left: 2px solid var(--color-text); }
  .action-bar-item:last-child:active {
    background: color-mix(in srgb, var(--color-text) 10%, transparent);
  }
  .action-bar :focus-visible { outline-offset: -4px; }
  /* Keep the bar from covering the end of the page. */
  body { padding-bottom: 58px; }
}

/* — larger hit areas wherever the pointer is a finger — */
@media (pointer: coarse) {
  .lang a { min-width: 44px; min-height: 44px; }
  .event-account button { min-width: 44px; min-height: 44px; }
  .strip-link { padding: 6px 0; }
  .header-tel { padding: 10px 0; }
}

/* — high-contrast and forced-colours modes — */
@media (prefers-contrast: more) {
  :root {
    --color-divider: #201e1d;
    --color-neutral-700: #3b3939;
    --color-neutral-800: #201e1d;
    --color-accent-text: var(--color-accent-deep);
    --photo-filter: grayscale(1) contrast(1.2);
  }
  .btn-secondary { border-color: var(--color-text); }
}

@media (forced-colors: active) {
  /* Let the OS palette win, but keep the structure legible. */
  .hazard, .progress { display: none; }
  .status-dot { forced-color-adjust: none; }
  .btn, .service, .strip-cell, .hours-row, .event-form, .event-field input, .quote-form, .quote-field :is(input, textarea), .action-bar-item { border-color: CanvasText; }
  .shot-index, .service.is-open .service-num { forced-color-adjust: none; }
  .btn-primary, .event-rsvp, .action-bar-item, .link-row-primary, .cta { background-image: none; }
  .hero-media img, .shot { filter: none; }
}

@media (max-width: 700px) {
  .site-header { gap: 8px 12px; padding-top: max(8px, env(safe-area-inset-top)); padding-bottom: 8px; }
  .brand img { height: 40px; }
  .site-header .header-tel,
  .site-header .btn { display: none; }
  .lang a { min-width: 44px; min-height: 44px; }

  .strip-cell { border-right: 0; border-bottom: 2px solid var(--color-divider); }
  .strip-cell:last-child { border-bottom: 0; }
  .hero-media { border-left: 0; border-top: 2px solid var(--color-divider); }
  .hero-edge-label { display: none; }
  .event-inner { width: 100%; min-width: 0; grid-template-columns: minmax(0, 1fr); gap: 38px; }
  .event-date { width: min(100%, 360px); max-width: 100%; }
  .event-copy { width: 100%; }
  .event-highlights { grid-template-columns: 1fr; }
  .event-highlights li { padding: 15px 0; }
  .event-highlights li + li { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .28); }
  .event-actions { align-items: stretch; }
  .event-form-grid { grid-template-columns: 1fr; }
  .event-form-actions { grid-template-columns: 1fr; }
  .event-existing-actions { display: grid; grid-template-columns: 1fr; }
  .event-existing-actions .btn { width: 100%; }
  .event-cancel-dialog {
    width: calc(100% - 20px); max-height: calc(100dvh - 20px);
  }
  .event-cancel-dialog-actions { display: grid; grid-template-columns: 1fr; }
  .event-cancel-dialog-actions .btn { width: 100%; min-height: 48px; }
  .event-rsvp { width: 100%; }
  .event-page .site-header { align-items: center; }
  .event-page .lang { order: 3; width: 100%; justify-content: center; }
  .event-account { margin-left: auto; }
  .event-account > span { display: none; }
  .map-card { position: static; max-width: none; border-right: 0; }
  .quote-section { grid-template-columns: 1fr; }
  .quote-copy { position: static; }
  .quote-copy h2 { max-width: 14ch; }
  .quote-fields { grid-template-columns: 1fr; }
  .quote-field-wide { grid-column: auto; }
  .quote-actions { grid-template-columns: 1fr; }
  .quote-actions .btn { width: 100%; }
  .service-toggle { grid-template-columns: 36px 1fr 24px; gap: 10px; }
  .service-detail p { padding-left: 46px; }
  .shot-empty { padding-left: 16px; padding-top: 40px; }
}

@media (max-width: 420px) {
  .event-inner { gap: 30px; padding-top: 34px; padding-bottom: 44px; }
  .event h1,
  .event h2 { font-size: clamp(36px, 13.5vw, 54px); line-height: .94; }
  html:lang(fr) .event h1,
  html:lang(lb) .event h1 { font-size: clamp(30px, 9.6vw, 40px); white-space: nowrap; }
  html:lang(de) .event h1 { font-size: clamp(29px, 8.8vw, 37px); white-space: nowrap; }
  .event-date { padding: 20px; box-shadow: 8px 8px 0 rgba(184, 128, 79, .22); }
  .event-day { font-size: 72px; }
  .event-month { font-size: 25px; }
  .event-highlights li { align-items: flex-start; overflow-wrap: anywhere; }
  .event-form { padding: 18px; }
  .event-form-actions { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .progress, .lang, .hazard, .map-frame, .skip-link, .action-bar { display: none; }
  body { padding-bottom: 0; }
  body { font-size: 11pt; }
  .service-detail { max-height: none; opacity: 1; }
  a[href^="tel:"]::after, a[href^="mailto:"]::after { content: ''; }
}

/* — 404 — */
.page-404 { min-height: 70vh; align-content: center; }
.page-404-langs { margin-top: 32px; }
.page-404-langs { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: center; }
.page-404-langs a {
  display: inline-flex; align-items: center; min-height: 28px; padding: 2px 0;
  color: var(--color-neutral-700);
}
.page-404-langs a:hover { color: var(--color-accent-text); }

/* ==========================================================================
   Secondary pages — legal notice, privacy notice, FAQ
   ========================================================================== */

.doc {
  max-width: 78ch; margin: 0 auto;
  padding: clamp(36px, 5vw, 72px) var(--gutter-right) clamp(56px, 7vw, 96px) var(--gutter-left);
}
.doc-title {
  font-size: clamp(30px, 4.4vw, 58px); letter-spacing: -0.03em; text-transform: uppercase;
  margin: 6px 0 clamp(14px, 2vw, 20px);
  hyphens: auto;
}
.doc-section h2, .doc-section p { hyphens: auto; }
.doc-lede {
  font-size: clamp(16px, 1.3vw, 19px); line-height: 1.5; max-width: 56ch;
  color: var(--color-neutral-800);
}
.doc .hazard { margin: clamp(26px, 3.5vw, 44px) 0 clamp(10px, 2vw, 20px); }

.doc-section { padding: clamp(22px, 2.8vw, 34px) 0; border-bottom: 2px solid var(--color-divider); }
.doc-section:last-child { border-bottom: 0; }
.doc-section h2 {
  font-size: clamp(19px, 2vw, 26px); letter-spacing: -0.015em;
  margin: 0 0 clamp(12px, 1.6vw, 18px);
}
.doc-section p { margin: 0 0 12px; max-width: 68ch; color: var(--color-neutral-800); }
.doc-section p:last-child { margin-bottom: 0; }

.doc-dl { display: flex; flex-direction: column; }
.doc-row {
  display: grid; grid-template-columns: minmax(160px, 34%) 1fr; gap: 8px 24px;
  padding: 10px 0; border-top: 1px solid var(--color-divider);
}
.doc-row:first-child { border-top: 0; }
.doc-row dt {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-neutral-700); padding-top: 3px;
}
.doc-row dd { font-size: 16px; overflow-wrap: anywhere; }

.doc-ul { display: flex; flex-direction: column; gap: 8px; }
.doc-ul li { padding-left: 18px; position: relative; color: var(--color-neutral-800); }
.doc-ul li::before {
  content: ''; position: absolute; left: 0; top: .65em;
  width: 8px; height: 2px; background: var(--color-accent);
}

@media (max-width: 640px) {
  .doc-row { grid-template-columns: 1fr; gap: 2px; padding: 12px 0; }
}

/* ==========================================================================
   Commercial service pages
   ========================================================================== */

.service-page { border-bottom: 2px solid var(--color-divider); }
.breadcrumbs {
  max-width: var(--shell); margin: 0 auto;
  padding: 18px var(--gutter-right) 18px var(--gutter-left);
  display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: center;
  color: var(--color-neutral-700); font-size: 12px;
  border-bottom: 2px solid var(--color-divider);
}
.breadcrumbs a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; }
.breadcrumbs a:hover { color: var(--color-accent-text); border-bottom-color: currentColor; }
.breadcrumbs [aria-current='page'] { color: var(--color-text); font-weight: 700; }

.service-page-hero {
  max-width: var(--shell); min-height: min(680px, 72vh); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  border-left: 2px solid var(--color-divider); border-right: 2px solid var(--color-divider);
}
.service-page-hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(44px, 7vw, 100px) var(--gutter-right) clamp(44px, 7vw, 100px) var(--gutter-left);
}
.service-page-hero h1 {
  max-width: 15ch; margin: 10px 0 clamp(18px, 2.6vw, 30px);
  font-size: clamp(36px, 5.8vw, 82px); line-height: .98; letter-spacing: -.035em;
  text-transform: uppercase; hyphens: auto;
}
.service-page-lede {
  max-width: 58ch; margin-bottom: clamp(24px, 3vw, 34px);
  color: var(--color-neutral-800); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.55;
}
.service-page-hero-media {
  min-height: 440px; overflow: hidden;
  border-left: 2px solid var(--color-divider); background: var(--color-neutral-100);
}
.service-page-hero-media picture, .service-page-hero-media img { width: 100%; height: 100%; }
.service-page-hero-media img { object-fit: cover; filter: var(--photo-filter); }

.service-overview, .service-process, .service-quote-grid, .related-services {
  max-width: var(--shell); margin: 0 auto;
  padding: clamp(48px, 7vw, 104px) var(--gutter-right) clamp(48px, 7vw, 104px) var(--gutter-left);
}
.service-overview {
  display: grid; grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 7vw, 110px); border-top: 2px solid var(--color-divider);
}
.service-overview h2, .service-process h2, .service-quote-grid h2, .related-services h2 {
  margin-top: 8px; font-size: clamp(26px, 3.4vw, 48px); line-height: 1.04;
  letter-spacing: -.025em; text-transform: uppercase; hyphens: auto;
}
.service-prose { max-width: 68ch; }
.service-prose p {
  color: var(--color-neutral-800); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.65;
}
.service-prose p + p { margin-top: 18px; }

.service-process { max-width: none; background: var(--color-neutral-100); border-block: 2px solid var(--color-divider); }
.service-process > header, .service-steps { max-width: var(--shell); margin-inline: auto; }
.service-process > header { margin-bottom: clamp(30px, 4vw, 52px); }
.service-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--color-divider); }
.service-step { min-width: 0; padding: clamp(24px, 3.6vw, 48px); background: var(--color-bg); }
.service-step-number {
  display: inline-flex; padding: 3px 6px; margin-bottom: clamp(24px, 3vw, 40px);
  background: var(--color-accent-text); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .1em;
}
.service-step h3 { margin-bottom: 12px; font-size: clamp(19px, 2vw, 28px); }
.service-step p { color: var(--color-neutral-700); line-height: 1.6; }

.service-quote-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(40px, 8vw, 120px); align-items: start;
}
.service-checks { display: flex; flex-direction: column; margin-top: clamp(24px, 3vw, 38px); }
.service-check {
  position: relative; padding: 16px 0 16px 28px;
  color: var(--color-neutral-800); font-size: 16px; line-height: 1.55;
  border-top: 2px solid var(--color-divider);
}
.service-check:last-child { border-bottom: 2px solid var(--color-divider); }
.service-check::before {
  content: ''; position: absolute; left: 0; top: 1.65em;
  width: 12px; height: 3px; background: var(--color-accent-text);
}
.service-contact-card { padding: clamp(26px, 3.5vw, 44px); background: var(--color-plate); color: var(--color-plate-text); }
.service-contact-card .label { color: var(--color-accent); }
.service-contact-card h2 { margin: 8px 0 18px; color: inherit; font-size: clamp(24px, 3vw, 40px); }
.service-contact-card > p:not(.label) { color: var(--color-plate-muted); line-height: 1.6; }
.service-contact-card address { margin-top: 26px; color: inherit; font-size: 17px; font-weight: 700; }
.service-contact-card .service-contact-hours { margin-top: 8px; }
.service-contact-links { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; margin-top: 24px; }
.service-contact-links a { color: var(--color-plate-text); font-size: 18px; font-weight: 800; overflow-wrap: anywhere; }
.service-contact-card .service-quote-note {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .28);
  color: var(--color-accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}

.related-services { border-top: 2px solid var(--color-divider); }
.related-services h2 { margin: 0 0 clamp(24px, 3vw, 38px); }
.related-services ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--color-divider); }
.related-services li { min-width: 0; background: var(--color-bg); }
.related-services a {
  display: flex; align-items: center; min-height: 100%; padding: clamp(20px, 2.8vw, 34px);
  color: var(--color-text); font-size: clamp(16px, 1.5vw, 21px); font-weight: 800;
  line-height: 1.25; text-decoration: none; hyphens: auto;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.related-services a:hover { background: var(--color-plate); color: var(--color-plate-text); }

@media (max-width: 800px) {
  .service-page-hero { grid-template-columns: 1fr; min-height: 0; border-inline: 0; }
  .service-page-hero h1 { max-width: none; }
  .service-page-hero-media { min-height: 340px; border-left: 0; border-top: 2px solid var(--color-divider); }
  .service-overview, .service-quote-grid { grid-template-columns: 1fr; }
  .service-steps, .related-services ul { grid-template-columns: 1fr; }
  .service-step-number { margin-bottom: 18px; }
}

@media (max-width: 700px) {
  .service-detail p { padding-left: 46px; }
  .service-page-link { margin-left: 46px; }
}

/* — footer navigation — */
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-nav a {
  color: var(--color-neutral-700); text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.footer-nav a:hover { color: var(--color-accent-text); border-bottom-color: currentColor; }
.footer-credit a { color: inherit; }
.footer-credit a:hover { color: var(--color-accent-text); }

/* — consent-first analytics — */
.privacy-settings {
  appearance: none; border: 0; border-bottom: 1px solid transparent; padding: 4px 0;
  background: transparent; color: var(--color-neutral-700); font: inherit;
  cursor: pointer; transition: color .2s var(--ease), border-color .2s var(--ease);
}
.privacy-settings:hover { color: var(--color-accent-text); border-bottom-color: currentColor; }
.consent-banner {
  position: fixed; z-index: 55; inset: auto 0 0;
  max-height: 100vh; max-height: 100dvh; overflow-y: auto; overscroll-behavior: contain;
  padding: 16px var(--gutter-right) max(16px, env(safe-area-inset-bottom)) var(--gutter-left);
  background: var(--color-plate); color: var(--color-plate-text);
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 -14px 38px rgba(0, 0, 0, .22);
}
.consent-banner[hidden], .privacy-settings[hidden] { display: none; }
.consent-banner-inner {
  width: min(100%, var(--shell)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end;
  gap: clamp(18px, 3vw, 48px);
}
.consent-copy { max-width: 92ch; }
.consent-copy h2 { margin-bottom: 6px; color: var(--color-plate-text); font-size: clamp(18px, 2vw, 24px); }
.consent-copy p { color: var(--color-plate-muted); font-size: 13px; line-height: 1.55; }
.consent-copy a { color: var(--color-plate-text); }
.consent-purposes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
  margin: 12px 0 0; padding: 0; border: 0;
}
.consent-purpose { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 9px; cursor: pointer; }
.consent-purpose input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--color-accent); }
.consent-purpose strong, .consent-purpose small { display: block; }
.consent-purpose strong { color: var(--color-plate-text); font-size: 13px; }
.consent-purpose small { color: var(--color-plate-muted); font-size: 11px; line-height: 1.4; }
.consent-purpose:has(input:disabled) { cursor: not-allowed; }
.consent-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
.consent-choice {
  min-height: 48px; min-width: 140px; padding: 10px 16px;
  border: 2px solid var(--color-accent); background: transparent;
  color: var(--color-plate-text); font: 800 13px/1.2 var(--font-heading);
  cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease);
}
.consent-choice:hover { background: var(--color-accent); color: var(--color-plate); }
.consent-banner :focus-visible { outline-color: var(--color-accent); }

@media (max-width: 800px) {
  .consent-banner-inner { grid-template-columns: 1fr; align-items: stretch; gap: 14px; }
  .consent-actions { width: 100%; }
  .consent-choice { min-width: 0; }
}

@media (max-width: 600px) {
  .consent-purposes { grid-template-columns: 1fr; }
  .consent-actions { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 420px) {
  .consent-actions { grid-template-columns: 1fr; }
}

/* — map consent — */
.map-consent {
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 24px;
  text-align: center;
}
.map-note {
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--color-neutral-800); max-width: 40ch;
}

/* ==========================================================================
   /socials — link-in-bio page. Dark, single column, thumb-sized rows.
   ========================================================================== */

.page-links {
  background: var(--color-plate);
  color: var(--color-plate-text);
  min-height: 100vh;
  min-height: 100dvh;
}

.links {
  width: 100%; max-width: 460px; margin: 0 auto;
  padding:
    max(28px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right))
    max(32px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  display: flex; flex-direction: column; gap: 22px;
}

.links-head { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.links-logo { height: 92px; width: auto; }
.links-lede {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-accent);
}
.links-hours {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 13px; color: var(--color-plate-muted);
}
.links-hours .status-dot { background: var(--color-accent); }

.links-list { display: flex; flex-direction: column; gap: 10px; }

.link-row {
  display: flex; align-items: center; gap: 14px;
  min-height: 62px; padding: 12px 16px;
  background: rgba(255, 255, 255, .07);
  border: 2px solid rgba(255, 255, 255, .14);
  color: var(--color-plate-text); text-decoration: none;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.link-row:hover { background: rgba(255, 255, 255, .13); border-color: var(--color-accent); }
.link-row:active { transform: translateY(1px); }
.link-row svg { flex: none; color: var(--color-accent); }

.link-row-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.link-row-label {
  font-family: var(--font-heading); font-weight: 800; font-size: 15px;
  letter-spacing: -0.005em;
}
.link-row-sub {
  font-size: 12px; color: var(--color-plate-muted); overflow-wrap: anywhere;
}

.link-row-primary {
  background-color: #b87d4f;
  background-image: var(--gradient-bronze-bright);
  border-color: #b87d4f;
  color: var(--color-plate);
}
.link-row-primary svg { color: var(--color-plate); }
.link-row-primary:hover { border-color: #d59d71; }

/* Not a link yet: the profile URL is still missing. */
.link-row-pending { opacity: .5; cursor: not-allowed; }
.link-row-pending:hover { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .14); }

.links-langs {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 12px;
  padding-top: 4px;
}
.links-langs-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-plate-muted);
}
.links-langs-set { display: flex; gap: 4px; }
.links-langs a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 36px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--color-plate-muted); text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .18);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.links-langs a:hover { color: var(--color-plate-text); border-color: var(--color-accent); }

.links-legal {
  text-align: center; font-size: 11px; line-height: 1.6;
  color: var(--color-plate-muted);
}
.links-privacy-settings { color: inherit; margin-top: 4px; }

.page-links :focus-visible { outline-color: var(--color-accent); }
