/* ── TOKENS ── */
:root {
  --gold: #F5A623;
  --gold-light: #FFD080;
  --black: #000000;
  --off-black: #0D0D0D;
  --card-dark: #111111;
  --border-dark: #1A1A1A;
  --border-mid: #222222;
  --white: #FFFFFF;
  --text-sec: #CCCCCC;
  --text-dim: #888888;
  --text-ghost: #666666;
  --text-muted: #444444;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-size: 17px; line-height: 1.65; overflow-x: hidden; }

/* ── GOLD RULE ── */
.gold-rule { width: 100%; height: 1px; background: var(--gold); flex-shrink: 0; transform: scaleX(0); transform-origin: left; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.gold-rule.revealed { transform: scaleX(1); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1A1A1A;
  transition: border-bottom-color 0.4s ease;
}
nav.scrolled { border-bottom-color: rgba(245, 166, 35, 0.45); }
.urgency-banner ~ nav,
body:has(.urgency-banner) nav { top: 40px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; z-index: 301; }
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 700; letter-spacing: 0.04em; color: var(--white); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.25s ease; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 10px 22px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; z-index: 301; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 108px; left: 0; right: 0; bottom: 0; background: #000; z-index: 299; padding: 40px 5%; flex-direction: column; gap: 0; border-top: 1px solid var(--gold); overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); text-decoration: none; font-family: var(--font-display); font-size: 32px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; padding: 16px 0; border-bottom: 1px solid #1A1A1A; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mob-cta { margin-top: 20px; background: var(--gold); color: var(--black) !important; text-align: center; padding: 20px !important; border: none !important; font-size: 24px !important; }

/* ── SECTION RHYTHM ── */
.sec-black { background: var(--black); color: var(--white); }
.sec-white { background: #0a0a0a; color: var(--white); }
.sec-pad { padding: 96px 5%; }

/* ── KICKER LABELS ── */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.kicker-line { display: block; height: 2px; background: var(--gold); width: 0; transition: width 0.5s ease-out; }
.kicker-line.revealed { width: 36px; }
.kicker.on-white { color: var(--gold); }

/* ── HEADLINES — Barlow Condensed, weight contrast ── */
.h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.h1 .line-heavy { font-weight: 800; display: block; }
.h1 .line-light { font-weight: 400; font-style: italic; display: block; color: var(--text-sec); }
.h1 .line-light-dark { font-weight: 400; font-style: italic; display: block; color: #555555; }
.h1 .gold { color: var(--gold); }

.h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.h2 .line-heavy { font-weight: 800; display: block; }
.h2 .line-light { font-weight: 400; font-style: italic; display: block; }
.h2 .gold { color: var(--gold); }
.h2.on-black .line-light { color: var(--text-sec); }
.h2.on-white { color: var(--white); }
.h2.on-white .line-light { color: var(--text-sec); }

/* ── BODY ── */
.body-text { font-family: var(--font-body); font-size: 17px; font-weight: 400; line-height: 1.75; }
.body-text.on-white { color: var(--text-sec); }
.body-text.on-black { color: var(--text-sec); }
.body-text strong { font-weight: 600; color: inherit; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  text-decoration: none;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 18px 36px; border-radius: 0;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  animation: btnGlow 3s ease-in-out infinite;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); animation: none; box-shadow: 0 0 28px 8px rgba(245,166,35,0.3); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 0 72px 5%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  gap: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.80), rgba(0,0,0,0.88)),
    radial-gradient(900px 600px at 15% 40%, rgba(245,166,35,0.07), transparent 60%),
    radial-gradient(700px 400px at 85% 90%, rgba(141,211,255,0.04), transparent 65%),
    url('../Images/Edmonton-skyline.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: var(--black);
}
.hero-content { position: relative; z-index: 2; padding-right: 48px; }
.hero-right {
  align-self: stretch;
  position: relative;
  overflow: hidden;
  border-left: none;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  opacity: 0; animation: slideInLeft 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.15s;
}
.hero-kicker::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-h1 { opacity: 0; animation: headlineWipe 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.35s; }
.hero-sub {
  font-family: var(--font-body); font-size: 17px; font-weight: 400;
  color: var(--white); line-height: 1.65; max-width: 500px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.45s;
}
.hero-sub strong { font-weight: 600; }
.hero-cta-wrap {
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.6s;
}
.hero-microcopy {
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--text-dim); margin-top: 14px;
}


/* ── PROBLEM SECTION ── */
.problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 56px; }
.prob-body p { font-family: var(--font-body); font-size: 17px; font-weight: 400; color: var(--text-sec); line-height: 1.8; margin-bottom: 18px; }
.prob-body p strong { color: var(--white); font-weight: 600; }
.pain-list { display: flex; flex-direction: column; gap: 14px; }

