/* ==========================================================================
   TSA Online — style.css
   Aidans Technology and Services c.c. T/A TSA Online
   Durban, South Africa  |  Est. 2005
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Buttons & links
   5.  Top bar + navigation
   6.  Hero + registry console
   7.  Telemetry rail
   8.  Services
   9.  Data centre band
   10. Record / 21 years
   11. Industries
   12. Reviews
   13. Facebook feed
   14. Team
   15. Contact + map
   16. Footer
   17. Floating actions
   18. Motion & reveal
   19. Responsive
   20. Print
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
  /* Brand */
  --orange:      #f7941d;
  --orange-hi:   #ffb457;
  --orange-deep: #e0780c;
  --ember:       #ef6c1f;

  /* Dark canvas — the server hall */
  --ink:      #070A11;
  --ink-2:    #0C111C;
  --panel:    #121828;
  --panel-2:  #192133;
  --line:     rgba(255, 255, 255, 0.085);
  --line-2:   rgba(255, 255, 255, 0.16);

  /* Light canvas — porcelain, not cream */
  --porcelain:   #EDF0F4;
  --porcelain-2: #F7F9FB;
  --white:       #FFFFFF;

  /* Text */
  --text:       #E9EDF4;
  --muted:      #94A1B6;
  --muted-2:    #6D7B92;
  --on-light:   #0B1120;
  --on-light-2: #4E5B72;

  /* Type */
  --ff-display: 'Cooper Black', 'Cooper Std Black', 'Fraunces', Georgia, 'Times New Roman', serif;
  --ff-body:    'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ff-mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --soft: 'SOFT' 100, 'WONK' 1;

  /* Rhythm */
  --gutter:  clamp(1.15rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 7.75rem);
  --maxw:    1220px;

  /* Radii */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 2px 8px rgba(3, 6, 12, 0.24);
  --shadow-2: 0 18px 48px -18px rgba(3, 6, 12, 0.62);
  --shadow-3: 0 34px 80px -28px rgba(3, 6, 12, 0.78);
  --glow:     0 0 0 1px rgba(247, 148, 29, 0.28), 0 16px 44px -14px rgba(247, 148, 29, 0.42);

  /* Chrome heights */
  --topbar-h: 40px;
  --nav-h:    72px;

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

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + var(--nav-h) + 12px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6.1vw, 4.9rem); }
h2 { font-size: clamp(1.95rem, 4.1vw, 3.05rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); letter-spacing: -0.01em; }
h4 { font-size: 1.02rem; letter-spacing: -0.005em; }

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

a { color: var(--orange); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--orange-hi); }

ul { margin: 0; padding: 0; list-style: none; }

strong, b { font-weight: 700; color: #fff; }

::selection { background: var(--orange); color: #10131b; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--orange);
  color: #10131b;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band { padding-block: var(--section); position: relative; }
.band--tight { padding-block: clamp(3rem, 6vw, 4.75rem); }
.band--ink { background: var(--ink); }
.band--ink2 {
  background:
    radial-gradient(1100px 460px at 82% -8%, rgba(247, 148, 29, 0.09), transparent 62%),
    var(--ink-2);
}
.band--light {
  background: var(--porcelain);
  color: var(--on-light);
}
.band--light h1, .band--light h2, .band--light h3, .band--light h4 { color: var(--on-light); }
.band--light p { color: var(--on-light-2); }
.band--light strong, .band--light b { color: var(--on-light); }

/* Hairline top edge on dark bands */
.band--rule { border-top: 1px solid var(--line); }

/* Section heading block */
.lede { max-width: 62ch; }
.lede p { color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.14rem); }
.band--light .lede p { color: var(--on-light-2); }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--orange);
  flex: none;
}
.eyebrow--center { justify-content: center; }

