/* ============================================================
   ATC SUPPLY — All Things Coating Supply
   Brand: Navy #0B1E3F / Gold #B8945B / White #FFFFFF
   Fonts: Space Grotesk (display) + Inter (body)
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.6rem + 3.5vw, 4.25rem);
  --text-hero: clamp(2.75rem, 1rem + 6.5vw, 6rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 150ms var(--ease-out);
  --t-med: 300ms var(--ease-out);
  --t-slow: 500ms var(--ease-out);

  /* Fonts */
  --font-display: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Content widths */
  --content-narrow: 760px;
  --content-default: 1180px;
  --content-wide: 1360px;

  /* Brand palette — light-first professional */
  --color-navy: #0B1E3F;
  --color-navy-2: #142B54;
  --color-navy-3: #1E3A6A;
  --color-navy-4: #2A4B82;
  --color-navy-ink: #071633;

  --color-gold: #B8945B;
  --color-gold-bright: #D4B075;
  --color-gold-deep: #8E6F3F;
  --color-gold-bg: rgba(184, 148, 91, 0.10);
  --color-gold-border: rgba(184, 148, 91, 0.32);

  --color-bg: #FFFFFF;
  --color-surface: #F7F8FB;
  --color-surface-2: #EEF1F6;
  --color-surface-3: #E4E8F0;
  --color-border: #D9DEE8;
  --color-divider: #E7EAF1;

  --color-text: #0B1E3F;
  --color-text-muted: #4A5878;
  --color-text-faint: #8B94A8;
  --color-text-invert: #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(11, 30, 63, 0.06), 0 1px 3px rgba(11, 30, 63, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 30, 63, 0.08), 0 2px 6px rgba(11, 30, 63, 0.06);
  --shadow-lg: 0 16px 48px rgba(11, 30, 63, 0.12), 0 6px 16px rgba(11, 30, 63, 0.08);
  --shadow-gold: 0 8px 24px rgba(184, 148, 91, 0.28);
}

/* ===== BASE RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select {
  font: inherit;
  color: inherit;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container-narrow { max-width: var(--content-narrow); }
.container-wide { max-width: var(--content-wide); }

.section {
  padding-block: clamp(var(--sp-16), 10vw, var(--sp-32));
}
.section-header {
  max-width: 720px;
  margin-bottom: var(--sp-16);
}
.section-header.center {
  margin-inline: auto;
  text-align: center;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--sp-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin-bottom: var(--sp-5);
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold-deep);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 62ch;
  line-height: 1.65;
}
.section-header.center .section-desc { margin-inline: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--t-med);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-sm { padding: 0.5rem 1rem; font-size: var(--text-xs); }
.btn-lg { padding: 1rem 1.75rem; font-size: var(--text-base); }
.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy-ink);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-navy {
  background: var(--color-navy);
  color: var(--color-text-invert);
  border-color: var(--color-navy);
}
.btn-navy:hover {
  background: var(--color-navy-2);
  border-color: var(--color-navy-2);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text-invert);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero .btn-ghost { color: rgba(255, 255, 255, 0.92); }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--t-med);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.logo {
  display: flex;
  align-items: center;
  color: var(--color-navy);
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .logo-img { height: 42px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav-links > a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--t-fast);
}
.nav-links > a:hover { color: var(--color-gold-deep); }
/* Ensure button color rules win against generic nav-link color */
.nav-links > a.btn-navy { color: var(--color-text-invert); }
.nav-links > a.btn-navy:hover { color: var(--color-text-invert); }
.nav-links > a.btn-gold { color: var(--color-navy-ink); }
.nav-links > a.btn-gold:hover { color: var(--color-navy-ink); }
.nav-phone {
  font-family: var(--font-display);
  font-weight: 600 !important;
  color: var(--color-navy) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: all var(--t-med);
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--sp-2) 0;
}
.mobile-menu a.btn {
  padding: var(--sp-3) var(--sp-6);
  text-align: center;
  border-radius: var(--radius-md, 8px);
  margin-top: var(--sp-2);
}
.mobile-menu a.btn-navy {
  color: var(--color-text-invert);
}
.mobile-menu a.btn-gold {
  color: var(--color-navy-ink);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  padding: clamp(var(--sp-20), 12vw, var(--sp-32)) 0 clamp(var(--sp-16), 8vw, var(--sp-24));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-text-invert);
  background: var(--color-navy-ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
  filter: saturate(1.05) contrast(1.02);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 148, 91, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 148, 91, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 55%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 55%, transparent 80%);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    /* Warm gold glow top-left, cool navy bloom bottom-right */
    radial-gradient(circle at 22% 30%, rgba(184, 148, 91, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 78% 70%, rgba(42, 75, 130, 0.20) 0%, transparent 50%),
    /* Vertical navy tint so headline stays legible over the photo */
    linear-gradient(180deg, rgba(7, 22, 51, 0.72) 0%, rgba(11, 30, 63, 0.62) 45%, rgba(7, 22, 51, 0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-6);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--color-text-invert);
  margin-bottom: var(--sp-6);
}
.hero-sub {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto var(--sp-10);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-bottom: var(--sp-10);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 148, 91, 0.35);
}

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(184, 148, 91, 0.35);
  border-bottom: 1px solid rgba(184, 148, 91, 0.35);
  overflow: hidden;
  position: relative;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-4) clamp(1.25rem, 4vw, 2.5rem);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.proof-divider {
  color: var(--color-gold);
  opacity: 0.7;
}

