/* Merit Steel USA — Industrial B2B Steel Service Center */
/* Framework: Bulma CSS via CDN, supplemented here */

:root {
  --navy: #1a3a5c;
  --navy-light: #234d78;
  --navy-dark: #122840;
  --steel-blue: #2e6da4;
  --steel-blue-light: #3a82c2;
  --steel-blue-dark: #245a8a;
  --red: #c0392b;
  --text: #333333;
  --text-light: #555555;
  --bg: #f5f5f5;
  --white: #ffffff;
  --border: #d4d4d4;
  --border-dark: #b0b0b0;
  --yellow: #f39c12;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding-top: 0;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-top: 0;
}

h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; margin-top: 2.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; margin-top: 1.75rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.4rem; }

p { margin: 0 0 1rem; }

a { color: var(--steel-blue); text-decoration: none; }
a:hover { color: var(--steel-blue-dark); text-decoration: underline; }

ul, ol { margin: 0 0 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.3rem; }

strong { font-weight: 700; }

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

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-tagline { color: rgba(255,255,255,0.6); }

.topbar-badge {
  background: var(--steel-blue);
  color: var(--white);
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--steel-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  color: var(--steel-blue-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li { margin: 0; }

.main-nav a {
  display: block;
  padding: 0 0.9rem;
  height: 68px;
  line-height: 68px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  border-bottom-color: var(--steel-blue-light);
  text-decoration: none;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s;
}

/* ===================== HERO ===================== */
.hero-section {
  position: relative;
  background: var(--navy);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,58,92,0.92) 0%, rgba(26,58,92,0.6) 60%, rgba(26,58,92,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel-blue-light);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--steel-blue);
  color: var(--white);
  border-color: var(--steel-blue);
}

.btn-primary:hover {
  background: var(--steel-blue-dark);
  border-color: var(--steel-blue-dark);
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  text-decoration: none;
}

/* ===================== SECTION CONTAINERS ===================== */
.section { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 6rem 0; }

.section-white { background: var(--white); }
.section-light { background: var(--bg); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1,
.section-navy h2,
.section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.85); }
.section-steel { background: var(--steel-blue); color: var(--white); }
.section-steel h2 { color: var(--white); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  margin-bottom: 3rem;
}

.section-header.centered { text-align: center; }

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--steel-blue);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-label-white { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}

.section-title-white { color: var(--white); }
.section-desc-white { color: rgba(255,255,255,0.8); }

/* ===================== FEATURE STRIP ===================== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 3px solid var(--steel-blue);
}

.feature-strip-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-strip-item:last-child { border-right: none; }

.feature-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

.feature-detail {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

/* ===================== PRODUCT CARDS ===================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.product-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-left: 4px solid transparent;
  transition: border-color 0.15s, background 0.15s;
}

.product-card:hover {
  border-left-color: var(--steel-blue);
  background: #f9fbff;
}

.product-card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--steel-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.product-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-card-specs {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

/* ===================== TWO-COLUMN CONTENT ===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ===================== STATS BAR ===================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.stat-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--steel-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===================== CTA BAND ===================== */
.cta-band {
  background: var(--steel-blue);
  padding: 3rem 0;
  display: flex;
  align-items: center;
}

.cta-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.cta-band-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.3rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

/* ===================== CONTENT PAGE LAYOUT ===================== */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 0 3rem;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.page-breadcrumb a:hover { color: rgba(255,255,255,0.8); }

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.05;
}

.page-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
  max-width: 640px;
}

/* ===================== CONTENT BODY ===================== */
.content-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-main {
  background: var(--white);
  padding: 3rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--steel-blue);
}

.content-main h2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.content-main img {
  width: 100%;
  margin: 1.5rem 0;
}

/* ===================== SIDEBAR LAYOUT ===================== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--steel-blue);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li { margin: 0; border-bottom: 1px solid var(--border); }
.sidebar-nav li:last-child { border-bottom: none; }

.sidebar-nav a {
  display: block;
  padding: 0.6rem 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--steel-blue);
  padding-left: 1rem;
  text-decoration: none;
}

/* ===================== TABLES ===================== */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

.specs-table th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
}

.specs-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.specs-table tr:nth-child(even) td { background: var(--bg); }
.specs-table tr:hover td { background: #edf3fb; }

/* ===================== GALLERY GRID ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-dark);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,58,92,0.88));
  color: var(--white);
  padding: 1.5rem 1rem 0.75rem;
  font-size: 0.82rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESOURCE CARDS ===================== */
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--steel-blue);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.resource-card h3 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.resource-card h3 a {
  color: var(--navy);
}

.resource-card h3 a:hover { color: var(--steel-blue); }

.resource-url {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: var(--steel-blue);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.resource-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ===================== INDUSTRIES ===================== */
.industry-block {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 1.5px;
  position: relative;
}

.industry-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--steel-blue);
}

.industry-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.industry-meta-item {
  font-size: 0.85rem;
}

.industry-meta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--steel-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--steel-blue);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border-dark);
  background: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--steel-blue);
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* ===================== INFO PANELS ===================== */
.info-panel {
  background: #edf3fb;
  border: 1px solid #c5d8ef;
  border-left: 4px solid var(--steel-blue);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.info-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.warn-panel {
  background: #fef9ec;
  border: 1px solid #f0d89a;
  border-left: 4px solid var(--yellow);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

/* ===================== LOCATION CARDS ===================== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin: 2rem 0;
}

.location-card {
  background: var(--white);
  padding: 2rem;
  border-top: 4px solid var(--steel-blue);
}

.location-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.location-region {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.location-industries {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-industries li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.location-industries li::before {
  content: '▶';
  color: var(--steel-blue);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo-name { font-size: 1.3rem; margin-bottom: 1rem; }

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: var(--steel-blue-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-left: 2px solid var(--steel-blue);
  padding-left: 0.75rem;
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.4rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ===================== 404 PAGE ===================== */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-title { font-size: 2.6rem; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy-dark); padding: 1rem 0; z-index: 200; }
  .main-nav.open { display: flex; }
  .main-nav a { height: auto; line-height: 1; padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-toggle { display: flex; }
  .feature-strip { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .content-main { padding: 1.5rem; }
  .hero-section { min-height: 380px; }
  .hero-content { padding: 3rem 1.5rem; }
  .topbar { display: none; }
}