.head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.75rem 3rem;
  align-items: end;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.grid { display: grid; gap: 1.15rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ==========================================================================
   4. BUTTONS & LINKS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: transform 0.22s var(--ease), background-color 0.22s var(--ease),
              border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), color 0.22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: linear-gradient(180deg, var(--orange-hi), var(--orange) 52%, var(--orange-deep));
  color: #14100a;
  box-shadow: var(--glow);
}
.btn--primary:hover {
  color: #14100a;
  box-shadow: 0 0 0 1px rgba(247, 148, 29, 0.5), 0 22px 54px -14px rgba(247, 148, 29, 0.62);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-2);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(247, 148, 29, 0.55);
  color: #fff;
}

.btn--solid-dark {
  background: var(--on-light);
  color: var(--porcelain-2);
}
.btn--solid-dark:hover { background: #1a2439; color: #fff; }

.btn--wa { background: #25D366; color: #05230f; }
.btn--wa:hover { background: #34e879; color: #05230f; box-shadow: 0 18px 42px -16px rgba(37, 211, 102, 0.6); }

.btn--sm { padding: 0.65rem 1.15rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Arrow link */
.arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.005em;
}
.arrow::after {
  content: "→";
  transition: transform 0.24s var(--ease);
  font-family: var(--ff-mono);
}
.arrow:hover::after { transform: translateX(5px); }

/* ==========================================================================
   5. TOP BAR + NAVIGATION
   ========================================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--topbar-h);
  background: #05070C;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.topbar__in {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__group { display: flex; align-items: center; gap: 1.35rem; min-width: 0; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-family: var(--ff-mono);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.topbar__item:hover { color: var(--orange); }
.topbar__item svg { width: 14px; height: 14px; flex: none; opacity: 0.85; }
.topbar__hours { color: var(--muted-2); }
.topbar__item .lbl-short { display: none; }

.socials { display: flex; align-items: center; gap: 0.35rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
}
.socials a:hover {
  color: var(--orange);
  border-color: rgba(247, 148, 29, 0.4);
  background: rgba(247, 148, 29, 0.08);
}
.socials svg { width: 15px; height: 15px; }

/* Nav */
.nav {
  position: sticky;
  top: var(--topbar-h);
  z-index: 55;
  height: var(--nav-h);
  background: rgba(7, 10, 17, 0.82);
  backdrop-filter: saturate(1.5) blur(16px);
  -webkit-backdrop-filter: saturate(1.5) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.nav.is-stuck {
  background: rgba(7, 10, 17, 0.95);
  box-shadow: 0 12px 34px -18px rgba(0, 0, 0, 0.9);
}
.nav__in {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-2);
}
.brand__word { height: 22px; width: auto; }
.brand__tag {
  display: none;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  border-left: 1px solid var(--line-2);
  padding-left: 0.7rem;
  margin-left: 0.2rem;
  line-height: 1.35;
}

.menu { display: flex; align-items: center; gap: 0.15rem; }
.menu a {
  position: relative;
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem;
  bottom: 0.3rem;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s var(--ease);
}
.menu a:hover { color: #fff; }
.menu a:hover::after,
.menu a.is-active::after { transform: scaleX(1); }
.menu a.is-active { color: #fff; }

.nav__cta { display: flex; align-items: center; gap: 0.55rem; flex: none; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 19px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s linear;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: calc(var(--topbar-h) + var(--nav-h)) 0 0 0;
  z-index: 54;
  background: rgba(7, 10, 17, 0.985);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem var(--gutter) 2.5rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer a.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--ff-display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
}
.drawer a.drawer__link span {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.14em;
}
.drawer a.drawer__link:hover { color: var(--orange); }
.drawer__actions { display: grid; gap: 0.65rem; margin-top: 1.75rem; }
.drawer__meta {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  color: var(--muted-2);
  line-height: 2;
}

/* ==========================================================================
   6. HERO + REGISTRY CONSOLE
   ========================================================================== */
.hero {
  position: relative;
  padding-block: clamp(3.25rem, 7vw, 6rem) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(980px 620px at 12% -12%, rgba(247, 148, 29, 0.15), transparent 60%),
    radial-gradient(900px 620px at 92% 12%, rgba(31, 90, 160, 0.22), transparent 62%),
    var(--ink);
}
/* Server-rack hairlines */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg,
    rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 84px);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 62%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 62%, transparent);
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(2.25rem, 5vw, 4.25rem);
  align-items: center;
}

.hero h1 { margin-bottom: 1.05rem; }
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
.hero__sub {
  font-size: clamp(1.04rem, 1.55vw, 1.2rem);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__note {
  margin-top: 1rem;
  font-family: var(--ff-mono);
  font-size: 0.76rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.hero__note a { color: var(--muted); border-bottom: 1px solid var(--line-2); }
.hero__note a:hover { color: var(--orange); border-color: var(--orange); }

/* Trust chips */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  white-space: nowrap;
}
.trust__chip b { color: var(--text); font-weight: 600; }
.trust__chip--stars { border-color: rgba(247, 148, 29, 0.35); }
.trust__chip .star { color: var(--orange); }

/* Registry console */
.console {
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, var(--panel), #0B0F1A);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  position: relative;
}
.console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 148, 29, 0.08), transparent 34%);
  pointer-events: none;
}
.console__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
}
.console__dot { width: 9px; height: 9px; border-radius: 50%; background: #2B364A; flex: none; }
.console__dot--live { background: var(--orange); box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.18); }
.console__title {
  margin-left: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.console__body { padding: clamp(1.25rem, 2.4vw, 1.75rem); position: relative; z-index: 1; }
.console__label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* Domain search field */
.finder { display: grid; gap: 0.6rem; }
.finder__field {
  display: flex;
  align-items: stretch;
  background: #05070C;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.finder__field:focus-within {
  border-color: rgba(247, 148, 29, 0.6);
  box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.12);
}
.finder__input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--ff-mono);
  font-size: 0.95rem;
  padding: 0.95rem 1rem;
  letter-spacing: 0.01em;
}
.finder__input::placeholder { color: #4B586E; }
.finder__input:focus { outline: none; }
.finder__tld {
  flex: none;
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--orange);
  font-family: var(--ff-mono);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0 0.85rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%23f7941d'%3E%3Cpath d='M6 8.5 1.8 4.3l.9-.9L6 6.7l3.3-3.3.9.9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 11px;
  padding-right: 1.9rem;
}
.finder__tld:focus { outline: none; }
.finder__hint {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

/* Search result panel */
.finder__result {
  display: none;
  margin-top: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r);
  border: 1px solid rgba(247, 148, 29, 0.32);
  background: rgba(247, 148, 29, 0.07);
  animation: rise 0.4s var(--ease) both;
}
.finder__result.is-shown { display: block; }
.finder__result--yes { border-color: rgba(78, 208, 126, 0.42); background: rgba(78, 208, 126, 0.08); }
.finder__result--no  { border-color: rgba(255, 122, 122, 0.38); background: rgba(255, 122, 122, 0.07); }
.finder__result--busy { border-style: dashed; }

