/* SB Building Supplies — warehouse pickup layout
   Olive accent (vars may still be named --teal). Cormorant + Outfit. */

:root {
  --charcoal: #1a1a18;
  --charcoal-mid: #242422;
  --charcoal-soft: #2e2e2b;
  --concrete: #efeee9;
  --concrete-warm: #f7f6f3;
  --concrete-card: #ffffff;
  --concrete-mid: #e2e0da;
  --teal: #4F5D2F;
  --teal-hot: #5C6B3A;
  --teal-dark: #3D4A24;
  --safety: #4F5D2F;
  --ink: #1c1f24;
  --muted: #5a5f66;
  --muted-light: #7a8088;
  --white: #faf9f6;
  --white-pure: #ffffff;
  --ok: #2f6b4f;
  --ok-bg: #e8f2ec;
  --warn: #9a3412;
  --warn-bg: #fce8e0;
  --info-bg: #efeae2;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
  --font-sans: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --max: 1140px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: #f4f3ef;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal);
  color: #ffffff;
  padding: 0.5rem 1rem;
  z-index: 100;
  font-weight: 700;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--teal-dark);
}

.text-link:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* ——— Header ——— */
.site-header {
  background: rgba(26, 26, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border-bottom: 2px solid var(--teal);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 0.68rem;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  width: 48px;
  height: 48px;
  padding: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  color: rgba(250, 249, 246, 0.78);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a[aria-current="page"] {
  color: #A3B07A;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  min-height: 44px;
  transition: background 0.15s, transform 0.15s;
}

.header-phone:hover {
  background: var(--teal-hot);
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 52px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--teal);
  color: #ffffff !important;
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-hot);
  border-color: var(--teal-hot);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(250, 249, 246, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--charcoal-soft);
}

.btn-outline:hover {
  border-color: var(--teal-dark);
  color: var(--teal-dark) !important;
}

.btn-on-accent {
  background: var(--white-pure);
  color: var(--teal-dark) !important;
  border-color: var(--white-pure);
}

.btn-on-accent:hover {
  background: var(--concrete-warm);
  color: var(--teal-dark) !important;
}

.btn-ghost-on-accent {
  background: transparent;
  color: var(--white-pure) !important;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost-on-accent:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white-pure) !important;
}

/* ——— Layout ——— */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.25rem;
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-dark);
  margin: 0 0 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.es-note {
  font-style: italic;
  color: var(--teal-hot);
}

/* ——— Split asymmetric hero ——— */
.hero-split {
  background: var(--charcoal);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-split-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2.75rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.hero-kicker {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A3B07A;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  border-left: 3px solid var(--teal);
  background: rgba(79, 93, 47, 0.2);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 1.1rem;
  max-width: 14ch;
  text-align: left;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(250, 249, 246, 0.78);
  max-width: 36rem;
  margin: 0 0 1.75rem;
  line-height: 1.65;
}

.hero-lead strong {
  color: var(--white);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.hero-es {
  font-size: 0.95rem;
  font-weight: 600;
  padding-left: 0.25rem;
}

/* Stock snapshot panel */
.hero-panel {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.hero-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.panel-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #A3B07A;
}

.panel-live {
  font-size: 0.75rem;
  color: rgba(250, 249, 246, 0.5);
  font-weight: 600;
}

.snap-block {
  position: relative;
  z-index: 1;
}

.snap-block--floor {
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.snap-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.3;
  color: var(--white);
}

.snap-price {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.snap-price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(250, 249, 246, 0.55);
}

.snap-qty {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
}

.snap-qty li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.snap-qty li:last-child {
  border-bottom: none;
}

.snap-qty span {
  color: rgba(250, 249, 246, 0.65);
}

.snap-qty strong {
  color: var(--white);
  font-weight: 700;
}

.snap-meta {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: rgba(250, 249, 246, 0.6);
}

.panel-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: #A3B07A;
  text-decoration: none;
}

.panel-link:hover {
  color: var(--white);
}

/* CSS-only warehouse / concrete texture */
.hero-wh-visual {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  pointer-events: none;
  opacity: 0.35;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 18px,
      rgba(255, 255, 255, 0.03) 18px,
      rgba(255, 255, 255, 0.03) 19px
    ),
    linear-gradient(180deg, transparent 0%, rgba(61, 74, 36, 0.35) 100%),
    repeating-linear-gradient(
      0deg,
      #2a2a26 0,
      #2a2a26 12px,
      #22221e 12px,
      #22221e 24px
    );
  mask-image: linear-gradient(to top, black 20%, transparent);
  -webkit-mask-image: linear-gradient(to top, black 20%, transparent);
}

