/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #f7f4f0;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

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

/* ══════════════════════════════════════════════
   LAYOUT HELPERS
══════════════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 64px 0;
  scroll-margin-top: 120px;
}

.section--compact {
  padding: 48px 0;
}

/* ══════════════════════════════════════════════
   CONTACT US — mimics the floating navbar look,
   but sits statically in the page flow (no fixed
   positioning, doesn't follow scroll).
══════════════════════════════════════════════ */
.contact-section {
  padding: 24px 0 40px;
}

.contact-bar {
  background: rgba(23, 42, 58, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border-radius: 32px;
  padding: 24px 32px;
  text-align: center;
}

.contact-bar .section-eyebrow {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-bar .section-eyebrow::before {
  display: none;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 20px 32px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

a.contact-pill:hover {
  background: rgba(185,109,64,0.18);
  border-color: #b96d40;
}

.contact-pill-icon {
  display: flex;
  color: #b96d40;
}

.contact-pill-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .contact-bar {
    padding: 32px 20px;
    border-radius: 24px;
  }
  .contact-pill {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
}

.bg-white  { background: #ffffff; }
.bg-light  { background: #eef0f2; }
.bg-stone  { background: #e2e5e8; }
.bg-dark   { background: #0f1b2d; }

/* ══════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #b96d40;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b96d40;
  flex-shrink: 0;
}

.section-eyebrow.light {
  color: #d4895a;
}

.section-eyebrow.light::before {
  background: #d4895a;
}

.section-title {
  font-family: 'Oswald', 'Raleway', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-title .accent {
  color: #b96d40;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 6px;
  background: #b96d40;
  margin: 16px auto 0;
}

.section-title.light {
  color: #ffffff;
}

.section-title.light::after {
  background: rgba(255,255,255,0.4);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-primary,
.btn-ghost,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 26px 10px 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-primary::before,
.btn-ghost::before,
.btn-secondary::before {
  content: '\2192';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background: #b96d40;
  color: #ffffff;
  border: none;
}

.btn-primary::before {
  background: #ffffff;
  color: #b96d40;
}

.btn-primary:hover {
  background: #9a5c35;
  transform: translateY(-1px);
}

.btn-primary.btn-jawbreaker:hover {
  background-color: #b96d40;
  background-image: url('jawbreaker.jpg');
  background-size: cover;
  background-position: center;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-ghost::before {
  background: #ffffff;
  color: #b96d40;
}

.btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.1);
}

.btn-secondary {
  background: transparent;
  color: #0f1b2d;
  border: 2px solid #0f1b2d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-secondary::before {
  background: #0f1b2d;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #0f1b2d;
  color: #ffffff;
}

.btn-secondary:hover::before {
  background: #ffffff;
  color: #0f1b2d;
}

.btn-full {
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  padding: 16px;
}

/* ══════════════════════════════════════════════
   SITE HEADER — fixed, floating with side gaps
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 16px;
  left: 36px;
  right: 36px;
  z-index: 1000;
}

/* ══════════════════════════════════════════════
   NAVBAR — floating rounded pill
══════════════════════════════════════════════ */
.navbar {
  position: relative;
  background: rgba(23, 42, 58, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border-radius: 999px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 20px;
  padding: 16px 16px 16px 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links-left {
  justify-self: start;
}

.nav-logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-self: center;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-byline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.nav-logo-byline-divider {
  width: 100px;
  max-width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.nav-links a {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav-links a:hover {
  color: #b96d40;
}

.nav-book-now {
  color: #b96d40 !important;
}

.nav-book-now:hover {
  color: #d4895a !important;
}

.nav-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #b96d40;
  color: #ffffff !important;
  border-radius: 999px;
  padding: 8px 24px 8px 8px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-phone-btn:hover {
  background: #9a5c35;
}

.nav-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.nav-phone-icon svg {
  width: 18px;
  height: 18px;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.7rem;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-mobile {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  background: rgba(23, 42, 58, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  border-radius: 24px;
  padding: 8px 24px 20px;
}

.nav-mobile-close {
  display: flex;
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 0 8px;
  line-height: 1;
  transition: color 0.2s;
}

.nav-mobile-close:hover {
  color: #fff;
}

.nav-mobile a {
  color: rgba(255,255,255,0.85);
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

/* ══════════════════════════════════════════════
   HERO — FULL BLEED
══════════════════════════════════════════════ */
.hero-fullbleed {
  position: relative;
  background: #ffffff;
  padding: 24px 24px 0;
}

.hero-frame {
  position: relative;
  min-height: max(720px, 78vh);
  background-color: #1c2d3e;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 110px 56px 64px;
  border-radius: 28px;
  overflow: hidden;
}

/* Individual slide layers */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Slide indicator bars */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-dot {
  width: 52px;
  height: 4px;
  background: rgba(255,255,255,0.38);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.hero-dot.active {
  background: rgba(255,255,255,0.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 20, 35, 0.92) 0%,
    rgba(10, 20, 35, 0.82) 35%,
    rgba(10, 20, 35, 0.5) 65%,
    rgba(10, 20, 35, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: #ffffff;
  text-align: left;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.eyebrow-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b96d40;
  flex-shrink: 0;
}

.hero-title {
  margin-bottom: 40px;
  line-height: 1;
}

.hero-line1 {
  display: block;
  font-family: 'Oswald', 'Raleway', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-line2 {
  display: block;
  font-family: 'Oswald', 'Raleway', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-line2 .accent {
  color: #b96d40;
}

.hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 480px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-badge-row {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 20px;
  max-width: 1120px;
  margin: -56px auto 0;
  padding: 0 24px;
}

.hero-badge-card {
  flex: 1;
  background: rgba(15,27,45,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 22px 24px;
  color: #ffffff;
}

.hero-badge-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.hero-badge-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 780px) {
  .hero-badge-row {
    flex-direction: column;
    margin-top: -32px;
  }
}

/* ══════════════════════════════════════════════
   HERO BEFORE & AFTER TOGGLE
══════════════════════════════════════════════ */
.ba-toggle-section {
  padding: 56px 0 64px;
}

.ba-toggle-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 50px rgba(15,27,45,0.18);
}

.ba-toggle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ba-toggle-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.ba-toggle-after-placeholder {
  background: #e4e7ec;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ba-toggle-coming-soon {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(15,27,45,0.16);
  transform: rotate(-10deg);
  white-space: nowrap;
  user-select: none;
}

.ba-toggle-switch {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
  background: rgba(15,27,45,0.06);
  border-radius: 999px;
  padding: 4px;
}

.ba-toggle-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: #b96d40;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  z-index: 0;
}

.ba-toggle-switch.state-after .ba-toggle-indicator {
  transform: translateX(100%);
}

.ba-toggle-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  padding: 11px 34px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f1b2d;
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.3s ease;
}

.ba-toggle-btn.active {
  color: #ffffff;
}

@media (max-width: 600px) {
  .ba-toggle-frame {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }
  .ba-toggle-btn {
    padding: 10px 24px;
    font-size: 0.76rem;
  }
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: #0f1b2d;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border: 2px solid #0f1b2d;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-dark:hover {
  background: #0f1b2d;
  color: #ffffff;
}


/* ══════════════════════════════════════════════
   CTA CARD BAND
══════════════════════════════════════════════ */
.cta-band {
  background: #DAD7CD;
  padding: 60px 48px;
  position: relative;
  z-index: 1;
  margin-top: -60px;
}

.cta-card-frame {
  max-width: 780px;
  margin: 0 auto;
  background: #172a3a;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: background 0.45s ease;
}

.cta-card-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('specks.jpg') center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.cta-card-frame:hover::before {
  opacity: 1;
}

.cta-card {
  background: #f7f4f0;
  padding: 36px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-card-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-card-sub {
  font-size: 1rem;
  color: #555e6e;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ══════════════════════════════════════════════
   CONFIGURATOR
══════════════════════════════════════════════ */

/* Progress bar */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 16px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.prog-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d9dee6;
  color: #888;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.progress-step span {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
  white-space: nowrap;
}

.progress-step.active .prog-circle {
  background: #b96d40;
  color: #ffffff;
}

.progress-step.active span {
  color: #b96d40;
  font-weight: 700;
}

.progress-step.done .prog-circle {
  background: #2a7a4f;
  color: #ffffff;
}

.progress-step.done span {
  color: #2a7a4f;
}

.progress-line {
  width: 60px;
  height: 2px;
  background: #d9dee6;
  margin-bottom: 22px;
}

/* Config step */
.config-step {
  margin-bottom: 52px;
  scroll-margin-top: 120px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eef0f4;
}

.step-note {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Size cards */
/* ── Shared plain-pill option style ───────────
   Used for coating type, project type, garage
   size, and RV/Shop add-ons — no icons, just a
   radio indicator + label. */
.step-subheading {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f1b2d;
  margin: 0 0 12px;
}

.required-mark {
  color: #b96d40;
}

.option-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.option-pill-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

.option-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid #e2e6ed;
  border-radius: 16px;
  background: #fff;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  touch-action: manipulation;
}

@media (hover: hover) {
  .option-pill:hover {
    border-color: #b96d40;
    box-shadow: 0 4px 20px rgba(196,122,43,0.15);
  }
}

.option-pill.selected {
  border-color: #b96d40;
  box-shadow: 0 0 0 3px rgba(196,122,43,0.2);
}

.option-pill-radio {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ccd2da;
  position: relative;
  margin-top: 1px;
  transition: border-color 0.2s;
}

.option-pill.selected .option-pill-radio {
  border-color: #b96d40;
}

.option-pill.selected .option-pill-radio::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b96d40;
}

.option-pill-label {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f1b2d;
}

.option-pill-label-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.option-pill-sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: #777;
}

.option-pill-label-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.option-pill-sub-inline {
  font-size: 0.85rem;
  font-weight: 400;
  color: #777;
}

.option-pill-sub strong {
  display: block;
  margin-top: 6px;
  color: #b96d40;
  font-weight: 700;
  white-space: nowrap;
}

.optional-tag {
  display: inline-block;
  background: #fff4e0;
  color: #a86520;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.flake-size-note {
  font-size: 0.85rem;
  color: #555;
  margin: -6px 0 16px;
  line-height: 1.4;
}

.flake-size-tag {
  display: inline-block;
  background: #b96d40;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: middle;
}

.size-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* RV optional add-on */
.rv-addon-row {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.rv-addon-label {
  cursor: pointer;
  display: flex;
  flex: 1;
  min-width: 0;
}

.rv-addon-label input[type="checkbox"] {
  display: none;
}

.rv-addon-card {
  flex: 1;
  padding: 14px 16px;
  gap: 10px;
}

.rv-addon-card .option-pill-label {
  font-size: 0.92rem;
}

.rv-addon-card .option-pill-sub {
  font-size: 0.8rem;
}

/* Add-on cards */
.addon-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addon-card input[type="checkbox"] {
  display: none;
}

.addon-card {
  cursor: pointer;
}

.addon-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 2px solid #e2e6ed;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.addon-card input:checked + .addon-card-inner {
  border-color: #b96d40;
  box-shadow: 0 0 0 3px rgba(196,122,43,0.15);
  background: #fffaf4;
}

.addon-icon {
  font-size: 1.8rem;
}

.addon-info {
  flex: 1;
}

.addon-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 2px;
}

.addon-info p {
  font-size: 0.83rem;
  color: #666;
}

.addon-price {
  font-size: 1rem;
  font-weight: 700;
  color: #b96d40;
  white-space: nowrap;
}

.flake-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.flake-color-count {
  color: #666;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 20px;
}

.flake-category-pill,
.gallery-category-pill {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f1b2d;
  background: #fff;
  border: 2px solid #e2e6ed;
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.flake-category-pill:hover,
.gallery-category-pill:hover {
  border-color: #b96d40;
  color: #b96d40;
}

.flake-category-pill.active,
.gallery-category-pill.active {
  background: #b96d40;
  border-color: #b96d40;
  color: #fff;
}

.flake-category-pills.filters-suppressed .flake-category-pill.active {
  background: #fff;
  border-color: #e2e6ed;
  color: #0f1b2d;
}

.pill-subtext {
  font-weight: 400;
  font-size: 0.78em;
  opacity: 0.65;
  margin-left: 6px;
}

.durablend-pill {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 2px solid #e2e6ed;
  border-radius: 999px;
  color: #0f1b2d;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.durablend-pill:hover {
  border-color: #b96d40;
  color: #b96d40;
}

.durablend-pill.selected {
  background: #b96d40;
  border-color: #b96d40;
  color: #fff;
}

.durablend-details {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #f7f6f3;
  border: 2px solid #e2e6ed;
  border-radius: 16px;
  padding: 0 24px;
  margin-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.4s ease, margin 0.4s ease;
}

.durablend-details.open {
  max-height: 220px;
  opacity: 1;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.durablend-details-photo {
  flex-shrink: 0;
}

.durablend-details-img {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px #fff;
  cursor: zoom-in;
}

.durablend-details-info {
  min-width: 0;
}

.durablend-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b96d40;
  margin-bottom: 6px;
}

.durablend-desc {
  font-size: 0.85rem;
  color: #555;
  margin: 0 0 6px;
  line-height: 1.4;
}

.durablend-explainer {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .durablend-details {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .durablend-details.open {
    max-height: 320px;
  }
}

/* Flake help boxes (sample-order help, below the color grid) */
.flake-help-row {
  margin-top: 24px;
}

.flake-help-box {
  background: #f7f6f3;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.flake-help-box-empty {
  min-height: 120px;
}

.flake-help-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #0f1b2d;
  margin-bottom: 20px;
}

.flake-help-logo-text-torginol {
  font-family: 'Rockwell', 'Roboto Slab', serif;
  font-size: 2rem;
}

.torginol-wordmark-inline {
  font-family: 'Rockwell', 'Roboto Slab', serif;
  font-size: 1.05em;
  color: #0f1b2d;
}

.flake-help-swatches {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
}

.flake-help-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.flake-help-swatch img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px #fff;
}

.flake-help-swatch span {
  font-size: 0.82rem;
  color: #666;
}

.flake-help-code {
  font-size: 0.72rem;
  color: #999;
  letter-spacing: 0.03em;
}

.flake-help-text {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
}

.flake-help-text a {
  color: #b96d40;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

.flake-help-text a:hover {
  color: #954f2b;
}

/* Flake grid wrapper */
.flake-photo-grid-wrap {
  position: relative;
}

.flake-size-warning {
  color: #c0392b;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 10px;
}

/* ── Toast notification ───────────────────────
   Fixed to the viewport so it's always visible,
   regardless of scroll position in a long grid. */
.toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  z-index: 9999;
  background: #c0392b;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  max-width: calc(100vw - 48px);
}

.toast.success {
  background: #2f8a5b;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
  .toast {
    top: 84px;
    white-space: normal;
    text-align: center;
  }
}

/* Flake photo grid */
.flake-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  column-gap: 10px;
  row-gap: 20px;
  margin-bottom: 16px;
}

.flake-photo-card {
  position: relative;
  cursor: pointer;
  border: none;
  overflow: visible;
  aspect-ratio: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent;
  touch-action: manipulation;
}

.flake-photo-card::after {
  content: '\2197';
  position: absolute;
  top: -4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15,27,45,0.8);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 3;
}

@media (hover: hover) {
  .flake-photo-card:hover .flake-photo-img {
    box-shadow: 0 6px 20px rgba(0,0,0,0.28);
    transform: translateY(-2px);
    outline: 3px solid #b96d40;
    outline-offset: 3px;
  }

  .flake-photo-card:hover::after {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .flake-photo-card::after {
    opacity: 1;
  }
}

.flake-expand-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 5;
  line-height: 1;
}

.flake-photo-card:hover .flake-expand-btn {
  opacity: 1;
}

@media (max-width: 600px) {
  .flake-expand-btn {
    opacity: 1;
  }
}

.flake-photo-card.selected .flake-photo-img {
  outline: 3px solid #b96d40;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(185,109,64,0.18);
}

.flake-photo-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.flake-photo-label {
  position: static;
  background: none;
  color: #0f1b2d;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.7;
}

.flake-photo-blend {
  position: static;
  background: none;
  color: #8a8f98;
  font-size: 0.56rem;
  font-weight: 500;
  text-align: center;
  padding: 0;
  margin-top: -6px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Flake grid (legacy swatches — kept for reference) */
.flake-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.flake-swatch {
  aspect-ratio: 1;
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.flake-swatch:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.flake-swatch.selected {
  border-color: #b96d40;
  box-shadow: 0 0 0 3px rgba(196,122,43,0.3);
  transform: scale(1.1);
}

.flake-swatch .flake-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.55rem;
  text-align: center;
  padding: 2px 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.flake-swatch:hover .flake-label,
.flake-swatch.selected .flake-label {
  opacity: 1;
}

.flake-selected-label {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}

.custom-blend-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 16px;
  background: #ffffff;
  border: 2px solid #e4e8ef;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-blend-cta:hover {
  border-color: #b96d40;
  box-shadow: 0 2px 16px rgba(15,27,45,0.07);
}

.custom-blend-cta.selected {
  border-color: #b96d40;
  background: #fbf1e7;
  box-shadow: 0 2px 20px rgba(185,109,64,0.12);
}

.custom-blend-cta-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px #f7f6f3;
}

.custom-blend-cta-text {
  font-size: 0.85rem;
  color: #555;
  flex: 1;
}

.custom-blend-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.custom-flake-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #b96d40;
  white-space: nowrap;
}

.custom-flake-select-label {
  font-size: 0.72rem;
  color: #999;
  white-space: nowrap;
}

.custom-blend-cta.selected .custom-flake-select-label {
  color: #b96d40;
  font-weight: 600;
}

/* Price summary */
.price-summary {
  background: #0f1b2d;
  padding: 28px 32px;
  margin-bottom: 40px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.summary-total {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  border-bottom: none !important;
  padding-top: 18px !important;
  margin-top: 4px;
}

.summary-total span:last-child {
  color: #d4895a;
  font-size: 1.4rem;
}

.summary-note {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  margin-top: 12px;
}

/* Quote form */
.quote-form {
  max-width: 600px;
}

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

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(15,27,45,0.15);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #0f1b2d;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #b96d40;
}

.form-input::placeholder {
  color: #aab0bc;
}

.textarea-required-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f1b2d;
  margin: 0 0 6px;
}

.shop-textarea-wrap {
  position: relative;
}

.shop-textarea {
  height: 100px;
  resize: none;
  overflow-y: auto;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* old Edge/IE */
}

/* Character limit and vertical scroll still work above, just with no
   visible scrollbar or drag handle cluttering the box. */
.shop-textarea::-webkit-scrollbar {
  display: none;
}

.shop-textarea-sm {
  height: 56px;
}

.shop-char-count {
  display: none;
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 0.75rem;
  color: #aab0bc;
  pointer-events: none;
}

.form-disclaimer {
  color: #888;
  font-size: 0.8rem;
  margin-top: 10px;
  text-align: center;
}

.quote-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}

.already-submitted-notice {
  background: #ffffff;
  border: 1px solid #b96d40;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}

.already-submitted-notice p {
  color: #0f1b2d;
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.3;
  margin: 0;
}

.already-submitted-notice a {
  color: #0f1b2d;
  text-decoration: underline;
  white-space: nowrap;
}

.step3-columns {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.step3-current {
  flex: 1 1 0;
  min-width: 0;
}

/* Divider line between the receipt and the current quote — only shows
   once there's actually a receipt sitting next to a new quote. */
.quote-receipts:not(.hidden) ~ .step3-current {
  border-left: 1px solid #cfd4dc;
  padding-left: 28px;
}

.quote-receipts {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-margin-top: 120px;
}

.quote-receipts.hidden {
  display: none;
}

@media (max-width: 800px) {
  .step3-columns {
    flex-direction: column;
  }
  .quote-receipts {
    max-width: none;
    width: 100%;
  }
  .step3-current {
    padding-left: 16px;
    padding-right: 16px;
  }
  .quote-receipts:not(.hidden) ~ .step3-current {
    border-left: none;
    border-top: 1px solid #cfd4dc;
    padding-top: 24px;
  }
  .already-submitted-notice {
    padding: 20px 20px;
  }
  .already-submitted-notice p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

.quote-receipt {
  background: #eaf5ee;
  border: 1px solid #bfe0cb;
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
}

.quote-receipt-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.quote-receipt-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2f8a5b;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.quote-receipt-title {
  font-weight: 700;
  color: #0f1b2d;
  font-size: 0.95rem;
}

.quote-receipt-breakdown {
  font-size: 0.85rem;
}

.quote-receipt-breakdown .quote-table td {
  padding: 4px 0;
}

.quote-receipt-note {
  color: #555;
  font-size: 0.82rem;
  margin: 8px 0 0;
}

.quote-receipt-book-btn {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 14px auto 0;
}

.quote-placeholder {
  padding: 12px 20px;
  text-align: center;
  color: rgba(15,27,45,0.3);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.quote-preview {
  max-width: 380px;
  margin: 0 auto 32px;
}

.lock-in-section {
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.lock-in-intro {
  font-size: 0.82rem;
  color: rgba(15,27,45,0.42);
  margin-bottom: 20px;
  line-height: 1.65;
}

.quote-table {
  width: 100%;
  border-collapse: collapse;
}

.quote-table td {
  padding: 11px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(15,27,45,0.07);
  color: rgba(15,27,45,0.6);
}

.quote-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #0f1b2d;
}

.quote-total-row td {
  background: none !important;
  font-size: 1rem;
  font-weight: 700;
  border-top: 1.5px solid rgba(15,27,45,0.15);
  border-bottom: none;
  padding-top: 16px;
  color: #0f1b2d !important;
}

.quote-total-row td:last-child {
  color: #b96d40 !important;
}

.quote-lock-note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why-numbered-list {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin: 0 auto 28px;
}

.why-numbered-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15,27,45,0.08);
  text-align: left;
}

.why-numbered-item:last-child {
  border-bottom: none;
}

.why-num {
  font-family: 'Oswald', 'Raleway', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #b96d40;
  line-height: 1;
  flex-shrink: 0;
  min-width: 72px;
}

.why-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: #fbf1e7;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 16px rgba(15,27,45,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 24px;
  height: auto;
}

.why-numbered-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 4px;
}

.why-numbered-info p {
  font-size: 0.88rem;
  color: rgba(15,27,45,0.6);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .why-numbered-item {
    gap: 14px;
    padding: 14px 0;
  }
  .why-num {
    font-size: 2rem;
    min-width: 52px;
  }
  .why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .why-icon svg {
    width: 20px;
  }
}

/* ══════════════════════════════════════════════
   WHY UPGRADE
══════════════════════════════════════════════ */
.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.upgrade-card {
  background: #ffffff;
  border-top: 3px solid rgba(185,109,64,0.15);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(15,27,45,0.04);
  padding: 32px 26px 28px;
  text-align: center;
}

.upgrade-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fbf1e7;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 16px rgba(15,27,45,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.upgrade-icon svg {
  width: 24px;
  height: 24px;
}

.upgrade-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b96d40;
  margin-bottom: 8px;
}

.upgrade-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 8px;
}

.upgrade-card p {
  font-size: 0.88rem;
  color: rgba(15,27,45,0.6);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 860px) {
  .upgrade-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
.gallery-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 36px;
}

.gallery-feature {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
}

.gallery-feature:nth-child(even) {
  grid-template-columns: 2fr 3fr;
}

.gallery-feature:nth-child(even) .gallery-feature-photo {
  order: 2;
}

.gallery-feature:nth-child(even) .gallery-feature-info {
  order: 1;
  text-align: right;
}

.gallery-feature-photo {
  border-radius: 20px;
  overflow: hidden;
  background: #dde2ea;
}

.gallery-feature-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

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

.gallery-feature-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0f1b2d;
  margin-bottom: 12px;
}

.gallery-feature-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-left: 3px solid #b96d40;
  padding-left: 14px;
  width: fit-content;
}

.gallery-feature:nth-child(even) .gallery-feature-meta {
  margin-left: auto;
}

.gallery-feature-project {
  display: inline-flex;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b96d40;
}

.gallery-feature-coating {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f1b2d;
  background: #fff;
  border: 1.5px solid #e2e6ed;
  border-radius: 999px;
  padding: 5px 16px;
}

@media (max-width: 700px) {
  .gallery-feature,
  .gallery-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .gallery-feature:nth-child(even) .gallery-feature-photo,
  .gallery-feature:nth-child(even) .gallery-feature-info {
    order: initial;
  }
  .gallery-feature-img {
    height: 240px;
  }

  .gallery-feature-photo {
    margin-right: 32px;
  }
  .gallery-feature:nth-child(even) .gallery-feature-photo {
    margin-right: 0;
    margin-left: 32px;
  }

  .gallery-feature-info {
    text-align: left;
  }
  .gallery-feature:nth-child(even) .gallery-feature-info {
    text-align: right;
  }
}

/* Filterable photo grid (replaces the alternating gallery-feature
   layout above, which is kept but unused in case it's wanted again) */
.gallery-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}

.gallery-count {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
  gap: 20px;
  margin-bottom: 36px;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 2;
  background: #dde2ea;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.06);
}

.gallery-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15,27,45,0.82);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
}

.gallery-card-expand {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

@media (hover: hover) {
  .gallery-card:hover .gallery-card-expand {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .gallery-card-expand {
    opacity: 1;
  }
}

.gallery-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 14px 10px;
  background: linear-gradient(to top, rgba(15,27,45,0.85), transparent);
  color: #ffffff;
}

.gallery-card-caption-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 24px 0;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}

@media (min-width: 700px) {
  .lightbox img {
    max-height: 70vh;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 3;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.75);
}

/* Drawn as a rotated border-corner rather than a text glyph — the ‹ › text
   characters carry uneven font metrics that always looked slightly
   off-center inside the circle, no matter how the flexbox centering was
   tuned. A CSS-drawn chevron centers exactly, every time. */
.lightbox-nav::before {
  content: '';
  width: 11px;
  height: 11px;
  border-style: solid;
  border-color: #ffffff;
  border-width: 0 3px 3px 0;
  box-sizing: border-box;
}

.lightbox-nav-prev::before {
  transform: rotate(135deg) translate(-1px, -1px);
}

.lightbox-nav-next::before {
  transform: rotate(-45deg) translate(-1px, -1px);
}

.lightbox-nav.hidden {
  display: none;
}

.lightbox-nav-prev { left: 16px; }
.lightbox-nav-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  right: 24px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 6px 16px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 3;
}

.lightbox-counter.hidden {
  display: none;
}

@media (max-width: 700px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-nav-prev { left: 8px; }
  .lightbox-nav-next { right: 8px; }
  .lightbox-counter {
    bottom: 14px;
    right: 14px;
  }
}

/* ══════════════════════════════════════════════
   FLAKE DETAIL MODAL
══════════════════════════════════════════════ */
.flake-detail-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  width: min(760px, 92vw);
  max-height: 85dvh;
  background: #0f1b2d;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

/* Flake photos are square (1:1) — match that exactly so the full photo
   always shows with no cropping, instead of forcing it into a mismatched
   rectangle. */
.flake-detail-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0a1420;
}

