/* Apex Construct site stylesheet. Mobile-first, no framework.
   Black-and-gold brand system: near-black shell, warm gold accents,
   bone text, Bebas Neue display headings, Archivo body. Long-form
   reading sections sit on a light "paper" band (.band-light). */

/* ---------- Fonts (self-hosted, latin subsets) ---------- */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/bebas-neue-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin-var.woff2") format("woff2");
}

/* ---------- Reset-lite & tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }

:root {
  /* dark shell */
  --ink: #0b0b0c;
  --surface: #141416;
  --surface-2: #17150e;
  --gold: #c9a227;
  --gold-bright: #e8c25c;
  --bone: #f2ede3;
  --mute: #a89f8d;
  --line: rgba(201, 162, 39, 0.16);
  --line-strong: rgba(201, 162, 39, 0.38);
  /* light band */
  --paper: #f2ede3;
  --paper-2: #e9e2d2;
  --paper-ink: #1d1b16;
  --paper-mute: #5b543f;
  --paper-line: #d8d0bc;
  /* shared */
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1160px;
  --display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --body: "Archivo", system-ui, Arial, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--mute);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img, svg { max-width: 100%; height: auto; vertical-align: middle; }
picture img { display: block; }
::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: 1.45rem; letter-spacing: 0.03em; }
p { margin: 0 0 1em; }
a { color: var(--gold); }
a:hover { color: var(--gold-bright); }
ul, ol { padding-left: 1.3em; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--gold); color: var(--ink); padding: 8px 16px; font-weight: 700;
}
.skip-link:focus { left: 0; }

.icon { flex: none; }

/* Eyebrow kicker above headings */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--gold); }
.center .eyebrow, .eyebrow.center { justify-content: center; }

/* ---------- Buttons ---------- */
.button, .button-outline {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s;
}
.button { background: var(--gold); color: var(--ink); }
.button:hover {
  background: var(--gold-bright); border-color: var(--gold-bright); color: var(--ink);
  transform: translateY(-3px); box-shadow: 0 14px 30px rgba(201, 162, 39, 0.28);
}
.button-outline { color: var(--bone); background: transparent; border-color: var(--line-strong); }
.button-outline:hover {
  background: rgba(201, 162, 39, 0.1); border-color: var(--gold);
  color: var(--bone); transform: translateY(-3px);
}
.button-lg { padding: 16px 36px; font-size: 0.85rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--bone); text-decoration: none;
  font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.06em;
}
.brand:hover { color: var(--bone); }
.brand img { width: 40px; height: 40px; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px; cursor: pointer; color: var(--bone);
}
.nav-toggle .nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: inline; }

