/* ==========================================================
   The Raymond Shop - Paldi
   Light, editorial layout. Red (#DA2439) is an accent only:
   CTA buttons, hairlines, small labels. One dark band per page.
   ========================================================== */

/* ---------- Webfonts (self-hosted, no third-party requests) ----------
   Both files are the latin subset of the variable font, so a single
   file per family covers every weight the site uses:
   Bodoni Moda 700 for display headings, Inter 400-700 for body.
   Source: Google Fonts, SIL Open Font License 1.1.
   -------------------------------------------------------------------- */

@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/bodoni-moda-latin-var.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-var.woff2") format("woff2");
}

:root {
  --red: #DA2439;          /* signature accent - the single primary CTA only */
  --red-hover: #B40025;
  --ink: #1A1A1A;          /* rich black - headings, primary buttons, borders */
  --ink-hover: #000000;
  --body: #4A4A4A;         /* slate - secondary text */
  --muted: #8A8A8A;        /* captions, quiet labels */
  --line: #EDEDED;         /* 1px separators */
  --line-soft: #EFEFEF;
  --wash: #F9F9F9;         /* section differentiation */
  --ph-bg: #F2F2F2;        /* placeholder fill */
  --ph-line: #E8E8E8;
  --dark: #1A1A1A;         /* the single dark band */
  --white: #FFFFFF;

  --max: 1180px;
  --gutter: 28px;
  --section-y: 120px;      /* generous vertical rhythm */

  /* "Sharp Suiting" - no rounded corners anywhere */
  --radius: 0px;

  /* Type */
  --font-display: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Depth via tonal layering, not shadows. Nothing at rest;
     one very faint large-blur shadow on hover only. */
  --card-shadow: none;
  --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* sticky header clearance for #anchors */
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--red); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 24px;
}

/* Display headings get tight tracking. h3 is a small uppercase label,
   so it keeps positive tracking - negative would close it up. */
h1 {
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 2.9vw, 2.25rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

p { margin: 0 0 22px; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: 1.12rem;
  line-height: 1.85;
  max-width: 47ch;
  color: var(--body);
}

/* Small red section label with a leading hairline */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 22px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--red);
  flex: 0 0 auto;
}

.eyebrow--center { justify-content: center; }

.section-head { max-width: 620px; margin-bottom: 64px; }
.section-head p { color: var(--muted); margin: 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

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

.section { padding: var(--section-y) 0; }
.section--wash { background: var(--wash); }
.section--tight { padding: 88px 0; }

/* ---------- Header ---------- */

/* thin red hairline across the very top - one of the few uses of red */
.topline { height: 3px; background: var(--red); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo-slot {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

/* "The Raymond Shop" wordmark - landscape 348x194, so it is constrained
   by height and left to scale its own width. No cropping. */
.site-logo {
  height: 46px;
  width: auto;
  border-radius: var(--radius);
  flex: 0 0 auto;
}

/* City sits above as quiet context; the area is what people are
   actually looking for, so it carries the size and contrast. */
.logo-text {
  text-transform: uppercase;
  line-height: 1.15;
}

.logo-city {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 3px;
}

.logo-area {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.site-nav a {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.18s ease;
}

.site-nav a:hover { color: var(--red); }

.nav-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--body) !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  font-size: 0.76rem !important;
  text-transform: none !important;
}

.nav-phone svg { width: 15px; height: 15px; fill: var(--muted); flex: 0 0 auto; }
.nav-phone:hover svg { fill: var(--red); }

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

/* Default button is solid rich black. Red is reserved for the single
   most important CTA on the page - see .btn--red. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn svg { width: 16px; height: 16px; fill: currentColor; flex: 0 0 auto; }

/* `.site-nav a` is more specific than `.btn`, so the header button needs
   its colour restated or the label goes dark-on-dark. */
.site-nav a.btn { color: var(--white); }
.site-nav a.btn:hover { color: var(--white); }

.btn--sm { padding: 11px 20px; font-size: 0.68rem; }

/* The signature accent - "Book a Fitting" only */
.btn--red {
  background: var(--red);
  border-color: var(--red);
}

.btn--red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
}

/* Secondary: outlined 1px in rich black */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn--outline svg { fill: currentColor; }

.btn[disabled],
.btn:disabled {
  background: var(--white);
  border-color: #DCDCDC;
  color: #B0B0B0;
  cursor: not-allowed;
}

.btn[disabled]:hover,
.btn:disabled:hover {
  background: var(--white);
  border-color: #DCDCDC;
  color: #B0B0B0;
}

/* Secondary action: plain text + arrow, thin red underline, no box */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--red);
  transition: color 0.2s ease;
}

