/* ============================================================
   IRON MAN SUPPLY — GLOBAL STYLESHEET
   assets/css/style.css
   Single source of truth for all shared styles.
   No hex literals outside :root. No !important anywhere.
   Fonts loaded via HTML <head> — no @import here.
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS — :root
   ============================================================ */

:root {
  /* Colors */
  --color-bg:             #F5F4F2;
  --color-surface:        #FFFFFF;
  --color-surface-dark:   #1C1D1F;
  --color-iron:           #111213;
  --color-text:           #2E2F31;
  --color-text-muted:     #6B6E74;
  --color-text-on-dark:   #F5F4F2;
  --color-accent:         #D97706;
  --color-accent-dark:    #B45309;
  --color-accent-light:   #FEF3C7;
  --color-border:         #E2E0DC;
  --color-border-dark:    #333537;
  --color-cta-bg:         #D97706;
  --color-cta-text:       #111213;
  --color-cta-hover:      #B45309;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --space-section: 5rem;
  --space-inner:   2rem;
  --space-xs:      0.25rem;
  --space-sm:      0.5rem;
  --space-md:      1rem;
  --space-lg:      1.5rem;
  --space-xl:      2.5rem;

  /* Radius */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);

  /* Layout */
  --max-width: 1200px;
  --gutter:    1.5rem;

  /* Header */
  --header-height: 4rem;
}

/* ============================================================
   2. DARK THEME OVERRIDE
   ============================================================ */

[data-theme="dark"] {
  --color-bg:     var(--color-surface-dark);
  --color-text:   var(--color-text-on-dark);
  --color-border: var(--color-border-dark);
}

/* ============================================================
   3. RESET
   ============================================================ */

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

/* ============================================================
   4. ACCESSIBILITY
   ============================================================ */

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 9999;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-accent);
  color: var(--color-iron);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: var(--space-md);
}

/* Focus visible — all interactive elements */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
   5. TYPOGRAPHY
   ============================================================ */

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-iron);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2 {
  color: var(--color-text-on-dark);
}

h3,
h4 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-iron);
}

[data-theme="dark"] h3,
[data-theme="dark"] h4 {
  color: var(--color-text-on-dark);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

@media (max-width: 639px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-xl); }
}

p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
}

[data-theme="dark"] p {
  color: var(--color-text-on-dark);
}

.label-caps {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

[data-theme="dark"] .label-caps {
  color: var(--color-text-muted);
}

/* Accent heading — amber color for dark section H2s */
.heading-accent {
  color: var(--color-accent);
}

/* ============================================================
   6. LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--space-section);
  background-color: var(--color-bg);
}

.section[data-theme="dark"] {
  background-color: var(--color-surface-dark);
}

/* ============================================================
   7. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-cta-bg);
  color: var(--color-cta-text);
  border: 2px solid var(--color-cta-bg);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-iron);
}

/* On dark sections, secondary button uses white outline */
[data-theme="dark"] .btn-secondary {
  color: var(--color-text-on-dark);
  border-color: var(--color-text-on-dark);
}

[data-theme="dark"] .btn-secondary:hover {
  background-color: var(--color-text-on-dark);
  color: var(--color-iron);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* ============================================================
   8. SITE HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-surface-dark);
  border-bottom: 1px solid var(--color-border-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-lg);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 2.25rem;
  width: auto;
}

/* Primary nav */
.site-nav {
  display: none;
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }
}

.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-on-dark);
  transition: color 0.15s ease;
}

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

/* Header phone pill */
.header-phone {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .header-phone {
    display: flex;
  }
}

.header-phone a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1.25rem;
  background-color: var(--color-accent);
  color: var(--color-iron);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: background-color 0.15s ease;
}

.header-phone a:hover {
  background-color: var(--color-accent-dark);
}

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-on-dark);
  border-radius: 1px;
  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);
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 99;
  background-color: var(--color-surface-dark);
  padding: var(--space-xl) var(--gutter);
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
}

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

@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav a {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text-on-dark);
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--color-border-dark);
  transition: color 0.15s ease;
}

.mobile-nav a:hover {
  color: var(--color-accent);
}

