/* ═══════════════════════════════════════════════════════
   WORTH IT WALLS — GLOBAL STYLESHEET
   Black & Gold Construction Theme
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --charcoal: #1c1c1c;
  --dark: #262626;
  --mid: #555;
  --light-mid: #888;
  --light: #ccc;
  --off-white: #f5f3ee;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #dfc06f;
  --gold-dark: #a88832;
  --display: 'Bebas Neue', Impact, sans-serif;
  --body: 'Work Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--body); color: var(--white); background: var(--black); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── PRELOADER ─── */
.preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-logo { width: 140px; animation: goldPulse 1.8s ease-in-out infinite; }
@keyframes goldPulse { 0%,100%{opacity:0.4;transform:scale(0.95)} 50%{opacity:1;transform:scale(1)} }

/* ─── NAVIGATION — centered logo, links split ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 40px; transition: all 0.4s ease;
}
nav.scrolled { background: rgba(10,10,10,0.95); padding: 16px 40px; backdrop-filter: blur(16px); }
.nav-center { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-left, .nav-right { display: flex; gap: 24px; }
.nav-center a, .nav-links a {
  font-family: var(--body); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  transition: color 0.3s; position: relative;
}
.nav-center a::after, .nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-center a:hover, .nav-center a.active, .nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-center a:hover::after, .nav-center a.active::after, .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-logo-wrap { flex-shrink: 0; }
.nav-logo { height: 44px; }
.nav-cta-btn {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 8px 20px !important; font-weight: 700 !important;
  letter-spacing: 0.1em !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: 0.3s; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--display); font-size: 2.2rem; color: var(--white); letter-spacing: 0.06em; }
.mobile-menu a:hover { color: var(--gold); }

/* ─── SPLIT HERO (image right, content left) ─── */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
}
.hero-content-panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 60px 80px 80px; background: var(--black); position: relative;
}
.hero-content-panel::after {
  content: 'BUILT'; position: absolute; bottom: 40px; left: 80px;
  font-family: var(--display); font-size: 8rem; line-height: 1;
  color: rgba(201,168,76,0.1); letter-spacing: 0.05em; pointer-events: none;
}
.hero-eyebrow {
  font-weight: 600; font-size: 0.68rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero-split h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3.5rem, 6vw, 5.5rem); line-height: 0.95;
  letter-spacing: 0.02em; color: var(--white); margin-bottom: 24px;
}
.hero-split h1 span { color: var(--gold); }
.hero-desc {
  font-weight: 300; font-size: 0.95rem; line-height: 1.8;
  color: rgba(255,255,255,0.5); max-width: 420px; margin-bottom: 36px;
}
.hero-img-panel { position: relative; overflow: hidden; }
.hero-img-panel img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 15%);
}

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 14px 36px; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost {
  display: inline-block; border: 1px solid rgba(201,168,76,0.4); color: var(--gold);
  padding: 14px 36px; font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── PAGE HERO (inner pages — horizontal bar) ─── */
.page-hero {
  padding: 160px 80px 60px; background: var(--black); position: relative; overflow: hidden;
}
.page-hero::before {
  content: attr(data-label); position: absolute; top: 50%; right: 80px;
  transform: translateY(-50%); font-family: var(--display);
  font-size: clamp(6rem, 12vw, 12rem); color: rgba(201,168,76,0.1);
  letter-spacing: 0.04em; white-space: nowrap; pointer-events: none;
}
.page-hero h1 {
  font-family: var(--display); font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: 0.02em; line-height: 0.95; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-weight: 300; font-size: 0.95rem; color: rgba(255,255,255,0.45); max-width: 500px; line-height: 1.7; }
.gold-line { width: 50px; height: 3px; background: var(--gold); margin: 20px 0; }

/* ─── PANEL SECTIONS (full-width, alternating) ─── */
.panel { padding: 100px 80px; position: relative; }
.panel-dark { background: var(--off-black); }
.panel-charcoal { background: var(--charcoal); }
.panel-gold { background: var(--gold); color: var(--black); }
.panel-cream { background: var(--off-white); color: var(--black); }

/* ─── OFFSET GRID (image offset from text) ─── */
.offset-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.offset-grid.flip .og-img { order: -1; }
.og-text .eyebrow {
  font-weight: 600; font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.og-text h2 {
  font-family: var(--display); font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: 0.02em; line-height: 0.98; margin-bottom: 20px;
}
.og-text p {
  font-weight: 300; font-size: 0.9rem; line-height: 1.85;
  color: rgba(255,255,255,0.55); margin-bottom: 12px;
}
.panel-cream .og-text p { color: var(--mid); }
.panel-cream .og-text h2 { color: var(--black); }
.og-img { position: relative; }
.og-img img { width: 100%; height: 440px; object-fit: cover; }
.og-img::before {
  content: ''; position: absolute; top: -12px; left: -12px;
  width: 60px; height: 60px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold);
  z-index: 1; pointer-events: none;
}

/* ─── SERVICES STRIP (horizontal cards) ─── */
.services-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: 100%; overflow: hidden;
}
.strip-card {
  position: relative; padding: 50px 40px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-right: 1px solid rgba(201,168,76,0.1);
  transition: background 0.4s;
}
.strip-card:last-child { border-right: none; }
.strip-card:hover { background: rgba(201,168,76,0.04); }
.strip-num {
  font-family: var(--display); font-size: 5rem; line-height: 1;
  color: rgba(201,168,76,0.15); position: absolute; top: 30px; left: 40px;
}
.strip-card h3 {
  font-family: var(--display); font-size: 1.6rem; letter-spacing: 0.03em;
  color: var(--white); margin-bottom: 10px;
}
.strip-card p {
  font-weight: 300; font-size: 0.85rem; line-height: 1.75;
  color: rgba(255,255,255,0.4);
}
.strip-link {
  margin-top: 16px; font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  transition: color 0.3s; display: inline-block;
}
.strip-link:hover { color: var(--gold-light); }