/* ===== PRODUCT LINES ===== */
.product-lines {
  background: var(--color-surface);
}
.lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--sp-6);
}
.line-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: var(--sp-10);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.line-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.line-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold-border);
}
.line-card:hover::before { transform: scaleX(1); }
.line-card-head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.line-card-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  background: var(--color-gold-bg);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-full);
}
.line-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.line-card-desc {
  color: var(--color-text-muted);
  line-height: 1.6;
}
.line-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.line-card-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.line-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
}
.line-card-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-navy);
  border-top: 1px solid var(--color-divider);
}
.line-card:hover .line-card-cta { color: var(--color-gold-deep); }
.line-card-cta svg { transition: transform var(--t-med); }
.line-card:hover .line-card-cta svg { transform: translateX(4px); }

/* ===== SYSTEMS GRID ===== */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.system-card {
  padding: var(--sp-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--t-med);
  position: relative;
}
.system-card:hover {
  border-color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.system-icon {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold-deep);
  margin-bottom: var(--sp-3);
}
.system-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.system-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--sp-4);
}
.system-price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold-deep);
  padding: 0.2rem 0.6rem;
  background: var(--color-gold-bg);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-full);
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: var(--color-surface);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-8);
}
.how-step {
  position: relative;
  padding-top: var(--sp-6);
}
.how-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.04em;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.how-step p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ===== WHY ATC ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
}
.why-card {
  padding: var(--sp-8);
  background: var(--color-bg);
  transition: background var(--t-med);
}
.why-card:hover { background: var(--color-surface); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
  position: relative;
  padding-left: var(--sp-5);
}
.why-card h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 2px;
  background: var(--color-gold);
}
.why-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ===== LOCATION ===== */
.location-section {
  background: var(--color-navy-ink);
  color: var(--color-text-invert);
}
.location-section .section-title { color: var(--color-text-invert); }
.location-section .section-eyebrow { color: var(--color-gold); }
.location-section .section-desc { color: rgba(255, 255, 255, 0.7); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.location-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.location-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-2);
}
.location-details p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: var(--text-sm);
}
.location-details a {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(184, 148, 91, 0.5);
  transition: color var(--t-fast);
}
.location-details a:hover { color: var(--color-gold-bright); }

.location-cta {
  margin-top: var(--sp-6);
}

.storefront-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.storefront-link:hover { transform: translateY(-2px); }
.storefront-link:hover .storefront-photo { box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
.storefront-link:hover .storefront-hint {
  color: var(--color-gold-bright);
  text-decoration: underline;
}
.storefront-hint {
  display: inline-block;
  margin-left: var(--sp-3);
  color: var(--color-gold);
  font-weight: 600;
  transition: color 0.2s ease;
}
.location-map {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-inline: auto;
}
.map-visual {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(184, 148, 91, 0.25);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 148, 91, 0.08) 0%, transparent 65%),
    linear-gradient(135deg, rgba(20, 43, 84, 0.5) 0%, rgba(7, 22, 51, 0.5) 100%);
  overflow: hidden;
}
.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 148, 91, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 148, 91, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  color: var(--color-gold);
  z-index: 5;
  filter: drop-shadow(0 4px 12px rgba(184, 148, 91, 0.4));
}
.map-radius {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(184, 148, 91, 0.3);
  border-radius: 50%;
  animation: pulse 4s ease-out infinite;
}
.map-radius-1 { width: 25%; height: 25%; animation-delay: 0s; }
.map-radius-2 { width: 50%; height: 50%; animation-delay: 0.8s; }
.map-radius-3 { width: 75%; height: 75%; animation-delay: 1.6s; }
@keyframes pulse {
  0% { opacity: 0.9; }
  50% { opacity: 0.3; }
  100% { opacity: 0.9; }
}
.map-label {
  position: absolute;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.map-label-nwi { top: 52%; left: 55%; }
.map-label-chi { top: 25%; left: 20%; }
.map-label-swm { bottom: 22%; right: 15%; }

/* ===== QUOTE ===== */
.quote-section {
  background: var(--color-surface);
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: var(--sp-10);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-field label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: all var(--t-fast);
  width: 100%;
  font-family: var(--font-body);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-bg);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.quote-form .btn { align-self: flex-start; }
.form-hint {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.form-hint a {
  color: var(--color-gold-deep);
  font-weight: 600;
  border-bottom: 1px solid var(--color-gold-border);
}
.quote-success {
  padding: var(--sp-10);
  text-align: center;
  background: var(--color-bg);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-lg);
}
.quote-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-navy);
  margin-bottom: var(--sp-3);
}
.quote-success p { color: var(--color-text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-navy-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-brand { max-width: 340px; }
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-5);
}
.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.footer-desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-4);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-col li,
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer-col a:hover { color: var(--color-gold-bright); }
.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal {
  color: rgba(255, 255, 255, 0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .location-details { grid-template-columns: 1fr; }
  .quote-form { padding: var(--sp-6); }
  .line-card { padding: var(--sp-6); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .proof-bar-inner { font-size: 0.68rem; gap: var(--sp-2); }
  .proof-divider { display: none; }
}

/* ===== TRAINING SECTION ===== */
.training-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184, 148, 91, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #F7F5F1 0%, #FFFFFF 100%);
  padding: clamp(var(--sp-16), 10vw, var(--sp-24)) 0;
  position: relative;
  overflow: hidden;
}
.training-section .section-eyebrow.gold {
  color: var(--color-gold-deep);
}
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-10);
}
.training-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.training-card {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid rgba(11, 30, 63, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 1px 2px rgba(11, 30, 63, 0.04);
}
.training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11, 30, 63, 0.25);
  border-color: rgba(184, 148, 91, 0.35);
}
.training-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--color-navy-ink);
}
.training-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.training-card:hover .training-photo img {
  transform: scale(1.04);
}
.training-card figcaption {
  padding: var(--sp-6) var(--sp-6) var(--sp-7);
}
.training-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin: 0 0 var(--sp-2);
}
.training-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-2);
  line-height: 1.25;
}
.training-desc {
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}
.training-cta {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.training-cta-note {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--sp-5);
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .training-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .training-grid, .training-grid-3 {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    margin-top: var(--sp-8);
  }
  .training-card figcaption { padding: var(--sp-5); }
  .training-card h3 { font-size: 1.2rem; }
}

