/* Time Tech public site — the one stylesheet, both languages.
   Tokens are the internal app's :root (../timetech-ecosystem/css/style.css).
   Layout uses logical properties (inline-start/end) so the same rules
   serve English LTR and Arabic RTL. Mobile first; desktop from 900px. */

:root {
  --bg: #0b0d12;
  --surface: #161a23;
  --surface-raised: #1d222d;
  --border: #2a303d;
  --gold: #cf9245;
  --gold-hover: #e0a55a;
  --text: #eef0f3;
  --text-muted: #9aa3b2;
  --radius: 12px;
  --gold-12: rgba(207, 146, 69, 0.12);
  --gold-25: rgba(207, 146, 69, 0.25);
  --gold-45: rgba(207, 146, 69, 0.45);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: Inter, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --track: 0.12em;        /* small-caps tracking; zero in Arabic */
  --track-wide: 0.18em;
  --gutter: 20px;
  --max: 1160px;
  color-scheme: dark;
}

/* Arabic: joined script must never be letter-spaced. */
html[lang="ar"] {
  --font-display: Amiri, "Noto Naskh Arabic", "Segoe UI", serif;
  --font-body: "IBM Plex Sans Arabic", "Noto Naskh Arabic", "Segoe UI", Tahoma, sans-serif;
  --track: 0;
  --track-wide: 0;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html[lang="ar"] body { line-height: 1.85; }
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track);
  color: var(--gold);
}
html[lang="ar"] .eyebrow { font-size: 14px; }

/* Numbers and phone numbers keep Latin digits and LTR order in both
   languages: a phone number is dialled, not read. */
.num { font-variant-numeric: tabular-nums; }
.phone { unicode-bidi: isolate; direction: ltr; display: inline-block; }

/* --- Buttons: the app's two names -------------------------------- */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s,
              box-shadow 0.15s, transform 0.1s;
}
.btn-primary {
  background: var(--gold);
  color: #1a1206;
  box-shadow: 0 4px 14px -4px rgba(207, 146, 69, 0.55);
}
.btn-primary:hover { background: var(--gold-hover); box-shadow: 0 6px 18px -4px rgba(207, 146, 69, 0.7); }
.btn-primary:active { transform: translateY(1px); box-shadow: none; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-12); }
.btn-primary svg, .btn-ghost svg { width: 18px; height: 18px; flex: none; }
.btn-sm { padding: 9px 14px; font-size: 14px; border-radius: 9px; }

/* --- Header ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 18, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-header .wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 66px;
}
.brand {
  flex: none;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-inline-end: auto;
  text-decoration: none;
}
.brand img { width: 38px; height: 38px; border-radius: 50%; }
.brand-name {
  white-space: nowrap;
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  line-height: 1;
}
html[lang="ar"] .brand-name { font-size: 19px; text-transform: none; }
.brand-sub {
  display: block;
  margin-top: 4px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}
html[lang="ar"] .brand-sub { font-size: 11px; }
/* Phones: the wordmark alone; the header has to fit the language
   switch, WhatsApp and the menu beside it. */
@media (max-width: 599px) { .site-header .brand-sub { display: none; } }
@media (min-width: 600px) {
  .site-header .wrap { gap: 12px; }
  .brand-name { font-size: 21px; }
  html[lang="ar"] .brand-name { font-size: 22px; }
}

.nav {
  display: none;
  list-style: none;
}
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  inset-inline: 0;
  top: 100%;
  padding: 6px 0 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}