/* FIX 7: ghosted background number, animated border */
.pain-card {
  background: #111111;
  border: 1px solid #222222;
  border-left: 3px solid #222222;
  padding: 22px 24px 22px 24px;
  position: relative;
  overflow: hidden;
  transition: border-left-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover { border-left-color: var(--gold); transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(245,166,35,0.2), 0 12px 36px rgba(245,166,35,0.1); }
.pain-card:hover .pain-ghost { opacity: 0.18; }
.pain-card-inner { position: relative; z-index: 2; }
/* Animated gold left border height */
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: -1px; width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease-out;
}
.pain-card.border-revealed::before { height: 100%; }
.pain-ghost {
  position: absolute; bottom: -8px; right: 12px;
  font-family: var(--font-display); font-size: 6rem; font-weight: 800;
  color: var(--gold); opacity: 0.13; line-height: 1;
  pointer-events: none; user-select: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.pain-ghost.ghost-revealed { opacity: 0.13; }
.pain-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 6px; letter-spacing: 0.02em;
}
.pain-card p {
  font-family: var(--font-body); font-size: 15px; font-weight: 400;
  color: var(--text-sec); line-height: 1.65;
}

/* ── SERVICES ── */
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.services-intro { font-family: var(--font-body); font-size: 17px; color: var(--text-sec); font-weight: 400; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #1A1A1A; }
.svc-card {
  background: #0D0D0D; padding: 44px 38px;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: background 0.25s;
  display: flex; flex-direction: column;
}
/* diagonal shimmer sweep */
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(245,166,35,0.06) 50%, transparent 65%);
  transition: left 0.75s ease;
  pointer-events: none; z-index: 1;
}
.svc-card:hover::before { left: 140%; }
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.svc-card:hover { background: #111; }
.svc-card:hover::after { transform: scaleX(1); }
/* FIX 4: large ghosted number, no icon */
.svc-ghost-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 800;
  color: var(--gold); opacity: 0.20;
  line-height: 1; margin-bottom: 12px;
  transition: opacity 0.3s;
}
.svc-card:hover .svc-ghost-num { opacity: 0.38; }
.svc-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 12px; letter-spacing: 0.02em;
}
.svc-desc { font-family: var(--font-body); font-size: 15px; color: var(--text-sec); line-height: 1.7; font-weight: 400; }
.svc-value {
  font-family: var(--font-body); font-size: 12px; color: var(--gold);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em;
  margin-top: 14px;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-family: var(--font-body); font-size: 13px;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); opacity: 0; transition: opacity 0.2s;
}
.svc-card:hover .svc-link { opacity: 1; }