.finder__verdict {
  font-family: var(--ff-mono);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}
.finder__verdict em { font-style: normal; color: var(--orange); }
.finder__verdict--yes { color: #9BE9B8; }
.finder__verdict--no  { color: #FFB4B4; }
.finder__tick  { color: #4ED07E; font-weight: 700; }
.finder__cross { color: #FF7A7A; font-weight: 700; }

.finder__alts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
}
.finder__alts li {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.finder__busy { display: flex; align-items: center; gap: 0.6rem; }
.finder__spin {
  width: 14px; height: 14px;
  border: 2px solid rgba(247, 148, 29, 0.28);
  border-top-color: var(--orange);
  border-radius: 50%;
  flex: none;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.finder__result p {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  line-height: 1.6;
}
.finder__result .dom {
  font-family: var(--ff-mono);
  color: var(--orange);
  font-weight: 600;
  word-break: break-all;
}
.finder__result .btn-row { gap: 0.5rem; }

/* Spec readout */
.readout {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--line-2);
  font-family: var(--ff-mono);
  font-size: 0.775rem;
  line-height: 2.05;
  color: var(--muted);
}
.readout__head {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.5rem;
}
.readout__row { display: flex; gap: 0.6rem; align-items: baseline; }
.readout__k { color: var(--muted-2); flex: none; }
.readout__fill {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}
.readout__v { color: var(--text); flex: none; text-align: right; }
.readout__v--ok { color: #4ED07E; }

/* ==========================================================================
   7. TELEMETRY RAIL
   ========================================================================== */
.rail {
  border-block: 1px solid var(--line);
  background: #05070C;
  overflow: hidden;
  position: relative;
}
.rail::before, .rail::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.rail::before { left: 0;  background: linear-gradient(90deg, #05070C, transparent); }
.rail::after  { right: 0; background: linear-gradient(270deg, #05070C, transparent); }

.rail__track {
  display: flex;
  width: max-content;
  animation: slide 46s linear infinite;
}
.rail:hover .rail__track { animation-play-state: paused; }

.rail__set { display: flex; flex: none; }
.rail__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--ff-mono);
  font-size: 0.775rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
.rail__item b { color: var(--orange); font-weight: 600; }
.rail__item i {
  font-style: normal;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4ED07E;
  flex: none;
}

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   8. SERVICES
   ========================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.1rem;
}
.svc {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.35s var(--ease), background-color 0.3s var(--ease);
}
.svc::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.svc:hover { transform: translateY(-4px); border-color: rgba(247, 148, 29, 0.35); }
.svc:hover::before { opacity: 1; }

.svc--wide { grid-column: span 3; }

.svc__no {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-bottom: 1.35rem;
}
.svc__icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(247, 148, 29, 0.11);
  border: 1px solid rgba(247, 148, 29, 0.24);
  color: var(--orange);
  margin-bottom: 1.15rem;
}
.svc__icon svg { width: 22px; height: 22px; }
.svc h3 { margin-bottom: 0.6rem; }
.svc p { color: var(--muted); font-size: 0.95rem; }

.svc__list {
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--muted);
}
.svc__list li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.55;
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--orange);
  opacity: 0.7;
}
.svc__foot { margin-top: auto; padding-top: 1.5rem; }

.svc__media {
  margin: 1.35rem -1px -1px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: hidden;
}
.svc__media img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 0.6s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.035); }

/* ==========================================================================
   9. DATA CENTRE BAND
   ========================================================================== */
.dc {
  position: relative;
  min-height: clamp(240px, 26vw, 340px);
  display: grid;
  place-items: center;
  background-image:
    radial-gradient(ellipse 56% 92% at 50% 50%, rgba(5, 7, 12, 0.9) 0%, rgba(5, 7, 12, 0.58) 62%, rgba(5, 7, 12, 0.2) 100%),
    linear-gradient(90deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.3) 30%, rgba(5, 7, 12, 0.3) 70%, rgba(5, 7, 12, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.42), rgba(5, 7, 12, 0.6)),
    url("../images/data-centre.jpg");
  background-size: cover;
  background-position: center;
  border-block: 1px solid var(--line);
  padding-block: clamp(2.75rem, 5vw, 4rem);
  text-align: center;
}
.dc__in { position: relative; max-width: 60ch; }
.dc h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 0.7rem; }
.dc p { color: #C2CCDB; font-size: 1rem; }
.dc .btn-row { justify-content: center; margin-top: 1.6rem; }

/* ==========================================================================
   10. RECORD / 21 YEARS
   ========================================================================== */
.record {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}
.record__figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 17, 32, 0.12);
  box-shadow: 0 30px 70px -34px rgba(11, 17, 32, 0.5);
  background: var(--white);
}
.record__figure img { width: 100%; }

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(11, 17, 32, 0.1);
  border: 1px solid rgba(11, 17, 32, 0.1);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 2rem;
}
.fact { background: var(--porcelain-2); padding: 1.15rem 1.25rem; }
.fact__n {
  font-family: var(--ff-display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1;
  color: var(--on-light);
  letter-spacing: -0.02em;
}
.fact__n span { color: var(--orange); }
.fact__l {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-light-2);
  margin-top: 0.4rem;
}

