/* ==========================================================================
   Accessory Zone 4x4 Centre — Design System
   Dark premium. Steel, powder-coat, chevrons, hex mesh.
   Palette: black / chrome / brand red
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces — committed dark theme, painted explicitly */
  --bg:            #0B0B0C;
  --surface:       #141417;
  --surface-2:     #1B1B1F;
  --surface-3:     #232328;

  /* Brand */
  --red:           #DC1B22;   /* fills, never small text on dark */
  --red-hot:       #FF2A32;   /* hover */
  --red-text:      #FF5A60;   /* accessible red for small text on dark (>=4.5:1) */
  --red-display:   #F0161F;   /* large display type only (>=3:1) */
  --chrome-hi:     #F2F3F5;
  --chrome:        #C2C6CC;
  --chrome-lo:     #7E848D;

  /* Text */
  --text:          #F4F4F5;
  --text-muted:    #9CA1A9;   /* 6.6:1 on --surface-2 */
  --text-dim:      #878D95;   /* 5.1:1 on --surface-2, 5.9:1 on footer black */

  /* Lines */
  --line:          rgba(255, 255, 255, 0.09);
  --line-strong:   rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Archivo", "Arial Black", system-ui, sans-serif;
  --font-label:   "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale (8pt rhythm) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 160ms;
  --dur: 320ms;
  --dur-slow: 620ms;

  /* Elevation */
  --shadow-1: 0 1px 2px rgba(0,0,0,.6);
  --shadow-2: 0 12px 32px -8px rgba(0,0,0,.75);
  --shadow-3: 0 32px 64px -16px rgba(0,0,0,.85);

  /* Textures */
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='48' viewBox='0 0 28 48'%3E%3Cpath d='M14 0l14 8v16l-14 8L0 24V8z' fill='none' stroke='%23ffffff' stroke-opacity='.028' stroke-width='1'/%3E%3C/svg%3E");
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

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

/* Accessible focus — never removed */
:focus-visible {
  outline: 3px solid var(--red-hot);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--red); color: #fff; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
  position: relative;
}

.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section--surface {
  background: var(--surface);
  background-image: var(--hex);
}

/* ---------- Eyebrow: the chevron mark from the logo shield ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--s-3);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 10px;
  flex: none;
  background: var(--red);
  /* chevron, echoing the shield in the logo */
  clip-path: polygon(0 0, 50% 60%, 100% 0, 100% 40%, 50% 100%, 0 40%);
}

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

/* ---------- Headings ---------- */
.h-hero {
  font-size: clamp(2.75rem, 9vw, 7rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.h-1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
.h-2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.h-3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.01em; }

.lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  color: var(--text-muted);
  max-width: 62ch;
  line-height: 1.7;
}

.measure { max-width: 68ch; }

/* Red rule under headings */
.rule {
  width: 64px;
  height: 4px;
  background: var(--red);
  margin-top: var(--s-3);
  border-radius: 1px;
}
.rule--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.9rem;
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--red);
  color: #fff;              /* 4.9:1 on brand red */
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-hot); border-color: var(--red-hot); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--chrome); background: rgba(255,255,255,.05); }

.btn--wa {
  background: #1EBE5D;
  color: #05230F;
  border-color: #1EBE5D;
}
.btn--wa:hover { background: #24D96B; border-color: #24D96B; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 76px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
}
.brand-lockup img { height: 46px; width: auto; }
.brand-lockup__txt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.brand-lockup__txt span {
  display: block;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-top: 3px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.9rem;
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}
.nav-links a:hover { color: var(--text); }

.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 14px;
  height: 2px;
  background: var(--red);
}

.nav-cta { display: none; }

/* Social cluster in the header bar (desktop) */
.nav-social {
  display: none;
  align-items: center;
  gap: 0.1rem;
  padding-left: 0.7rem;
  margin-left: 0.3rem;
  border-left: 1px solid var(--line);
}
.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  color: var(--text-dim);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav-social a:hover { color: var(--red-text); background: rgba(255, 255, 255, .06); }
.nav-social svg { width: 19px; height: 19px; }

