/* ─────────────────────────────────────────────
   PATRIS FLOORING INC. — Global Stylesheet
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg:         #0f0c09;
  --bg2:        #181310;
  --bg3:        #211a13;
  --surface:    #1e1711;
  --border:     #2e2418;
  --gold:       #c49b52;
  --gold-lt:    #dbb97a;
  --gold-dk:    #8a6a2e;
  --cream:      #f0e8d8;
  --cream-dim:  #b8a88a;
  --wood1:      #a05c28;
  --wood2:      #7a3f18;
  --text:       #ede5d8;
  --text-dim:   #8a7a66;
  --white:      #ffffff;

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Lora', serif;

  --radius:  6px;
  --radius-lg: 12px;
  --max-w:   1200px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout helpers ───────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(15,12,9,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(15,12,9,0.97) 40%, rgba(100,58,20,0.18) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 38px,
      rgba(196,155,82,0.04) 38px,
      rgba(196,155,82,0.04) 40px
    );
}
/* Animated wood grain lines */
.hero-grain {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-grain::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%; right: -10%; bottom: -50%;
  background: repeating-linear-gradient(
    168deg,
    transparent,
    transparent 22px,
    rgba(160,92,40,0.07) 22px,
    rgba(160,92,40,0.07) 23px
  );
  animation: grainDrift 18s linear infinite;
}
@keyframes grainDrift { from { transform: translateY(0); } to { transform: translateY(60px); } }

.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero-eyebrow { margin-bottom: 1.2rem; }
.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  font-family: var(--font-body);
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 4px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* Hero visual — floor plank stack */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plank-stack {
  position: relative;
  width: 340px;
  height: 420px;
}
.plank {
  position: absolute;
  left: 0; right: 0;
  border-radius: 3px;
  height: 56px;
}
.plank::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(0,0,0,0.12) 120px,
    rgba(0,0,0,0.12) 122px
  );
  border-radius: 3px;
}
.plank-label {
  position: absolute;
  bottom: 7px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  z-index: 2;
  pointer-events: none;
}
/* Real flooring photo textures from Pexels (free to use) */
/* Plank 1 — Light natural maple/ash hardwood */
.plank-1 {
  background-image: url('https://images.pexels.com/photos/172292/pexels-photo-172292.jpeg?auto=compress&cs=tinysrgb&w=800&h=200&fit=crop');
  background-size: cover; background-position: center;
  top: 0; transform: perspective(600px) rotateX(6deg) rotateY(-4deg) translateZ(20px); box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
/* Plank 2 — Medium warm golden oak hardwood */
.plank-2 {
  background-image: url('https://images.pexels.com/photos/6364752/pexels-photo-6364752.jpeg?auto=compress&cs=tinysrgb&w=800&h=200&fit=crop');
  background-size: cover; background-position: center;
  top: 68px; transform: perspective(600px) rotateX(6deg) rotateY(-4deg) translateZ(10px); box-shadow: 0 10px 32px rgba(0,0,0,0.5);
}
/* Plank 3 — Classic mid-brown hardwood */
.plank-3 {
  background-image: url('https://images.pexels.com/photos/132193/pexels-photo-132193.jpeg?auto=compress&cs=tinysrgb&w=800&h=200&fit=crop');
  background-size: cover; background-position: center;
  top: 136px; transform: perspective(600px) rotateX(6deg) rotateY(-4deg) translateZ(0px); box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
/* Plank 4 — Rich reddish-brown hardwood */
.plank-4 {
  background-image: url('https://images.pexels.com/photos/168452/pexels-photo-168452.jpeg?auto=compress&cs=tinysrgb&w=800&h=200&fit=crop');
  background-size: cover; background-position: center;
  top: 204px; transform: perspective(600px) rotateX(6deg) rotateY(-4deg) translateZ(-10px); box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
/* Plank 5 — Cool grey laminate */
.plank-5 {
  background-image: url('https://images.pexels.com/photos/11126101/pexels-photo-11126101.jpeg?auto=compress&cs=tinysrgb&w=800&h=200&fit=crop');
  background-size: cover; background-position: center;
  top: 272px; transform: perspective(600px) rotateX(6deg) rotateY(-4deg) translateZ(-20px); box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
/* Plank 6 — Dark espresso walnut hardwood */
.plank-6 {
  background-image: url('https://images.pexels.com/photos/172297/pexels-photo-172297.jpeg?auto=compress&cs=tinysrgb&w=800&h=200&fit=crop');
  background-size: cover; background-position: center;
  top: 340px; transform: perspective(600px) rotateX(6deg) rotateY(-4deg) translateZ(-30px); box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.hero-badge {
  position: absolute;
  bottom: 20px; right: -20px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 8px 32px rgba(196,155,82,0.35);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.hero-badge-num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.hero-badge-text { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; margin-top: 3px; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}
.trust-icon { color: var(--gold); font-size: 1rem; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0.8rem 0 1rem;
}
.services-header p { color: var(--cream-dim); max-width: 540px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { transform: scaleX(1); }

/* ── Service Photo Cards ───────────────── */
.services-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.svc-photo-card {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.svc-photo-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.svc-photo-card:hover .svc-photo-bg { transform: scale(1.08); }
.svc-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,7,4,0.92) 0%,
    rgba(10,7,4,0.4) 45%,
    rgba(10,7,4,0.05) 100%);
  transition: background 0.4s ease;
}
.svc-photo-card:hover .svc-photo-overlay {
  background: linear-gradient(to top,
    rgba(10,7,4,0.95) 0%,
    rgba(10,7,4,0.5) 50%,
    rgba(10,7,4,0.1) 100%);
}
.svc-photo-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.svc-photo-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,155,82,0.12);
  border: 1px solid rgba(196,155,82,0.3);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.6rem;
}
.svc-photo-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.svc-photo-content p {
  font-size: 0.85rem;
  color: rgba(240,232,216,0.75);
  line-height: 1.65;
  margin-bottom: 0.8rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.svc-photo-card:hover .svc-photo-content p {
  max-height: 80px;
  opacity: 1;
}
.svc-photo-cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-lt);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  display: block;
}
.svc-photo-card:hover .svc-photo-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── Lightbox ──────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  flex-direction: column;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.6rem; color: var(--cream-dim);
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--cream); }
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  animation: lbFadeIn 0.25s ease;
}
@keyframes lbFadeIn { from { opacity:0; transform:scale(0.96); } to { opacity:1; transform:scale(1); } }
.lightbox-caption {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ── Understanding Your Floor Section ─── */
.urf-section { background: var(--bg2); }
.urf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.urf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.urf-card:hover { border-color: var(--gold-dk); }
.urf-card-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.urf-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.urf-svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1100px) {
  .urf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .urf-grid { grid-template-columns: 1fr; }
}


