/* ═══════════════════════════════════════════
   BASE & BUILD — STYLESHEET
   Version: 3.1 (Production)
   Created by Clear Cut Creative
═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --green:     #21452E;
  --green-dk:  #192f20;
  --charcoal:  #161616;
  --gold:      #B78A3C;
  --gold-lt:   #c99a45;
  --offwhite:  #F5F3EC;
  --stone:     #D9D7D1;
  --stone-dk:  #8a8885;
  --body-text: #1c1c1c;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.22s;
  --t-med:  0.45s;
  --t-slow: 0.75s;

  --r: 2px;
  --shadow-card: 0 1px 3px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.08);
  --shadow-lift: 0 4px 16px rgba(0,0,0,.15), 0 16px 40px rgba(0,0,0,.12);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--body-text);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5 { font-family: 'Manrope', sans-serif; font-weight: 700; line-height: 1.1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r);
}

/* ─── SCROLL REVEAL ─── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-expo),
              transform var(--t-slow) var(--ease-expo);
  will-change: opacity, transform;
}
.rv.fl { transform: translateX(-36px); }
.rv.fr { transform: translateX(36px); }
.rv.in { opacity: 1 !important; transform: none !important; }
.rs > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-slow) var(--ease-expo),
              transform var(--t-slow) var(--ease-expo);
  will-change: opacity, transform;
}
.rs.in > * { opacity: 1; transform: none; }
.rs.in > *:nth-child(1) { transition-delay: 0.00s; }
.rs.in > *:nth-child(2) { transition-delay: 0.09s; }
.rs.in > *:nth-child(3) { transition-delay: 0.18s; }
.rs.in > *:nth-child(4) { transition-delay: 0.27s; }
.rs.in > *:nth-child(5) { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .rv, .rv.fl, .rv.fr, .rs > * { transition: none; opacity: 1; transform: none; }
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  transition: background var(--t-med) var(--ease-smooth),
              backdrop-filter var(--t-med),
              border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20,20,20,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(183,138,60,.15);
}
.nav-logo { height: 42px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(245,243,236,.72);
  padding: 0.25rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--r);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(183,138,60,.35); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--offwhite);
  border-radius: 1px;
  transition: all var(--t-fast);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--offwhite);
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}
.nav-mobile a:hover { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn-p {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: var(--charcoal);
  border: 2px solid var(--gold);
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 52px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
}
.btn-p:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(183,138,60,.32); }
.btn-s {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  background: transparent;
  color: var(--offwhite);
  border: 1.5px solid rgba(245,243,236,.32);
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 52px;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  cursor: pointer;
}
.btn-s:hover { border-color: rgba(245,243,236,.75); background: rgba(245,243,236,.06); transform: translateY(-2px); }
.btn-g { background: var(--green); color: var(--offwhite); border: 1.5px solid currentColor; }
.btn-g:hover { background: var(--green-dk); border-color: currentColor; box-shadow: 0 6px 22px rgba(33,69,46,.3); }

/* ─── SHARED SECTION ─── */
.section { max-width: 1400px; margin: 0 auto; padding: 6.5rem 3rem; }
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.s-label::before { content: ''; width: 1.6rem; height: 1px; background: var(--gold); flex-shrink: 0; }
.s-h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  max-width: 560px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5.5rem;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  opacity: 0.55;
  z-index: 3;
}
/* VIDEO hero */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}
/* image fallback shown while video loads / on mobile data save */
.hero-poster {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-poster.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(108deg,
    rgba(18,18,18,.88) 0%,
    rgba(18,18,18,.58) 48%,
    rgba(18,18,18,.15) 100%
  );
}
.hero-vignette {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to top, rgba(15,15,15,.65), transparent);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-expo) .2s forwards;
}
.hero-eyebrow::before { content: ''; width: 2.2rem; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--offwhite);
  max-width: 700px;
  margin-bottom: 1.4rem;
  letter-spacing: -0.028em;
  opacity: 0;
  animation: fadeUp 1s var(--ease-expo) .4s forwards;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(245,243,236,.68);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-expo) .6s forwards;
}
.hero-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-expo) .8s forwards;
}
.trust-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(217,215,209,.14);
  opacity: 0;
  animation: fadeUp 1s var(--ease-expo) 1s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245,243,236,.58);
}
.trust-item::before { content: '✓'; color: var(--gold); font-weight: 900; font-size: 0.78rem; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── MID-PAGE CTA STRIP ─── */
.cta-strip {
  background: var(--green-dk);
  border-top: 1px solid rgba(183,138,60,.15);
  border-bottom: 1px solid rgba(183,138,60,.15);
  padding: 1.5rem 3rem;
}
.cta-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip p {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--offwhite);
  letter-spacing: -0.01em;
}
.cta-strip p span { color: var(--gold); }
.cta-strip-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.strip-phone {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: rgba(245,243,236,.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--t-fast);
}
.strip-phone:hover { color: var(--offwhite); }

