/* ==========================================================================
   San FranStitchCo — base styles
   ========================================================================== */

:root {
  --color-navy: #0c1416;
  --color-navy-dark: #000000;
  --color-gold: #ec2025;
  --color-gold-dark: #c81a1e;
  --color-red: #ec2025;
  --color-text: #1a1d1e;
  --color-text-light: #5c6265;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-border: #e2e2e2;
  --color-ink: #0c1416;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.18);
  --max-width: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
  color: var(--color-navy);
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.6em;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-header p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-navy {
  background: var(--color-navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--color-navy-dark);
  box-shadow: var(--shadow-lg);
}

.btn-block {
  width: 100%;
}

/* ---------------- Header / Nav ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  height: 60px;
  display: flex;
  align-items: center;
  flex: none;
}

.brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}

.brand-text {
  line-height: 1.2;
}

.brand-name {
  display: block;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

.brand-tag {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-light);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--color-bg-alt);
  color: var(--color-navy);
}

.main-nav .btn {
  margin-left: 8px;
  padding: 10px 20px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-navy);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

/* ---------------- Nav dropdown (Products) ---------------- */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown-link {
  padding-right: 6px !important;
}

.nav-dropdown-caret {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: -6px;
  border: none;
  background: none;
  border-radius: 6px;
  color: var(--color-text);
  cursor: pointer;
}

.nav-dropdown-caret:hover {
  background: var(--color-bg-alt);
}

.nav-dropdown-caret svg {
  width: 12px;
  height: 12px;
  transition: transform 0.15s ease;
}

.nav-dropdown.open .nav-dropdown-caret svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease;
  z-index: 50;
}

.nav-dropdown-menu-card {
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: grid;
  gap: 2px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--color-bg-alt);
  color: var(--color-navy);
}

.nav-dropdown-menu .nav-dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: 6px 4px;
}

/* ---------------- Hero ---------------- */

.hero {
  background: var(--color-bg-alt);
  padding: 28px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.hero-main-tile {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse 700px 420px at 10% 0%, rgba(236, 32, 37, 0.18), transparent 60%),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: #fff;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
  overflow: hidden;
}

.hero-main-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
  pointer-events: none;
}

.hero-main-tile > * {
  position: relative;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.4em;
}