.checks { display: grid; gap: 0.7rem; margin-top: 1.9rem; }
.checks li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--on-light-2);
  line-height: 1.6;
}
.checks li b { color: var(--on-light); }
.checks svg { width: 19px; height: 19px; flex: none; color: var(--orange); margin-top: 0.22em; }

/* ==========================================================================
   11. INDUSTRIES
   ========================================================================== */
.inds {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ind {
  background: var(--ink-2);
  padding: 1.6rem 1.4rem;
  transition: background-color 0.3s var(--ease);
}
.ind:hover { background: var(--panel); }
.ind__k {
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--orange);
  opacity: 0.75;
  margin-bottom: 0.9rem;
}
.ind h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.ind p { font-size: 0.82rem; color: var(--muted-2); margin: 0; line-height: 1.55; }

/* ==========================================================================
   12. REVIEWS
   ========================================================================== */
.rev-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 1.35rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  margin-bottom: 1.15rem;
}
.rev-score {
  font-family: var(--ff-display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: 3.1rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.rev-stars { color: var(--orange); letter-spacing: 0.16em; font-size: 1.05rem; line-height: 1; }
.rev-meta { font-family: var(--ff-mono); font-size: 0.74rem; color: var(--muted-2); margin-top: 0.45rem; letter-spacing: 0.03em; }
.rev-head .btn-row { margin-left: auto; }

.quote {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.022);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease);
}
.quote:hover { border-color: rgba(247, 148, 29, 0.3); }
.quote__stars { color: var(--orange); letter-spacing: 0.14em; font-size: 0.85rem; margin-bottom: 0.9rem; }
.quote blockquote {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}
.quote figcaption {
  margin-top: auto;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ==========================================================================
   13. FACEBOOK FEED
   ========================================================================== */
.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.fb-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  padding: 0.6rem;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  max-width: 100%;
}
.fb-card__frame {
  border-radius: var(--r);
  overflow: hidden;          /* belt and braces: clip anything that overshoots */
  background: #fff;
  min-height: 480px;
  max-width: 100%;
  display: flex;
  justify-content: center;   /* centre the feed if it renders narrower */
}
.fb-card iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  display: block;
}
.fb-fallback {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--on-light-2);
  font-size: 0.9rem;
}

