/* ==========================================================================
   Shepherd Business Solutions — Stylesheet
   Design tokens: charcoal / slate / fog neutrals + burnt-orange accent
   Type: Archivo (display) + Source Sans 3 (body)
   ========================================================================== */

:root {
  /* Color tokens */
  --charcoal: #22262B;
  --charcoal-soft: #2C3138;
  --slate: #4B5563;
  --slate-light: #6B7280;
  --steel-line: #D8D6D1;
  --fog: #F2F1EE;
  --fog-deep: #E9E7E2;
  --white: #FFFFFF;
  --orange: #E8712B;
  --orange-dark: #C6591C;
  --orange-tint: #FBE7D8;
  --ink: #1C1F22;

  /* Type */
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --max-width: 1180px;
  --radius: 4px;
  --shadow-card: 0 1px 2px rgba(34,38,43,0.06), 0 8px 24px -12px rgba(34,38,43,0.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3, h4 { font-weight: 600; }
p { margin: 0 0 1em; color: var(--slate); }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------- Ledger-line signature motif ---------- */
.ledger-rule {
  --tick: 12px;
  height: 1px;
  background: var(--steel-line);
  background-image: repeating-linear-gradient(
    to right,
    var(--slate-light) 0,
    var(--slate-light) 1px,
    transparent 1px,
    transparent var(--tick)
  );
  background-size: var(--tick) 6px;
  background-repeat: repeat-x;
  background-position: left top;
  border: 0;
  margin: 0;
  opacity: 0.55;
}
.ledger-rule.on-dark {
  background-image: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.35) 0,
    rgba(255,255,255,0.35) 1px,
    transparent 1px,
    transparent var(--tick)
  );
}
.section-tick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-tick::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.text-accent { color: var(--orange-dark); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-dark); }

/* ---------- Header ---------- */
.site-header {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-text-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a.nav-link:hover,
.main-nav a.nav-link.is-active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.main-nav a.nav-link.is-active { color: var(--orange); }

.has-dropdown { position: relative; }
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dropdown-toggle svg { width: 12px; height: 12px; transition: transform 0.15s ease; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.92rem;
}
.dropdown-menu a:hover { background: var(--fog); color: var(--orange-dark); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s 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); }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    background: none;
    flex-direction: row;
    padding: 0;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 959px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open { max-height: 640px; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .main-nav a.nav-link { padding: 13px 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.15);
    display: none;
    padding: 0 0 0 12px;
  }
  .has-dropdown.is-open .dropdown-menu { display: block; }
  .dropdown-menu a { color: rgba(255,255,255,0.85); }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: var(--orange); }
  .header-cta .btn-outline { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% auto;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(232,113,43,0.22), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: block;
}
.hero p.lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 54ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-art { position: relative; }
.hero-logo-frame {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-frame img { width: 100%; max-width: 320px; height: auto; display: block; }

@media (min-width: 900px) {
  .hero { padding: 96px 0 108px; }
  .hero-inner.with-art { grid-template-columns: 1.15fr 0.85fr; }
}

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232,113,43,0.2), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.7rem); max-width: 18ch; }
.page-hero p.lead { color: rgba(255,255,255,0.78); max-width: 62ch; font-size: 1.05rem; }
.page-hero-inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.state-flag-frame {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-card);
  max-width: 280px;
  margin-left: auto;
}
.state-flag-frame svg { width: 100%; height: auto; display: block; border-radius: 4px; }
@media (min-width: 900px) {
  .page-hero-inner.with-flag { grid-template-columns: 1.3fr 0.7fr; }
  .state-flag-frame { max-width: 220px; }
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--orange); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section.on-fog-deep { background: var(--fog-deep); }
.section.on-white { background: var(--white); }
.section.on-charcoal { background: var(--charcoal); color: var(--white); }
.section.on-charcoal h2, .section.on-charcoal h3 { color: var(--white); }
.section.on-charcoal p { color: rgba(255,255,255,0.72); }