/* ─── SERVICES ─── */
.services-bg {
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), 0 100%);
  padding-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  margin-top: 3.5rem;
  background: rgba(255,255,255,.04);
}
.sc { background: #1c1c1c; padding: 2.5rem; position: relative; overflow: hidden; transition: box-shadow var(--t-med); }
.sc:hover { box-shadow: inset 0 0 0 1px rgba(183,138,60,.3); }
.sc--hero { grid-row: span 2; padding: 3rem; background: #191919; }
.sc--feat { background: #1e1e1b; }
.sc--feat::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 80%);
}
.sc-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .11;
  transition: opacity var(--t-med) var(--ease-smooth), transform .65s var(--ease-smooth);
  will-change: opacity, transform;
}
.sc:hover .sc-bg { opacity: .26; transform: scale(1.05); }
.sc-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.sc--hero .sc-inner { justify-content: space-between; min-height: 380px; }
.sc-tag {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.sc-tag::before { content: ''; width: 0.9rem; height: 1px; background: var(--gold); }
.sc h3 { font-size: 1.3rem; font-weight: 800; color: var(--offwhite); line-height: 1.2; margin: 0.85rem 0 0.6rem; letter-spacing: -0.015em; }
.sc--hero h3 { font-size: clamp(1.6rem,2.3vw,2.1rem); }
.sc--feat h3 { font-size: 1.45rem; }
.sc p { font-size: 0.88rem; line-height: 1.65; color: rgba(217,215,209,.62); margin-bottom: 0.9rem; }
.sc-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.sc-price::before { content: ''; width: 0.7rem; height: 1px; background: var(--gold); }

/* ─── WHY GROUND SCREWS ─── */
.why-bg {
  background: var(--green);
  margin-top: 4rem;
  clip-path: polygon(0 4rem, 100% 0, 100% calc(100% - 4rem), 0 100%);
  padding: 4rem 0;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center; }
.why-intro { font-size: 0.98rem; line-height: 1.72; color: rgba(245,243,236,.62); margin: 0.75rem 0 1.5rem; max-width: 400px; }
.why-pts { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; }
.why-pt { display: flex; gap: 1rem; align-items: flex-start; font-size: 0.92rem; line-height: 1.55; color: rgba(245,243,236,.8); padding: 0.85rem 0; border-bottom: 1px solid rgba(245,243,236,.07); }
.why-pt:last-child { border-bottom: none; }
.why-pt::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 0.48rem; flex-shrink: 0; }
.problem-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(245,243,236,.1);
  border: 1px solid rgba(245,243,236,.1);
  margin: -0.75rem 0 2.5rem;
}
.problem-card {
  background: rgba(22,22,22,.18);
  padding: 1rem 1.15rem;
  border-left: 2px solid rgba(183,138,60,.75);
}
.problem-card span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  color: var(--offwhite);
  margin-bottom: 0.28rem;
}
.problem-card p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(217,215,209,.58);
}
.why-imgs { position: relative; height: 500px; }
.why-img-main { position: absolute; top: 0; left: 0; right: 2rem; bottom: 4rem; background-size: cover; background-position: center top; overflow: hidden; }
.why-img-main::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(33,69,46,.25) 0%, transparent 55%); }
.why-img-accent { position: absolute; bottom: 0; right: 0; width: 58%; height: 48%; background-size: cover; background-position: center; border: 3px solid var(--green); outline: 1px solid rgba(183,138,60,.35); outline-offset: 4px; }