/* ─── DETAIL LIST (for service pages) ─── */
.detail-list { max-width: 700px; }
.detail-list.centered { margin: 0 auto; }
.detail-item {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.panel-cream .detail-item { border-color: rgba(0,0,0,0.08); }
.detail-marker {
  width: 8px; height: 8px; background: var(--gold); flex-shrink: 0;
  margin-top: 8px;
}
.detail-item h4 { font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
.detail-item p { font-weight: 300; font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.5); }
.panel-cream .detail-item h4 { color: var(--black); }
.panel-cream .detail-item p { color: var(--mid); }

/* ─── STAT BAND (horizontal gold bar) ─── */
.stat-band {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--gold); color: var(--black);
}
.stat-cell {
  text-align: center; padding: 40px 30px;
  border-right: 1px solid rgba(0,0,0,0.1);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .num {
  font-family: var(--display); font-size: 3rem; line-height: 1;
  color: var(--black); margin-bottom: 4px;
}
.stat-cell .label { font-weight: 500; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.6); }

/* ─── CTA BAND ─── */
.cta-band {
  padding: 80px 80px; text-align: center; background: var(--charcoal);
}
.cta-band h2 {
  font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 0.02em; margin-bottom: 16px;
}
.cta-band h2 span { color: var(--gold); }
.cta-band p {
  font-weight: 300; font-size: 0.92rem; color: rgba(255,255,255,0.4);
  max-width: 480px; margin: 0 auto 32px; line-height: 1.7;
}

/* ─── CONTACT FORM ─── */
.contact-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-family: var(--display); font-size: 2.2rem; letter-spacing: 0.02em; margin-bottom: 16px; }
.c-detail { margin-bottom: 22px; }
.c-label { font-weight: 600; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.c-value { font-weight: 300; font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.c-value a { color: var(--white); transition: color 0.3s; }
.c-value a:hover { color: var(--gold); }
.form-wrap { display: flex; flex-direction: column; gap: 20px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.f-field { display: flex; flex-direction: column; }
.f-field label { font-weight: 500; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light-mid); margin-bottom: 8px; }
.f-field input, .f-field select, .f-field textarea {
  padding: 12px 16px; background: var(--charcoal); border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--body); font-size: 0.9rem; color: var(--white); transition: border-color 0.3s;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: var(--gold); }
.f-field select { appearance: none; }
.f-field select option { background: var(--charcoal); }
.f-submit {
  align-self: flex-start; background: var(--gold); color: var(--black); border: none;
  padding: 14px 44px; font-family: var(--body); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.3s;
}
.f-submit:hover { background: var(--gold-light); }

/* ─── FOOTER ─── */
footer { background: var(--black); border-top: 1px solid rgba(201,168,76,0.1); padding: 50px 80px 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-brand p { font-weight: 300; font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 300px; margin-top: 14px; }
.foot-logo { height: 40px; margin-bottom: 4px; }
.foot-col h5 { font-family: var(--display); font-size: 1rem; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 14px; }
.foot-col a { display: block; font-weight: 300; font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 10px; transition: color 0.3s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-content-panel { padding: 140px 40px 60px; }
  .hero-content-panel::after { font-size: 5rem; left: 40px; bottom: 20px; }
  .hero-img-panel { height: 50vh; }
  .hero-img-panel::after { background: linear-gradient(to top, var(--black) 0%, transparent 20%); }
  .panel { padding: 70px 40px; }
  .page-hero { padding: 140px 40px 50px; }
  .offset-grid { grid-template-columns: 1fr; gap: 40px; }
  .offset-grid.flip .og-img { order: 0; }
  .services-strip { grid-template-columns: 1fr; }
  .strip-card { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.08); }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .f-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .cta-band { padding: 60px 30px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-center .nav-left, .nav-center .nav-right, .nav-links { display: none; }
  .hamburger { display: flex; position: absolute; right: 24px; }
  .hero-content-panel { padding: 120px 24px 50px; }
  .panel { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 40px; }
  .og-img img { height: 300px; }
  footer { padding: 40px 24px 24px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