.fb-note {
  margin: 0.85rem 0.25rem 0;
  font-family: var(--ff-mono);
  font-size: 0.71rem;
  letter-spacing: 0.02em;
  color: var(--muted-2);
  text-align: center;
}
.fb-note a { color: var(--muted); border-bottom: 1px solid var(--line-2); }
.fb-note a:hover { color: var(--orange); border-color: var(--orange); }

.social-links { display: grid; gap: 0.6rem; margin-top: 1.75rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.022);
  color: var(--text);
  font-weight: 600;
  font-size: 0.93rem;
  transition: all 0.24s var(--ease);
}
.social-link:hover {
  border-color: rgba(247, 148, 29, 0.4);
  background: rgba(247, 148, 29, 0.06);
  color: #fff;
  transform: translateX(4px);
}
.social-link svg { width: 20px; height: 20px; color: var(--orange); flex: none; }
.social-link span { margin-left: auto; font-family: var(--ff-mono); font-size: 0.7rem; color: var(--muted-2); }

/* ==========================================================================
   14. TEAM
   ========================================================================== */
.people { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.person {
  padding: 1.6rem;
  border: 1px solid rgba(11, 17, 32, 0.11);
  border-radius: var(--r-lg);
  background: var(--porcelain-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.person:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -28px rgba(11, 17, 32, 0.4); }
.person__role {
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.person h3 { margin-bottom: 0.15rem; }
.person__line { font-size: 0.88rem; color: var(--on-light-2); margin-bottom: 1.15rem; }
.person__contact { display: grid; gap: 0.4rem; font-size: 0.87rem; }
.person__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--on-light);
  word-break: break-word;
}
.person__contact a:hover { color: var(--orange-deep); }
.person__contact svg { width: 15px; height: 15px; color: var(--on-light-2); flex: none; }

/* ==========================================================================
   15. CONTACT + MAP
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.offices { display: grid; gap: 1rem; }
.office {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.025);
}
.office__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}
.office h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.office address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.office__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.office__meta a { color: var(--text); }
.office__meta a:hover { color: var(--orange); }

.map {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--panel);
  filter: grayscale(0.25) contrast(1.05);
}
.map iframe { width: 100%; height: 300px; border: 0; display: block; }

/* Form */
.form-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, var(--panel), #0A0E18);
  box-shadow: var(--shadow-3);
}
.form-card h3 { margin-bottom: 0.4rem; }
.form-card > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 1.5rem; }