#flakeLightboxImg {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  box-shadow: none;
  display: block;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#flakeLightboxImg.is-loaded {
  opacity: 1;
}

.flake-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 38px;
  color: #ffffff;
  overflow-y: auto;
}

.flake-detail-name {
  font-family: 'Oswald', 'Raleway', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.flake-detail-meta {
  color: #d4895a;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}

.flake-detail-btn {
  width: 100%;
  justify-content: center;
}

.flake-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.flake-detail-close:hover {
  background: rgba(0,0,0,0.7);
}

/* Plain image-only zoom (DuraBlend photo) shares the same modal shell */
.flake-detail-panel.photo-only {
  grid-template-columns: none;
  width: auto;
  height: auto;
  max-width: 90vw;
  background: transparent;
  box-shadow: none;
}

.flake-detail-panel.photo-only .flake-detail-info {
  display: none;
}

.flake-detail-panel.photo-only .flake-detail-photo {
  aspect-ratio: unset;
  height: auto;
  background: none;
}

.flake-detail-panel.photo-only #flakeLightboxImg {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 85dvh;
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}

@media (max-width: 760px) {
  .flake-detail-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    width: 94vw;
    max-height: 88dvh;
    overflow-y: auto;
  }
  .flake-detail-info {
    padding: 28px 24px 32px;
  }
  .flake-detail-name {
    font-size: 1.7rem;
  }
}