.link-arrow .arw {
  color: var(--red);
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.link-arrow:hover { color: var(--red); }
.link-arrow:hover .arw { transform: translateX(5px); }

.link-arrow--light { color: var(--white); }
.link-arrow--light:hover { color: var(--white); opacity: 0.75; }

.actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* ---------- Image placeholders ---------- */

.ph {
  background: var(--ph-bg);
  border: 1px solid var(--ph-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 28px;
  min-height: 260px;
}

.ph-icon {
  width: 30px;
  height: 30px;
  fill: #C4C4C4;
  flex: 0 0 auto;
}

.ph-label {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.ph--hero { min-height: 500px; }
.ph--tall { min-height: 420px; }
.ph--wide { min-height: 300px; }

/* ---------- Hero: full-bleed storefront photo, dark gradient, text on top ---------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

/* darkens the photo so the headline always has contrast, and keeps
   the right side lighter so the storefront stays readable */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.94) 0%, rgba(12, 12, 12, 0.82) 42%, rgba(12, 12, 12, 0.36) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.5) 0%, rgba(12, 12, 12, 0.15) 40%, rgba(12, 12, 12, 0.6) 100%);
}

.hero .wrap {
  padding-top: 150px;
  padding-bottom: 150px;
}

/* wide enough that "THE RAYMOND SHOP" stays on one line on desktop,
   with "PALDI" on the second line */
.hero-content { max-width: 780px; }

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

.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero h1 .accent { color: var(--red); }
.hero .lede { color: rgba(255, 255, 255, 0.82); }
.hero .eyebrow { color: var(--white); }
.hero .eyebrow::before { background: var(--red); width: 44px; }

.hero-note {
  margin-top: 34px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.hero-note a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-note a:hover { border-color: var(--white); }

/* small facts row under the hero */
.hero-facts {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts div { min-width: 0; }

.hero-facts dt {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 7px;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ---------- Two column blocks ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}

.grid-2--top { align-items: start; }
.grid-2--form { grid-template-columns: 0.92fr 1fr; align-items: start; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

/* ---------- Collection tiles (no boxes - editorial) ---------- */

.tile .ph { min-height: 340px; margin-bottom: 26px; }

/* All three collection photos share one fixed height so the row stays even.
   The source files are 3:2 landscape, so they are cropped, never stretched. */
.tile-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  margin-bottom: 26px;
  background: var(--ph-bg);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.25s ease;
}

.tile:hover .tile-img {
  box-shadow: var(--card-shadow-hover);
}

/* About / Visit Us photos - fixed height so both columns stay balanced */
.feature-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  background: var(--ph-bg);
}

.tile-index {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
}

.tile h3 { margin-bottom: 10px; }

.tile p {
  color: var(--body);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* ---------- The one dark band ---------- */

.quote-band {
  background: var(--dark);
  color: var(--white);
  padding: 132px 0;
  text-align: center;
}

.quote-band .wrap { max-width: 880px; }

.quote-band .mark {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 40px;
}

.quote-band blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.9vw, 2.05rem);
  line-height: 1.55;
  color: var(--white);
  letter-spacing: 0.01em;
}

.quote-band cite {
  display: block;
  margin-top: 34px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: #9A9A9A;
  font-weight: 600;
}

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

.info-list {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
}

.info-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}

.info-list li:first-child { padding-top: 0; }

.info-list svg { width: 19px; height: 19px; fill: var(--muted); margin-top: 5px; }

.info-list .label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.info-list .value { color: var(--ink); font-size: 0.98rem; line-height: 1.7; }

/* WhatsApp / landline - shown side by side, each clearly labelled */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

/* Compact contact chips: icon on the left, three tight lines beside it */
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  border-color: var(--ink);
  box-shadow: var(--card-shadow-hover);
}

.contact-card svg {
  grid-row: 1 / 4;
  width: 26px;
  height: 26px;
  fill: var(--ink);
  margin: 0;
}

.contact-label {
  grid-column: 2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-value {
  grid-column: 2;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.contact-hint {
  grid-column: 2;
  margin-top: 2px;
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* WhatsApp chip carries the red - the primary message channel */
.contact-card--primary {
  background: var(--ink);
  border-color: var(--ink);
}

.contact-card--primary:hover {
  background: var(--ink-hover);
  border-color: var(--ink-hover);
}

.contact-card--primary svg { fill: var(--white); }
.contact-card--primary .contact-label { color: rgba(255, 255, 255, 0.82); }
.contact-card--primary .contact-value { color: var(--white); }
.contact-card--primary .contact-hint { color: rgba(255, 255, 255, 0.82); }

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

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 48px;
}

.field { margin-bottom: 26px; }

.field label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.field .req { color: var(--red); }
.field .opt { color: var(--muted); font-weight: 500; letter-spacing: 0.1em; }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #DCDCDC;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.18s ease;
}

.field input::placeholder { color: #B4B4B4; }

.field input:focus {
  outline: none;
  border-color: var(--ink);
}

/* set by js/form.js on a failed check */
.field input.invalid {
  border-color: var(--red);
}

.phone-input { display: flex; }

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #F7F7F7;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #DCDCDC;
  border-right: 0;
  border-radius: var(--radius);
}

.phone-input input {
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

.hint { font-size: 0.78rem; color: var(--muted); margin: 8px 0 0; }

.error {
  display: none;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  margin: 8px 0 0;
}

.error.show { display: block; }

.consent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--wash);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
  margin: 32px 0 28px;
}