/* ——— Dense stock table (early) ——— */
.stock-early {
  background: #ffffff;
  max-width: none;
  width: 100%;
  padding: 2.5rem 0 2rem;
}

.stock-early-head,
.stock-table-wrap,
.stock-footnote {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.stock-early-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.stock-early-head .section-title {
  margin-bottom: 0;
}

.stock-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--concrete-mid);
  border-radius: var(--radius-sm);
  background: var(--concrete-warm);
}

.stock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 640px;
}

.stock-table th,
.stock-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--concrete-mid);
  vertical-align: middle;
}

.stock-table th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  background: var(--concrete);
}

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

.stock-table tbody tr:hover {
  background: rgba(79, 93, 47, 0.06);
}

.stock-footnote {
  margin: 0.85rem auto 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ——— Practical strip ——— */
.practical-strip {
  background: var(--charcoal);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.practical-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.practical-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s;
}

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

a.practical-item:hover {
  background: rgba(79, 93, 47, 0.25);
  color: inherit;
}

.practical-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A3B07A;
}

.practical-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.practical-item--static .practical-value.es-note {
  color: var(--teal-hot);
}

/* ——— About / pickup short band ——— */
.about-band {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.about-band-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.75rem;
  align-items: start;
}

.about-band p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 38rem;
}

.about-band-card {
  background: var(--concrete-card);
  border: 1px solid var(--concrete-mid);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-band-addr {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
}

/* ——— Single photo placeholder ——— */
.photo-placeholder {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.photo-placeholder p {
  margin: 0;
  padding: 2.25rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  background:
    repeating-linear-gradient(
      -45deg,
      var(--concrete) 0,
      var(--concrete) 10px,
      var(--concrete-mid) 10px,
      var(--concrete-mid) 20px
    );
  border: 2px dashed var(--muted-light);
  border-radius: var(--radius-sm);
}

/* ——— Page hero (interior) ——— */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 2.75rem 1.25rem 2.25rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--teal);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 24px,
    rgba(255, 255, 255, 0.02) 24px,
    rgba(255, 255, 255, 0.02) 25px
  );
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.page-hero p {
  margin: 0;
  color: rgba(250, 249, 246, 0.72);
  max-width: 36rem;
  font-size: 1.05rem;
}

/* ——— Product cards (inventory page) ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.product-visual {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.product-visual--shingles {
  background: linear-gradient(180deg, #4a4038 0%, #3a322c 100%);
}

.product-visual--shingles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 22px,
      rgba(0, 0, 0, 0.25) 22px,
      rgba(0, 0, 0, 0.25) 24px
    ),
    repeating-linear-gradient(
      90deg,
      #5c5046 0,
      #5c5046 48%,
      #3d342e 48%,
      #3d342e 50%,
      #6a5c50 50%,
      #6a5c50 98%,
      #3d342e 98%,
      #3d342e 100%
    );
  opacity: 0.9;
}

.product-visual--flooring {
  background: linear-gradient(135deg, #8b7355 0%, #6b5344 40%, #a08060 100%);
}

.product-visual--flooring::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 58px,
      rgba(0, 0, 0, 0.18) 58px,
      rgba(0, 0, 0, 0.18) 60px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      transparent 2px,
      transparent 8px
    );
}

.product-badge-row {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  z-index: 1;
}

.product-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.product-card h2,
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.product-card .price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}

.product-card .price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-card .meta-list {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--muted);
}

.product-card .meta-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--concrete-mid);
}

.product-card .meta-list li:last-child {
  border-bottom: none;
}

.product-card .meta-list strong {
  color: var(--ink);
  font-weight: 650;
}

.qty-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 0.35rem 0;
}

.qty-table th,
.qty-table td {
  text-align: left;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--concrete-mid);
}

.qty-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

/* Keep both shingle color rows as real table rows on narrow screens.
   The home stock table has its own card-style mobile treatment; the
   inventory quantity table stays a compact, readable table in the card. */