/* ── PACKAGES ── */
.pkg-sub { font-family: var(--font-body); font-size: 17px; color: var(--text-sec); font-weight: 400; line-height: 1.7; margin-bottom: 52px; max-width: 520px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #1a1a1a; }
.pkg-card { background: #111111; padding: 44px 36px 40px; position: relative; display: flex; flex-direction: column; overflow: hidden; }
.pkg-card.featured { background: var(--black); color: var(--white); }
.pkg-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
/* ghosted "02" on featured card */
.pkg-featured-ghost {
  position: absolute; bottom: -10px; right: 12px;
  font-family: var(--font-display); font-size: 7rem; font-weight: 800;
  color: var(--gold); opacity: 0.08; line-height: 1;
  pointer-events: none; user-select: none; z-index: 0;
  transition: opacity 0.3s;
}
.pkg-featured-ghost.ghost-revealed { opacity: 0.08; }
.pkg-card-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.pkg-badge {
  display: inline-block; font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 20px; border-radius: 0;
}
.badge-default { background: #1a1a1a; color: #888888; }
.badge-featured { background: var(--gold); color: var(--black); }
.badge-addon { background: #1a1a1a; color: #888888; }
.pkg-title {
  font-family: var(--font-display); font-size: clamp(48px, 4vw, 56px); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 16px; line-height: 1;
}
.pkg-card.featured .pkg-title { color: var(--white); }
/* Price with gold dollar sign */
.pkg-price-wrap { display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px; }
.pkg-dollar { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--gold); }
.pkg-num { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; }
.pkg-card.featured .pkg-num { color: var(--white); }
.pkg-period { font-family: var(--font-body); font-size: 14px; color: #888888; margin-bottom: 24px; }
.pkg-card.featured .pkg-period { color: #888888; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; flex: 1; }
.pkg-features li {
  font-family: var(--font-body); font-size: 15px; font-weight: 400;
  color: var(--text-sec); line-height: 1.6; display: flex; gap: 10px; align-items: flex-start;
}
.pkg-card.featured .pkg-features li { color: var(--text-sec); }
.pkg-features li::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.pkg-cta {
  display: block; text-align: center; text-decoration: none;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px; margin-top: auto; border-radius: 0;
  transition: background 0.2s;
}
.cta-gold { background: var(--gold); color: var(--black); }
.cta-gold:hover { background: var(--gold-light); }
.cta-dark { background: var(--black); color: var(--white); }
.cta-dark:hover { background: #1A1A1A; }
.pkg-disclaimer { font-family: var(--font-body); font-size: 14px; color: #888888; text-align: center; margin-top: 28px; }
.pkg-outcome { font-family: var(--font-body); font-size: 15px; color: var(--white); font-weight: 500; line-height: 1.6; margin-bottom: 20px; }

/* ── WHO WE SERVE ── */
.trades-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #1A1A1A; margin-top: 52px; }
.trade-card {
  background: #0D0D0D; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.trade-card:hover { background: #111; border-color: #F5A623; }
.trade-name { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; line-height: 1; transition: color 0.2s; }
.trade-card:hover .trade-name { color: #F5A623; }
.trade-loc { font-family: var(--font-body); font-size: 13px; color: #888888; }

/* ── PORTFOLIO ── */
.port-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
.port-card {
  background: #111111;
  border: 1px solid #222222;
  border-top: 3px solid var(--gold);
  width: 100%;
  overflow: hidden;
}
.port-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0a;
}
.port-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.port-card:hover .port-img { transform: scale(1.03); }
.port-body { padding: 28px 32px 32px; }
.port-name { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.port-trade { font-family: var(--font-body); font-size: 14px; color: #888888; margin-bottom: 16px; }
.port-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.port-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(245,166,35,0.1);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 0;
}
.port-result {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-sec);
  font-style: italic;
  border-top: 1px solid #222222;
  padding-top: 16px;
}

/* ── TESTIMONIAL — FIX 8 ── */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 1100px; margin: 44px auto 0; }
.testi-card {
  background: #111111; border-top: 3px solid var(--gold);
  padding: 48px 52px 44px; position: relative; overflow: hidden;
}
/* FIX 8: large decorative quote mark */
.testi-deco-quote {
  position: absolute; top: -28px; left: 24px;
  font-family: var(--font-display); font-size: 10rem; font-weight: 800;
  color: var(--gold); opacity: 0.12; line-height: 1;
  pointer-events: none; user-select: none; z-index: 0;
  transition: opacity 0.3s;
}
.testi-deco-quote.ghost-revealed { opacity: 0.12; }
.testi-content { position: relative; z-index: 1; }
.testi-quote {
  font-family: var(--font-body); font-size: 20px; font-weight: 400;
  color: var(--white); line-height: 1.7; margin-bottom: 28px;
}
.testi-attr {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.testi-tag {
  display: inline-block; font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; background: #1A1A1A; color: var(--gold);
  border: 1px solid rgba(245,166,35,0.3); border-radius: 0;
}

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #1a1a1a; margin-top: 52px; }
.proc-step { background: #111111; padding: 40px 28px; position: relative; }
.proc-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #333333; transition: background 0.3s; }
.proc-step:hover::before { background: var(--gold); }
/* FIX 4: ghosted number, no icon */
.proc-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 14px;
}
.proc-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  color: var(--white); margin-bottom: 10px; letter-spacing: 0.02em;
}
.proc-concrete {
  font-family: var(--font-body); font-size: 13px; color: var(--gold);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em;
  line-height: 1.55; margin-bottom: 10px;
}
.proc-desc { font-family: var(--font-body); font-size: 14px; color: var(--text-sec); line-height: 1.7; font-weight: 400; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; margin-top: 52px; }
.contact-info-text { font-family: var(--font-body); font-size: 17px; color: var(--text-sec); font-weight: 400; line-height: 1.8; margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.method-card { display: flex; align-items: center; gap: 16px; text-decoration: none; background: #111111; border: 1px solid #222222; border-left: 4px solid transparent; padding: 18px 22px 18px 19px; transition: border-left-color 0.2s, background 0.2s; border-radius: 0; }
a[href^="tel:"].method-card:hover { background: #111111; border-left-color: #ffffff; }
a[href*="wa.me"].method-card:hover { background: #0a2e1a; border-left-color: #25D366; }
a[href^="mailto:"].method-card:hover { background: #1a1400; border-left-color: #F5A623; }
.method-icon { width: 40px; height: 40px; background: rgba(245,166,35,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.method-label { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.method-value { font-family: var(--font-body); font-size: 16px; color: var(--white); font-weight: 400; }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-btn { display: flex; align-items: center; gap: 8px; text-decoration: none; padding: 10px 18px; font-family: var(--font-body); font-size: 14px; color: #ffffff; font-weight: 500; letter-spacing: 0.04em; transition: background 0.2s; border-radius: 0; }
.social-btn--instagram { background: #1a1a1a; border: 1px solid #E1306C; }
.social-btn--instagram:hover { background: #2a1a1f; }
.social-btn--facebook { background: #1a1a1a; border: 1px solid #1877F2; }
.social-btn--facebook:hover { background: #141d2e; }
.form-trust-signal { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #222222; }
.form-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 20px; letter-spacing: 0.02em; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #555555; }
.form-input, .form-textarea { background: #111111; border: 1px solid #222222; color: var(--white); font-family: var(--font-body); font-size: 16px; font-weight: 400; padding: 14px 16px; border-radius: 0; outline: none; transition: border-color 0.2s; width: 100%; appearance: none; }
.form-input::placeholder, .form-textarea::placeholder { color: #555555; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select { background: #111111; border: 1px solid #222222; color: var(--white); font-family: var(--font-body); font-size: 16px; font-weight: 400; padding: 14px 16px; border-radius: 0; outline: none; transition: border-color 0.2s; width: 100%; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
.form-select option { background: #111111; }
.form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-submit { background: var(--gold); color: var(--black); border: none; font-family: var(--font-body); font-size: 17px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 18px; cursor: pointer; border-radius: 0; transition: background 0.2s; width: 100%; margin-top: 4px; }
.form-submit:hover { background: var(--gold-light); }
.form-note { font-family: var(--font-body); font-size: 13px; color: #555555; text-align: center; margin-top: 8px; }
.fs-success { display: none; background: #111111; border-left: 3px solid var(--gold); color: var(--white); font-family: var(--font-body); font-size: 16px; font-weight: 400; padding: 20px 24px; line-height: 1.6; }
.fs-error { display: none; background: #1a0a0a; border-left: 3px solid #c0392b; color: #e74c3c; font-family: var(--font-body); font-size: 14px; font-weight: 400; padding: 14px 18px; line-height: 1.5; margin-bottom: 8px; }
[data-fs-field-error] { font-family: var(--font-body); font-size: 12px; color: #c0392b; margin-top: 4px; display: block; }

/* ── CTA BANNER ── */
.cta-banner { text-align: center; }
.cta-rule { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 20px; }
.cta-h2 { font-family: var(--font-display); font-size: clamp(44px, 5.5vw, 68px); line-height: 0.94; letter-spacing: -0.01em; margin-bottom: 20px; color: var(--white); }
.cta-h2 .line-heavy { font-weight: 800; display: block; }
.cta-h2 .line-light { font-weight: 400; font-style: italic; display: block; color: var(--text-sec); }
.cta-h2 .gold { color: var(--gold); }
.cta-sub { font-family: var(--font-body); font-size: 17px; color: var(--text-sec); font-weight: 400; line-height: 1.75; margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-fine { font-family: var(--font-body); font-size: 15px; color: var(--text-dim); margin-top: 24px; }
.cta-scroll-hint { font-family: var(--font-body); font-size: 14px; color: #888888; margin-top: 14px; }
.cta-scroll-hint a { color: rgba(245,166,35,0.65); text-decoration: none; transition: color 0.2s; }
.cta-scroll-hint a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid var(--gold); padding: 64px 5% 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-about { font-family: var(--font-body); font-size: 14px; color: #999999; line-height: 1.7; margin-top: 14px; font-weight: 400; }
.footer-col-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: var(--font-body); color: #999999; text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-body); color: #999999; font-size: 14px; font-weight: 400; transition: color 0.2s; }
.footer-contact-item:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.fsocial-btn { width: 36px; height: 36px; background: #1a1a1a; border: 1px solid #222; display: flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 0; transition: border-color 0.2s, background 0.2s; }
.fsocial-btn--instagram:hover { background: #2a1a1f; border-color: #E1306C; }
.fsocial-btn--facebook:hover { background: #141d2e; border-color: #1877F2; }
.fsocial-btn--whatsapp:hover { background: #0d1f15; border-color: #25D366; }
.footer-bottom { border-top: 1px solid #1A1A1A; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 13px; color: #999999; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Hero kicker — slides in from left */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hero headline — wipes upward through a clip mask */
@keyframes headlineWipe {
  from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(10px); }
  to   { opacity: 1; clip-path: inset(0 0 0% 0);   transform: translateY(0); }
}

/* CTA button breathing gold glow */
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
  50%       { box-shadow: 0 0 24px 6px rgba(245, 166, 35, 0.22); }
}


.anim-fade { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.anim-fade.revealed { opacity: 1; transform: translateY(0); }

/* Section h2 headings — standard fade+rise (no clip-path override) */

.anim-stagger-1 { transition-delay: 0.1s; }
.anim-stagger-2 { transition-delay: 0.2s; }
.anim-stagger-3 { transition-delay: 0.3s; }
.anim-stagger-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; } .hamburger { display: flex; }
  .problem-layout, .services-header, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .trades-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .port-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .trades-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .h2 { font-size: 36px; }
  .pkg-title { font-size: 40px; }
}

/* ── GRAIN TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  mix-blend-mode: screen;
}

/* ── URGENCY BANNER ── */
.urgency-banner {
  width: 100%;
  background: #F5A623;
  border-bottom: none;
  padding: 10px 5%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.03em;
  position: sticky;
  top: 0;
  z-index: 500;
}
.urgency-banner a { color: #000000; font-weight: 700; text-decoration: none; }
.urgency-banner a:hover { text-decoration: underline; }
.urgency-banner.hidden { display: none; }
.banner-pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000000;
  box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
  animation: bannerDotPulse 2s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 10px;
  flex-shrink: 0;
}
@keyframes bannerDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.5); transform: scale(1); }
  50% { box-shadow: 0 0 0 5px rgba(0,0,0,0); transform: scale(1.15); }
}
.urgency-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.urgency-close:hover { opacity: 1; }


/* ── PORTFOLIO CAROUSEL ── */
.port-carousel-wrap {
  margin-top: 52px;
  overflow: hidden;
  position: relative;
}
.port-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: 8px;
}
.port-carousel:active { cursor: grabbing; }
.port-carousel::-webkit-scrollbar { display: none; }
.port-carousel-card {
  flex: 0 0 42vw;
  max-width: 42vw;
  scroll-snap-align: start;
}
.port-badge--soon {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
}
@media (max-width: 900px) {
  .port-carousel-card { flex: 0 0 80vw; max-width: 80vw; }
}
@media (max-width: 600px) {
  .port-carousel-card { flex: 0 0 90vw; max-width: 90vw; }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid rgba(245,166,35,0.3);
  border-bottom: 1px solid rgba(245,166,35,0.3);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before, .marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(to right, #0a0a0a, transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left,  #0a0a0a, transparent); }
.marquee-strip .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999999;
  white-space: nowrap;
  padding: 0 20px;
  display: inline-block;
}
.marquee-sep {
  color: rgba(245,166,35,0.45);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── LIVE FEED ── */
.live-feed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  overflow: hidden;
}
.live-feed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0.5;
}
.live-feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5A623;
  box-shadow: 0 0 8px rgba(245,166,35,0.8);
  animation: livePulse 2s ease-in-out infinite;
}
.live-feed-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(245,166,35,0.7);
  text-transform: uppercase;
}
.live-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  flex: 1;
  overflow: hidden;
}
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,166,35,0.06);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  width: 100%;
}
.feed-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.feed-item.fading {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.feed-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F5A623;
  box-shadow: 0 0 6px rgba(245,166,35,0.7);
  flex-shrink: 0;
  margin-top: 6px;
}
.feed-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.feed-event {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feed-detail {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}
.feed-time {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(245,166,35,0.45);
  margin-left: auto;
  flex-shrink: 0;
  padding-top: 2px;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 6px rgba(245,166,35,0.8); }
  50% { box-shadow: 0 0 14px rgba(245,166,35,1); }
}

/* ── CURSOR SPOTLIGHT ── */
#cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, rgba(245,166,35,0.06) 40px, transparent 80px);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
}

/* ── WHATSAPP FAB ── */
#whatsapp-fab {
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  z-index: 10000;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
}