.field { display: grid; gap: 0.4rem; margin-bottom: 0.9rem; }
.field label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #05070C;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 116px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: #47546A; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(247, 148, 29, 0.6);
  box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.11);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%2394A1B6'%3E%3Cpath d='M6 8.5 1.8 4.3l.9-.9L6 6.7l3.3-3.3.9.9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center; background-size: 12px;
  padding-right: 2.2rem;
}
.field--split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
.field--split > div { display: grid; gap: 0.4rem; }

.pot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--muted-2);
  line-height: 1.55;
  margin: 0.35rem 0 1.25rem;
}
.form-consent input { margin-top: 0.2rem; accent-color: var(--orange); flex: none; width: 16px; height: 16px; }

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  line-height: 1.55;
}
.form-status.is-shown { display: block; }
.form-status.is-ok { background: rgba(78, 208, 126, 0.1); border: 1px solid rgba(78, 208, 126, 0.35); color: #9BE9B8; }
.form-status.is-err { background: rgba(255, 107, 107, 0.09); border: 1px solid rgba(255, 107, 107, 0.32); color: #FFB4B4; }

.form-alt {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px dashed var(--line-2);
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.5rem 1rem;
  font-family: var(--ff-mono);
  font-size: 0.76rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.form-alt dt { color: var(--muted-2); }
.form-alt dd { margin: 0; }
.form-alt a { color: var(--text); word-break: break-word; }
.form-alt a:hover { color: var(--orange); }

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.foot {
  background: #05070C;
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.75rem) 1.75rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--line);
}
.foot__word { height: 26px; width: auto; margin-bottom: 1.15rem; }
.foot p { font-size: 0.88rem; color: var(--muted-2); line-height: 1.7; }
.foot h4 {
  font-family: var(--ff-mono);
  font-variation-settings: normal;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.15rem;
}
.foot__list { display: grid; gap: 0.55rem; }
.foot__list a, .foot__list span { color: var(--muted); font-size: 0.88rem; }
.foot__list a:hover { color: var(--orange); }
.foot .socials { margin-top: 1.25rem; }
.foot .socials a { border: 1px solid var(--line); width: 34px; height: 34px; }

.foot__legal {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted-2);
}
.foot__legal nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.foot__legal a { color: var(--muted-2); }
.foot__legal a:hover { color: var(--orange); }

.disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.73rem;
  line-height: 1.75;
  color: #56637A;
  max-width: 95ch;
}
.disclaimer strong { color: var(--muted-2); font-weight: 600; }

/* ==========================================================================
   17. FLOATING ACTIONS
   ========================================================================== */
.fab {
  position: fixed;
  right: clamp(0.9rem, 2.5vw, 1.5rem);
  bottom: clamp(0.9rem, 2.5vw, 1.5rem);
  z-index: 50;
  display: grid;
  gap: 0.55rem;
  justify-items: end;
}
.fab__btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #05230f;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.6);
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fab__btn:hover { transform: scale(1.07); }
.fab__btn svg { width: 27px; height: 27px; }
.fab__btn--top {
  width: 44px; height: 44px;
  background: rgba(18, 24, 40, 0.9);
  color: var(--text);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}
.fab__btn--top.is-shown { opacity: 1; visibility: visible; transform: none; }
.fab__btn--top svg { width: 18px; height: 18px; }