/* ─── TRUST / STATS ─── */
.trust-section-bg { background: var(--offwhite); padding: 6.5rem 0 5rem; position: relative; }
.trust-section-bg::before { content: ''; position: absolute; top: 0; left: 3rem; right: 3rem; height: 1px; background: linear-gradient(90deg, transparent, var(--stone) 25%, var(--stone) 75%, transparent); }
.trust-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--stone); border: 1px solid var(--stone); margin-top: 3rem; }
.trust-stat-card { background: var(--offwhite); padding: 2.5rem; display: flex; flex-direction: column; gap: 0.4rem; transition: background var(--t-fast); }
.trust-stat-card:hover { background: #edeae2; }
.stat-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 3.2rem; color: var(--green); line-height: 1; letter-spacing: -0.04em; }
.stat-word {
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  letter-spacing: -0.045em;
}
.stat-label { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-dk); margin-bottom: 0.2rem; }
.trust-stat-card p { font-size: 0.86rem; line-height: 1.6; color: #666; }
.trust-pillars { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--stone); border-top: none; }
.trust-pillar { padding: 1.65rem 1.5rem 1.65rem 1.5rem; border-right: 1px solid var(--stone); border-top: 2px solid var(--gold); }
.trust-pillar:nth-child(3n), .trust-pillar:last-child { border-right: none; }
.trust-pillar h4 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.84rem; color: var(--charcoal); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.trust-pillar p { font-size: 0.79rem; line-height: 1.55; color: #777; }

/* ─── GALLERY ─── */
.gallery-bg { background: #111; padding: 7rem 0 6.5rem; }
.gallery-hdr { max-width: 1400px; margin: 0 auto; padding: 0 3rem; margin-bottom: 2.75rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.gallery-tabs { display: flex; gap: 0.35rem; }
.g-tab { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1.2rem; min-height: 40px; border: 1px solid rgba(217,215,209,.18); border-radius: var(--r); background: transparent; color: rgba(217,215,209,.55); transition: all var(--t-fast); cursor: pointer; }
.g-tab.active, .g-tab:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .85fr 1fr; grid-template-rows: 320px 250px; gap: 4px; max-width: 1400px; margin: 0 auto; padding: 0 3rem; }
.g-item { overflow: hidden; position: relative; cursor: pointer; }
.g-item:first-child { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease-smooth); }
.g-item:hover img { transform: scale(1.07); }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,15,.88) 0%, rgba(15,15,15,.1) 50%, transparent 100%); opacity: 0; transition: opacity var(--t-med); }
.g-item:hover .g-overlay { opacity: 1; }
.g-label { position: absolute; bottom: 0; left: 0; padding: 0.7rem 1rem; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); background: rgba(15,15,15,.72); backdrop-filter: blur(4px); }
/* gallery filter fade */
.g-item { transition: opacity var(--t-med), transform var(--t-med); }
.g-item.hidden { opacity: 0; pointer-events: none; transform: scale(0.96); }