.cs-wrap { width: 100%; }
.cs-tabs {
  display: flex; gap: 6px;
  margin-bottom: 1.2rem;
}
.cs-tab {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--transition);
}
.cs-tab.active, .cs-tab:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.cs-diagram {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.cs-diagram.active { display: flex; }
.cs-layer {
  position: relative;
  height: 58px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.8rem;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(-18px);
  animation: layerIn 0.4s ease forwards;
}
.cs-layer::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--clr, rgba(0,0,0,0.35));
}
.cs-layer:nth-child(1) { animation-delay: 0.05s; }
.cs-layer:nth-child(2) { animation-delay: 0.13s; }
.cs-layer:nth-child(3) { animation-delay: 0.21s; }
.cs-layer:nth-child(4) { animation-delay: 0.29s; }
.cs-layer:nth-child(5) { animation-delay: 0.37s; }
@keyframes layerIn {
  to { opacity: 1; transform: translateX(0); }
}
.cs-num {
  position: relative; z-index: 1;
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
}
.cs-name {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}
.cs-detail {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-align: right;
  flex-shrink: 0;
}

/* service-card h3/p kept for services PAGE cards */
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.75; }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why-section { background: var(--bg2); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0.8rem 0 1.5rem;
}
.why-text > p { color: var(--cream-dim); margin-bottom: 2.5rem; }
.why-points { display: flex; flex-direction: column; gap: 1.4rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-point-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  margin-top: 2px;
}
.why-point-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 2px;
}
.why-point-text span { font-size: 0.88rem; color: var(--text-dim); }