/* ==========================================================================
   18. MOTION & REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.2); }
  50%      { box-shadow: 0 0 0 7px rgba(247, 148, 29, 0.04); }
}
.console__dot--live { animation: pulse 2.6s ease-in-out infinite; }

/* ==========================================================================
   19. RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .console { max-width: 620px; }
  .svc--wide { grid-column: span 3; }
  .inds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-grid { grid-template-columns: 1fr; }
  .fb-card { max-width: 520px; }
  .foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.25rem; }
}

@media (max-width: 940px) {
  :root { --nav-h: 66px; }
  .menu, .nav__cta .btn--ghost { display: none; }
  .burger { display: grid; }
  .topbar__hours, .topbar__item--mail { display: none; }
  .record { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .people { grid-template-columns: 1fr; }
  .head { grid-template-columns: 1fr; align-items: start; }
  .head .btn-row { margin-top: -0.5rem; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }
  .svc, .svc--wide { grid-column: 1 / -1; }
  .svc-grid { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .rev-head { flex-direction: column; align-items: flex-start; }
  .rev-head .btn-row { margin-left: 0; }
  .field--split { grid-template-columns: 1fr; }
  .trust { gap: 0.4rem; }
  .foot__grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot__legal { flex-direction: column; align-items: flex-start; text-align: left; }
  .dc { min-height: 0; }
}

@media (max-width: 700px) {
  /* Quick contact stays reachable: Call · Email · WhatsApp, evenly spread */
  .topbar__in { gap: 0; }
  .topbar__group { flex: 1 1 auto; justify-content: space-evenly; gap: 0; }
  .topbar__group--right { flex: 0 1 auto; }
  .topbar__item { padding-inline: 0.4rem; }
  .topbar__item .lbl-long { display: none; }
  .topbar__item .lbl-short { display: inline; }
  .topbar__item--mail { display: inline-flex; }
  .socials { display: none; }
}

@media (max-width: 560px) {
  :root { --topbar-h: 44px; }
  .topbar { font-size: 0.75rem; }
  .topbar__item { font-size: 0.71rem; gap: 0.35rem; }
  /* The brand must be allowed to shrink or it forces the nav wider than the screen */
  .brand { min-width: 0; }
  .brand__word { max-width: 100%; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__word { height: 19px; }
  .btn { padding: 0.85rem 1.3rem; font-size: 0.9rem; }
  .btn-row .btn { flex: 1 1 100%; }
  .hero .btn-row .btn { flex: 1 1 100%; }
  .facts { grid-template-columns: 1fr; }
  .inds { grid-template-columns: 1fr; }
  .fb-card { padding: 0.35rem; }
  .fb-card__frame { min-height: 460px; }
  .finder__field { flex-wrap: wrap; }
  .finder__input { flex-basis: 100%; }
  .finder__tld { flex: 1 1 auto; border-left: 0; border-top: 1px solid var(--line); padding-block: 0.7rem; }
  .fab__btn { width: 50px; height: 50px; }
}

@media (min-width: 1180px) {
  .brand__tag { display: block; }
}


/* Very narrow phones (≤430px): the brand, a full-width WhatsApp button and the
   burger cannot all fit. Collapse the button to its icon — the number is still
   one tap away in the sticky top bar and the drawer. */
@media (max-width: 430px) {
  .nav__in { gap: 0.65rem; }
  .nav__cta { gap: 0.4rem; }
  .nav__cta .btn--primary .lbl { display: none; }
  .nav__cta .btn--primary {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
  }
  .nav__cta .btn--primary svg { width: 21px; height: 21px; }
  .brand__word { height: 17px; }
  .brand__mark { width: 30px; height: 30px; }
}

/* Nothing may ever push the page sideways. */
html, body { max-width: 100%; overflow-x: hidden; }

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

/* ==========================================================================
   20. PRINT
   ========================================================================== */
@media print {
  .topbar, .nav, .drawer, .fab, .rail, .map, .fb-card, .form-card { display: none !important; }
  body { background: #fff; color: #000; }
  .band, .hero { padding-block: 1.5rem; background: #fff !important; color: #000; }
  h1, h2, h3, h4, p, li { color: #000 !important; }
  a { color: #000; text-decoration: underline; }
}