/* ─── SUPPLY + BUILD ─── */
.supply-bg { background: var(--charcoal); padding: 9rem 0; position: relative; overflow: hidden; }
.supply-bg::after { content: ''; position: absolute; top: 0; right: 0; width: 44%; height: 100%; background-image: url('../assets/images/timber/timber-studio.jpg'); background-size: cover; background-position: center; opacity: .09; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); }
.supply-inner { position: relative; z-index: 1; }
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(217,215,209,.1);
  border: 1px solid rgba(217,215,209,.1);
  max-width: 980px;
  margin: 0 0 2rem;
}
.choose-card {
  background: rgba(245,243,236,.035);
  padding: 1.45rem 1.35rem;
  min-height: 155px;
  position: relative;
  overflow: hidden;
}
.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(183,138,60,0));
}
.choose-card span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--offwhite);
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
}
.choose-card p {
  font-size: 0.82rem;
  line-height: 1.62;
  color: rgba(217,215,209,.58);
}
.supply-feats { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; }
.supply-feat { display: flex; align-items: center; gap: 0.75rem; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--offwhite); padding: 0.75rem 0; border-bottom: 1px solid rgba(217,215,209,.08); }
.supply-feat:last-child { border-bottom: none; }
.supply-feat::before { content: '→'; color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* ─── COVERAGE ─── */
.coverage-bg { background: var(--offwhite); padding: 6rem 0 5rem; position: relative; }
.coverage-bg::before { content: ''; position: absolute; top: 0; left: 3rem; right: 3rem; height: 1px; background: linear-gradient(90deg, transparent, var(--stone) 25%, var(--stone) 75%, transparent); }
.coverage-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--stone); border: 1px solid var(--stone); margin-top: 3rem; }
.cov-card { background: var(--offwhite); padding: 1.5rem 1.75rem; transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast); display: flex; flex-direction: column; gap: 0.3rem; min-height: 124px; justify-content: center; }
.cov-card:hover { background: #edeae2; transform: translateY(-1px); }
.cov-name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1rem; color: var(--charcoal); letter-spacing: -0.01em; }
.cov-note { font-size: 0.79rem; color: var(--stone-dk); line-height: 1.5; }

/* ─── PROCESS ─── */
.process-bg {
  background: var(--charcoal);
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.process-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,138,60,.42) 25%, rgba(183,138,60,.42) 75%, transparent);
}
.process-track { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; margin-top: 4.5rem; }
.process-line { position: absolute; top: 2rem; left: 10%; right: 10%; height: 1px; background: rgba(217,215,209,.12); z-index: 0; overflow: hidden; }
.process-line::after { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: rgba(183,138,60,.5); transition: width 1.6s var(--ease-expo) .4s; }
.process-bg.in .process-line::after { width: 100%; }
.p-step { padding: 0 1.1rem; position: relative; z-index: 1; }
.p-num { width: 4rem; height: 4rem; border: 1.5px solid rgba(217,215,209,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.88rem; color: rgba(217,215,209,.5); background: var(--charcoal); position: relative; z-index: 1; margin-bottom: 1.5rem; transition: background var(--t-med), color var(--t-med), border-color var(--t-med), box-shadow var(--t-med); }
.p-step:hover .p-num { background: var(--gold); color: var(--charcoal); border-color: var(--gold); box-shadow: 0 4px 18px rgba(183,138,60,.3); }
.p-step h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--offwhite); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.p-step p { font-size: 0.82rem; line-height: 1.62; color: rgba(217,215,209,.55); }

/* ─── TESTIMONIALS ─── */
.testi-bg { background: var(--green); padding: 7rem 0; }
.testi-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 1.5px; background: rgba(255,255,255,.05); margin-top: 3rem; }
.tc { background: rgba(255,255,255,.03); padding: 2.75rem; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: background var(--t-fast); }
.tc:hover { background: rgba(255,255,255,.06); }
.tc--lead { padding: 3.25rem; background: rgba(255,255,255,.055); }
.tc::before { content: '\201C'; position: absolute; top: -1rem; left: 1.5rem; font-family: 'Georgia', serif; font-size: 7.5rem; color: var(--gold); opacity: .1; line-height: 1; pointer-events: none; user-select: none; }
.tc-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.tc-quote { font-size: 0.93rem; line-height: 1.72; color: rgba(245,243,236,.8); font-style: italic; flex: 1; margin-bottom: 1.75rem; }
.tc--lead .tc-quote { font-size: 1.06rem; }
.tc-author { padding-top: 1.25rem; border-top: 1px solid rgba(245,243,236,.1); margin-top: auto; }
.tc-name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.84rem; color: var(--offwhite); margin-bottom: 0.18rem; }
.tc-loc { font-size: 0.74rem; color: rgba(217,215,209,.42); letter-spacing: 0.03em; }
.reviews-link-wrap { text-align: center; margin-top: 2.5rem; }
.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,243,236,.55);
  border: 1px solid rgba(245,243,236,.15);
  border-radius: var(--r);
  padding: 0.65rem 1.4rem;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.reviews-link:hover { color: var(--gold); border-color: rgba(183,138,60,.4); }
