/* Retro Revival Trailers — demo styles */
:root {
  --charcoal: #1a1a1a;
  --charcoal-soft: #242424;
  --cream: #f5f0e8;
  --cream-muted: #ebe4d8;
  --copper: #b87333;
  --copper-hover: #c98545;
  --copper-deep: #8f5a28;
  --aluminum: #c8c4bc;
  --aluminum-soft: #a8a49c;
  --steel: #3a3a3a;
  --text: #1a1a1a;
  --text-muted: #5c574f;
  --white: #faf8f4;
  --border: rgba(26, 26, 26, 0.12);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --header-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--copper-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--copper);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.35rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p + p { margin-top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, 720px);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 115, 51, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text span,
.logo span {
  color: var(--copper);
}

.logo:hover {
  color: var(--cream);
}

@media (max-width: 480px) {
  .logo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .logo-img {
    width: 48px;
    height: 48px;
  }
}

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

.nav a {
  color: var(--aluminum);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--cream);
}

.nav-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

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

.btn--primary {
  background: var(--copper);
  color: var(--charcoal);
  border-color: var(--copper);
}

.btn--primary:hover {
  background: var(--copper-hover);
  color: var(--charcoal);
  border-color: var(--copper-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.35);
}

.btn--ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(245, 240, 232, 0.06);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(200, 196, 188, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.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-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 1.25rem;
  border-top: 1px solid rgba(200, 196, 188, 0.15);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: var(--aluminum);
  text-decoration: none;
  padding: 0.75rem 0.25rem;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--cream);
}

.mobile-nav .btn {
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 860px) {
  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem 1.15rem;
    row-gap: 0.35rem;
  }
  .nav a { font-size: 0.875rem; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

@media (min-width: 1040px) {
  .nav {
    gap: 1.75rem;
  }
  .nav a { font-size: 0.9375rem; }
}

/* —— Sticky mobile CTA —— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.88));
  border-top: 1px solid rgba(184, 115, 51, 0.3);
  display: flex;
  justify-content: center;
}

.sticky-cta .btn {
  width: min(100%, 360px);
}

@media (min-width: 860px) {
  .sticky-cta { display: none; }
}

body.has-sticky-cta {
  padding-bottom: 72px;
}

@media (min-width: 860px) {
  body.has-sticky-cta { padding-bottom: 0; }
}

/* —— Hero —— */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(184, 115, 51, 0.18), transparent 55%),
    linear-gradient(165deg, #1a1a1a 0%, #2a2520 45%, #1f1c18 100%);
  color: var(--cream);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--cream);
  max-width: 18ch;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--aluminum);
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-micro {
  font-size: 0.875rem;
  color: var(--aluminum-soft);
}

.page-hero {
  padding: 3rem 0 2.5rem;
  background:
    linear-gradient(165deg, #1a1a1a 0%, #252220 100%);
  color: var(--cream);
}

.page-hero h1 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.page-hero .hero-sub {
  margin-bottom: 1.5rem;
}

/* —— Sections —— */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--cream-muted);
}

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}

.section--dark p,
.section--dark li {
  color: var(--aluminum);
}

.section-intro {
  max-width: 40rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.section--dark .section-intro {
  color: var(--aluminum);
}

/* Trust strip */
.trust-strip {
  display: grid;
  gap: 1.5rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.trust-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 1px;
  flex-shrink: 0;
}

.trust-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

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

/* Product cards */
.product-grid {
  display: grid;
  gap: 1.25rem;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: rgba(184, 115, 51, 0.45);
  box-shadow: var(--shadow);
}

.product-card--featured {
  border-color: var(--copper);
  background: linear-gradient(160deg, #fffdf9 0%, #f5f0e8 100%);
}

.product-card .tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.product-card p {
  flex: 1;
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.product-card .card-link {
  font-weight: 600;
  color: var(--copper-deep);
  text-decoration: none;
  font-size: 0.9375rem;
}

.product-card .card-link::after {
  content: " →";
}

.product-card .card-link:hover {
  color: var(--copper);
}

/* Why / bullets */
.why-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .why-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bullet-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 1px;
}

/* Process */
.process-steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 700px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--copper);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Gallery placeholders */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-card__img {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, #2a2a2a 0%, #3d3832 40%, #2c2824 100%);
  position: relative;
  overflow: hidden;
}

.gallery-card__img:not(:has(img)) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(184, 115, 51, 0.04) 8px,
      rgba(184, 115, 51, 0.04) 16px
    );
  pointer-events: none;
}

.gallery-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
}

.gallery-card__img:has(img)::before {
  display: none;
}


.photo-coming {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aluminum);
  border: 1px solid rgba(200, 196, 188, 0.35);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  background: rgba(26, 26, 26, 0.45);
}

.gallery-card__body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.gallery-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.gallery-card__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gallery-card[data-category] {
  /* for filter JS */
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.filter-btn:hover {
  border-color: var(--copper);
  color: var(--charcoal);
}

.filter-btn.is-active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.gallery-empty {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.gallery-empty.is-visible {
  display: block;
}

.gallery-empty p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Builder band */
.builder-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 720px) {
  .builder-band {
    grid-template-columns: 1fr auto;
  }
}

/* Final CTA block */
.cta-block {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.cta-block p {
  color: var(--aluminum);
  margin-bottom: 1.5rem;
}

.cta-block h2 {
  margin-bottom: 0.75rem;
}

/* —— Two-col content —— */
.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1.4fr 1fr;
  }
  .split--reverse {
    grid-template-columns: 1fr 1.4fr;
  }
}

/* Checklist / included */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checklist li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 700;
}

.option-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-list li {
  padding: 0.65rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.footprint-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footprint-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footprint-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  text-align: center;
}

.footprint-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.footprint-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.investment-box {
  background: linear-gradient(160deg, #fffdf9, var(--cream-muted));
  border: 1px solid rgba(184, 115, 51, 0.35);
  border-radius: var(--radius);
  padding: 2rem;
}

.investment-box .price-line {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin: 1rem 0;
}

.investment-box .fine {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* Principles */
.principles {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.principle {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.principle strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

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

.brand-pair {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 600px) {
  .brand-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.brand-box {
  background: var(--white);
  border-left: 3px solid var(--copper);
  padding: 1.25rem 1.35rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.brand-box h3 {
  font-size: 1.1rem;
}

.brand-box p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* —— Form —— */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

.form-group .req {
  color: var(--copper);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.2);
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success.is-visible {
  display: block;
}

.form-success h2 {
  color: var(--copper-deep);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-muted);
}

.form-card.is-submitted .quote-form {
  display: none;
}

.form-card.is-submitted .form-success {
  display: block;
}

.contact-aside {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-aside h3 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact-aside dl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-aside dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.2rem;
}

.contact-aside dd {
  color: var(--aluminum);
  font-size: 0.975rem;
}

.contact-aside a {
  color: var(--cream);
}

.contact-aside a:hover {
  color: var(--copper);
}

.contact-aside .aside-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200, 196, 188, 0.2);
  font-size: 0.875rem;
  color: var(--aluminum-soft);
}

/* —— Footer —— */
.site-footer {
  background: #121212;
  color: var(--aluminum);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--aluminum-soft);
  font-size: 0.875rem;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.85rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--aluminum);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 196, 188, 0.12);
  font-size: 0.8125rem;
  color: var(--aluminum-soft);
}

.footer-bottom a {
  color: var(--aluminum);
}

/* Utilities */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.section-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