.mobile-nav .mobile-phone {
  margin-top: var(--space-lg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle span,
  .site-nav a,
  .header-phone a,
  .mobile-nav a {
    transition: none;
  }
}

/* ============================================================
   9. BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

[data-theme="dark"] .breadcrumb {
  color: rgba(245, 244, 242, 0.6);
}

.breadcrumb a {
  color: inherit;
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb-sep {
  user-select: none;
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   10. PAGE HEADER BAND
   ============================================================ */

.page-header {
  position: relative;
  padding-block: var(--space-xl) var(--space-section);
  background-color: var(--color-surface-dark);
  overflow: hidden;
}

.page-header img.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

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

.page-header h1 {
  color: var(--color-text-on-dark);
  max-width: 52rem;
}

/* ============================================================
   11. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--color-surface-dark);
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 18, 19, 0.88) 0%,
    rgba(17, 18, 19, 0.60) 60%,
    rgba(17, 18, 19, 0.30) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-block: var(--space-section);
}

.hero-content {
  max-width: 44rem;
}

.hero h1 {
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-lg);
}

.hero p {
  font-size: var(--text-lg);
  color: rgba(245, 244, 242, 0.88);
  margin-bottom: var(--space-xl);
  max-width: 38rem;
}

/* ============================================================
   12. CATEGORY GRID
   ============================================================ */

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.category-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.category-card-body {
  padding: var(--space-lg);
}

.category-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.category-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.category-card .card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: color 0.15s ease;
}

.category-card .card-link:hover {
  color: var(--color-accent-dark);
}

@media (prefers-reduced-motion: reduce) {
  .category-card {
    transition: none;
  }
  .category-card:hover {
    transform: none;
  }
}

/* ============================================================
   13. VALUE PROP STRIP
   ============================================================ */

.value-strip {
  background-color: var(--color-surface-dark);
  padding-block: var(--space-section);
}

.value-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.value-item {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-lg);
}

.value-item h3 {
  font-size: var(--text-xl);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-sm);
}

.value-item p {
  font-size: var(--text-sm);
  color: rgba(245, 244, 242, 0.75);
  line-height: 1.65;
}

/* ============================================================
   14. BRAND LOGO PARADE
   ============================================================ */

.brand-parade {
  background-color: var(--color-surface-dark);
  padding-block: var(--space-section);
}

.brand-parade-intro {
  margin-bottom: var(--space-xl);
}

.brand-parade-intro h2 {
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-md);
}

.brand-parade-intro p {
  color: rgba(245, 244, 242, 0.75);
  max-width: 38rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

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

@media (min-width: 1024px) {
  .brand-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.brand-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-sm);
  min-height: 5rem;
}

.brand-grid-item img {
  max-height: 3rem;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.15s ease;
  filter: brightness(0) invert(1);
}

.brand-grid-item:hover img {
  opacity: 1;
}

.brand-parade-cta {
  margin-top: var(--space-xl);
}

@media (prefers-reduced-motion: reduce) {
  .brand-grid-item img {
    transition: none;
  }
}

/* ============================================================
   15. ARBORIST CALLOUT BAND
   ============================================================ */

.arborist-band {
  background-color: var(--color-surface-dark);
  padding-block: var(--space-section);
  border-top: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
}

.arborist-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .arborist-band-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.arborist-band h2 {
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.arborist-band p {
  color: rgba(245, 244, 242, 0.85);
  margin-bottom: var(--space-xl);
}

.arborist-band-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

@media (min-width: 1024px) {
  .arborist-band-img {
    height: 480px;
  }
}

/* ============================================================
   16. ABOUT STRIP
   ============================================================ */

.about-strip {
  background-color: var(--color-bg);
  padding-block: var(--space-section);
}

.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-strip-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-strip-content h2 {
  margin-bottom: var(--space-lg);
}

.about-strip-content p {
  margin-bottom: var(--space-lg);
}

/* ============================================================
   17. SERVICE AREA SECTION
   ============================================================ */

.service-area {
  background-color: var(--color-bg);
  padding-block: var(--space-section);
}

.service-area h2 {
  margin-bottom: var(--space-lg);
}

.service-area-intro {
  max-width: 44rem;
  margin-bottom: var(--space-xl);
}

.service-area-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .service-area-lists {
    grid-template-columns: 1fr 1fr;
  }
}

