/* =============================================
   NUPLANK FLOORING — styles.css
   Industrial Construction Refit
   Black | White | Deep Forest Green #15392D
   ============================================= */

/* ── TOKENS ── */
:root {
  --green: #15392D;
  --green-mid: #1e4d3d;
  --green-dark: #0a1f16;
  --green-bright: #2a6648;
  --black: #0C0C0C;
  --near-black: #141414;
  --iron: #1C1C1C;
  --steel: #2A2A2A;
  --concrete: #3D3D3D;
  --ash: #6B6B6B;
  --silver: #A8A8A8;
  --white: #FFFFFF;
  --off-white: #F4F4F2;
  --paper: #EEEDE9;

  --accent: #15392D;
  --accent-bright: #2a6648;
  --text: #111111;
  --text-muted: #555555;
  --border: rgba(0,0,0,0.1);
  --border-dark: rgba(255,255,255,0.08);

  --font-display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;

  --radius: 0px;
  --radius-lg: 2px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.2);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.3);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--green);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--green);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border: none;
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,57,45,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  clip-path: none;
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
  border: none;
}
.btn--dark:hover {
  background: var(--iron);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--black);
  padding: 8px 0;
  box-shadow: 0 2px 0 var(--green);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-img { height: 72px; width: auto; }
.nav__logo-fallback { display: flex; align-items: center; gap: 10px; }
.nav__logo-n {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  background: var(--green);
  padding: 6px 14px;
}
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}
.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--green-bright);
  font-weight: 700;
  margin-top: 3px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--green-bright);
  transition: right var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { right: 0; }
.nav__cta {
  padding: 10px 24px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.nav__cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px 10px;
  background: var(--green);
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: none;
  filter: saturate(0.7) brightness(0.45);
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(21,57,45,0.08) 60px,
    rgba(21,57,45,0.08) 62px
  );
  z-index: 1;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 79px,
    rgba(255,255,255,0.02) 79px,
    rgba(255,255,255,0.02) 80px
  );
  z-index: 1;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    105deg,
    rgba(10,31,22,0.82) 0%,
    rgba(10,31,22,0.45) 50%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero__content::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 8%;
  height: 55%;
  width: 4px;
  background: var(--green);
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  padding: 140px 24px 80px;
  padding-left: max(40px, calc((100vw - var(--container)) / 2 + 40px));
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before {
  content: '//';
  color: var(--green-bright);
  font-size: 1rem;
  font-weight: 700;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero__headline em {
  font-style: normal;
  color: var(--green-bright);
  display: block;
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  max-width: 460px;
  line-height: 1.75;
  border-left: 2px solid var(--green);
  padding-left: 20px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__trust { display: flex; align-items: center; gap: 14px; }
.hero__stars {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 2px;
}
.hero__trust p {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ── STATS ── */
.stats {
  background: var(--green);
  padding: 0;
  border-top: 4px solid var(--black);
}
.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}
.stats__item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.stats__item p {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.stats__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stats__plus, .stats__pct {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}
.stats__star { font-size: 1.6rem; color: rgba(255,255,255,0.6); }
.stats__divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--off-white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black);
  border: 2px solid var(--black);
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--black); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.5); }
.service-card:hover .service-card__link { color: var(--green-bright); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-card__icon { color: var(--green-bright); }
.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--green);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.service-card__link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