/* Social row inside the mobile drawer */
.mobile-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: var(--s-3) var(--gutter) 0;
}
.mobile-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--text-muted);
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.mobile-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.mobile-social svg { width: 22px; height: 22px; }

/* Mobile menu toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: var(--s-2) 0 var(--s-4);
}
.mobile-menu.is-open { display: block; }

/* Direct children only — must not leak into the button row or social icons */
.mobile-menu > a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 var(--gutter);
  font-family: var(--font-label);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
}
.mobile-menu > a[aria-current="page"] { color: var(--text); border-left: 3px solid var(--red); }
.mobile-menu .btn-row { padding: var(--s-3) var(--gutter) 0; margin-top: 0; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* Only once the bar has room for them */
@media (min-width: 1200px) {
  .nav-social { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #08080A;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* Scrim: keeps the headline legible over any photo */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,10,.97) 0%, rgba(8,8,10,.72) 32%, rgba(8,8,10,.28) 62%, rgba(8,8,10,.55) 100%),
    linear-gradient(to right, rgba(8,8,10,.8) 0%, rgba(8,8,10,.1) 55%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero__title { max-width: 18ch; }
.hero__title em {
  font-style: normal;
  color: var(--red-display);
}

.hero__lede {
  margin-top: var(--s-3);
  max-width: 54ch;
  font-size: clamp(1.0625rem, 1.7vw, 1.375rem);
  color: #D6D8DC;
}

/* Credential strip pinned to hero base */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: var(--s-5);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.hero__stats div {
  background: rgba(11,11,12,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1rem 1.25rem;
}
.hero__stats dt {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__stats dd {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
}

/* The address cell carries more text than the numeric stats */
.hero__stats dd.is-addr {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: 0;
}
.hero__stats dd a {
  transition: color var(--dur-fast) var(--ease);
}
.hero__stats dd a:hover { color: var(--red-text); }

@media (min-width: 720px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Service grid ---------- */
.grid {
  display: grid;
  gap: var(--s-2);
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 600px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 600px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: var(--s-3);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

/* Red chevron edge — the shield motif, used as a state cue not decoration */
.svc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur) var(--ease);
}
.svc:hover, .svc:focus-within {
  border-color: var(--line-strong);
  background: var(--surface-3);
  transform: translateY(-2px);
}
.svc:hover::before, .svc:focus-within::before { transform: scaleY(1); }

.svc__icon {
  width: 40px;
  height: 40px;
  color: var(--red-text);
}
.svc__icon svg { width: 100%; height: 100%; stroke-width: 1.5; }

.svc h3 {
  font-size: 1.1875rem;
  letter-spacing: -0.005em;
}

.svc p {
  font-size: 0.9688rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Feature rows (alternating image / text) ---------- */
.feature {
  display: grid;
  gap: var(--s-4);
  align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .feature--flip .feature__media { order: 2; }
}

.feature__media {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Brands ---------- */
.brand-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-2);
  min-height: 150px;
  padding: var(--s-3);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.brand-card:hover { border-color: var(--red); background: var(--surface-3); }

.brand-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  line-height: 1.05;
}
.brand-card__what {
  font-family: var(--font-label);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Gallery ---------- */
.gallery {
  columns: 1;
  column-gap: var(--s-2);
}
@media (min-width: 620px)  { .gallery { columns: 2; } }
@media (min-width: 1000px) { .gallery { columns: 3; } }
@media (min-width: 1400px) { .gallery { columns: 4; } }

.gallery figure {
  break-inside: avoid;
  margin: 0 0 var(--s-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
}
.gallery img {
  width: 100%;
  transition: transform var(--dur-slow) var(--ease), opacity var(--dur) var(--ease);
}
.gallery figure:hover img { transform: scale(1.03); }

.gallery__more {
  display: flex;
  justify-content: center;
  margin-top: var(--s-4);
}

/* ---------- Testimonials ---------- */
.quote {
  padding: var(--s-4);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 3px;
}
.quote blockquote {
  margin: 0 0 var(--s-3);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
}
.quote figcaption {
  font-family: var(--font-label);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Five stars — straight from the logo shield */
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--s-2);
  color: var(--red-text);
}
.stars svg { width: 17px; height: 17px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--red);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hex);
  opacity: 0.5;
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); }
.cta-band .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.cta-band .btn--ghost:hover { background: rgba(0,0,0,.18); border-color: #fff; }
.cta-band .btn--primary {
  background: #0B0B0C;
  border-color: #0B0B0C;
  color: #fff;
}
.cta-band .btn--primary:hover { background: #000; border-color: #000; }

/* ---------- Page header (interior pages) ---------- */
.page-head {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  background-image: var(--hex);
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.45rem; }

.field label {
  font-family: var(--font-label);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field .req { color: var(--red-text); }

.field input,
.field select,
.field textarea {
  min-height: 52px;              /* ≥44px touch target */
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;               /* 16px avoids iOS zoom */
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--chrome-lo); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: var(--surface-3);
  outline: 3px solid rgba(255,42,50,.28);
  outline-offset: 0;
}

.field .hint {
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* ---------- Info list (contact) ---------- */
.info-list { display: flex; flex-direction: column; gap: var(--s-3); }
.info-list > div {
  display: flex;
  gap: var(--s-2);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.info-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.info-list svg { width: 22px; height: 22px; flex: none; color: var(--red-text); margin-top: 3px; }
.info-list dt {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.info-list dd { margin: 0.15rem 0 0; font-size: 1.0625rem; }
.info-list dd a:hover { color: var(--red-text); }

/* ---------- Footer ---------- */
.site-footer {
  background: #070708;
  border-top: 1px solid var(--line);
  padding-block: var(--s-6) var(--s-4);
}

.footer-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 760px)  { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.site-footer h4 {
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin: 0 0 var(--s-2);
}

.footer-links li { margin-bottom: 0.35rem; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}
.footer-links a:hover { color: var(--red-text); }

/* Touch devices get the full 44px target */
@media (pointer: coarse) {
  .footer-links a { min-height: 44px; }
  .footer-links li { margin-bottom: 0; }
}

.social {
  display: flex;
  gap: 0.6rem;
  margin-top: var(--s-2);
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--text-muted);
  transition: all var(--dur-fast) var(--ease);
}
.social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.social svg { width: 20px; height: 20px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--text-dim);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1EBE5D;
  color: #fff;
  box-shadow: var(--shadow-2);
  transition: transform var(--dur) var(--ease), background var(--dur-fast) var(--ease);
}
.wa-float:hover { background: #24D96B; transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Placeholder marker (remove once real details are in) ---------- */
.tbc {
  background: rgba(255,42,50,.14);
  border-bottom: 1px dashed var(--red-text);
  color: var(--red-text);
  padding: 0 3px;
  font-style: normal;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Staggered children */
.reveal-group > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal-group.is-in > * { opacity: 1; transform: none; }
.reveal-group.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-group.is-in > *:nth-child(2) { transition-delay: 45ms; }
.reveal-group.is-in > *:nth-child(3) { transition-delay: 90ms; }
.reveal-group.is-in > *:nth-child(4) { transition-delay: 135ms; }
.reveal-group.is-in > *:nth-child(5) { transition-delay: 180ms; }
.reveal-group.is-in > *:nth-child(6) { transition-delay: 225ms; }
.reveal-group.is-in > *:nth-child(7) { transition-delay: 270ms; }
.reveal-group.is-in > *:nth-child(8) { transition-delay: 315ms; }

/* ---------- 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;
  }
  .reveal, .reveal-group > * { opacity: 1 !important; transform: none !important; }
  .gallery figure:hover img { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .wa-float, .cta-band, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
}
