/* ==========================================================================
   TOBR Digital — Design System
   Static, dependency-free CSS. Mobile-first.
   ========================================================================== */

:root {
  /* Brand palette */
  --charcoal: #151515;
  --charcoal-raised: #1e1e1e;
  --charcoal-border: #2c2c2c;
  --gold: #bca24e;
  --gold-bright: #d9c078;
  --gold-dim: #8c7638;
  --off-white: #eeede8;
  --off-white-dim: #a8a7a2;

  /* Semantic tokens */
  --bg: var(--charcoal);
  --surface: var(--charcoal-raised);
  --border: var(--charcoal-border);
  --text: var(--off-white);
  --text-muted: var(--off-white-dim);
  --accent: var(--gold);
  --accent-strong: var(--gold-bright);
  --focus-ring: #e8d9a8;

  /* Type */
  --font-display: "Archivo", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Rubik", "Segoe UI", Roboto, Arial, sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  /* Layout */
  --max-width: 1180px;
  --radius: 10px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@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;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

p { color: var(--text-muted); }
p.lead { font-size: 1.15rem; color: var(--text); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.75em 1.25em;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-2);
}
@media (min-width: 640px) {
  .container { padding-inline: var(--space-3); }
}

.section { padding-block: var(--space-5); }
.section--tight { padding-block: var(--space-4); }
.section--alt { background: var(--surface); border-block: 1px solid var(--border); }

.section-head { max-width: 640px; margin-bottom: var(--space-4); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-1);
}

.grid {
  display: grid;
  gap: var(--space-3);
}
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

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

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(188, 162, 78, 0.22), 0 8px 24px rgba(188, 162, 78, 0.25);
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: var(--gold-dim);
  color: var(--text);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(188, 162, 78, 0.12);
  transform: translateY(-2px);
}
.btn--sm { padding: 0.7em 1.2em; font-size: 0.75rem; }

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 21, 21, 0.85);
  border-bottom: 1px solid var(--border);
}
/* The blur lives on a pseudo-element rather than directly on .site-header.
   Reason: backdrop-filter/filter on an ancestor makes that ancestor the
   "containing block" for any position:fixed descendant (like .nav__menu,
   the mobile off-canvas menu) in every modern browser, including Safari —
   so the fixed menu would size itself to the header's height instead of
   the full viewport. Putting the blur on ::before instead keeps the same
   frosted-glass look without .nav__menu ever being a descendant of a
   filtered element. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-2);
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.nav__logo span { color: var(--gold); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5em;
  z-index: 110;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) 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); }

.nav__menu {
  position: fixed;
  inset: 0 0 0 30%;
  background: var(--charcoal);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4);
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
}
.nav__menu.is-open { transform: translateX(0); }
.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  width: fit-content;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--gold-bright); }

.nav__cta { margin-top: var(--space-2); }

@media (min-width: 860px) {
  .nav__toggle { display: none; }
  .nav__menu {
    position: static;
    inset: auto;
    background: none;
    border: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    transform: none;
    gap: var(--space-4);
  }
  .nav__link { font-size: 0.95rem; }
  .nav__cta { margin-top: 0; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: var(--space-6) var(--space-5);
  overflow: hidden;
  isolation: isolate;
}
.hero__backdrop {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(188, 162, 78, 0.16), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(188, 162, 78, 0.10), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(188, 162, 78, 0.08), transparent 45%);
  animation: drift 18s ease-in-out infinite alternate;
}
.hero__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(238, 237, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 237, 232, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-3%, 2%) scale(1.05); }
}
.hero__inner {
  max-width: 760px;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 0.5em 1em;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  margin-bottom: var(--space-3);
}
.hero__kicker::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(188, 162, 78, 0.7);
}
.hero h1 { margin-bottom: var(--space-2); }
.hero h1 .accent { color: var(--gold); }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

/* Stats row */
.stats {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--gold);
}
.stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25em;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover, .card:focus-within {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(188, 162, 78, 0.15);
}
.card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(188, 162, 78, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}
.card h3 { margin-bottom: 0.5em; }
.card p { font-size: 0.95rem; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: var(--space-2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-bright);
}
.card__link .arrow { transition: transform var(--dur) var(--ease); }
.card:hover .card__link .arrow { transform: translateX(4px); }