.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex: none;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-tile {
  position: relative;
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 130px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-tile.tile-gold {
  background: linear-gradient(135deg, #ff4d52 0%, var(--color-gold-dark) 100%);
}

.hero-tile.tile-dark {
  background: linear-gradient(135deg, #2b2f31 0%, var(--color-navy-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tile-video-bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.tile-video-bg video {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 20, 0.2) 0%, rgba(15, 18, 20, 0.85) 75%);
}

.hero-tile .tile-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
}

.hero-tile .tile-title {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.hero-tile .tile-link {
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-tile .tile-link svg {
  width: 14px;
  height: 14px;
}

.hero-tile.tile-gold {
  justify-content: space-between;
  padding-top: 22px;
}

@media (max-width: 480px) {
  .hero-tile-thumbs {
    height: 122px;
  }

  .hero-tile-thumbs .thumb-lg {
    width: 74px;
    height: 74px;
    left: 0;
    top: 0;
  }

  .hero-tile-thumbs .thumb-md {
    width: 50px;
    height: 50px;
    left: 52px;
    top: 58px;
  }

  .hero-tile-thumbs .thumb-sm {
    width: 44px;
    height: 44px;
    left: 94px;
    top: 8px;
  }

  .hero-tile-thumbs .thumb-xs {
    width: 34px;
    height: 34px;
    left: 126px;
    top: 80px;
  }

  .hero-tile-thumbs .thumb-p1 {
    width: 52px;
    height: 52px;
    left: 150px;
    top: 34px;
  }

  .hero-tile-thumbs .thumb-zip {
    width: 38px;
    height: 38px;
    left: 196px;
    top: 82px;
  }

  .hero-tile-thumbs .thumb-p2 {
    width: 42px;
    height: 42px;
    left: 218px;
    top: 10px;
  }

  .hero-tile-thumbs .thumb-p3 {
    width: 46px;
    height: 46px;
    left: 252px;
    top: 62px;
  }

  .hero-tile-thumbs .thumb-p4 {
    width: 32px;
    height: 32px;
    left: 270px;
    top: 24px;
  }
}

.hero-tile-thumbs {
  position: relative;
  height: 156px;
  margin-bottom: 14px;
}

.hero-tile-thumbs .thumb {
  position: absolute;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(20, 10, 5, 0.28);
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, z-index 0s;
}

.hero-tile-thumbs .thumb:hover {
  transform: scale(1.08) rotate(0deg);
  z-index: 20;
  box-shadow: 0 18px 34px rgba(20, 10, 5, 0.35);
}

.hero-tile-thumbs .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tile-thumbs .thumb-lg {
  width: 96px;
  height: 96px;
  left: 0;
  top: 0;
  transform: rotate(-3deg);
  z-index: 1;
}

.hero-tile-thumbs .thumb-md {
  width: 62px;
  height: 62px;
  left: 66px;
  top: 76px;
  transform: rotate(4deg);
  z-index: 3;
}

.hero-tile-thumbs .thumb-sm {
  width: 56px;
  height: 56px;
  left: 112px;
  top: 8px;
  transform: rotate(-6deg);
  z-index: 2;
}

.hero-tile-thumbs .thumb-xs {
  width: 44px;
  height: 44px;
  left: 156px;
  top: 102px;
  transform: rotate(2deg);
  z-index: 4;
}

.hero-tile-thumbs .thumb-p1 {
  width: 66px;
  height: 66px;
  left: 186px;
  top: 42px;
  transform: rotate(-4deg);
  z-index: 2;
}

.hero-tile-thumbs .thumb-zip {
  width: 48px;
  height: 48px;
  left: 244px;
  top: 100px;
  transform: rotate(-5deg);
  z-index: 3;
}

.hero-tile-thumbs .thumb-p2 {
  width: 54px;
  height: 54px;
  left: 276px;
  top: 14px;
  transform: rotate(5deg);
  z-index: 1;
}

.hero-tile-thumbs .thumb-p3 {
  width: 60px;
  height: 60px;
  left: 320px;
  top: 78px;
  transform: rotate(3deg);
  z-index: 2;
}

.hero-tile-thumbs .thumb-p4 {
  width: 44px;
  height: 44px;
  left: 368px;
  top: 30px;
  transform: rotate(-2deg);
  z-index: 3;
}

.hero-tile .tile-text-group {
  display: block;
  color: #fff;
  text-decoration: none;
}

/* ---------------- Category pill strip ---------------- */

.pill-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
}

.pill-strip-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pill-strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  flex: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.pill:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------------- Brand identity split (dark) ---------------- */

.brand-split {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: #fff;
  padding: 88px 0;
  overflow: hidden;
}

.brand-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.brand-split h2 {
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
}

.brand-split p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
}

.brand-split .eyebrow {
  color: var(--color-gold);
}

.mockup-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mockup-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mockup-item svg {
  width: 62%;
  height: 62%;
  stroke: rgba(255, 255, 255, 0.75);
}

.mockup-item .logo-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
  height: 34%;
  border-radius: 50%;
  border: 2px dashed var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  text-align: center;
  text-transform: uppercase;
}

.check-list {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.98rem;
}

.check-list .check-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(236, 32, 37, 0.16);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.check-list .check-icon svg {
  width: 15px;
  height: 15px;
}

/* ---------------- Minimal icon feature row ---------------- */

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-row-item .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-navy);
}

.feature-row-item .feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-navy);
}

.feature-row-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4em;
}

.feature-row-item p {
  color: var(--color-text-light);
  font-size: 0.94rem;
  margin-bottom: 0;
}

/* ---------------- Testimonials ---------------- */

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.testimonial-card .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-card .stars svg {
  width: 16px;
  height: 16px;
  fill: #1c9a5b;
  stroke: none;
}

.testimonial-card .t-name {
  color: var(--color-navy);
  font-weight: 800;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.testimonial-card .t-headline {
  font-weight: 700;
  font-size: 0.94rem;
  margin-bottom: 10px;
}

.testimonial-card p.t-body {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------------- Cards ---------------- */

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-navy);
}