/* ── WHY ── */
.why {
  padding: 120px 0;
  background: var(--black);
}
.why .section-tag { color: var(--green-bright); }
.why .section-tag::before { background: var(--green-bright); }
.why .section-title { color: var(--white); }
.why .section-title em { color: var(--green-bright); }
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__visual { position: relative; height: 480px; }
.why__card-stack { position: absolute; inset: 0; }
.why__card {
  position: absolute;
  padding: 40px;
  overflow: hidden;
}
.why__card--back {
  top: 24px; left: 24px; right: -24px; bottom: -24px;
  background: url(img/24.jpeg) center/cover;
  border: 2px solid rgba(255,255,255,0.06);
  filter: brightness(0.3) saturate(0.2);
}
.why__card-lines {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
.why__card-lines div {
  height: 6px;
  background: rgba(255,255,255,0.06);
}
.why__card-lines div:nth-child(1) { width: 70%; }
.why__card-lines div:nth-child(2) { width: 85%; }
.why__card-lines div:nth-child(3) { width: 55%; }
.why__card-lines div:nth-child(4) { width: 75%; }
.why__card-lines div:nth-child(5) { width: 40%; }
.why__card--front {
  top: 0; left: 0; right: 24px; bottom: 24px;
  background: url(img/24.jpeg) center/cover;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--green);
}
.why__card--front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.why__card--front > * { position: relative; z-index: 1; }
.why__card-icon {
  font-size: 1.2rem;
  color: var(--green-bright);
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2em;
}
.why__card--front h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.why__card--front p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.why__card-sig {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  font-weight: 700;
}
.why__badge {
  position: absolute;
  top: 32px; right: 0;
  background: var(--green);
  border: none;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.why__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.why__badge span:nth-child(2) {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
}
.why__badge small {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.why__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  line-height: 1.75;
}
.why__list {
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why__list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why__list li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.why__list-dot {
  flex-shrink: 0;
  width: 4px;
  height: 100%;
  min-height: 28px;
  background: var(--green);
  margin-top: 4px;
}
.why__list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.why__list li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery {
  padding: 120px 0;
  background: var(--near-black);
}
.gallery .section-tag { color: var(--green-bright); }
.gallery .section-tag::before { background: var(--green-bright); }
.gallery .section-title { color: var(--white); }
.gallery .section-title em { color: var(--green-bright); }
.gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gallery__row { display: grid; gap: 3px; }
.gallery__row--feature { grid-template-columns: 1.4fr 1fr 1fr; }
.gallery__row--quad { grid-template-columns: repeat(4, 1fr); }
.gallery__row--duo { grid-template-columns: 1.6fr 1fr; }
.gallery__row--trio { grid-template-columns: repeat(3, 1fr); }
.gallery__col { display: flex; flex-direction: column; gap: 3px; }
.gallery__col .gallery__item { flex: 1; min-height: 0; }
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--steel);
  aspect-ratio: 4/3;
}
.gallery__item--tall { aspect-ratio: 3/4; }
.gallery__col .gallery__item { aspect-ratio: unset; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(0.85) brightness(0.9);
}
.gallery__item:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.gallery__label {
  position: absolute;
  bottom: 0; left: 0;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: var(--green);
  padding: 5px 12px;
  pointer-events: none;
}
.gallery__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.gallery__note a {
  color: var(--green-bright);
  font-weight: 600;
  transition: color var(--transition);
}
.gallery__note a:hover { color: white; }

/* ── BEFORE & AFTER ── */
.ba {
  padding: 120px 0;
  background: var(--off-white);
}
.ba .section-tag { color: var(--green); }
.ba .section-header { text-align: left; }
.ba .section-desc { max-width: 520px; }

.ba__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black);
  border: 2px solid var(--black);
}

.ba__card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

/* Slider container */
.ba__slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

/* Both images fill the container */
.ba__img-wrap {
  position: absolute;
  inset: 0;
}
.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
  pointer-events: none;
}
.ba__img--before {
  z-index: 1;
  filter: saturate(0.4) brightness(0.75);
}
.ba__img--after {
  z-index: 2;
  clip-path: inset(0 50% 0 0); /* reveals left half by default */
}

/* Handle */
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.ba__handle-line {
  flex: 1;
  width: 2px;
  background: var(--white);
}
.ba__handle-knob {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  color: var(--white);
  flex-shrink: 0;
}

/* Labels */
.ba__tag {
  position: absolute;
  top: 16px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  pointer-events: none;
  z-index: 5;
}
.ba__tag--before {
  left: 14px;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.75);
}
.ba__tag--after {
  right: 14px;
  background: var(--green);
  color: var(--white);
}