.nav-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu > li > a {
  display: block; padding: 10px 14px;
  color: rgba(242, 237, 227, 0.82); text-decoration: none;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-menu > li > a:hover { color: var(--gold-bright); }
.nav-menu > li > a.button {
  color: var(--ink); padding: 11px 22px; margin-left: 10px;
}
.nav-menu > li > a.button:hover { color: var(--ink); }

.has-submenu { position: relative; }
.submenu {
  display: none;
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  list-style: none; margin: 0; padding: 8px 0;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu { display: block; }
.submenu a {
  display: block; padding: 9px 18px;
  color: var(--bone); text-decoration: none; font-size: 0.92rem;
}
.submenu a:hover { background: rgba(201, 162, 39, 0.1); color: var(--gold-bright); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line-strong);
    padding: 10px 22px 24px;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a {
    padding: 14px 4px; border-bottom: 1px solid var(--line);
    font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.05em;
    text-transform: none; color: var(--bone);
  }
  .nav-menu > li > a.button { margin: 16px 0 0; text-align: center; border-bottom: 0; font-family: var(--body); font-size: 0.85rem; }
  .submenu {
    display: block; position: static;
    background: none; border: 0; box-shadow: none; padding: 0 0 0 18px;
  }
  .submenu a { color: var(--mute); padding: 7px 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(88svh, 760px);
  overflow: hidden;
  background: var(--ink);
}
.hero picture, .hero > img { position: absolute; inset: 0; }
.hero picture img, .hero > img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 12, 0.72) 0%, rgba(11, 11, 12, 0.35) 45%, var(--ink) 98%),
    linear-gradient(100deg, rgba(11, 11, 12, 0.85) 0%, rgba(11, 11, 12, 0.25) 60%, transparent 100%);
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-inner { max-width: 720px; padding: 96px 0 72px; }
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.95;
  margin: 0 0 20px;
}
.hero h1 .gold { color: var(--gold); }
.hero .tagline {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.24em;
  margin: 0 0 16px;
}
.hero .tagline::before { content: ""; width: 32px; height: 1px; background: var(--gold); }
.hero p { max-width: 54ch; font-size: clamp(1rem, 2.2vw, 1.15rem); color: rgba(242, 237, 227, 0.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-inner > * { animation: fadeup 0.9s var(--ease) both; }
.hero-inner > *:nth-child(2) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.4s; }
@keyframes fadeup {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Trust bar (gold diamond chips) ---------- */
.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-bar ul {
  display: flex; flex-wrap: wrap; gap: 12px 34px; justify-content: center;
  list-style: none; margin: 0; padding: 18px 22px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.trust-bar li { display: flex; align-items: center; gap: 10px; color: rgba(242, 237, 227, 0.75); }
.trust-bar .icon { color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-title .eyebrow { justify-content: center; }
.section-title h2::after {
  content: ""; display: block; width: 70px; height: 3px;
  background: var(--gold); margin: 16px auto 0;
}
.section-title p { color: var(--mute); }
.section-title.left { text-align: left; margin: 0 0 24px; }
.section-title.left .eyebrow { justify-content: flex-start; }
.section-title.left h2::after { margin-left: 0; }
.band-light .section-title p { color: var(--paper-mute); }

/* ---------- Cards (dark panels) ---------- */
.card-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.card:hover {
  transform: translateY(-6px); border-color: var(--line-strong);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}
.section.alt .card { background: var(--ink); }
.card .icon { color: var(--gold); margin-bottom: 16px; }
.card h3 a { color: var(--bone); text-decoration: none; }
.card h3 a:hover { color: var(--gold-bright); }
.card p { color: var(--mute); margin-bottom: 0.6em; font-size: 0.95rem; }
.card .card-more {
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}

/* ---------- Photo service cards ---------- */
.svc-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.svc {
  position: relative; display: block;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.4s;
}
.svc picture, .svc > img { position: absolute; inset: 0; height: 100%; }
.svc picture img, .svc > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc:hover picture img, .svc:hover > img { transform: scale(1.06); }
.svc:hover { border-color: var(--line-strong); }
.svc::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(11, 11, 12, 0.92) 92%);
}
.svc-label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 24px; }
.svc-label::before {
  content: ""; display: block; width: 34px; height: 3px;
  background: var(--gold); margin-bottom: 14px;
  transition: width 0.5s var(--ease);
}
.svc:hover .svc-label::before { width: 60px; }
.svc-label h3 { font-size: 1.8rem; margin-bottom: 6px; color: var(--bone); }
.svc-label p { margin: 0; font-size: 0.9rem; color: rgba(242, 237, 227, 0.78); }
/* no-photo variant: dark panel with an illustration or outlined type */
.svc.no-photo { background: linear-gradient(150deg, var(--surface-2), var(--surface)); }
.svc.no-photo::after { display: none; }
.svc.no-photo .svc-ghost {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--display); font-size: 4.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201, 162, 39, 0.35);
  pointer-events: none;
}
.svc.no-photo .svc-illo {
  position: absolute; left: 50%; top: 34%;
  transform: translate(-50%, -50%);
  width: min(68%, 260px); color: var(--gold); opacity: 0.9;
  transition: transform 0.6s var(--ease);
}
.svc:hover .svc-illo { transform: translate(-50%, -50%) scale(1.05); }

/* ---------- Illustrations (line-art SVGs for photo-less products) ---------- */
.illo { display: block; width: 100%; height: auto; }
.page-hero-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.page-hero-illo { flex: 0 0 min(240px, 30vw); color: var(--gold); opacity: 0.9; }
@media (max-width: 640px) { .page-hero-illo { display: none; } }

/* Fence style grid (light band) */
.style-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  list-style: none; margin: 1.5em 0; padding: 0;
}
.style-grid figure {
  margin: 0; padding: 14px 14px 10px;
  border: 1px solid var(--paper-line); border-radius: var(--radius);
  background: #fbf8f1;
}
.style-grid .illo { color: #8a6d10; }
.style-grid figcaption { font-weight: 600; color: var(--paper-ink); padding-top: 8px; font-size: 0.95rem; }
.style-grid figcaption span { display: block; font-weight: 400; color: var(--paper-mute); font-size: 0.85rem; }
@media (max-width: 860px) { .svc { aspect-ratio: 16 / 11; } }

/* ---------- Steps (process) ---------- */
.steps {
  counter-reset: step;
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.steps li {
  counter-increment: step;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
}
.section.alt .steps li { background: var(--ink); }
.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--display); font-size: 2.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 14px;
}
.steps h3 { margin-bottom: 0.4em; }
.steps p { color: var(--mute); margin: 0; font-size: 0.95rem; }

/* ---------- Gallery (CSS scroll-snap, no JS) ---------- */
.gallery {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(85%, 480px);
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 18px; -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--gold) var(--surface);
}
.gallery figure { margin: 0; scroll-snap-align: center; position: relative; }
.gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.gallery figcaption {
  font-size: 0.88rem; color: var(--mute); padding: 10px 4px 0;
  display: flex; align-items: center; gap: 10px;
}
.gallery figcaption::before { content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex: none; }

/* ---------- Page hero (subpage heading band, dark) ---------- */
.page-hero { padding: 48px 0 40px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 0; }
.page-hero .lead, .page-hero p {
  max-width: 64ch; font-size: 1.1rem; color: var(--mute); margin: 18px 0 0;
}