.reviews-link-stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.85rem; }

/* ─── FAQ ─── */
.faq-bg { background: var(--offwhite); padding: 6.5rem 0 6rem; position: relative; }
.faq-bg::before { content: ''; position: absolute; top: 0; left: 3rem; right: 3rem; height: 1px; background: linear-gradient(90deg, transparent, var(--stone) 25%, var(--stone) 75%, transparent); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; border: 1px solid var(--stone); border-radius: var(--r); overflow: hidden; }
details.faq-item { border-bottom: 1px solid var(--stone); }
details.faq-item:last-child { border-bottom: none; }
summary.faq-q { list-style: none; padding: 1.4rem 1.6rem; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.92rem; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; line-height: 1.45; transition: background var(--t-fast), color var(--t-fast); user-select: none; min-height: 44px; }
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after { content: '+'; font-size: 1.1rem; color: var(--gold); font-weight: 300; flex-shrink: 0; transition: transform var(--t-fast); line-height: 1.2; }
details[open] summary.faq-q { background: #edeae2; color: var(--green); }
details[open] summary.faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.6rem 1.4rem; font-size: 0.9rem; line-height: 1.72; color: #555; background: #edeae2; }
.faq-cta-box { background: var(--green); padding: 2.5rem; border-radius: var(--r); display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1px; }
.faq-cta-box h3 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--offwhite); letter-spacing: -0.015em; line-height: 1.2; }
.faq-cta-box p { font-size: 0.9rem; line-height: 1.65; color: rgba(245,243,236,.65); }

/* ─── CONTACT ─── */
.contact-bg { background: var(--charcoal); padding: 8.5rem 0; position: relative; }
.contact-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, rgba(183,138,60,0) 55%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5.5rem; align-items: start; }
.contact-urgency { display: inline-flex; align-items: center; gap: 0.45rem; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(183,138,60,.1); border: 1px solid rgba(183,138,60,.22); border-radius: var(--r); padding: 0.38rem 0.85rem; margin-bottom: 1.4rem; }
.contact-direct { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 2.5rem; }
.cta-link { display: flex; align-items: center; gap: 0.75rem; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--offwhite); padding: 0.9rem 1.1rem; border: 1px solid rgba(217,215,209,.1); border-radius: var(--r); transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast); min-height: 52px; }
.cta-link svg { width: 16px !important; height: 16px !important; flex-shrink: 0; opacity: 0.8; }
.cta-link:hover { border-color: rgba(183,138,60,.35); background: rgba(183,138,60,.05); transform: translateX(4px); }
.cta-link-icon { font-size: 1rem; flex-shrink: 0; }
/* form */
.form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.ff { display: flex; flex-direction: column; gap: 0.35rem; position: relative; }
.ff label { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-dk); }
.ff input, .ff select, .ff textarea {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(217,215,209,.1);
  border-radius: var(--r);
  padding: 0.9rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--offwhite);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  width: 100%;
  min-height: 50px;
  -webkit-appearance: none;
}
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--gold); background: rgba(183,138,60,.04); }
.ff input.is-valid { border-color: rgba(74,222,128,.45); }
.ff input.is-err, .ff select.is-err { border-color: rgba(248,113,113,.5); }
.ff .f-msg { font-size: 0.7rem; height: 0; overflow: hidden; opacity: 0; transition: all var(--t-fast); color: rgba(248,113,113,.9); }
.ff .f-msg.show { height: auto; opacity: 1; padding-top: 0.25rem; }
.ff .f-msg.ok { color: rgba(74,222,128,.9); }
.ff select option { background: #222; color: var(--offwhite); }
.ff textarea { resize: vertical; min-height: 112px; line-height: 1.6; }
.form-btns { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.5rem; }
.btn-loading { opacity: .7; pointer-events: none; position: relative; }
.btn-loading::after { content: ''; width: 14px; height: 14px; border: 2px solid rgba(22,22,22,.3); border-top-color: var(--charcoal); border-radius: 50%; position: absolute; right: 1rem; animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 3rem 2rem; border: 1.5px solid rgba(183,138,60,.3); border-radius: var(--r); background: rgba(183,138,60,.04); gap: 0.9rem; }
.form-success.show { display: flex; }
.form-success-tick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.form-success-tick::after {
  content: '';
  width: 0.9rem;
  height: 0.5rem;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg) translateY(-2px);
  display: block;
}
.form-success h3 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--offwhite); letter-spacing: -0.01em; }
.form-success p { font-size: 0.88rem; color: rgba(217,215,209,.6); max-width: 300px; line-height: 1.65; }