.lightbox-caption {
  margin-top: 20px;
  text-align: center;
}

.lightbox-caption-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.lightbox-caption-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-cta {
  text-align: center;
}

/* ══════════════════════════════════════════════
   SCHEDULE JAWBREAKER HOVER
══════════════════════════════════════════════ */
#schedule {
  position: relative;
  margin: 24px;
  border-radius: 28px;
  overflow: hidden;
}

#schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('jawbreaker.jpg') center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

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

/* ══════════════════════════════════════════════
   SCHEDULE
══════════════════════════════════════════════ */
.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.schedule-list {
  list-style: none;
  margin-bottom: 0;
}

.schedule-list li {
  color: rgba(255,255,255,0.72);
  padding: 8px 0;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.schedule-list li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.schedule-card {
  background: #fff;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.schedule-card-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b96d40;
  margin-bottom: 10px;
}

.schedule-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 6px;
  line-height: 1.25;
}

.schedule-card-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #b96d40;
  margin-top: 10px;
  margin-bottom: 14px;
}

.schedule-card-desc {
  font-size: 0.88rem;
  color: rgba(15,27,45,0.5);
  line-height: 1.65;
  margin-bottom: 24px;
}

.schedule-card-stats {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(15,27,45,0.08);
  border-bottom: 1px solid rgba(15,27,45,0.08);
  padding: 16px 0;
  margin-bottom: 28px;
}