.card-photo {
  margin: -32px -28px 20px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-navy);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}

.card p {
  color: var(--color-text-light);
  margin-bottom: 0.8em;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-navy);
  text-decoration: none;
}

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

/* ---------------- Stats strip ---------------- */

.stats-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 24px;
  text-align: center;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-navy);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 600;
}

/* ---------------- Tables (turnaround times) ---------------- */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

table.times {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: #fff;
}

table.times th,
table.times td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.96rem;
}

table.times th {
  background: var(--color-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

table.times tbody tr:last-child td {
  border-bottom: none;
}

table.times tbody tr:hover {
  background: var(--color-bg-alt);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge-standard {
  background: #e6f0ea;
  color: #1c6b40;
}

.badge-rush {
  background: #fdeee0;
  color: #b5560b;
}

.note-box {
  background: #fff7e6;
  border: 1px solid #f0dca4;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
  font-size: 0.95rem;
  color: #6b5310;
}

.note-box strong {
  color: #4a3a0b;
}

/* ---------------- CTA band ---------------- */

.cta-band {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin: 0 auto 28px;
}

.cta-band .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------- Forms ---------------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.form-field .required {
  color: var(--color-red);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-text);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(15, 42, 74, 0.12);
}

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

.form-hint {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #e6f0ea;
  color: #1c6b40;
}

.form-status.error {
  display: block;
  background: #fbe7e6;
  color: #a3271f;
}

/* ---------------- Contact info panels ---------------- */

.contact-panel {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-panel h3 {
  font-size: 1.1rem;
}

.contact-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.contact-list li:first-child {
  border-top: none;
}

.contact-list .ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.contact-list .ci-icon svg {
  width: 18px;
  height: 18px;
}

.contact-list strong {
  display: block;
  color: var(--color-navy);
}

/* ---------------- Page hero (interior pages) ---------------- */

.page-hero {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 56px 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.3em;
}

.page-hero p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 600;
}

/* ---------------- Image placeholders ---------------- */

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 160px;
  background: var(--color-bg-alt);
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-light);
  text-align: center;
  padding: 16px;
}

.img-placeholder svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-text-light);
  flex: none;
}

.img-placeholder .ph-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.img-placeholder .ph-dim {
  font-size: 0.72rem;
  color: var(--color-text-light);
  opacity: 0.75;
}

.img-placeholder.on-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.65);
}

.img-placeholder.on-dark svg {
  stroke: rgba(255, 255, 255, 0.65);
}

/* ---------------- Photo hero (full-bleed, interior pages) ---------------- */

.photo-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  border-radius: 0;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.photo-hero-inner {
  position: relative;
  width: 100%;
  padding: 48px 24px;
}

.photo-hero .ph-note {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
}

.photo-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 0;
}

/* ---------------- Value prop list (About) ---------------- */

.value-prop {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.value-prop:first-child {
  border-top: none;
  padding-top: 0;
}

.value-prop .vp-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.value-prop .vp-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-navy);
}

.value-prop h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3em;
}

.value-prop .vp-tag {
  color: var(--color-gold-dark);
  font-weight: 800;
}

.value-prop p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.vp-stats {
  display: flex;
  gap: 32px;
  margin-top: 14px;
}

.vp-stats div {
  text-align: left;
}

.vp-stats .stat-num {
  font-size: 1.4rem;
}

/* ---------------- Photo gallery grid (About) ---------------- */

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

.photo-gallery-grid .img-placeholder {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.photo-gallery-grid figcaption {
  margin-top: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-navy);
  text-align: center;
}

/* ---------------- Note bar ---------------- */

.note-bar {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 600;
}

.note-bar a {
  color: var(--color-navy);
  text-decoration: underline;
}