/* ===== SAMPLE STUDIO SECTION ===== */
.sample-studio-section {
  background:
    radial-gradient(ellipse at 80% 100%, rgba(184, 148, 91, 0.05) 0%, transparent 55%),
    #FFFFFF;
  padding: clamp(var(--sp-16), 10vw, var(--sp-24)) 0;
  position: relative;
}
.sample-studio-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  align-items: center;
}
.sample-studio-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px -30px rgba(11, 30, 63, 0.35), 0 0 0 1px rgba(11, 30, 63, 0.06);
}
.sample-studio-media::after {
  /* subtle gold corner accent */
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 40%;
  height: 40%;
  background: linear-gradient(135deg, transparent 50%, rgba(184, 148, 91, 0.18) 100%);
  pointer-events: none;
  border-bottom-right-radius: var(--radius-lg);
}
.sample-studio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sample-studio-text .section-eyebrow.gold {
  color: var(--color-gold-deep);
}
.sample-studio-text .section-title {
  text-align: left;
  margin-bottom: var(--sp-4);
}
.sample-studio-text .section-desc {
  text-align: left;
  max-width: none;
  margin-bottom: var(--sp-6);
}
.sample-studio-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-8);
  display: grid;
  gap: var(--sp-3);
}
.sample-studio-list li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-text);
}
.sample-studio-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-gold-deep);
  border-right: none;
  border-top: none;
  transform: rotate(-45deg);
  border-radius: 1px;
}
.sample-studio-list li strong {
  color: var(--color-navy);
  font-weight: 600;
}

@media (max-width: 900px) {
  .sample-studio-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .sample-studio-media { aspect-ratio: 16 / 10; }
}

/* ===== DELIVERY SECTION ===== */
.delivery-section {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(184, 148, 91, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #F7F5F1 0%, #F0EDE6 100%);
  padding: clamp(var(--sp-16), 10vw, var(--sp-24)) 0;
  position: relative;
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  align-items: center;
}
.delivery-text .section-eyebrow.gold { color: var(--color-gold-deep); }
.delivery-text .section-title {
  text-align: left;
  margin-bottom: var(--sp-4);
}
.delivery-text .section-desc {
  text-align: left;
  max-width: none;
  margin-bottom: var(--sp-8);
}
.delivery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(11, 30, 63, 0.12);
  border-bottom: 1px solid rgba(11, 30, 63, 0.12);
}
.delivery-stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.delivery-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.delivery-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}
.delivery-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px -30px rgba(11, 30, 63, 0.35), 0 0 0 1px rgba(11, 30, 63, 0.06);
}
.delivery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  /* Photo above text on mobile — visually stronger opening */
  .delivery-text { order: 2; }
  .delivery-media { order: 1; aspect-ratio: 16 / 10; }
  .delivery-stats { grid-template-columns: 1fr; gap: var(--sp-3); }
  .delivery-stat { flex-direction: row; align-items: baseline; gap: var(--sp-3); }
  .delivery-stat-num { font-size: 1.2rem; }
}

/* ===== SHOWROOM FIGURE (in Product Lines section) ===== */
.showroom-figure {
  margin: var(--sp-12) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-navy);
  box-shadow: 0 30px 60px -30px rgba(11, 30, 63, 0.4), 0 0 0 1px rgba(11, 30, 63, 0.08);
}
.showroom-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.showroom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.showroom-figure:hover .showroom-photo img {
  transform: scale(1.03);
}
.showroom-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-6) var(--sp-8);
  background: var(--color-navy);
  color: var(--color-text-invert);
  border-top: 1px solid rgba(184, 148, 91, 0.25);
}
.showroom-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 var(--sp-2);
}
.showroom-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 60ch;
}
.showroom-link {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-gold);
  text-decoration: none;
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid rgba(184, 148, 91, 0.5);
  border-radius: var(--radius-md);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.showroom-link:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