.section-head { max-width: 68ch; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* ---------- Grid layouts ---------- */
.grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.card:hover::before { transform: scaleX(1); }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 46px; height: 46px;
  margin-bottom: 18px;
  color: var(--orange);
}
.card-icon svg { width: 100%; height: 100%; }

.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  border-top: 3px solid var(--orange);
}
.audience-card h3 { margin-bottom: 12px; }
.audience-card ul { margin-top: 16px; }
.audience-card li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--steel-line);
  font-size: 0.93rem;
  color: var(--slate);
  font-weight: 600;
}
.audience-card li:last-child { border-bottom: 0; }
.audience-card li a:hover { color: var(--orange-dark); }

/* ---------- Feature list w/ icon ---------- */
.feature-list { display: grid; gap: 18px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-item .dot {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; color: var(--charcoal); }
.feature-item p { margin-bottom: 0; font-size: 0.95rem; }

/* ---------- Two-column media/text ---------- */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split.reverse > *:first-child { order: 2; }
}
.media-frame {
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: 20px;
}
.media-frame svg { width: 100%; height: auto; }
.media-frame-icon {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-frame-icon .card-icon { width: 45%; height: 45%; margin-bottom: 0; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid var(--steel-line);
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange-tint);
  -webkit-text-stroke: 1.5px var(--orange);
  margin-bottom: 12px;
  display: block;
}
.step h4 { font-size: 1rem; }
.step p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Stats bar ---------- */
.stats-bar {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  padding: 32px 0;
}
@media (min-width: 700px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; border-left: 1px solid rgba(255,255,255,0.15); }
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-stars { color: var(--orange); font-size: 0.95rem; letter-spacing: 2px; }
.testimonial-card.testimonial-card p { font-size: 0.95rem; color: var(--ink); flex-grow: 1; }
.testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.testimonial-role { font-size: 0.82rem; color: var(--slate-light); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 6px;
}

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.team-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--fog-deep), var(--steel-line));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-light);
}
.team-photo svg { width: 56px; height: 56px; opacity: 0.55; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding: 20px; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-role {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-dark);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.team-info p { font-size: 0.9rem; }
.team-contact { margin-top: 12px; font-size: 0.88rem; }
.team-contact a, .team-contact span { color: var(--slate); display: block; margin-bottom: 3px; }
.team-contact a:hover { color: var(--orange-dark); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,113,43,0.25), transparent 70%);
  pointer-events: none;
}
.cta-band .container-inner { position: relative; }
.cta-band h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 0; }
.cta-contact-line {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}
.cta-contact-line a { color: var(--orange); font-weight: 700; }
@media (min-width: 800px) {
  .cta-band { grid-template-columns: 1.3fr auto; padding: 52px 56px; }
}

/* ---------- Forms ---------- */
.form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--fog);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-bottom: 22px;
}
.form-consent input { margin-top: 4px; }
.cognito-embed-slot {
  border: 2px dashed var(--steel-line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: var(--slate-light);
  font-size: 0.9rem;
  background: var(--fog);
}
.cognito-embed-slot code {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  background: var(--charcoal);
  color: var(--fog);
  padding: 12px;
  border-radius: var(--radius);
  text-align: left;
  overflow-x: auto;
}

/* ---------- Contact info blocks ---------- */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.info-card h3 { font-size: 1rem; margin-bottom: 14px; }
.info-list li {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--fog-deep);
  font-size: 0.92rem;
  color: var(--slate);
}
.info-list li:last-child { border-bottom: 0; }
.info-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.info-list a:hover { color: var(--orange-dark); }
.map-frame {
  border: 0;
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  filter: grayscale(0.3);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 34ch; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-weight: 600;
}
.footer-col li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--orange); }
.footer-col address { font-style: normal; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-social svg { width: 16px; height: 16px; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 400;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