/* ─── FOOTER ─── */
.footer-bg { background: #0b0b0b; border-top: 1px solid rgba(217,215,209,.05); }
.footer-main { max-width: 1400px; margin: 0 auto; padding: 4.5rem 3rem 3.5rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 3rem; }
.footer-brand img { height: 38px; width: auto; opacity: .82; margin-bottom: 1.25rem; object-fit: contain; }
.footer-brand p { font-size: 0.82rem; line-height: 1.68; color: rgba(217,215,209,.38); max-width: 240px; }
.footer-col h4 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(217,215,209,.32); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a, .footer-col ul span { font-size: 0.82rem; color: rgba(217,215,209,.48); transition: color var(--t-fast); display: block; }
.footer-col ul a:hover { color: var(--gold); }
.footer-hours { font-size: 0.8rem; color: rgba(217,215,209,.38); line-height: 1.75; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(217,215,209,.07); }
.footer-lower { max-width: 1400px; margin: 0 auto; padding: 1.5rem 3rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(217,215,209,.05); gap: 1rem; flex-wrap: wrap; }
.footer-lower p { font-size: 0.74rem; color: rgba(217,215,209,.22); }
.footer-lower a { color: rgba(183,138,60,.48); transition: color var(--t-fast); }
.footer-lower a:hover { color: var(--gold); }

/* ─── MOBILE CTA BAR ─── */
.mob-bar { display: none; position: fixed; inset: auto 0 0; z-index: 600; background: rgba(18,18,18,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid rgba(183,138,60,.22); padding: 0.6rem 0.75rem env(safe-area-inset-bottom, 0.4rem); grid-template-columns: 1fr 1fr 1fr; gap: 0.45rem; }
.mob-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem; padding: 0.65rem 0.5rem; border-radius: 4px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; transition: opacity var(--t-fast), transform var(--t-fast); text-decoration: none; border: none; min-height: 52px; cursor: pointer; }
.mob-btn:active { opacity: .75; transform: scale(.96); }
.mob-btn.call { background: var(--green); color: var(--offwhite); }
.mob-btn.wa   { background: #22c55e; color: #fff; }
.mob-btn.qte  { background: var(--gold); color: var(--charcoal); }
/* mob-icon: constrain SVG size in mobile bar */
.mob-btn svg { width: 16px !important; height: 16px !important; display: block; margin: 0 auto 0.2rem; }

/* ─── WA FLOAT ─── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 400; width: 52px; height: 52px; border-radius: 50%; background: #22c55e; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(34,197,94,.38); transition: transform var(--t-fast), box-shadow var(--t-fast); animation: waPulse 3.5s ease-in-out infinite; text-decoration: none; }
.wa-float svg { width: 24px !important; height: 24px !important; display: block; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(34,197,94,.55); animation: none; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 18px rgba(34,197,94,.38); } 50% { box-shadow: 0 4px 28px rgba(34,197,94,.55), 0 0 0 7px rgba(34,197,94,.1); } }

/* ─── RESPONSIVE ─── */
@media (max-width: 1280px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .trust-pillars { grid-template-columns: repeat(3,1fr); border-bottom: none; }
  .trust-pillar { border-bottom: 1px solid var(--stone); }
  .trust-pillar:nth-child(3n) { border-right: none; }
  .trust-pillar:nth-child(n+4) { border-bottom: none; }
  .coverage-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sc--hero { grid-column: span 2; grid-row: span 1; }
  .sc--hero .sc-inner { min-height: 240px; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-imgs { height: 310px; }
  .trust-stats { grid-template-columns: 1fr; }
  .trust-pillars { grid-template-columns: 1fr 1fr; }
  .trust-pillar:nth-child(odd) { border-right: 1px solid var(--stone); }
  .trust-pillar:nth-child(even) { border-right: none; }
  .trust-pillar:nth-child(n) { border-bottom: 1px solid var(--stone); }
  .trust-pillar:nth-child(n+5) { border-bottom: none; }
  .choose-grid { grid-template-columns: 1fr; max-width: 560px; }
  .choose-card { min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 200px; }
  .g-item:first-child { grid-row: span 1; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-line { display: none; }
  .p-step { padding: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .tc--lead { padding: 2.75rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-layout > .rv[style] { position: static !important; top: auto !important; }
  .faq-cta-box { max-width: 620px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: repeat(2,1fr); }
  .cta-strip { padding: 1.5rem; }
}
@media (max-width: 768px) {
  .nav { padding: 0.9rem 1.25rem; }
  .section { padding: 4.5rem 1.5rem; }
  .hero-content { padding: 0 1.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-bar { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .sc--hero { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; padding: 0 1.5rem; }
  .g-item { height: 240px; }
  .gallery-hdr { padding: 0 1.5rem; flex-direction: column; align-items: flex-start; }
  .supply-bg::after { display: none; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr; gap: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2.5rem; }
  .footer-lower { padding: 1.25rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .mob-bar { display: grid; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
  .wa-float { bottom: 5.5rem; right: 1.25rem; width: 48px; height: 48px; font-size: 1.2rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-p, .btn-s { width: 100%; justify-content: center; }
  .trust-bar { gap: 0.9rem; }
  .trust-stats { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .faq-cta-box { padding: 2rem 1.5rem; }
}

/* ─── SVG ICON SYSTEM ─── */
/* Explicit px sizing on ALL svg elements to prevent viewBox blowout */
svg { overflow: visible; }

/* Functional inline SVGs — size controlled by class on the svg element itself */
.btn-icon      { width: 16px !important; height: 16px !important; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.mob-icon      { width: 16px !important; height: 16px !important; display: block; margin: 0 auto 0.2rem; }
.cta-link-icon { width: 16px !important; height: 16px !important; flex-shrink: 0; opacity: 0.8; }

/* Arrow in bld-link: tiny, inline */
.bld-link svg  { width: 12px !important; height: 12px !important; flex-shrink: 0; }

/* Reviews link arrow */
.reviews-link svg { width: 12px !important; height: 12px !important; flex-shrink: 0; opacity: 0.7; }

/* WA float: explicit 22px */
.wa-float svg  { width: 22px !important; height: 22px !important; }

/* Form success tick */
.form-success-tick svg { width: 20px !important; height: 20px !important; }

/* ─── WHY POINTS — restored gold dot, no icons ─── */
.why-pt { gap: 1rem; }
.why-pt::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.52rem;
  flex-shrink: 0;
}

/* ─── STAT SUFFIX ─── */
.stat-suffix {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.04em;
}
/* stat-num — text variant (no animation needed) */
.stat-num[data-text] {
  font-size: 2.6rem;
  letter-spacing: -0.03em;
}

/* ─── REFELTING SECTION ─── */
.refelt-wrap {
  background: var(--offwhite);
  overflow: hidden;
  padding: 6.5rem 3rem;
  position: relative;
}
.refelt-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 3rem; right: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone) 25%, var(--stone) 75%, transparent);
}
/* Override .section padding — refelt uses full-bleed grid */
.refelt-wrap .section {
  padding: 0 !important;
  max-width: 100% !important;
}
.refelt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  min-height: 560px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--charcoal);
  border: 1px solid rgba(22,22,22,.08);
  box-shadow: 0 24px 70px rgba(22,22,22,.12);
}
.refelt-img {
  overflow: hidden;
  position: relative;
  min-height: 420px;
}
.refelt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}
.refelt-img:hover img { transform: scale(1.03); }
.refelt-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16,16,16,.72) 100%);
  pointer-events: none;
}
.refelt-img-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.4rem;
  z-index: 1;
  max-width: 420px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,243,236,.82);
}
.refelt-copy {
  padding: clamp(3rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
}
.refelt-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), rgba(183,138,60,0));
}
.refelt-copy .s-h2 { margin-bottom: 1.1rem; color: var(--offwhite); }
.refelt-copy > p {
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(217,215,209,.65);
  margin-bottom: 1.5rem;
}
.refelt-pts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(217,215,209,.1);
  border-left: 1px solid rgba(217,215,209,.1);
  margin-bottom: 2rem;
}
.refelt-pts li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--offwhite);
  min-height: 76px;
  padding: 1rem;
  border-right: 1px solid rgba(217,215,209,.1);
  border-bottom: 1px solid rgba(217,215,209,.1);
}
.refelt-check {
  display: inline-block;
  width: 12px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.6rem;
  align-self: flex-start;
}
.refelt-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.refelt-phone {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,243,236,.58);
  transition: color var(--t-fast);
}
.refelt-phone:hover { color: var(--gold); }