/* Floor cross-section visual */
.why-visual {
  position: relative;
  height: 420px;
}
.floor-layers {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.floor-layer {
  position: relative;
  height: 52px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
}
.floor-layer::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 80px,
    rgba(0,0,0,0.1) 80px, rgba(0,0,0,0.1) 82px
  );
}
/* Real photo textures for floor cross-section layers */
.fl-1 {
  background-image: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.18)),
    url('https://images.pexels.com/photos/172292/pexels-photo-172292.jpeg?auto=compress&cs=tinysrgb&w=800&h=120&fit=crop');
  background-size: cover; background-position: center top;
  color: #fff; margin: 0 0;
}
.fl-2 {
  background-image: linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.28)),
    url('https://images.pexels.com/photos/2530326/pexels-photo-2530326.jpeg?auto=compress&cs=tinysrgb&w=800&h=120&fit=crop');
  background-size: cover; background-position: center;
  color: #e8d8b8; margin: 0 10px;
}
.fl-3 {
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('https://images.pexels.com/photos/132193/pexels-photo-132193.jpeg?auto=compress&cs=tinysrgb&w=800&h=120&fit=crop');
  background-size: cover; background-position: center;
  color: #c8a878; margin: 0 20px;
}
.fl-4 {
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.pexels.com/photos/368755/pexels-photo-368755.jpeg?auto=compress&cs=tinysrgb&w=800&h=120&fit=crop');
  background-size: cover; background-position: center;
  color: #8a6a44; margin: 0 30px;
}
.fl-label { position: relative; z-index: 1; }
.floor-layer-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery-header { text-align: center; margin-bottom: 3.5rem; }
.gallery-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0.8rem 0 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg3);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-placeholder { background: var(--bg2); }
.gallery-ph-icon { font-size: 2.5rem; opacity: 0.3; }
.gallery-ph-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
/* Wood grain pattern backgrounds */
.gi-1 .gallery-placeholder { background: linear-gradient(135deg, #1e120a 0%, #2a1a10 50%, #1a1008 100%); }
.gi-2 .gallery-placeholder { background: linear-gradient(135deg, #231510 0%, #2e1c12 50%, #1e1008 100%); }
.gi-3 .gallery-placeholder { background: linear-gradient(135deg, #1a1208 0%, #221810 50%, #180e06 100%); }
.gi-4 .gallery-placeholder { background: linear-gradient(135deg, #201408 0%, #2a1c10 50%, #1c1006 100%); }
.gi-5 .gallery-placeholder { background: linear-gradient(135deg, #251810 0%, #301e12 50%, #20100a 100%); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { background: var(--bg2); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0.8rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--gold-dk); }
.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--surface) 100%);
  border-color: var(--gold-dk);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 0.98rem;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card.featured .testimonial-text { font-size: 1.1rem; }
.testimonial-author {
  display: flex; align-items: center; gap: 0.9rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--wood1));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
}
.author-location { font-size: 0.78rem; color: var(--text-dim); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 40px,
    rgba(0,0,0,0.06) 40px, rgba(0,0,0,0.06) 41px
  );
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 0.5rem;
}
.cta-text p { color: rgba(15,12,9,0.7); font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-dark {
  background: var(--bg);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-dark:hover { background: var(--bg2); transform: translateY(-2px); }
.btn-phone {
  background: transparent;
  border: 2px solid rgba(15,12,9,0.4);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-phone:hover { background: rgba(15,12,9,0.15); }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-hero {
  padding: 100px 0 40px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.about-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0.5rem 0 0.8rem;
}
.about-hero p { color: var(--cream-dim); font-size: 1.05rem; max-width: 580px; line-height: 1.75; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 80px 0;
}
.about-story h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0.8rem 0 1.2rem;
}
.about-story p { color: var(--cream-dim); margin-bottom: 1.2rem; line-height: 1.85; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.84rem; color: var(--text-dim); line-height: 1.65; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-hero {
  padding: 100px 0 40px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.contact-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0.5rem 0 0.75rem;
}
.contact-hero p { color: var(--cream-dim); max-width: 500px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  padding: 48px 0 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 5px;
}
.contact-item-value { font-size: 1.05rem; color: var(--cream); line-height: 1.65; }
.contact-item-value a { color: var(--cream); }
.contact-item-value a:hover { color: var(--gold); }

.service-areas {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.service-areas h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--cream-dim);
}

/* Quote Form */
.quote-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.quote-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.quote-form-wrap > p { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-dk); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg); }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--text-dim); transition: color var(--transition); }
.footer-legal a:hover { color: var(--cream); }

/* ══════════════════════════════════════════
   PAGE TRANSITIONS
══════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content        { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual         { height: 300px; }
  .plank-stack         { width: 260px; height: 320px; transform: scale(0.85); }
  .services-grid       { grid-template-columns: 1fr 1fr; }
  .services-photo-grid { grid-template-columns: 1fr 1fr; }
  .svc-photo-card      { height: 380px; }
  .svc-photo-content p { max-height: 80px; opacity: 1; }
  .svc-photo-cta       { opacity: 1; transform: none; }
  .why-inner           { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid        { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall   { grid-row: span 1; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .testimonial-card.featured { grid-column: span 1; }
  .contact-layout      { grid-template-columns: 1fr; }
  .about-story         { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
  .cta-inner           { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .services-grid       { grid-template-columns: 1fr; }
  .services-photo-grid { grid-template-columns: 1fr; }
  .gallery-grid        { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .nav-links           { display: none; }
  .hamburger           { display: flex; }
  .footer-top          { grid-template-columns: 1fr; }
  .hero-stats          { gap: 1.5rem; }
  .hero-badge          { width: 90px; height: 90px; right: 0; }
  .trust-bar-inner     { gap: 1.5rem; justify-content: flex-start; overflow-x: auto; }
  .values-grid         { grid-template-columns: 1fr; }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,12,9,0.98);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem; cursor: pointer; color: var(--cream-dim);
  background: none; border: none;
}

/* ══════════════════════════════════════════
   SERVICES PAGE — alternating photo rows
══════════════════════════════════════════ */
.svc-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.5px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.svc-detail-row--flip .svc-detail-img { order: 2; }
.svc-detail-row--flip .svc-detail-text { order: 1; }
.svc-detail-img {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.svc-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-detail-row:hover .svc-detail-img img { transform: scale(1.04); }
.svc-detail-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}
.svc-detail-text {
  background: var(--surface);
  padding: 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-detail-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  margin: 1rem 0 0.8rem;
}
.svc-detail-text p {
  color: var(--cream-dim);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.svc-bullets {
  display: flex; flex-direction: column; gap: 0.45rem;
  margin-top: 0.5rem;
}
.svc-bullets li {
  color: var(--text-dim);
  font-size: 0.87rem;
  font-family: var(--font-display);
}
@media (max-width: 900px) {
  .svc-detail-row { grid-template-columns: 1fr; }
  .svc-detail-row--flip .svc-detail-img { order: 0; }
  .svc-detail-row--flip .svc-detail-text { order: 0; }
  .svc-detail-img { min-height: 260px; }
}

/* ══════════════════════════════════════════
   ABOUT PAGE — Before & After
══════════════════════════════════════════ */
.ba-section { background: var(--bg2); }
.ba-pair { margin-bottom: 3rem; }
.ba-label-row { margin-bottom: 1rem; }
.ba-type-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,155,82,0.1);
  border: 1px solid rgba(196,155,82,0.25);
  border-radius: 20px;
  padding: 0.3rem 1rem;
}
.ba-photos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}
.ba-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.ba-photo img {
  width: 100%; height: 320px;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.ba-photo:hover img { transform: scale(1.03); }
.ba-stamp {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
}
.ba-stamp--before { background: #c0392b; color: #fff; }
.ba-stamp--after  { background: var(--gold); color: var(--bg); }
.ba-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--cream-dim);
}
.ba-divider {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 800;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .ba-photos { grid-template-columns: 1fr; }
  .ba-divider { transform: rotate(90deg); }
  .ba-photo img { height: 220px; }
}

/* ══════════════════════════════════════════
   TESTIMONIALS PAGE — Rating bar + photo rows
══════════════════════════════════════════ */
.rating-bar {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.rating-bar-score {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}
.rating-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-sub { font-family: var(--font-display); font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.rating-bar-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }
.rating-counts { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 0.5rem; }
.rating-row { display: flex; align-items: center; gap: 0.6rem; }
.rating-label { font-family: var(--font-display); font-size: 0.72rem; color: var(--text-dim); width: 48px; flex-shrink: 0; }
.rating-track { flex: 1; height: 6px; background: var(--bg3); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.rating-pct { font-family: var(--font-display); font-size: 0.72rem; color: var(--text-dim); width: 32px; text-align: right; flex-shrink: 0; }
.rating-badges { display: flex; gap: 2rem; flex-shrink: 0; }
.rating-badge { display: flex; flex-direction: column; align-items: center; }
.rating-badge-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--cream); line-height: 1; }
.rating-badge-lbl { font-family: var(--font-display); font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; margin-top: 3px; }

.tcard-photo-list { display: flex; flex-direction: column; gap: 1.5rem; }
.tcard-photo-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.tcard-photo-row--flip .tcard-photo-img { order: 2; }
.tcard-photo-row--flip .tcard-photo-img + div { order: 1; }
.tcard-photo-img {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.tcard-photo-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.tcard-photo-row:hover .tcard-photo-img img { transform: scale(1.04); }
.tcard-photo-label {
  position: absolute;
  bottom: 0.8rem; left: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(0,0,0,0.65);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .tcard-photo-row { grid-template-columns: 1fr; }
  .tcard-photo-row--flip .tcard-photo-img { order: 0; }
  .tcard-photo-img { min-height: 200px; }
  .rating-bar { gap: 1.5rem; }
  .rating-bar-divider { display: none; }
  .rating-badges { gap: 1.2rem; }
}

/* ══════════════════════════════════════════
   CONTACT PAGE — Job site photo + map
══════════════════════════════════════════ */
.contact-jobsite {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  height: 340px;
}
.contact-jobsite img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.contact-jobsite-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,7,4,0.88) 0%, rgba(10,7,4,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  max-width: 520px;
}
.contact-jobsite-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--cream);
  margin: 0.5rem 0 0.6rem;
  line-height: 1.2;
}
.contact-jobsite-overlay p {
  color: var(--cream-dim);
  font-size: 0.93rem;
}
.contact-map-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.contact-map iframe {
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.7) brightness(0.85);
}

/* ── Before/After full image display ───── */
.ba-full-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.ba-full-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.ba-full-img:hover img { transform: scale(1.01); }
.ba-full-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.9rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}