/* Portfolio cards */
.work-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.work-card:hover, .work-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.work-card__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.work-card__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-card__frame img { transform: scale(1.04); }
.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 21, 21, 0.6);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.work-card:hover .work-card__overlay, .work-card:focus-within .work-card__overlay { opacity: 1; }
.work-card__overlay span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 0.7em 1.3em;
  border-radius: 999px;
}
.work-card__body { padding: var(--space-3); }
.work-card__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5em;
  display: block;
}
.work-card__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  background: rgba(188, 162, 78, 0.16);
  border: 1px solid var(--gold-dim);
  padding: 0.35em 0.7em;
  border-radius: 999px;
  margin-bottom: 0.7em;
}

/* Testimonials */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.2em; left: var(--space-3);
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold-dim);
  line-height: 1;
}
.testimonial blockquote {
  font-size: 1rem;
  color: var(--text);
  margin-top: var(--space-2);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin-top: var(--space-2);
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--charcoal);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: 0.9rem; }
.testimonial__role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial__note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px dashed var(--border);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--surface), var(--charcoal));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(188, 162, 78, 0.18), transparent 60%);
}
.cta-band__inner { position: relative; max-width: 620px; margin-inline: auto; }
.cta-band .btn { margin-top: var(--space-3); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  margin-bottom: var(--space-2);
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-field .hint { font-size: 0.75rem; color: var(--text-muted); }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85em 1em;
  color: var(--text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 162, 78, 0.18);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; gap: var(--space-2); }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-status {
  margin-top: var(--space-2);
  padding: 0.85em 1em;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.form-status.is-success { display: block; background: rgba(188, 162, 78, 0.14); border: 1px solid var(--gold-dim); color: var(--gold-bright); }
.form-status.is-error { display: block; background: rgba(200, 90, 70, 0.12); border: 1px solid #a5493a; color: #e0a292; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.accordion-trigger .plus {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
}
.accordion-trigger .plus::before,
.accordion-trigger .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform var(--dur) var(--ease);
}
.accordion-trigger .plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.accordion-trigger .plus::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.accordion-trigger[aria-expanded="true"] .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur) var(--ease);
}
.accordion-panel > div { padding-bottom: var(--space-3); }
.accordion-panel p { font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Pricing table
   -------------------------------------------------------------------------- */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(188, 162, 78, 0.08), var(--surface) 40%);
  position: relative;
}
.pricing-card--featured::before {
  content: "Most popular";
  position: absolute;
  top: -13px; left: var(--space-3);
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35em 0.9em;
  border-radius: 999px;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold);
  margin: var(--space-2) 0;
}
.pricing-card__price span { font-size: 0.95rem; color: var(--text-muted); font-family: var(--font-body); }
.pricing-card__price--text { font-size: 1.3rem; }
.pricing-card ul { display: flex; flex-direction: column; gap: 0.6em; margin: var(--space-3) 0; flex-grow: 1; }
.pricing-card li { font-size: 0.9rem; display: flex; gap: 0.6em; align-items: flex-start; }
.pricing-card li::before { content: "\2713"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pricing-card li.li--muted { color: var(--text-muted); font-style: italic; }
.pricing-card--custom {
  border-style: dashed;
  border-color: var(--gold-dim);
  background: transparent;
  align-items: flex-start;
  justify-content: center;
}
.pricing-card--custom:hover { border-style: dashed; }
.pricing-card__foot-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 620px;
  margin: var(--space-3) auto 0;
}

/* Why work with us — check-list panel */
.perk-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.perk-list {
  display: grid;
  gap: 0.9em 2em;
  margin-top: var(--space-2);
}
@media (min-width: 700px) {
  .perk-list { grid-template-columns: repeat(2, 1fr); }
}
.perk-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  font-size: 0.98rem;
  color: var(--text);
}
.perk-list li::before {
  content: "\2713";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(188, 162, 78, 0.14);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1em;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-4);
  background: var(--surface);
}
.footer-grid {
  display: grid;
  gap: var(--space-3);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-bottom: 0.5em; }
.footer-logo span { color: var(--gold); }
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5em; list-style: none; padding: 0; margin: 0; }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--gold-bright); }
.footer-bottom {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding-block: var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero__backdrop {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(circle at 15% 20%, rgba(188, 162, 78, 0.14), transparent 45%);
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.breadcrumb a:hover { color: var(--gold-bright); }

/* Misc content pages (privacy) */
.prose h2 { margin-top: var(--space-4); margin-bottom: var(--space-1); }
.prose p, .prose li { color: var(--text-muted); margin-bottom: 0.8em; }
.prose ul { list-style: disc; padding-left: 1.4em; }
.prose a { color: var(--gold-bright); text-decoration: underline; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