.consent input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  flex: 0 0 auto;
  accent-color: var(--red);
  cursor: pointer;
}

.consent label {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--body);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
}

.form-footnote {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 22px 0 0;
}

.form-footnote a { color: var(--body); }

/* revealed by js/form.js on a valid submit */
.form-success {
  display: none;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: 34px;
  text-align: center;
}

.form-success.show { display: block; }
.form-success svg { width: 34px; height: 34px; fill: var(--red); margin: 0 auto 18px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { margin: 0; font-size: 0.93rem; }

/* ---------- Footer (light - the dark band above stays the only dark block) ---------- */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 88px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
}

.site-footer h3 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 22px;
}

.site-footer p { color: var(--body); font-size: 0.9rem; margin: 0 0 14px; }
.site-footer a { color: var(--body); text-decoration: none; transition: color 0.18s ease; }
.site-footer a:hover { color: var(--red); }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 13px; font-size: 0.9rem; }

.footer-brand .site-logo { height: 58px; margin-bottom: 24px; }

.social { display: flex; gap: 12px; margin-top: 4px; }

.social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.social a svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-bottom a { color: var(--muted); }
.footer-bottom span { display: block; }

/* ---------- Legal pages ---------- */

.page-head {
  padding: 84px 0 64px;
  border-bottom: 1px solid var(--line-soft);
}

.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 14px; }
.page-head .updated {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 600;
}

.legal { padding: 76px 0 var(--section-y); max-width: 800px; }

.legal h2 {
  font-size: 0.95rem;
  letter-spacing: 0.13em;
  margin-top: 56px;
  margin-bottom: 18px;
}

.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: 1rem; }
.legal ul { padding-left: 20px; margin: 0 0 22px; }
.legal li { margin-bottom: 12px; }
.legal .intro { font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; }

.operator-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: 34px 36px;
  margin: 34px 0;
}

.operator-box p { margin: 0 0 14px; font-size: 0.94rem; color: var(--ink); }
.operator-box p:last-child { margin-bottom: 0; }

.operator-box strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 3px;
}

/* the consent clause, quietly set apart */
.clause {
  border-left: 2px solid var(--red);
  background: var(--wash);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 26px 0;
}

.clause p { margin: 0; color: var(--ink); font-size: 1rem; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  :root { --section-y: 88px; }

  .hero .wrap { padding-top: 110px; padding-bottom: 110px; }
  .hero-content { max-width: none; }
  .grid-2,
  .grid-2--form { grid-template-columns: 1fr; gap: 52px; }
  .grid-3 { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .feature-img { height: 380px; }
  .ph--hero { min-height: 380px; }
  .quote-band { padding: 96px 0; }
  .form-panel { padding: 36px; }
}

@media (max-width: 700px) {
  :root { --section-y: 72px; --gutter: 22px; }

  body { font-size: 16px; }

  .site-header .wrap { min-height: 74px; gap: 14px; }
  .site-logo { height: 40px; }
  .logo-city { font-size: 0.52rem; letter-spacing: 0.22em; margin-bottom: 2px; }
  .logo-area { font-size: 0.88rem; letter-spacing: 0.14em; }
  .logo-slot { gap: 12px; }
  .tile-img { height: 260px; }
  .feature-img { height: 300px; }

  /* on mobile the photo sits behind a mostly-flat dark scrim so the
     headline stays legible over a busy image */
  .hero .wrap { padding-top: 84px; padding-bottom: 84px; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.88) 100%);
  }
  /* nav links wrap onto their own row under the contact actions - they are
     kept visible rather than hidden, since there is no hamburger menu */
  .site-nav { gap: 14px 18px; }
  .nav-contact { gap: 12px; }

  .hero-facts { gap: 28px 40px; margin-top: 44px; }
  .actions { gap: 26px; margin-top: 36px; }
  .actions .btn { width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-panel { padding: 26px; }
  .operator-box { padding: 26px 24px; }
  .legal { padding: 56px 0 var(--section-y); }
  .page-head { padding: 56px 0 44px; }
  .info-list li { padding: 20px 0; }
  .footer-bottom { padding-bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