.nav a {
  white-space: nowrap;
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav.open a { padding-inline: var(--gutter); }
.nav.open li:last-child a { border-bottom: 0; }

.lang {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.15s, color 0.15s;
}
.lang:hover { border-color: var(--gold); color: var(--text); }

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-open { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }
.header-wa .btn-label { display: none; }

@media (min-width: 900px) {
  .site-header .wrap { min-height: 76px; gap: 18px; }
  .nav {
    display: flex;
    gap: 22px;
    margin-inline-end: 8px;
  }
  .nav a { padding: 6px 0; border-bottom: 0; font-size: 14px; }
  .nav a[aria-current="page"] { color: var(--gold); }
  .nav-toggle { display: none; }
  .header-wa .btn-label { display: inline; }
}

/* --- Hero --------------------------------------------------------- */
.hero { position: relative; padding-block: 56px 52px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 45% at 78% 18%, rgba(207, 146, 69, 0.16), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(207, 146, 69, 0.06), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; display: grid; gap: 40px; }
.hero h1 { font-size: clamp(42px, 10vw, 76px); margin-top: 16px; }
html[lang="ar"] .hero h1 { font-size: clamp(36px, 8.5vw, 66px); }
.hero-lede {
  max-width: 50ch;
  margin: 20px 0 30px;
  font-size: 17px;
  color: var(--text-muted);
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 600px) { .hero-actions { flex-direction: row; } }
@media (min-width: 900px) {
  .hero { padding-block: 96px 88px; }
  .hero .wrap { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 72px; }
  .hero-lede { font-size: 19px; }
}

.trust {
  display: grid;
  gap: 16px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  list-style: none;
}
.trust li { font-size: 14px; color: var(--text-muted); line-height: 1.45; }
.trust strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.trust .star { color: var(--gold); }
@media (min-width: 600px) { .trust { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* --- Photo placeholder: dashed gold frame, subject written on it --- */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  aspect-ratio: var(--ratio, 4 / 5);
  border: 1px dashed var(--gold-45);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-raised), var(--surface) 70%);
  text-align: center;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.025) 22px 23px);
}
.ph figcaption {
  position: relative;
  max-width: 30ch;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}
.ph-tag {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--track);
  color: var(--gold);
}
html[lang="ar"] .ph-tag { font-size: 13px; }
.ph-inline {
  color: var(--gold);
  border-bottom: 1px dashed var(--gold-45);
}

/* --- Sections ----------------------------------------------------- */
.section { padding-block: 68px; }
.section + .section { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.section-tight { padding-block: 56px; }
.section-head { max-width: 62ch; margin-bottom: 36px; }
.section-head h2 { margin-top: 12px; font-size: clamp(32px, 5.5vw, 46px); }
.section-head p { margin: 14px 0 0; font-size: 17px; color: var(--text-muted); }
.section-head.center { margin-inline: auto; text-align: center; }
@media (min-width: 900px) {
  .section { padding-block: 108px; }
  .section-tight { padding-block: 72px; }
  .section-head { margin-bottom: 48px; }
}

.split { display: grid; gap: 40px; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
}

/* --- Cards (services) --------------------------------------------- */
.cards { display: grid; gap: 16px; list-style: none; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-raised), var(--surface) 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03),
              0 10px 30px -18px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