@media (max-width: 720px) {
  .product-card .qty-table {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .product-card .qty-table thead {
    display: table-header-group;
  }

  .product-card .qty-table tbody {
    display: table-row-group;
  }

  .product-card .qty-table tr {
    display: table-row;
  }

  .product-card .qty-table th,
  .product-card .qty-table td {
    display: table-cell;
  }
}

.disclaimer {
  font-size: 0.85rem !important;
  color: var(--muted) !important;
  margin-top: auto !important;
  padding-top: 0.5rem;
}

.product-card-actions {
  margin-top: 0.75rem;
}

/* ——— Badges ——— */
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  line-height: 1.2;
}

.badge-stock,
.badge-ok {
  background: var(--ok-bg);
  color: var(--ok);
}

.badge-warn {
  background: var(--warn-bg);
  color: var(--warn);
}

.badge-info {
  background: var(--info-bg);
  color: var(--ink);
}

.badge-neutral {
  background: var(--concrete);
  color: var(--ink);
  border: 1px solid var(--concrete-mid);
}

.badge-on-dark {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.badge-overlay {
  background: rgba(26, 26, 24, 0.75);
  color: var(--white);
  backdrop-filter: blur(4px);
}

/* ——— Compact CTA (interior pages — not home Duraplex band) ——— */
.cta-band {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}

.cta-band-inner {
  background: var(--charcoal);
  color: var(--white-pure);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border-left: 4px solid var(--teal);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
}

.cta-band p {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.5rem 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  border-left: 4px solid var(--teal);
}

.cta-strip p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 28rem;
}

/* ——— Info blocks ——— */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.info-block {
  background: var(--concrete-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.info-block p,
.info-block ul {
  color: var(--muted);
}

.info-block ul {
  padding-left: 1.2rem;
}

.info-block li {
  margin-bottom: 0.4rem;
}

.info-block dl {
  margin: 0;
}

.info-block dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  margin-top: 1rem;
}

.info-block dt:first-child {
  margin-top: 0;
}

.info-block dd {
  margin: 0.35rem 0 0;
}

.map-link {
  font-weight: 700;
}

/* ——— Footer ——— */
.site-footer {
  background: #0f0f0e;
  color: rgba(250, 249, 246, 0.65);
  margin-top: auto;
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr;
  gap: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.footer-local {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(250, 249, 246, 0.5);
  max-width: 28rem;
  border-left: 2px solid var(--teal);
  padding-left: 0.85rem;
}

.site-footer a {
  color: rgba(250, 249, 246, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal);
}

.site-footer .es-note {
  color: var(--teal);
}

.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-light);
  margin: 0 0 1rem;
}

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

.footer-nav li {
  margin-bottom: 0.55rem;
}