@media (max-width: 800px) {
  .showroom-figure { margin: var(--sp-8) 0; }
  .showroom-photo { aspect-ratio: 4 / 3; }
  .showroom-caption {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-5);
    gap: var(--sp-4);
  }
  .showroom-link { align-self: stretch; text-align: center; }
}

/* ============================================================
   STOCKROOM GALLERY
   ============================================================ */
.stockroom-section {
  background: var(--color-navy-ink, #050f24);
  color: #f5f2ea;
  position: relative;
  overflow: hidden;
}
.stockroom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 148, 91, 0.10), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(184, 148, 91, 0.07), transparent 55%);
  pointer-events: none;
}
.stockroom-section .container { position: relative; z-index: 1; }
.stockroom-section .section-eyebrow.gold { color: var(--color-gold, #d4a76a); }
.stockroom-section .section-title { color: #fff; }
.stockroom-section .section-desc { color: rgba(245, 242, 234, 0.75); }

.stockroom-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  margin-top: 48px;
}
.stockroom-item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0a1730;
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 4 / 5;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.stockroom-item.stockroom-wide {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}
.stockroom-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.stockroom-item:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 148, 91, 0.35);
}
.stockroom-item:hover img { transform: scale(1.04); }
.stockroom-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px 14px;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  background: linear-gradient(to top, rgba(5, 15, 36, 0.94) 0%, rgba(5, 15, 36, 0.72) 55%, rgba(5, 15, 36, 0) 100%);
}
.stockroom-tag {
  display: block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold, #d4a76a);
  margin-bottom: 4px;
}