a.card:hover { border-color: var(--gold-45); transform: translateY(-2px); }
.card-icon {
  width: 44px;
  height: 44px;
  padding: 11px;
  margin-bottom: 20px;
  border-radius: 11px;
  border: 1px solid rgba(207, 146, 69, 0.22);
  background: var(--gold-12);
  color: var(--gold);
}
.card-icon svg { display: block; width: 100%; height: 100%; }
.card h3 { margin-bottom: 10px; font-size: 27px; }
.card p { flex: 1; margin: 0; font-size: 15px; color: var(--text-muted); }
.card-more {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* --- Facts (the film) --------------------------------------------- */
.facts { display: grid; gap: 14px; list-style: none; }
@media (min-width: 600px) { .facts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .facts { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.fact {
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.fact-num {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}
html[lang="ar"] .fact-num { font-family: var(--font-body); font-weight: 600; font-size: 40px; }
.fact-label { display: block; margin-top: 10px; font-size: 14px; color: var(--text-muted); }

.checks { display: grid; gap: 14px; margin-top: 36px; list-style: none; }
@media (min-width: 720px) { .checks { grid-template-columns: repeat(2, 1fr); gap: 16px 32px; } }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.checks svg { flex: none; width: 22px; height: 22px; margin-top: 2px; color: var(--gold); }
.checks strong { font-weight: 600; }
.checks span { color: var(--text-muted); }

/* --- Steps (process) ---------------------------------------------- */
.steps { display: grid; gap: 14px; margin: 0; padding: 0; counter-reset: step; list-style: none; }
.step {
  position: relative;
  padding: 22px 22px 22px;
  padding-inline-start: 68px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 22px;
  top: 22px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}
html[lang="ar"] .step::before { font-family: var(--font-body); font-size: 22px; top: 24px; }
.step h3 { margin-bottom: 6px; font-size: 23px; }
.step p { margin: 0; font-size: 15px; color: var(--text-muted); }
.after-steps { margin-top: 28px; }

/* --- Brands: text wordmarks, never logos --------------------------- */
.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  list-style: none;
}
.brands li {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  direction: ltr;
}
@media (min-width: 900px) { .brands li { font-size: 26px; } }

/* --- Reviews ------------------------------------------------------ */
.review-band {
  display: grid;
  gap: 32px;
  padding: 32px 24px;
  border: 1px solid rgba(207, 146, 69, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(207, 146, 69, 0.14), var(--surface) 60%);
}
@media (min-width: 900px) {
  .review-band { grid-template-columns: auto 1fr; align-items: center; gap: 64px; padding: 48px 52px; }
}
.rating { text-align: center; }
.rating-num {
  display: block;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}
html[lang="ar"] .rating-num { font-family: var(--font-body); font-size: 76px; }
.stars { display: block; margin-top: 8px; font-size: 20px; letter-spacing: 3px; color: var(--gold); }
.rating-from { display: block; margin-top: 8px; font-size: 14px; color: var(--text-muted); }
.review-band h2 { font-size: clamp(28px, 4.5vw, 38px); }
.review-band .section-head { margin-bottom: 0; }
.themes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; list-style: none; }
.themes li {
  padding: 8px 15px;
  border: 1px solid rgba(207, 146, 69, 0.35);
  border-radius: 999px;
  background: var(--gold-12);
  font-size: 14px;
  font-weight: 500;
}
.review-band .btn-ghost { margin-top: 24px; }

/* --- Visit -------------------------------------------------------- */
.visit-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.visit-card h3 { font-size: 24px; margin-bottom: 6px; }
.address { margin: 0; font-style: normal; color: var(--text-muted); }
.hours { width: 100%; border-collapse: collapse; margin: 20px 0 22px; }
.hours td { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.hours td:last-child { text-align: end; color: var(--text-muted); white-space: nowrap; }
.hours tr:last-child td { border-bottom: 0; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.visit-actions > * { flex: 1 1 140px; }
.visit-phone { margin: 0 0 18px; font-size: 15px; }
.visit-phone a { text-decoration: none; font-weight: 600; }
.visit-phone a:hover { color: var(--gold); }

/* --- Footer ------------------------------------------------------- */
.site-footer {
  padding-block: 52px 28px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.foot-grid { display: grid; gap: 34px; }
@media (min-width: 720px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; } }
.foot-grid h4 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track);
  color: var(--text);
}
html[lang="ar"] .foot-grid h4 { font-size: 14px; }
.foot-grid ul { display: grid; gap: 9px; list-style: none; }
.foot-grid a { text-decoration: none; transition: color 0.15s; }
.foot-grid a:hover { color: var(--gold); }
.foot-brand .brand { margin: 0 0 14px; }
.foot-brand p { max-width: 38ch; margin: 0; }
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.foot-bottom a { text-decoration: none; }
.foot-bottom a:hover { color: var(--gold); }

/* Wider desktops get the roomier nav. */
@media (min-width: 1140px) {
  .nav { gap: 30px; margin-inline-end: 12px; }
  .nav a { font-size: 14.5px; }
}

/* =====================================================================
   Inner pages (2026-09-25): services, process, about, contact, terms.
   ===================================================================== */

/* Anchors land below the sticky header. */
[id] { scroll-margin-top: 90px; }

/* --- Page hero: eyebrow, one heading, one line ------------------- */
.page-hero { position: relative; padding-block: 56px 40px; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 85% 0%, rgba(207, 146, 69, 0.14), transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero .wrap > * { max-width: 760px; }
.page-hero h1 { margin-top: 14px; font-size: clamp(36px, 7vw, 60px); }
html[lang="ar"] .page-hero h1 { font-size: clamp(32px, 6.5vw, 54px); }
.page-hero .lede { margin: 18px 0 0; font-size: 17px; color: var(--text-muted); max-width: 56ch; }
@media (min-width: 900px) {
  .page-hero { padding-block: 84px 56px; }
  .page-hero .lede { font-size: 19px; }
}

/* --- Detail cards: "What it is / What to expect / What we don't do" */
.detail-grid { display: grid; gap: 14px; margin-top: 28px; list-style: none; }
@media (min-width: 720px) { .detail-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.detail {
  padding: 22px 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.detail h4 {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track);
  color: var(--gold);
}
html[lang="ar"] .detail h4 { font-size: 14px; }
.detail p { margin: 0; font-size: 15px; color: var(--text-muted); }
.detail p + p { margin-top: 10px; }
.detail.not { border-color: var(--gold-25); background: linear-gradient(135deg, var(--gold-12), var(--surface) 65%); }
.detail.not p { color: var(--text); }
.price { margin: 22px 0 0; font-size: 15px; color: var(--text-muted); }

/* A service block: text beside its photo, alternating sides. */
.service { padding-block: 64px; }
.service + .service { border-top: 1px solid rgba(255, 255, 255, 0.05); }
@media (min-width: 900px) {
  .service { padding-block: 96px; }
  .service .split { align-items: start; }
  .service .split > figure { position: sticky; top: 100px; }
  .service.flip .split > figure { order: -1; }
}

/* --- Journey (process page): one column, numbered ---------------- */
.journey { max-width: 720px; }
.journey .steps { gap: 12px; }
.journey .step { padding-block: 24px; }
.journey .step p { font-size: 15.5px; }

/* --- Credentials: certificate cards, each a link to a PDF -------- */
.certs { display: grid; gap: 16px; list-style: none; }
@media (min-width: 1000px) { .certs { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.cert {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-raised), var(--surface) 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03),
              0 10px 30px -18px rgba(0, 0, 0, 0.6);
}
@media (min-width: 600px) { .cert { grid-template-columns: 132px 1fr; gap: 24px; padding: 24px; align-items: start; } }
/* The document itself, small, white, as a paper would be on this desk. */
.cert-thumb {
  display: block;
  max-width: 200px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s, transform 0.15s;
}
.cert-thumb:hover { border-color: var(--gold); transform: translateY(-2px); }
.cert-thumb img { display: block; width: 100%; height: auto; }
.cert h3 { margin: 6px 0 10px; font-size: 25px; }
.cert-meaning { margin: 0 0 14px; font-size: 15px; color: var(--text); }
.cert-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 14px;
  margin: 0 0 18px;
  font-size: 13.5px;
}
.cert-meta dt { color: var(--text-muted); white-space: nowrap; }
.cert-meta dd { margin: 0; color: var(--text); overflow-wrap: anywhere; }
.certs-note { max-width: 72ch; margin: 22px 0 0; font-size: 14px; color: var(--text-muted); }

/* --- Contact -------------------------------------------------------- */
.contact-grid { display: grid; gap: 16px; list-style: none; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.contact-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.contact-card h3 { font-size: 24px; margin-bottom: 8px; }
.contact-card p { margin: 0 0 14px; color: var(--text-muted); font-size: 15px; }
.contact-card .hours { margin: 6px 0 0; }
.contact-card.primary { border-color: rgba(207, 146, 69, 0.38); background: linear-gradient(135deg, rgba(207, 146, 69, 0.14), var(--surface) 60%); }
.map {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.plus-code { font-family: ui-monospace, Consolas, monospace; font-size: 14px; color: var(--text); }

/* --- Prose (terms) and text placeholders --------------------------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(26px, 4vw, 34px); margin: 48px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 16px; color: var(--text-muted); }
.prose ul { padding-inline-start: 20px; display: grid; gap: 8px; margin: 0 0 1em; }
.prose strong { color: var(--text); font-weight: 600; }
.ph-text {
  margin: 0 0 1em;
  padding: 16px 18px;
  border: 1px dashed var(--gold-45);
  border-radius: var(--radius);
  background: rgba(207, 146, 69, 0.05);
}
.ph-text .ph-tag { margin-bottom: 6px; }
.ph-text p:last-child { margin-bottom: 0; }

/* --- Closing call to action on every inner page ------------------- */
.cta-band {
  display: grid;
  gap: 22px;
  padding: 32px 24px;
  border: 1px solid rgba(207, 146, 69, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(207, 146, 69, 0.14), var(--surface) 60%);
}
.cta-band h2 { font-size: clamp(26px, 4.5vw, 36px); }
.cta-band p { margin: 8px 0 0; color: var(--text-muted); }
.cta-band .hero-actions { align-self: center; }
@media (min-width: 900px) {
  .cta-band { grid-template-columns: 1fr auto; align-items: center; padding: 40px 48px; gap: 40px; }
}

/* Four trust points on the home hero (ISO 9001 joined the strip). */
@media (min-width: 900px) { .trust { grid-template-columns: repeat(4, 1fr); } }

/* A KTR result card carries a badge where the ISO card carries the
   document: the reports themselves are not published (2026-09-25). */
.cert-badge {
  display: block;
  width: 48px;
  height: 48px;
  padding: 11px;
  border-radius: 12px;
  border: 1px solid rgba(207, 146, 69, 0.22);
  background: var(--gold-12);
  color: var(--gold);
}
.cert-badge svg { display: block; width: 100%; height: 100%; }

/* --- How to find us: the directions video beside written steps ------
   Portrait phone video (9:16), never wider than a phone, never
   autoplaying: the visitor is on mobile data. */
.findus { display: grid; gap: 28px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
@media (min-width: 900px) { .findus { grid-template-columns: 360px 1fr; gap: 56px; align-items: start; } }
@media (min-width: 900px) { .findus-video { max-width: 360px; margin-inline: 0; } }
.findus-video {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  object-fit: cover;
}
.findus .steps { max-width: 560px; }

/* --- Real photographs (replacing .ph placeholders, 2026-09-25) ------
   Same box as the placeholder they replace: ratio from --ratio,
   cover-cropped, the card radius and border. */
.photo { margin: 0; }
.photo img {
  display: block;
  width: 100%;
  aspect-ratio: var(--ratio, 4 / 5);
  object-fit: cover;
  object-position: var(--focus, center);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.photo figcaption { margin-top: 10px; font-size: 13px; color: var(--text-muted); }
/* A portrait clip in a photo slot: phone-shaped, centred, never autoplaying. */
.photo video {
  display: block;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

/* A single-column checks list, for when it sits beside a photo. */
.checks.one { grid-template-columns: 1fr; margin-top: 0; }

/* Contact: the video sits in the card grid, so the written steps run
   in a row of three on desktop instead of beside a player. */
@media (min-width: 900px) {
  .findus.steps-only { grid-template-columns: 1fr; }
  .findus.steps-only .steps { max-width: none; grid-template-columns: repeat(3, 1fr); }
}