.schedule-stat {
  flex: 1;
  text-align: center;
}

.schedule-stat-num {
  font-size: 1.3rem;
  font-weight: 300;
  color: #b96d40;
  line-height: 1;
  margin-bottom: 4px;
}

.schedule-stat-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15,27,45,0.45);
}

.schedule-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(15,27,45,0.1);
}

.schedule-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.schedule-card-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(15,27,45,0.35);
  margin: 0;
}

.calendly-placeholder h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.calendly-placeholder p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.cal-phone {
  font-size: 1.4rem !important;
  color: #d4895a !important;
  font-weight: 700 !important;
  margin: 12px 0 !important;
}

.cal-hours {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.45) !important;
}

/* ══════════════════════════════════════════════
   BOISEBOX
══════════════════════════════════════════════ */
.boisebox-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.boisebox-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.boisebox-logo-placeholder {
  background: linear-gradient(135deg, #0f2a3f, #1a4a6e);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 40px 30px;
  text-align: center;
  line-height: 1.3;
}

.boisebox-logo-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  object-fit: contain;
}

.boisebox-logo-placeholder span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partner-badge {
  display: inline-block;
  background: #fff4e0;
  color: #a86520;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.boisebox-text .section-title {
  margin-bottom: 16px;
}

.boisebox-text p {
  color: #555e6e;
  margin-bottom: 20px;
  line-height: 1.7;
}