/* ---------- Light reading band ---------- */
.band-light { background: var(--paper); color: var(--paper-mute); }
.band-light h1, .band-light h2, .band-light h3 { color: var(--paper-ink); }
.band-light a { color: #8a6d10; }
.band-light a:hover { color: #6e5407; }
.band-light ::selection { background: var(--paper-ink); color: var(--paper); }

/* ---------- Prose (markdown content) ---------- */
.prose { padding: 48px 22px 24px; max-width: 800px; }
.prose h2 { margin-top: 1.5em; font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.prose h2::after {
  content: ""; display: block; width: 56px; height: 3px;
  background: var(--gold); margin-top: 10px;
}
.prose ul li, .prose ol li { margin-bottom: 0.4em; }
.prose .lead { font-size: 1.18rem; }
.band-light .prose .lead { color: var(--paper-ink); font-weight: 500; }
.prose figure { margin: 1.6em 0; }
.prose figure img { border-radius: var(--radius); }
.prose table { border-collapse: collapse; width: 100%; margin: 1.5em 0; font-size: 0.95rem; }
.prose th, .prose td { border: 1px solid var(--paper-line); padding: 10px 14px; text-align: left; }
.prose th { background: var(--paper-2); color: var(--paper-ink); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.82rem; border-bottom: 1px solid var(--line); }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 4px;
  list-style: none; margin: 0 auto; padding: 12px 22px;
  max-width: var(--container);
}
.breadcrumbs li + li::before { content: "›"; padding: 0 8px; color: var(--mute); }
.breadcrumbs a { color: var(--mute); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.breadcrumbs [aria-current] { color: var(--bone); font-weight: 600; }

/* ---------- Link blocks (cross-linking) ---------- */
.link-block { padding: 8px 22px 48px; max-width: 800px; }
.pill-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; margin: 0; padding: 0;
}
.pill-list a {
  display: inline-block; padding: 9px 18px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  color: var(--bone); text-decoration: none;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.pill-list a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.band-light .pill-list a { border-color: #c4ba9d; color: var(--paper-ink); }
.band-light .pill-list a:hover { background: var(--paper-ink); border-color: var(--paper-ink); color: var(--paper); }

/* ---------- FAQ ---------- */
.faq-section { max-width: 800px; margin: 0 auto; padding: 16px 22px 56px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 10px; background: var(--surface);
}
.faq-item summary {
  padding: 16px 20px; cursor: pointer; font-weight: 600; color: var(--bone);
  list-style: none; position: relative; padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-family: var(--display); font-size: 1.5rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 20px 16px; margin: 0; color: var(--mute); }
.band-light .faq-item { background: #fbf8f1; border-color: var(--paper-line); }
.band-light .faq-item summary { color: var(--paper-ink); }
.band-light .faq-item summary::after { color: #8a6d10; }
.band-light .faq-item p { color: var(--paper-mute); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--surface-2), var(--ink));
  border-top: 1px solid var(--line-strong);
  text-align: center; padding: 84px 0;
}
.cta-band::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.cta-band p { max-width: 560px; margin: 0 auto 28px; color: var(--mute); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; padding-bottom: 56px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }
.contact-info h2 { font-size: 1.6rem; }
.contact-direct { list-style: none; margin: 0 0 1.6em; padding: 0; }
.contact-direct li { display: flex; align-items: center; gap: 10px; padding: 7px 0; color: var(--mute); }
.contact-info .icon { color: var(--gold); }
.contact-list { list-style: disc; margin: 0 0 1.6em; padding: 0 0 0 1.3em; }
.contact-list li { display: list-item; color: var(--mute); }
.contact-list li { margin-bottom: 0.4em; }

.form-facade {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--surface); padding: 36px; text-align: center;
  position: relative; overflow: hidden;
}
.form-facade::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}
.form-facade p { color: var(--mute); }
.form-frame { border: 0; width: 100%; min-height: 1200px; background: #fff; border-radius: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 0; font-size: 0.95rem; color: var(--mute);
}
.cta-band + .site-footer { border-top: 0; }
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: 40px;
}
.footer-logo {
  font-family: var(--display); font-size: 1.6rem; letter-spacing: 0.05em;
  color: var(--bone); margin-bottom: 4px;
}
.footer-slogan { color: var(--gold); font-style: italic; }
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { display: flex; align-items: center; gap: 8px; padding: 5px 0; }
.footer-contact a { color: var(--mute); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold-bright); }
.footer-contact .icon { color: var(--gold); }
.footer-col h2 {
  font-family: var(--body); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--gold); margin-bottom: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col a { color: var(--mute); text-decoration: none; display: block; padding: 4px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--bone); }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 20px; padding-bottom: 20px; text-align: center; font-size: 0.85rem;
}
.footer-legal a { color: var(--mute); }
.footer-legal a:hover { color: var(--gold-bright); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-inner > * { animation: none; }
  .button, .button-outline, .card, .svc picture img, .svc > img, .svc-label::before {
    transition: none;
  }
}