/* ---------------- Category tile grid (Products) ---------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-tile {
  text-decoration: none;
  color: var(--color-text);
  text-align: center;
}

.category-tile .img-placeholder {
  aspect-ratio: 1 / 1;
  min-height: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.category-tile:hover .img-placeholder {
  border-color: var(--color-navy);
  background: #fff;
}

.category-tile span.cat-name {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-navy);
}

/* ---------------- Product / design grid ---------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
}

.product-card .img-placeholder {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.product-card .product-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.product-card .product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.product-card .new-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 1;
}

.product-card .popular-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 1;
}

.product-card h4 {
  margin: 12px 0 2px;
  font-size: 0.96rem;
  color: var(--color-navy);
}

.product-card .product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card .product-link h4 {
  transition: color 0.15s ease;
}

.product-card .product-link:hover h4 {
  color: var(--color-gold-dark);
}

.product-card .product-tag {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.product-card .card-link {
  font-size: 0.86rem;
}

/* ---------------- Designs page filter tabs ---------------- */

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-tab {
  border: 1.5px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.filter-tab:hover {
  border-color: var(--color-navy);
}

.filter-tab.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

/* ---------------- Product detail page ---------------- */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-detail-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  position: relative;
}

.product-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.product-detail-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
}

.product-detail-info .product-tag {
  margin-bottom: 10px;
}

.product-detail-info h1 {
  margin-bottom: 0.3em;
}

.product-detail-info .lead {
  font-size: 1.05rem;
  color: var(--color-text-light);
}

.product-color-picker {
  margin: 28px 0;
}

.product-color-picker h4,
.product-detail-section h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.product-color-picker .current-color {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--color-text-light);
}

.product-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.product-swatch-row .color-swatch .swatch-dot {
  width: 34px;
  height: 34px;
}

.product-detail-section {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.product-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.product-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--color-text);
}

.product-feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: 8px;
  flex: none;
}

.product-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-size-pill {
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--color-navy);
}

.product-related-list {
  font-size: 0.92rem;
  color: var(--color-text-light);
}

.product-related-list strong {
  color: var(--color-navy);
}

.product-detail-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------------- Filter sidebar (Promotional Products) ---------------- */

.filter-layout {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 40px;
  align-items: start;
}

.filter-sidebar {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.filter-sidebar-header h3 {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.filter-clear-btn {
  border: none;
  background: none;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.filter-search {
  margin-bottom: 18px;
}

.filter-search input {
  width: 100%;
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 10px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg-alt);
}

.filter-search input:focus {
  outline: none;
  border-color: var(--color-navy);
  background: #fff;
}

.filter-group {
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
}

.filter-group:first-of-type {
  border-top: none;
  padding-top: 0;
}

.filter-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.filter-select {
  width: 100%;
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 10px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-text);
}

.filter-select:focus {
  outline: none;
  border-color: var(--color-navy);
}

.filter-color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  min-width: 44px;
}

.color-swatch .swatch-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.color-swatch:hover .swatch-dot {
  transform: translateY(-1px);
}

.color-swatch.active .swatch-dot {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-navy);
}

.color-swatch .swatch-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.3;
}

.filter-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.filter-checkbox-list label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1.35;
}

.filter-checkbox-list input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--color-navy);
  flex: none;
}

.filter-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 24px;
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-light);
  display: none;
}

.filter-empty-state.visible {
  display: block;
}

.filter-empty-state p {
  margin-bottom: 16px;
}