/* ─── BUILDINGS SECTION ─── */
.buildings-bg { background: var(--offwhite); padding: 7rem 0 6.5rem; position: relative; }
.buildings-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 3rem; right: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone) 25%, var(--stone) 75%, transparent);
}
.buildings-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.buildings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: transparent;
  border: 0;
}
.bld-card {
  background: #edeae2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .76fr);
  gap: 1px;
  min-height: 250px;
  border: 1px solid var(--stone);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  overflow: hidden;
}
.bld-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
  min-height: 330px;
}
.bld-card:hover {
  border-color: rgba(183,138,60,.55);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(22,22,22,.1);
}
.bld-copy {
  background: var(--offwhite);
  padding: clamp(1.5rem, 2.4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.bld-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.bld-kicker::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.bld-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.18;
}
.bld-card p {
  font-size: 0.9rem;
  line-height: 1.68;
  color: #666;
  flex: 1;
  margin-bottom: 1.4rem;
}
.bld-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  transition: gap var(--t-fast), color var(--t-fast);
  margin-top: auto;
}
.bld-link svg { width: 14px; height: 14px; }
.bld-link:hover { gap: 0.65rem; color: var(--gold); }
.bld-photo {
  min-height: 100%;
  background: #111;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.bld-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,16,16,0) 45%, rgba(16,16,16,.7) 100%);
  pointer-events: none;
}
.bld-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(.95) contrast(1.02);
  transition: transform .65s var(--ease-smooth), filter var(--t-med);
}
.bld-card:hover .bld-photo img {
  transform: scale(1.045);
  filter: saturate(1.02) contrast(1.04);
}
.bld-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 1.1rem;
  bottom: 1rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.62rem;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,243,236,.86);
  max-width: 150px;
}
.buildings-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--stone-dk);
  line-height: 1.65;
  max-width: 680px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
}

/* ─── RESPONSIVE: REFELT + BUILDINGS ─── */
@media (max-width: 1280px) {
  .buildings-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .refelt-grid { grid-template-columns: 1fr; }
  .refelt-img { height: 380px; min-height: 380px; }
  .refelt-copy { padding: 3rem 3rem; }
  .buildings-grid { grid-template-columns: 1fr; }
  .bld-card,
  .bld-card:first-child { grid-column: auto; grid-template-columns: minmax(0, 1fr) minmax(220px, .72fr); min-height: 260px; }
}
@media (max-width: 768px) {
  .refelt-wrap { padding: 4.5rem 1.5rem; }
  .refelt-img { height: 280px; min-height: 280px; }
  .refelt-copy { padding: 2.5rem 1.5rem; }
  .refelt-copy::before { width: 100%; height: 3px; }
  .refelt-pts { grid-template-columns: 1fr; }
  .refelt-pts li { min-height: auto; }
  .bld-card,
  .bld-card:first-child { grid-template-columns: 1fr; min-height: 0; }
  .bld-photo { min-height: 210px; order: -1; }
  .buildings-head { align-items: flex-start; }
}