.footer-copy {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(250, 249, 246, 0.4);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .practical-inner {
    grid-template-columns: 1fr 1fr;
  }

  .practical-item:nth-child(2) {
    border-right: none;
  }

  .practical-item:nth-child(1),
  .practical-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-band-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal-mid);
    border-bottom: 1px solid rgba(79, 93, 47, 0.45);
    padding: 0.75rem 1rem 1.25rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav a {
    display: block;
    padding: 1rem 1.1rem;
    font-size: 1.05rem;
    min-height: 48px;
  }

  .site-nav .nav-phone-mobile {
    display: flex;
    margin-top: 0.5rem;
    background: var(--teal);
    color: #ffffff !important;
    justify-content: center;
    font-weight: 700;
    border-radius: var(--radius-sm);
  }

  .site-nav .nav-phone-mobile:hover {
    background: var(--teal-hot);
    color: #ffffff !important;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .practical-inner {
    grid-template-columns: 1fr;
  }

  .practical-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1 1 auto;
    min-width: calc(50% - 0.5rem);
  }

  .hero-es {
    width: 100%;
    padding-left: 0;
  }

  .stock-table {
    min-width: 0;
  }

  .stock-table thead {
    display: none;
  }

  .stock-table,
  .stock-table tbody,
  .stock-table tr,
  .stock-table td {
    display: block;
    width: 100%;
  }

  .stock-table tr {
    padding: 0.95rem 0.75rem;
    margin: 0;
    border-bottom: 1px solid var(--concrete-mid);
    background: var(--concrete-warm);
  }

  .stock-table tbody tr:nth-child(even) {
    background: #e8e6e0;
  }

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

  .stock-table td {
    padding: 0.35rem 0.5rem;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    text-align: right;
  }

  .stock-table td::before {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink);
    flex-shrink: 0;
    text-align: left;
    min-width: 4.5rem;
  }

  .stock-table td[data-label="Item"] {
    font-size: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px dashed var(--concrete-mid);
  }

  .stock-table td[data-label="Item"]::before {
    display: none;
  }

  .stock-table td[data-label="Item"] strong {
    text-align: left;
    display: block;
    width: 100%;
  }

  .cta-band-actions {
    flex-direction: column;
  }

  .cta-band-actions .btn {
    width: 100%;
  }
}

@media (min-width: 721px) {
  .nav-phone-mobile {
    display: none !important;
  }
}


/* Real Marketplace product photos */
.product-visual--photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--charcoal);
}
.product-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-strip {
  padding-top: 0.5rem;
  padding-bottom: 2.75rem;
}
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) {
  .photo-strip-grid { grid-template-columns: 1fr; }
}
.photo-strip-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-card);
}
.photo-strip-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.photo-strip-grid figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--concrete-card);
}


/* ——— Policy / legal pages (plain English) ——— */
.policy-content {
  max-width: 42rem;
  background: var(--concrete-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.75rem 2.5rem;
}

.policy-content .policy-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.policy-content .policy-notice {
  background: var(--info-bg);
  border-left: 3px solid var(--teal);
  padding: 0.85rem 1rem;
  margin: 0 0 1.75rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.policy-content p,
.policy-content li {
  color: var(--ink);
  line-height: 1.65;
}

.policy-content p {
  margin: 0 0 1rem;
}

.policy-content ul,
.policy-content ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--ink);
}

.policy-content li {
  margin-bottom: 0.4rem;
}

.policy-content a {
  font-weight: 600;
}

@media (max-width: 720px) {
  .policy-content {
    padding: 1.5rem 1.15rem 2rem;
  }
}


/* AUDIT FIX: keep Grey qty above the fold on short phones */
@media (max-width: 720px) {
  .hero-split {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }
  .hero-copy h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.35rem);
    margin-bottom: 0.65rem;
  }
  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 0.85rem;
  }
  .hero-panel {
    padding: 1rem 1.1rem 1.1rem;
    gap: 0.75rem;
  }
  .hero-panel-head {
    padding-bottom: 0.5rem;
  }
  .snap-title {
    font-size: 0.9rem;
  }
  .snap-price {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
  }
  .snap-qty {
    margin-top: 0.4rem;
  }
  .snap-qty li {
    padding: 0.35rem 0;
    font-size: 0.95rem;
  }
  /* First qty row (Grey) stands out so it cannot be "mystery missing" */
  .snap-qty li:first-child strong {
    color: #A3B07A;
  }
  .product-visual--photo {
    height: 240px;
  }
}


/* ——— Marketplace reviews ——— */
.reviews {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}
.reviews-head {
  margin-bottom: 1.5rem;
}
.reviews-note {
  margin: 0.65rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.reviews-note a {
  font-weight: 650;
  color: var(--teal-dark);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--concrete-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}
.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--charcoal);
  color: #A3B07A;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.review-name {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
}
.review-meta {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.review-stars {
  margin: 0;
  color: #c47a1a;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  white-space: nowrap;
}
.review-text {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}