.filter-results-count {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.design-card[hidden] {
  display: none;
}

/* ---------------- Contact split (photo panel + form) ---------------- */

.contact-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-photo-panel {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-photo-panel .cp-mark {
  height: 92px;
  display: flex;
  align-items: center;
}

.contact-photo-panel .cp-mark img {
  height: 100%;
  width: auto;
  display: block;
}

.contact-photo-panel .cp-info {
  margin-top: 24px;
}

.contact-photo-panel .cp-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.contact-photo-panel .cp-info-value {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.map-placeholder {
  margin-top: 48px;
  min-height: 260px;
}

.map-embed {
  margin-top: 48px;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-embed iframe {
  display: block;
}

/* ---------------- Service detail blocks ---------------- */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse .service-media {
  order: 2;
}

.service-media {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}

.service-media svg {
  width: 96px;
  height: 96px;
  stroke: var(--color-navy);
  opacity: 0.85;
}

.promo-slideshow {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.promo-slide-track {
  position: absolute;
  inset: 0;
}

.promo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.promo-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.promo-slide-arrow svg {
  width: 20px;
  height: 20px;
}

.promo-slide-arrow:hover {
  background: rgba(15, 23, 42, 0.8);
}

.promo-slide-arrow.prev {
  left: 12px;
}

.promo-slide-arrow.next {
  right: 12px;
}

.promo-slide-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.promo-slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.promo-slide-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.service-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.service-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.service-list li:first-child {
  border-top: none;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 2px;
}

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-block .brand-name {
  color: #fff;
}

.footer-brand-block p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  max-width: 320px;
  margin: 10px 0 0;
}

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

.footer-social span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.social-icons a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-dark);
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

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

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------- Responsive ---------------- */

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

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-feature-list {
    grid-template-columns: 1fr;
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block.reverse .service-media {
    order: 0;
  }

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

  .brand-split .container {
    grid-template-columns: 1fr;
  }

  .mockup-panel {
    max-width: 420px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .filter-sidebar {
    position: static;
  }

  .filter-checkbox-list {
    max-height: none;
    overflow-y: visible;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .main-nav .btn {
    margin: 14px 0 0;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown-link {
    display: block;
  }

  .nav-dropdown-caret {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    display: block;
    opacity: 1;
    pointer-events: auto;
    padding: 0 0 6px;
  }

  .nav-dropdown-menu-card {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
  }

  .nav-dropdown-menu a {
    padding: 12px 8px 12px 22px;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

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

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .pill-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .hero-main-tile {
    padding: 40px 28px;
    min-height: auto;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .value-prop {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------- Quote Cart ---------------- */

.quote-cart-link {
  position: relative;
}

.quote-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  vertical-align: middle;
}

.quote-cart-badge[hidden] {
  display: none;
}

.quote-add-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.quote-qty-field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0 4px 0 14px;
}

.quote-qty-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.quote-qty-field input {
  width: 64px;
  border: none;
  padding: 10px 4px;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
}

.quote-qty-field input:focus {
  outline: none;
}

.quote-add-confirm {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a7a3c;
  margin: 10px 0 0;
  min-height: 1.2em;
}

.quote-add-confirm a {
  color: var(--color-navy);
  text-decoration: underline;
}

/* Cart page */

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 14px;
}

.cart-item-photo {
  width: 88px;
  height: 88px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.cart-item-info h4 a {
  color: var(--color-navy);
  text-decoration: none;
}

.cart-item-info h4 a:hover {
  text-decoration: underline;
}

.cart-item-meta {
  font-size: 0.86rem;
  color: var(--color-text-light);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty label {
  font-size: 0.78rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.cart-item-qty input {
  width: 60px;
  padding: 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-red);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
  white-space: nowrap;
}

.cart-summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  margin: 24px 0;
}

.cart-summary-bar strong {
  font-size: 1.05rem;
}

.cart-empty-state {
  text-align: center;
  padding: 64px 24px;
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-light);
}

.cart-empty-state p {
  margin-bottom: 16px;
}

.quote-summary-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.quote-summary-box h4 {
  margin: 0 0 12px;
}

.quote-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.quote-summary-item:last-child {
  border-bottom: none;
}

@media (max-width: 640px) {
  .cart-item {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
  }

  .cart-item-photo {
    width: 64px;
    height: 64px;
  }

  .cart-item-qty,
  .cart-item-remove {
    grid-column: 2;
  }
}

/* ---------------- Product video embed ---------------- */

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------- Product photo gallery (contain + thumbnail strip) ---------------- */

.product-detail-photo.photo-contain {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.product-detail-photo.photo-contain img {
  object-fit: contain;
  object-position: center;
  padding: 32px;
  background: #fff;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 5;
  color: var(--color-navy);
}

.gallery-nav-btn:hover {
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.gallery-nav-btn.gallery-prev {
  left: 14px;
}

.gallery-nav-btn.gallery-next {
  right: 14px;
}

.product-thumb-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.thumb-photo {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  cursor: pointer;
  background: #fff;
  padding: 0;
  transition: border-color 0.15s ease;
}

.thumb-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}

.thumb-photo:hover {
  border-color: var(--color-navy);
}

.thumb-photo.active {
  border-color: var(--color-navy);
  border-width: 2px;
}

@media (max-width: 640px) {
  .product-thumb-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}