/* Meta row */
.ba__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  border-top: 3px solid var(--green);
}
.ba__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}
.ba__meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}
.ba__cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
  transition: color var(--transition);
  flex-shrink: 0;
}
.ba__cta:hover { color: var(--black); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 0;
  background: var(--off-white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--black);
  border: 2px solid var(--black);
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.testimonial-card:hover { background: var(--paper); }
.testimonial-card:hover::after { transform: scaleX(1); }
.testimonial-card--featured {
  background: var(--green);
}
.testimonial-card--featured:hover { background: var(--green-dark); }
.testimonial-card--featured::after { display: none; }
.testimonial-card__stars {
  font-size: 0.85rem;
  color: var(--green);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card--featured .testimonial-card__stars { color: rgba(255,255,255,0.7); }
.testimonial-card__quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.testimonial-card--featured .testimonial-card__quote { color: rgba(255,255,255,0.75); }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card--featured .testimonial-card__avatar {
  background: rgba(255,255,255,0.15);
}
.testimonial-card__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}
.testimonial-card--featured .testimonial-card__author strong { color: var(--white); }
.testimonial-card__author span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.testimonial-card--featured .testimonial-card__author span { color: rgba(255,255,255,0.45); }
.testimonials__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.testimonials__google strong { color: var(--black); }

/* ── QUOTE CTA ── */
.quote-cta {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.quote-cta__bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.quote-cta__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(21,57,45,0.07) 60px,
    rgba(21,57,45,0.07) 62px
  );
}
.quote-cta__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
.quote-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote-cta__content .section-tag { color: var(--green-bright); }
.quote-cta__content .section-tag::before { background: var(--green-bright); }
.quote-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.quote-cta__title em {
  font-style: normal;
  color: var(--green-bright);
}
.quote-cta__content > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 32px;
}
.quote-cta__perks {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.quote-cta__perks li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.quote-cta__perks li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.quote-cta__perks li svg { color: var(--green-bright); flex-shrink: 0; }
.quote-cta__card {
  background: var(--white);
  padding: 44px 40px;
  text-align: center;
  border-top: 4px solid var(--green);
}
.quote-cta__card-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.quote-cta__card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
}
.quote-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.quote-cta__phone:hover { color: var(--black); }
.quote-cta__divider {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 20px 0;
  position: relative;
}
.quote-cta__divider::before,
.quote-cta__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.quote-cta__divider::before { left: 0; }
.quote-cta__divider::after { right: 0; }
.quote-cta__hours {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--off-white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.75;
}
.contact__details { display: flex; flex-direction: column; gap: 2px; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.contact__detail:hover { border-left-color: var(--green); background: var(--paper); }
.contact__detail-icon {
  width: 32px; height: 32px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}
.contact__detail span { font-size: 0.82rem; color: var(--text-muted); }
.contact__form-wrap {
  background: var(--black);
  padding: 48px 44px;
  border-top: 4px solid var(--green);
}
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  font-size: 0.92rem;
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 2px rgba(42,102,72,0.3);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
  background-color: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.4);
}
.form-group select option { background: var(--iron); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form__privacy {
  text-align: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 4px solid var(--green);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer__logo-n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 4px 10px;
  line-height: 1;
}
.footer__logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.footer__logo-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 260px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer__social-link:hover { border-color: var(--green-bright); color: var(--green-bright); background: rgba(21,57,45,0.2); }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a,
.footer__contact-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner { grid-template-columns: 1fr; }
  .why__visual { display: none; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .quote-cta__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery__row--feature { grid-template-columns: 1.2fr 0.9fr 1fr; }
  .gallery__row--quad { grid-template-columns: repeat(2, 1fr); }
  .ba__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 2px solid var(--green);
  }
  .nav__links.open .nav__link { color: rgba(255,255,255,0.6); }
  .nav__links.open .nav__cta {
    text-align: center;
    background: var(--green);
    display: block;
    clip-path: none;
  }
  .nav__hamburger { display: flex; }
  .nav { position: relative; }

  .stats__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .stats__divider { display: none; }
  .stats__item { padding: 24px 16px; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 28px; }

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

  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 32px 24px; }
  .quote-cta__card { padding: 32px 24px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .hero__scroll-indicator { display: none; }
  .hero__content { padding-left: 24px; padding-right: 24px; }
  .hero__content::before { display: none; }

  .gallery__row--feature { grid-template-columns: 1fr 1fr; }
  .gallery__row--feature .gallery__item--tall:last-child { display: none; }
  .gallery__row--duo { grid-template-columns: 1fr; }
  .gallery__row--trio { grid-template-columns: repeat(2, 1fr); }
  .gallery__row--trio .gallery__item:last-child { display: none; }

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

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .section-title { font-size: 2rem; }
  .gallery__row--feature { grid-template-columns: 1fr; }
  .gallery__col { flex-direction: row; }
  .gallery__row--quad { grid-template-columns: repeat(2, 1fr); }
  .gallery__row--trio { grid-template-columns: repeat(2, 1fr); }
}

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
}
.brand-strip__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: brandScroll 22s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.brand-strip__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.brand-strip__logo {
  height: 36px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.6;
  flex-shrink: 0;
}
.brand-strip__text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION LOGO MARKS ── */
.section-logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  opacity: 0.18;
}
.section-logo-mark img {
  height: 56px;
  width: auto;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.section-logo-mark--dark img {
  mix-blend-mode: screen;
  opacity: 0.5;
}
.section-logo-mark__line {
  flex: 1;
  height: 1px;
  background: currentColor;
}

/* ── FOOTER LOGO BIG ── */
.footer__logo-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo-hero img {
  height: 80px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.85;
}
.footer__logo-hero-fallback {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__logo-hero-n {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 8px 18px;
  line-height: 1;
}
.footer__logo-hero-text { display: flex; flex-direction: column; }
.footer__logo-hero-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.footer__logo-hero-sub {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  margin-top: 4px;
}

/* ── CTA LOGO BADGE ── */
.cta-logo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.cta-logo-badge img {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.8;
}
.cta-logo-badge__fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-logo-badge__n {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 4px 10px;
  line-height: 1;
}
.cta-logo-badge__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}