.service-area-list h3 {
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.service-area-list li {
  font-size: var(--text-sm);
  color: var(--color-text);
  padding-block: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

.service-area-list li:last-child {
  border-bottom: none;
}

/* ============================================================
   18. FAQ ACCORDION
   ============================================================ */

.faq-section {
  background-color: var(--color-bg);
  padding-block: var(--space-section);
}

.faq-section h2 {
  margin-bottom: var(--space-md);
}

.faq-intro {
  margin-bottom: var(--space-xl);
  max-width: 38rem;
}

.faq-list {
  max-width: 52rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  padding-block: var(--space-lg);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-iron);
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary {
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(0deg);
}

.faq-item summary:hover {
  color: var(--color-accent);
}

.faq-answer {
  padding-bottom: var(--space-lg);
  padding-right: var(--space-xl);
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
}

/* Dark FAQ variant */
[data-theme="dark"] .faq-item {
  border-bottom-color: var(--color-border-dark);
}

[data-theme="dark"] .faq-item summary {
  color: var(--color-text-on-dark);
}

[data-theme="dark"] .faq-answer p {
  color: rgba(245, 244, 242, 0.8);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary,
  .faq-item summary::after {
    transition: none;
  }
}

/* ============================================================
   19. CONTACT SECTION
   ============================================================ */

.contact-section {
  background-color: var(--color-bg);
  padding-block: var(--space-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Contact info */
.contact-info h2 {
  margin-bottom: var(--space-lg);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-value {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-iron);
}

.contact-value a {
  color: var(--color-accent);
  transition: color 0.15s ease;
}

.contact-value a:hover {
  color: var(--color-accent-dark);
}

/* Hours table */
.hours-table {
  width: 100%;
  font-size: var(--text-sm);
  margin-top: var(--space-sm);
}

.hours-table tr {
  display: flex;
  justify-content: space-between;
  padding-block: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  font-style: italic;
}

/* Map embed */
.map-embed {
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================================
   20. CONTACT FORM
   ============================================================ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-iron);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  color: var(--color-iron);
  transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  outline: none;
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .form-group input,
  .form-group textarea,
  .form-group select {
    transition: none;
  }
}

/* ============================================================
   21. CTA BAND
   ============================================================ */

.cta-band {
  background-color: var(--color-surface-dark);
  padding-block: var(--space-xl);
  text-align: center;
}

.cta-band h2 {
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-md);
}

.cta-band p {
  color: rgba(245, 244, 242, 0.75);
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* Accent light CTA band variant — for call-ahead notices */
.cta-band-notice {
  background-color: var(--color-accent-light);
  padding: var(--space-lg) var(--gutter);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  margin-block: var(--space-xl);
}

.cta-band-notice p {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-iron);
  margin: 0;
}

/* ============================================================
   22. BRAND DIRECTORY — Brands Page
   ============================================================ */

.brand-directory-section {
  padding-block: var(--space-section);
}

.brand-directory-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 3px solid var(--color-accent);
}

.brand-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.brand-block {
  padding: var(--space-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.brand-block h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-iron);
}

.brand-block p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Brand list — text column layout (About page) */
.brand-list-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.brand-list-col h3 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

[data-theme="dark"] .brand-list-col h3 {
  color: var(--color-accent);
}

.brand-list-col li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-block: var(--space-xs);
  border-bottom: 1px solid var(--color-border-dark);
}

/* ============================================================
   23. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-surface-dark);
  padding-top: var(--space-section);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-section);
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
  }
}

/* Footer col 1 — logo + tagline */
.footer-brand img {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-md);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(245, 244, 242, 0.55);
  line-height: 1.5;
}

/* Footer col 2 — nav links */
.footer-nav h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

[data-theme="dark"] .footer-nav h4 {
  color: rgba(245, 244, 242, 0.45);
}

.footer-nav li {
  margin-bottom: var(--space-sm);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(245, 244, 242, 0.7);
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

/* Footer col 3 — NAP + hours */
.footer-contact h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 244, 242, 0.45);
  margin-bottom: var(--space-md);
}

.footer-nap {
  font-size: var(--text-sm);
  color: rgba(245, 244, 242, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.footer-nap a {
  color: var(--color-accent);
  transition: color 0.15s ease;
}

.footer-nap a:hover {
  color: var(--color-accent-dark);
}

.footer-hours {
  font-size: var(--text-xs);
  color: rgba(245, 244, 242, 0.5);
  line-height: 1.8;
}

/* Copyright bar */
.footer-copyright {
  border-top: 1px solid var(--color-border-dark);
  padding-block: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-copyright p {
  font-size: var(--text-xs);
  color: rgba(245, 244, 242, 0.4);
}

.footer-copyright a {
  font-size: var(--text-xs);
  color: rgba(245, 244, 242, 0.4);
  transition: color 0.15s ease;
}

.footer-copyright a:hover {
  color: var(--color-accent);
}

@media (prefers-reduced-motion: reduce) {
  .footer-nav a,
  .footer-nap a,
  .footer-copyright a {
    transition: none;
  }
}

/* ============================================================
   24. UTILITY CLASSES
   ============================================================ */

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

.text-accent {
  color: var(--color-accent);
}

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

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

.section-heading {
  margin-bottom: var(--space-xl);
}

.section-heading p {
  margin-top: var(--space-md);
  max-width: 44rem;
  color: var(--color-text-muted);
}

[data-theme="dark"] .section-heading p {
  color: rgba(245, 244, 242, 0.65);
}

/* ============================================================
   END OF FILE — assets/css/style.css
   Iron Man Supply | SiteForge v6
   ============================================================ */