/* SB Building Supplies — premium warehouse aesthetic
   Charcoal / white / deep olive accent (distinct from Duraplex teal) */

: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: #fafaf8;
  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 {
  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;
}

/* ——— Header ——— */
.site-header {
  background: rgba(26, 26, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  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.7rem;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  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: 3.5rem 1.25rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.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.75rem;
}

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

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-intro {
  color: rgba(250, 249, 246, 0.7);
}

.section-dark .section-kicker {
  color: var(--teal-hot);
}

.section-alt {
  background: #f3f2ee;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  min-height: calc(92vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(10, 112, 133, 0.06) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.015) 48px,
      rgba(255, 255, 255, 0.015) 49px
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.9), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem 5rem;
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(10, 112, 133, 0.4);
  border-radius: 999px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.1rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 auto 1.25rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(250, 249, 246, 0.78);
  max-width: 38rem;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(250, 249, 246, 0.45);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.hero-scroll:hover {
  color: var(--teal);
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

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

.section-dark .es-note,
.hero .es-note {
  color: var(--teal-hot);
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 3.5rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.015) 40px,
    rgba(255, 255, 255, 0.015) 41px
  );
  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, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

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

/* ——— Featured products ——— */
.featured {
  padding: 4.5rem 0 1rem;
  background: #ffffff;
}

.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(-3px);
}

.product-visual {
  height: 160px;
  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;
}

.disclaimer {
  font-size: 0.85rem !important;
  color: var(--muted-light) !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 {
  background: var(--ok-bg);
  color: var(--ok);
}

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

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

.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);
}

.stock-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

/* ——— Feature grid (6) ——— */
.features {
  padding: 2rem 0 3rem;
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.feature-card {
  background: var(--concrete-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: rgba(10, 112, 133, 0.45);
  box-shadow: var(--shadow);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(10, 112, 133, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.feature-icon {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ——— Testimonials ——— */
.testimonials {
  padding: 4rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--concrete-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.stars {
  color: #c9a227;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  line-height: 1;
}

.testimonial-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--concrete-mid);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.testimonial-who {
  font-size: 0.88rem;
  line-height: 1.35;
}

.testimonial-who strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.testimonial-who span {
  color: var(--muted-light);
}

/* ——— Gallery strip ——— */
.gallery {
  padding: 4rem 0 3rem;
  background: #ffffff;
}

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

.gallery-head .section-title {
  margin-bottom: 0.35rem;
}

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

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  grid-template-rows: 140px 140px;
  gap: 0.75rem;
}

.gallery-tile {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  min-height: 120px;
}

.gallery-tile:nth-child(1) {
  grid-row: 1 / 3;
}

.gallery-tile:nth-child(4) {
  grid-row: 1 / 3;
}

.gallery-tile span {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(26, 26, 24, 0.55);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Abstract material patterns — no stock photos */
.pat-plank-oak {
  background:
    repeating-linear-gradient(
      90deg,
      #9a7b55 0,
      #9a7b55 72px,
      #7a6044 72px,
      #7a6044 74px,
      #b08d62 74px,
      #b08d62 146px,
      #6e543c 146px,
      #6e543c 148px
    );
}

.pat-plank-ash {
  background:
    repeating-linear-gradient(
      90deg,
      #c4b8a4 0,
      #c4b8a4 64px,
      #a89a86 64px,
      #a89a86 66px,
      #d4c8b4 66px,
      #d4c8b4 130px,
      #968a76 130px,
      #968a76 132px
    );
}

.pat-shingle-brown {
  background-color: #5a4a3c;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 18px,
      rgba(0, 0, 0, 0.3) 18px,
      rgba(0, 0, 0, 0.3) 20px
    ),
    repeating-linear-gradient(
      90deg,
      #6b5848 0,
      #6b5848 40%,
      #4a3c30 40%,
      #4a3c30 42%,
      #7a6552 42%,
      #7a6552 82%,
      #4a3c30 82%,
      #4a3c30 100%
    );
}

.pat-shingle-grey {
  background-color: #5a5c5e;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 18px,
      rgba(0, 0, 0, 0.28) 18px,
      rgba(0, 0, 0, 0.28) 20px
    ),
    repeating-linear-gradient(
      90deg,
      #6a6c6e 0,
      #6a6c6e 40%,
      #4a4c4e 40%,
      #4a4c4e 42%,
      #787a7c 42%,
      #787a7c 82%,
      #4a4c4e 82%,
      #4a4c4e 100%
    );
}

.pat-insulation {
  background:
    repeating-linear-gradient(
      45deg,
      #d4a84b 0,
      #d4a84b 12px,
      #c4983a 12px,
      #c4983a 24px
    );
}

/* ——— Bottom CTA band ——— */
.cta-band {
  max-width: var(--max);
  margin: 0 auto 4rem;
  padding: 0 1.25rem;
}

.cta-band-inner {
  background: var(--teal);
  color: var(--white-pure);
  border-radius: calc(var(--radius) + 4px);
  padding: 3.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #ffffff;
}

.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  font-size: 1.05rem;
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.9);
}

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

.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.75rem 1.75rem;
  border-radius: var(--radius);
  margin: 2.5rem 0;
}

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

/* ——— Info blocks (about / contact) ——— */
.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;
}

.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 1fr 1fr;
  gap: 2rem;
  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;
}

.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);
}

/* ——— Mobile ——— */
@media (max-width: 900px) {
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(4) {
    grid-row: auto;
    min-height: 140px;
  }

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

@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(10, 112, 133, 0.3);
    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;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-inner {
    padding: 3.5rem 1.25rem 4.5rem;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero h1 {
    max-width: none;
  }

  .section-head {
    text-align: left;
  }

  .cta-band-inner {
    padding: 2.25rem 1.35rem;
    text-align: left;
  }

  .cta-band-actions {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

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

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


/* Full-bleed white/alt bands (Duraplex-style section rhythm) */
section.featured,
section.features,
section.gallery {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

section.featured > .section-head,
section.featured > .gallery-head,
section.featured > .product-grid,
section.features > .section-head,
section.features > .feature-grid,
section.gallery > .gallery-head,
section.gallery > .gallery-strip,
section.gallery > .stock-row {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

section.featured > .gallery-head,
section.featured > .product-grid,
section.features > .feature-grid,
section.gallery > .gallery-head,
section.gallery > .gallery-strip {
  box-sizing: border-box;
  width: 100%;
}

section.featured > .section-head,
section.features > .section-head {
  box-sizing: border-box;
  width: 100%;
}

.testimonials .wrap {
  background: transparent;
}

.page-content-band {
  background: #ffffff;
}