.stockroom-cta {
  margin-top: 40px;
  padding: 28px 32px;
  border: 1px solid rgba(184, 148, 91, 0.24);
  border-radius: 16px;
  background: rgba(184, 148, 91, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stockroom-cta p {
  margin: 0;
  color: rgba(245, 242, 234, 0.9);
  font-size: 16px;
  max-width: 720px;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .stockroom-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .stockroom-item.stockroom-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 560px) {
  .stockroom-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stockroom-item,
  .stockroom-item.stockroom-wide { aspect-ratio: 4 / 3; }
  .stockroom-cta { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   DELIVERY - TWO PHOTO STACK
   ============================================================ */
.delivery-media.delivery-media-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.delivery-photo {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(11, 30, 63, 0.10);
  background: #0a1730;
}
.delivery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}
.delivery-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px 12px;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  background: linear-gradient(to top, rgba(11, 30, 63, 0.92) 0%, rgba(11, 30, 63, 0.65) 55%, rgba(11, 30, 63, 0) 100%);
}
.delivery-photo-tag {
  display: block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold, #d4a76a);
  margin-bottom: 3px;
}
@media (min-width: 961px) {
  .delivery-media.delivery-media-stack {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LINE CARD WITH PHOTO (Premera)
   ============================================================ */
.line-card-with-photo {
  overflow: hidden;
  padding-top: 0;
}
.line-card-with-photo .line-card-photo {
  margin: calc(var(--sp-10) * -1) calc(var(--sp-10) * -1) var(--sp-2);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #0a1730;
}
@media (max-width: 720px) {
  .line-card-with-photo .line-card-photo {
    margin: calc(var(--sp-6) * -1) calc(var(--sp-6) * -1) var(--sp-2);
  }
}
.line-card-with-photo .line-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.line-card-with-photo:hover .line-card-photo img {
  transform: scale(1.04);
}


/* ============================================================
   STOREFRONT BAND (in Location section)
   ============================================================ */
.storefront-band {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  margin-bottom: 56px;
}
.storefront-photo {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0a1730;
  border: 1px solid rgba(11, 30, 63, 0.10);
  aspect-ratio: 3 / 4;
}
.storefront-photo.storefront-photo-wide { aspect-ratio: 4 / 3; }
.storefront-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.storefront-photo:hover img { transform: scale(1.03); }
.storefront-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px 14px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  background: linear-gradient(to top, rgba(11, 30, 63, 0.94) 0%, rgba(11, 30, 63, 0.6) 55%, rgba(11, 30, 63, 0) 100%);
}
.storefront-tag {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold, #d4a76a);
  margin-right: 2px;
}
@media (max-width: 760px) {
  .storefront-band {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }
  .storefront-photo,
  .storefront-photo.storefront-photo-wide { aspect-ratio: 4 / 3; }
}

/* ============================================================
   BEHIND THE COUNTER (STORY) SECTION
   ============================================================ */
.story-section {
  background: linear-gradient(180deg, #faf7f0 0%, #f5efe3 100%);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 148, 91, 0.09), transparent 55%),
    radial-gradient(circle at 88% 82%, rgba(11, 30, 63, 0.06), transparent 55%);
  pointer-events: none;
}
.story-section .container { position: relative; z-index: 1; }
.story-section .section-eyebrow.gold { color: var(--color-gold-deep, #a8834f); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.story-lede {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  color: var(--color-navy, #0B1E3F);
  font-weight: 500;
  margin: 8px 0 24px;
  padding-left: 18px;
  border-left: 3px solid var(--color-gold, #d4a76a);
}
.story-body p {
  color: #2a2d33;
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 0 16px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body strong {
  color: var(--color-navy, #0B1E3F);
  font-weight: 600;
}
.story-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.story-media { display: flex; flex-direction: column; gap: 24px; }
.story-photo {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0a1730;
  border: 1px solid rgba(11, 30, 63, 0.10);
  aspect-ratio: 4 / 3;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.story-photo:hover img { transform: scale(1.03); }
.story-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px 14px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  background: linear-gradient(to top, rgba(11, 30, 63, 0.95) 0%, rgba(11, 30, 63, 0.65) 55%, rgba(11, 30, 63, 0) 100%);
}
.story-tag {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold, #d4a76a);
  margin-right: 2px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.story-stat {
  padding: 18px 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(11, 30, 63, 0.08);
  text-align: left;
}
.story-stat-num {
  display: block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  color: var(--color-navy, #0B1E3F);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.story-stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  line-height: 1.4;
}

@media (max-width: 880px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-stats { grid-template-columns: 1fr; }
  .story-lede { font-size: 20px; }
}

/* ============================================================
   STOREFRONT SOLO (Location section)
   ============================================================ */
.storefront-band.storefront-band-single {
  grid-template-columns: 1fr;
}
.storefront-photo.storefront-photo-solo {
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .storefront-photo.storefront-photo-solo { aspect-ratio: 4 / 3; }
}

/* Highlight the "heads-up" step in How It Works */
.how-step.how-step-highlight {
  background: linear-gradient(180deg, rgba(184, 148, 91, 0.10), rgba(184, 148, 91, 0.03));
  border: 1px solid rgba(184, 148, 91, 0.35);
  border-radius: 12px;
  padding: var(--sp-6, 24px);
  position: relative;
}
.how-step.how-step-highlight::before {
  content: "The key step";
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--color-gold, #d4a76a);
  color: var(--color-navy, #0B1E3F);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.how-step.how-step-highlight .how-step-num {
  color: var(--color-gold-deep, #a8834f);
}

/* Featured Why ATC tile — 24/7 tech support */
.why-card.why-card-featured {
  background: linear-gradient(135deg, var(--color-navy, #0B1E3F) 0%, #0a1730 100%);
  color: #f5efe3;
  border: 1px solid rgba(184, 148, 91, 0.35);
  position: relative;
  overflow: hidden;
}
.why-card.why-card-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 15%, rgba(184, 148, 91, 0.18), transparent 55%);
  pointer-events: none;
}
.why-card.why-card-featured h3 {
  color: var(--color-gold, #d4a76a);
  position: relative;
  z-index: 1;
}
.why-card.why-card-featured h3::before {
  content: "★";
  color: var(--color-gold, #d4a76a);
  margin-right: 8px;
  font-size: 0.9em;
}
.why-card.why-card-featured p {
  color: #e8e2d3;
  position: relative;
  z-index: 1;
}
.why-card.why-card-featured em {
  font-style: italic;
  color: #fff;
  font-weight: 500;
}
a.tech-support-phone {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-gold, #d4a76a);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(184, 148, 91, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
a.tech-support-phone:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Ed Green signature in Story section */
.story-signature {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 30, 63, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.story-signature-name {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--color-navy, #0B1E3F);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.story-signature-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--color-gold-deep, #a8834f);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.story-signature + .story-actions {
  margin-top: 24px;
}

/* Training format callout row */
.training-format {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0 48px;
}
.training-format-item {
  background: #ffffff;
  border: 1px solid rgba(184, 148, 91, 0.28);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  box-shadow: 0 2px 6px -2px rgba(11, 30, 63, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.training-format-item:hover {
  border-color: rgba(184, 148, 91, 0.55);
  box-shadow: 0 8px 20px -6px rgba(11, 30, 63, 0.15);
  transform: translateY(-2px);
}
.training-format-num {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: var(--color-gold-deep, #8E6F3F);
  letter-spacing: -0.01em;
}
.training-format-label {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #6b7a94;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.training-format-item p {
  color: var(--color-navy-ink, #071633);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 960px) {
  .training-format { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .training-format { grid-template-columns: 1fr; }
}

/* Training signup callout */
.training-signup {
  margin: 0 0 48px;
  background: linear-gradient(135deg, rgba(184, 148, 91, 0.10), rgba(184, 148, 91, 0.02));
  border: 1px solid rgba(184, 148, 91, 0.28);
  border-radius: 14px;
  overflow: hidden;
}
.training-signup-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 36px 40px;
  align-items: center;
}
.training-signup-eyebrow {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--color-gold-deep, #8E6F3F);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 10px;
}
.training-signup-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-navy, #0B1E3F);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.training-signup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.training-signup-list li {
  color: var(--color-navy-ink, #071633);
  font-size: 15px;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.training-signup-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-gold-deep, #8E6F3F);
  font-weight: 700;
}
.training-signup-list strong {
  color: var(--color-navy, #0B1E3F);
  font-weight: 700;
}
.training-signup-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.training-signup-note {
  color: #4a5878;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 780px) {
  .training-signup-inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 28px;
  }
  .training-signup-title { font-size: 20px; }
}

/* Hero training chip */
.hero-training-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 8px 16px 8px 14px;
  background: rgba(184, 148, 91, 0.14);
  border: 1px solid rgba(184, 148, 91, 0.38);
  border-radius: 999px;
  text-decoration: none;
  color: #f5efe3;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
}
.hero-training-chip:hover {
  background: rgba(184, 148, 91, 0.24);
  border-color: rgba(184, 148, 91, 0.6);
  transform: translateY(-1px);
}
.hero-training-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold, #d4a76a);
  box-shadow: 0 0 0 4px rgba(184, 148, 91, 0.18);
  animation: chipPulse 2.6s ease-in-out infinite;
}
@keyframes chipPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184, 148, 91, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(184, 148, 91, 0.08); }
}

/* Coating College program badge */
.program-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 22px;
  padding: 8px 18px 8px 8px;
  background: linear-gradient(135deg, rgba(184, 148, 91, 0.14), rgba(184, 148, 91, 0.04));
  border: 1px solid rgba(184, 148, 91, 0.35);
  border-radius: 999px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}
.program-badge-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--color-gold, #d4a76a);
  color: var(--color-navy, #0B1E3F);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.program-badge-text {
  color: var(--color-navy-ink, #071633);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
}


/* ===== CATALOG SECTION ===== */
.catalog-section {
  background: linear-gradient(180deg, #F7F3EC 0%, #FFFFFF 100%);
  border-top: 1px solid var(--color-gold-border);
  border-bottom: 1px solid var(--color-gold-border);
}

/* Catalog header (above the flipbook) */
.catalog-header {
  max-width: 780px;
  margin: 0 auto var(--sp-6, 2rem);
  text-align: center;
}
.catalog-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.catalog-bullets-inline {
  max-width: 900px;
  margin: var(--sp-6, 2rem) auto 0;
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: var(--sp-3, 0.75rem) var(--sp-6, 2rem);
}
@media (max-width: 700px) {
  .catalog-bullets-inline { grid-template-columns: 1fr; }
}

.catalog-cover-wrap {
  position: relative;
  box-shadow:
    0 20px 40px -12px rgba(11, 30, 63, 0.35),
    0 8px 16px -6px rgba(11, 30, 63, 0.25);
  border-radius: 4px;
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.catalog-cover-wrap:hover {
  transform: rotate(0deg) scale(1.02);
}

.catalog-cover {
  display: block;
  width: 100%;
  height: auto;
}

.catalog-page-count {
  position: absolute;
  top: 16px;
  right: -8px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px 6px 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.catalog-page-count::before {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 6px solid var(--color-gold-deep);
  border-right: 8px solid transparent;
}

.catalog-content {
  padding-top: var(--sp-2, 0.5rem);
}

.catalog-bullets {
  list-style: none;
  padding: 0;
  margin: var(--sp-5, 1.5rem) 0;
  display: grid;
  gap: var(--sp-2, 0.5rem);
}

.catalog-bullets li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--color-navy);
  line-height: 1.55;
}

.catalog-check {
  color: var(--color-gold-deep);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.catalog-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3, 0.75rem);
  margin-bottom: var(--sp-3, 0.75rem);
}

@media (max-width: 600px) {
  .catalog-form-row {
    grid-template-columns: 1fr;
  }
}

.catalog-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1.5px solid #e6e2d8;
  border-radius: 8px;
  color: var(--color-navy-ink);
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: var(--text-base);
  font-weight: 500;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.catalog-form input::placeholder {
  color: #98a1b3;
  font-weight: 400;
}
.catalog-form input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 148, 91, 0.25);
}

.catalog-submit {
  width: 100%;
  margin-top: var(--sp-2, 0.5rem);
}

.catalog-form-fine {
  font-size: var(--text-xs);
  color: #6b7a94;
  margin-top: var(--sp-3, 0.75rem);
  margin-bottom: 0;
  line-height: 1.5;
}

.catalog-success {
  text-align: center;
  padding: var(--sp-3, 0.75rem) 0;
}

.catalog-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-3, 0.75rem);
  background: var(--color-gold);
  color: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.catalog-success-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-navy);
  margin: 0 0 var(--sp-2, 0.5rem);
}

.catalog-success-msg {
  color: var(--color-navy-ink);
  margin: 0 0 var(--sp-4, 1rem);
  line-height: 1.55;
}
.catalog-success-msg a {
  color: var(--color-gold-deep);
  text-decoration: underline;
  font-weight: 600;
}

.catalog-success-cta {
  font-size: var(--text-sm);
  color: #4a5878;
  padding-top: var(--sp-3, 0.75rem);
  border-top: 1px solid #ece7dc;
  margin: 0;
}
.catalog-success-cta a {
  color: var(--color-gold-deep);
  font-weight: 700;
  text-decoration: none;
}
.catalog-success-cta a:hover {
  text-decoration: underline;
}

/* ===== NAV CATALOG LINK ===== */
.nav-catalog {
  color: var(--color-gold-deep) !important;
  font-weight: 600;
}
.nav-catalog:hover {
  color: var(--color-gold-bright) !important;
}

/* ===== PRODUCTS SECTION CATALOG POINTER ===== */
.section-catalog-link {
  margin-top: var(--sp-4, 1rem);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
}
.section-catalog-link a {
  color: var(--color-gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold-border);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.section-catalog-link a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ===== FLIPBOOK ===== */
.flipbook-shell {
  background: var(--color-navy);
  border-radius: 14px;
  box-shadow: 0 24px 48px -12px rgba(11,30,63,0.35), 0 8px 20px -8px rgba(11,30,63,0.25);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.flipbook-shell:fullscreen {
  background: var(--color-navy);
  border-radius: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.flipbook-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(184,148,91,0.18);
}
.flipbook-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.flipbook-btn:hover:not(:disabled) {
  background: rgba(184,148,91,0.18);
  border-color: rgba(184,148,91,0.4);
}
.flipbook-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.flipbook-pageinfo {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  min-width: 68px;
  text-align: center;
  padding: 0 4px;
}
.flipbook-sep {
  color: rgba(255,255,255,0.4);
  margin: 0 4px;
}
.flipbook-spacer {
  flex: 1;
}
.flipbook-download-btn {
  margin-left: 6px;
}
.flipbook-download-btn-mobile {
  display: none;
}
.flipbook-stage {
  position: relative;
  min-height: 640px;
  background:
    radial-gradient(ellipse at center, #14294a 0%, #0B1E3F 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: auto;
  cursor: pointer;
  touch-action: pan-y pinch-zoom;
}
.flipbook-shell:fullscreen .flipbook-stage {
  flex: 1;
  min-height: 0;
}
.flipbook-canvas {
  display: block;
  border-radius: 4px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.55),
    0 12px 24px -8px rgba(0,0,0,0.4);
  background: #fff;
  max-width: 100%;
  height: auto;
}
.flipbook-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(255,255,255,0.75);
}
.flipbook-loading p {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.flipbook-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 3px solid rgba(184,148,91,0.25);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: fb-spin 0.9s linear infinite;
}
@keyframes fb-spin {
  to { transform: rotate(360deg); }
}
.flipbook-bottombar {
  padding: 12px 16px;
  background: rgba(0,0,0,0.28);
  border-top: 1px solid rgba(184,148,91,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.flipbook-hint {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  margin: 0;
  text-align: center;
  letter-spacing: 0.02em;
}

@media (max-width: 780px) {
  .flipbook-stage {
    min-height: 480px;
    padding: 10px;
  }
  .flipbook-btn {
    width: 34px;
    height: 34px;
  }
  .flipbook-download-btn {
    display: none;
  }
  .flipbook-download-btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
  }
  .flipbook-bottombar {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .flipbook-btn-icon {
    display: none;
  }
}

/* ===== CATALOG MODAL ===== */
.catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.catalog-modal[hidden] {
  display: none;
}
.catalog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,30,63,0.72);
  backdrop-filter: blur(4px);
  animation: fb-fade-in 0.2s ease;
}
.catalog-modal-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  max-width: 520px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55);
  animation: fb-slide-up 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes fb-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fb-slide-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.catalog-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: #4a5878;
  cursor: pointer;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.catalog-modal-close:hover {
  background: #f4efe5;
  color: var(--color-navy);
}
.catalog-modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.catalog-modal-sub {
  color: #4a5878;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.catalog-modal .catalog-form input {
  background: #fdfbf6;
  border: 1.5px solid #e6e2d8;
}
.catalog-modal .catalog-form input:focus {
  background: #fff;
  border-color: var(--color-gold);
}
@media (max-width: 500px) {
  .catalog-modal-card {
    padding: 32px 22px 24px;
    border-radius: 12px;
  }
  .catalog-modal-title {
    font-size: 22px;
  }
}

/* ===== CATALOG PANEL (cover + Preview/Download buttons) ===== */
.catalog-panel {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 48px -14px rgba(11,30,63,0.22), 0 6px 16px -8px rgba(11,30,63,0.14);
  border: 1px solid #ece7dc;
  overflow: hidden;
}
.catalog-panel-inner {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 48px;
  padding: 40px 44px;
  align-items: center;
}
.catalog-panel .catalog-cover-wrap {
  margin: 0;
  border-radius: 6px;
  box-shadow: 0 24px 40px -14px rgba(11,30,63,0.35), 0 8px 16px -6px rgba(11,30,63,0.25);
  transform: rotate(-1.2deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.catalog-panel .catalog-cover-wrap:hover {
  transform: rotate(0deg) scale(1.02);
}
.catalog-panel-body { min-width: 0; }
.catalog-panel-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-deep, #8E6F3F);
  margin: 0 0 12px;
}
.catalog-panel-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--color-navy, #0B1E3F);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.catalog-panel-desc {
  color: #4a5878;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 480px;
}
.catalog-panel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.catalog-panel-fine {
  margin: 16px 0 0;
  font-size: 12px;
  color: #6b7a94;
  letter-spacing: 0.01em;
}

/* Outline gold button variant (used for the Preview button) */
.btn-outline-gold {
  background: #fff;
  color: var(--color-navy, #0B1E3F);
  border: 1.5px solid var(--color-gold, #B8945B);
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn-outline-gold:hover {
  background: #fdfbf6;
  border-color: var(--color-gold-deep, #8E6F3F);
}
.btn-outline-gold:active {
  transform: translateY(1px);
}

@media (max-width: 780px) {
  .catalog-panel-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
  }
  .catalog-panel .catalog-cover-wrap {
    max-width: 220px;
    margin: 0 auto;
  }
  .catalog-panel-desc {
    max-width: 100%;
  }
  .catalog-panel-actions {
    flex-direction: column;
    gap: 10px;
  }
  .catalog-panel-actions .btn {
    width: 100%;
  }
}

/* ===== RETURN PILL (shown after Preview opens PDF in new tab) ===== */
#atc-return-pill {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 16px;
  background: rgba(11, 30, 63, 0.96);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid rgba(184, 148, 91, 0.5);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.35), 0 4px 12px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: max-content;
  max-width: calc(100vw - 32px);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
@media (max-width: 500px) {
  #atc-return-pill { white-space: normal; border-radius: 16px; }
  #atc-return-pill .atc-return-pill-text { white-space: normal; }
}
#atc-return-pill.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
#atc-return-pill svg {
  flex-shrink: 0;
  stroke: #B8945B;
}
#atc-return-pill .atc-return-pill-text {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}
#atc-return-pill .atc-return-pill-text strong {
  font-weight: 700;
  color: #B8945B;
}
#atc-return-pill .atc-return-pill-close {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.55);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  margin-left: 4px;
  transition: color 0.15s ease;
}
#atc-return-pill .atc-return-pill-close:hover {
  color: #fff;
}

@media (max-width: 500px) {
  #atc-return-pill {
    font-size: 13px;
    padding: 10px 12px 10px 14px;
    gap: 10px;
  }
}


/* ===== SMS desktop-fallback modal ===== */
.sms-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.sms-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.sms-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 63, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.sms-modal-panel {
  position: relative;
  background: #fff;
  color: var(--color-navy, #0B1E3F);
  border-radius: 14px;
  padding: 36px 32px 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(11, 30, 63, 0.28);
  transform: translateY(8px);
  transition: transform 200ms ease;
  border-top: 4px solid var(--color-gold, #B8945B);
}
.sms-modal.open .sms-modal-panel {
  transform: translateY(0);
}
.sms-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: rgba(11, 30, 63, 0.45);
  cursor: pointer;
  padding: 6px 10px;
  transition: color 150ms ease;
}
.sms-modal-close:hover {
  color: var(--color-navy, #0B1E3F);
}
.sms-modal-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-deep, #8E6F3F);
  margin: 0 0 8px;
}
.sms-modal-title {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--color-navy, #0B1E3F);
  font-weight: 700;
}
.sms-modal-msg {
  margin: 0 0 20px;
  color: #495a75;
  font-size: 15px;
  line-height: 1.5;
}
.sms-modal-number-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.sms-modal-number {
  font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-navy, #0B1E3F);
  text-decoration: none;
  padding: 12px 18px;
  background: #F4F1EA;
  border-radius: 10px;
  border: 1px solid rgba(184, 148, 91, 0.28);
  font-variant-numeric: tabular-nums;
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
}
.sms-modal-number:hover {
  border-color: var(--color-gold, #B8945B);
}
.sms-modal-copy {
  white-space: nowrap;
}
.sms-modal-hint {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7a90;
  text-align: center;
}
.sms-modal-hint-link {
  color: var(--color-gold-deep, #8E6F3F);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 148, 91, 0.4);
}
.sms-modal-hint-link:hover {
  color: var(--color-navy, #0B1E3F);
  border-bottom-color: var(--color-navy, #0B1E3F);
}

@media (max-width: 500px) {
  .sms-modal-panel {
    padding: 32px 22px 22px;
  }
  .sms-modal-number {
    font-size: 20px;
    min-width: 100%;
  }
  .sms-modal-copy {
    width: 100%;
  }
}

/* ============================================================
   Training section — Coating College flyer typography
   Barlow Condensed heavy weight, uppercase, tight line-height
   Applies flyer look to the training section H2 only.
   ============================================================ */
.training-title {
  font-family: 'Barlow Condensed', 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.92;
}

/* ============================================================
   Coating College lockup — flyer-style masthead
   Two-line lockup: bold condensed "Coating" over italic serif "College"
   Adapted to the light training-section background.
   ============================================================ */
.cc-lockup {
  display: inline-block;
  text-align: left;
  margin: 0 auto var(--sp-6);
  padding: 0;
}
.cc-lockup-coating {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3.75rem, 9vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.cc-lockup-college {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(3.5rem, 8.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--color-gold-deep);
  margin-top: -0.05em;
  padding-left: 0.1em;
}
.cc-lockup-rule {
  width: 44px;
  height: 2px;
  background: var(--color-gold-deep);
  margin: var(--sp-4) 0 var(--sp-2);
}
.cc-lockup-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-navy);
  opacity: 0.72;
}
@media (max-width: 640px) {
  .cc-lockup {
    text-align: center;
  }
  .cc-lockup-rule {
    margin-left: auto;
    margin-right: auto;
  }
}