.boisebox-perks {
  list-style: none;
  margin-bottom: 28px;
}

.boisebox-perks li {
  color: #444;
  padding: 6px 0;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ══════════════════════════════════════════════
   LUXPOXY SISTER BRAND BAND
══════════════════════════════════════════════ */
.luxpoxy-band {
  background: radial-gradient(ellipse at 50% 30%, #17263c 0%, #0f1b2d 65%);
  padding: 40px 24px 48px;
  border-top: 1px solid rgba(201,168,105,0.18);
  scroll-margin-top: 120px;
}

.luxpoxy-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.luxpoxy-eyebrow {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #c9a869;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.luxpoxy-eyebrow::before,
.luxpoxy-eyebrow::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,105,0.7));
}

.luxpoxy-eyebrow::after {
  background: linear-gradient(to left, transparent, rgba(201,168,105,0.7));
}

.luxpoxy-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.luxpoxy-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 0 0 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.luxpoxy-btn {
  display: inline-block;
  padding: 13px 40px;
  background: transparent;
  border: 1px solid rgba(201,168,105,0.6);
  color: #c9a869;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.luxpoxy-btn:hover {
  background: #c9a869;
  border-color: #c9a869;
  color: #0f1b2d;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #060e1a;
  padding: 60px 0 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer-phone {
  color: #d4895a !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  margin-top: 10px !important;
}

.footer-links-col h5 {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links-col a,
.footer-links-col span {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.2s;
}

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

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.footer-social-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

.footer-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social-link:hover {
  background: #b96d40;
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.footer-social-link-wrap {
  position: relative;
  display: inline-flex;
}

.footer-social-coming-soon {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(6,14,26,0.92);
  border: 1px solid rgba(185,109,64,0.5);
  border-radius: 999px;
  color: #d4895a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.footer-social-coming-soon::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: rgba(6,14,26,0.92);
}

@media (hover: hover) {
  .footer-social-link-wrap:hover .footer-social-coming-soon {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.footer-social-link-wrap.show-coming-soon .footer-social-coming-soon {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer-bottom {
  background: #060e1a;
  text-align: center;
  padding: 24px 16px;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

.footer-sister-link {
  display: inline-block;
  color: rgba(185,109,64,0.85);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 14px;
  transition: color 0.2s;
}

.footer-sister-link:hover {
  color: #d4895a;
}

.footer-logo-img {
  height: 76px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.footer-logo-byline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.footer-logo-byline-divider {
  width: 110px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.footer-sister-brands {
  margin-bottom: 22px;
}

.footer-sister-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.footer-sister-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.footer-sister-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer-sister-logo-link:hover {
  opacity: 1;
}

.footer-sister-logo-link img {
  height: 58px;
  width: auto;
  display: block;
}

.footer-sister-logo-link--stacked {
  position: relative;
  flex-direction: column;
  gap: 6px;
}

.footer-sister-coming-soon {
  position: absolute;
  inset: -10px -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,14,26,0.92);
  border: 1px solid rgba(201,168,119,0.45);
  border-radius: 12px;
  color: #c9a877;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2;
}

@media (hover: hover) {
  .footer-sister-logo-link--stacked:hover .footer-sister-coming-soon {
    opacity: 1;
  }
}

.footer-sister-logo-link--stacked.show-coming-soon .footer-sister-coming-soon {
  opacity: 1;
}

.footer-sister-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-sister-logo-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a877;
  white-space: nowrap;
}

.footer-sister-logo-caption-dash {
  width: 14px;
  height: 1px;
  background: #c9a877;
  flex-shrink: 0;
}

img.footer-sister-lux-mark {
  height: 36px;
}

img.footer-sister-lux-wordmark {
  height: 20px;
}

/* ══════════════════════════════════════════════
   AREAS WE SERVE — SPLIT CARD
══════════════════════════════════════════════ */
.why-serve-section {
  scroll-margin-top: 120px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 36px 36px;
}

.why-serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 28px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .why-serve-section {
    padding: 32px 16px;
  }
}

.why-serve-left {
  background: #0f1b2d;
  color: #ffffff;
  text-align: left;
  padding: 44px 48px;
  scroll-margin-top: 120px;
}

.why-serve-right {
  background: #ffffff;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-serve-right .section-eyebrow {
  justify-content: flex-start;
}

.why-serve-right .section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 8px;
}

.why-serve-right .section-title::after {
  margin: 12px 0 0;
}

.why-serve-right .why-numbered-list {
  margin: 0 0 24px;
  max-width: none;
}

.why-serve-right .process-cta {
  text-align: center;
}

.why-serve-left .serve-body-row {
  justify-content: center;
}

.why-serve-left .serve-map-panel {
  align-items: center;
}

.why-serve-left .idaho-legend {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .why-serve-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .why-serve-left,
  .why-serve-right {
    padding: 32px 24px;
  }
}

.serve-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #b96d40;
  margin-bottom: 8px;
}

.serve-heading {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.serve-body-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.serve-map-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.serve-map-photo {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  display: block;
}

.idaho-svg {
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

.idaho-county {
  fill: #1e3a52;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 0.7;
  transition: fill 0.2s ease;
  cursor: default;
}

.idaho-county:hover {
  fill: #163042;
}

.idaho-county.served {
  fill: #e07535;
}

.idaho-county.served:hover {
  fill: #c05e22;
}

.idaho-county.coming-soon {
  fill: #3d6b8a;
}

.idaho-county.coming-soon:hover {
  fill: #2e5570;
}

.idaho-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.idaho-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}

.idaho-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.idaho-tooltip {
  position: fixed;
  background: #0f1b2d;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap;
  z-index: 9999;
  border: 1px solid rgba(255,255,255,0.15);
}

.serve-cities-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.serve-city-pill {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.serve-city-pill:hover {
  border-color: #b96d40;
  color: #ffffff;
  background: rgba(185,109,64,0.12);
}

.serve-note-bottom {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
}

@media (max-width: 640px) {
  .idaho-svg {
    width: 200px;
  }
}

/* ══════════════════════════════════════════════
   AREAS WE SERVE (legacy — kept for fallback)
══════════════════════════════════════════════ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.area-card {
  background: #f4f6f9;
  border: 1px solid #e4e8ef;
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.area-card:hover {
  border-color: #b96d40;
  box-shadow: 0 4px 16px rgba(196,122,43,0.12);
  transform: translateY(-2px);
}

.area-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.addon-icon:empty,
.confirmation-icon:empty,
.cal-icon:empty {
  display: none;
}

.area-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1b2d;
}

.area-note {
  text-align: center;
  color: #888;
  font-size: 0.88rem;
}

/* ══════════════════════════════════════════════
   EPOXY PROCESS
══════════════════════════════════════════════ */
.process-diagram {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.process-diagram-svg {
  flex-shrink: 0;
  width: 260px;
}

.process-diagram-svg svg {
  width: 100%;
  height: auto;
  display: block;
}

.process-diagram-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.process-diagram-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15,27,45,0.08);
}

.process-diagram-legend-item:last-child {
  border-bottom: none;
}

.process-diagram-swatch {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-top: 3px;
}

.process-diagram-legend-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 3px;
}

.process-diagram-legend-text p {
  font-size: 0.82rem;
  color: rgba(15,27,45,0.6);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .process-diagram {
    flex-direction: column;
    gap: 24px;
  }
  .process-diagram-svg {
    width: 200px;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.process-connector {
  display: none;
}

.process-step {
  background: #ffffff;
  border: none;
  border-top: 3px solid rgba(185, 109, 64, 0.15);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(15,27,45,0.04);
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.3s ease, border-top-color 0.45s ease;
}

.process-step.step-lit {
  opacity: 1;
  transform: translateY(0);
  border-top-color: #b96d40;
  box-shadow: 0 4px 24px rgba(15,27,45,0.08);
}

@media (hover: hover) {
  .process-step.step-lit:hover {
    box-shadow: 0 18px 52px rgba(15,27,45,0.16), 0 0 0 1.5px rgba(185,109,64,0.18);
    transform: translateY(-6px);
    background: #fffbf8;
    border-top-color: #c97d4e;
  }
  .process-step.step-lit:hover .process-number {
    transform: scale(1.15);
    transition: transform 0.25s cubic-bezier(0.34, 1.6, 0.64, 1);
  }
  .process-step.step-lit:hover .process-info h4 {
    color: #b96d40;
    transition: color 0.2s ease;
  }
}

.process-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: #b96d40;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  opacity: 0.85;
  display: inline-block;
}

.process-step.step-lit .process-number {
  animation: numPop 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes numPop {
  0%   { transform: scale(0.4) translateY(6px); opacity: 0; }
  65%  { transform: scale(1.18) translateY(-2px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 0.85; }
}

.process-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process-info p {
  font-size: 0.78rem;
  color: rgba(15,27,45,0.52);
  line-height: 1.6;
}

.process-cta {
  text-align: center;
}

/* ══════════════════════════════════════════════
   BEFORE & AFTER
══════════════════════════════════════════════ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.before-after-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: #dde2ea;
  aspect-ratio: 4 / 3;
}

.before-after-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.before-after-card:hover .before-after-img {
  transform: scale(1.05);
}

.before-after-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15,27,45,0.82);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
}

@media (max-width: 600px) {
  .before-after-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — HAMBURGER (max 1900px)
   Collapse nav before links get cramped
══════════════════════════════════════════════ */
@media (max-width: 1900px) {
  .site-header {
    left: 16px;
    right: 16px;
    top: 8px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
  }

  .nav-logo {
    grid-column: auto;
    justify-self: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .size-cards {
    grid-template-columns: 1fr 1fr;
  }

  .option-pill-grid {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .boisebox-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .luxpoxy-band {
    padding: 40px 24px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .flake-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .area-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .site-header {
    left: 8px;
    right: 8px;
    top: 8px;
  }

  .container {
    padding: 0 20px;
  }

  .navbar {
    padding: 10px 10px 10px 16px;
  }

  .nav-logo-img {
    height: 38px;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-phone-btn {
    gap: 6px;
    padding: 7px 14px 7px 6px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .nav-phone-icon {
    width: 32px;
    height: 32px;
  }

  .nav-phone-icon svg {
    width: 15px;
    height: 15px;
  }

  .nav-hamburger {
    font-size: 1.6rem;
    padding: 4px 6px;
    flex-shrink: 0;
  }

  .hero-fullbleed {
    padding: 0;
  }

  .hero-frame {
    min-height: 100svh;
    border-radius: 0;
    padding: 110px 24px 48px;
  }

  .hero-eyebrow {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  .hero-title {
    margin-bottom: 24px;
  }

  .hero-line1,
  .hero-line2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .hero-body {
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    justify-content: center;
  }

  .hero-badge-row {
    margin-top: 20px;
    padding: 0 16px;
    gap: 12px;
  }

  .hero-badge-card {
    padding: 16px 18px;
  }

  .hero-badge-card h4 {
    font-size: 0.92rem;
  }

  .hero-badge-card p {
    font-size: 0.8rem;
  }

  .trust-inner {
    flex-direction: column;
    gap: 4px;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    padding: 4px 0;
  }

  .size-cards {
    grid-template-columns: 1fr;
  }

  .option-pill-grid {
    grid-template-columns: 1fr;
  }

  .flake-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .progress-bar {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 36px;
  }

  .progress-step {
    flex: 1 1 0;
    min-width: 0;
    max-width: 110px;
  }

  .progress-step span {
    font-size: 0.66rem;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }

  .prog-circle {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }

  .progress-line {
    flex: 0 1 24px;
    width: auto;
    margin-top: 14px;
    margin-bottom: 0;
  }

  .boisebox-logo-area {
    display: flex;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .luxpoxy-band {
    padding: 36px 20px;
  }

  /* Add-on cards — stack on mobile */
  .rv-addon-row {
    flex-direction: column;
  }

  .schedule-card {
    padding: 28px 24px;
  }

  /* CTA button — prevent wrapping */
  .cta-card .btn-primary {
    font-size: 0.85rem;
    padding: 14px 18px;
  }

  .flake-photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    column-gap: 12px;
    row-gap: 20px;
  }

  .flake-photo-label {
    font-size: 0.55rem;
    padding: 4px 2px;
  }

  .flake-photo-blend {
    font-size: 0.5rem;
  }

  .flake-expand-btn {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
    top: 2px;
    right: 2px;
  }

  /* BoiseBox photo — full width above text on mobile */
  .boisebox-layout {
    grid-template-columns: 1fr;
  }

  .boisebox-logo-img {
    max-width: 100%;
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════ */

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.hero-line1   { animation: heroIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.hero-line2   { animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s  both; }
.hero-body    { animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both; }
.hero-actions { animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.82s both; }

[data-anim]:not(.anim-done) {
  opacity: 0;
  transform: translateY(44px) scale(0.97);
}

/* ══════════════════════════════════════════════
   HOVER MICRO-INTERACTIONS
══════════════════════════════════════════════ */

/* Base transitions — smooth both on enter AND leave */
.size-card {
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.flake-photo-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.btn-primary {
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s ease;
}
.btn-ghost {
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.btn-secondary {
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.serve-city-pill {
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.process-step {
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.3s ease, border-top-color 0.45s ease;
}
.gallery-feature-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .size-card:hover {
    transform: translateY(-4px);
  }
  .flake-photo-card:hover {
    transform: translateY(-3px);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(185,109,64,0.4);
  }
  .btn-ghost:hover {
    transform: translateY(-2px);
  }
  .btn-secondary:hover {
    transform: translateY(-2px);
  }
  .serve-city-pill:hover {
    transform: translateY(-2px);
  }
}

/* ══════════════════════════════════════════════
   BACK TO TOP — PAINT BUCKET
══════════════════════════════════════════════ */

.back-to-top-wrap {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.back-to-top-wrap.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top {
  background: #b96d40;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.15s;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  display: block;
}

@media (hover: hover) {
  .back-to-top:hover {
    background: #a35c34;
    transform: translateY(-2px);
  }
}
