/* ============================================================
   ROOT & RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:     #c9a84c;
  --gold-d:   #a88a2a;
  --gold-l:   #e2c97e;
  --silver:   #c0c0c0;
  --silver-d: #8a8a9a;
  --dark:     #080808;
  --dark2:    #0f0f0f;
  --dark3:    #1a1a1a;
  --dark4:    #222222;
  --mid:      #333333;
  --light:    #f0ede8;
  --white:    #ffffff;
  --gray:     #888888;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:   4px;
  --shadow:   0 4px 32px rgba(0,0,0,.5);
  --gold-shadow: 0 8px 32px rgba(201,168,76,.25);
  --transition: .28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.dark-section { background: var(--dark2); color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '— ';
  opacity: .7;
}
.section-tag::after {
  content: ' —';
  opacity: .7;
}
.section-tag.center { display: block; text-align: center; }
.section-tag.light  { color: var(--gold); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: .03em;
  margin-bottom: 32px;
}
.section-title.center { text-align: center; }
.section-title.light  { color: var(--white); }
.section-title em { color: var(--gold); font-style: normal; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-orange {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 50%, var(--gold-d) 100%);
  color: var(--dark);
  border-color: var(--gold-d);
}
.btn-orange:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%);
  transform: translateY(-2px);
  box-shadow: var(--gold-shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--silver);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-lg  { padding: 18px 40px; font-size: .9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER / NAV
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(16px);
  padding: 6px 0;
  box-shadow: 0 1px 0 rgba(201,168,76,.2), 0 4px 24px rgba(0,0,0,.6);
}
.header.scrolled .nav-logo {
  height: 140px;
  transition: height .3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo-img-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo {
  height: 200px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,.5));
}
.footer-logo {
  height: 180px;
  width: auto;
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,.4));
}

.nav { margin-left: auto; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 12px;
  padding: 10px 24px;
  font-size: .75rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
  filter: brightness(.55) saturate(.7);
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.6) 55%,
    rgba(0,0,0,.35) 100%
  );
  z-index: 1;
}

/* Gold bottom border on hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 200px;
}

.hero-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-d), var(--gold));
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: .95;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 28px;
  animation: fadeUp .9s .2s both;
}
.hero-title em {
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeUp .9s .4s both;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .9s .6s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(192,192,192,.5);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1.2s both;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}

/* ============================================================
   SERVICES STRIP
============================================================ */
.services-strip {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 0;
}
.strip-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 20px 28px;
  border-right: 1px solid rgba(201,168,76,.15);
  transition: color var(--transition), background var(--transition);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { color: var(--gold); background: rgba(201,168,76,.05); }
.strip-icon { font-size: 1rem; }

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images { position: relative; }
.about-img { border-radius: var(--radius); }
.about-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,168,76,.15);
}
.about-img-secondary {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 48%;
  height: 200px;
  object-fit: cover;
  border: 3px solid var(--dark3);
  outline: 1px solid rgba(201,168,76,.3);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  color: var(--dark);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--gold-shadow);
}
.badge-years {
  font-family: var(--font-head);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--dark);
}
.badge-label {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 2px;
  color: var(--dark2);
}

.about-body {
  color: #555;
  margin-bottom: 18px;
  font-size: .97rem;
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--dark);
  font-weight: 500;
  font-size: .92rem;
}
.about-bullets li { display: flex; align-items: center; gap: 10px; }
.about-bullets li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */
.services { background: var(--dark2); }
.services .section-title { color: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.15);
  margin-top: 16px;
}

.service-card {
  background: var(--dark3);
  overflow: hidden;
  transition: background var(--transition);
}
.service-card:hover { background: var(--dark4); }

.service-img-wrap {
  overflow: hidden;
  height: 200px;
  position: relative;
}
.service-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-d), var(--gold), var(--gold-d));
  transform: scaleX(0);
  transition: transform .4s ease;
}
.service-card:hover .service-img-wrap::after { transform: scaleX(1); }
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.8) saturate(.8);
  transition: transform .5s ease, filter .4s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
  filter: brightness(.9) saturate(1);
}
.service-body { padding: 28px; }
.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: .06em;
  margin-bottom: 10px;
  color: var(--silver);
  transition: color var(--transition);
}
.service-card:hover .service-body h3 { color: var(--gold); }
.service-body p { color: #777; font-size: .88rem; line-height: 1.7; }

.service-card-cta {
  background: var(--dark);
  border-top: none;
}
.service-cta-inner {
  padding: 48px 32px;
  text-align: center;
}
.service-cta-inner h3 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  letter-spacing: .06em;
  margin-bottom: 12px;
  color: var(--gold);
}
.service-cta-inner p {
  color: var(--silver-d);
  margin-bottom: 28px;
  font-size: .9rem;
}

/* ============================================================
   PROJECTS / GALLERY
============================================================ */
.projects { background: var(--dark); }
.filter-bar {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
  background: var(--dark3);
  padding: 4px;
  border-radius: var(--radius);
  display: inline-flex;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  border: 1px solid rgba(201,168,76,.15);
}
.filter-btn {
  padding: 9px 24px;
  border-radius: 2px;
  border: none;
  background: transparent;
  color: var(--silver-d);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { color: var(--gold); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  color: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 2px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75) saturate(.7);
  transition: transform .6s ease, filter .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(.9) saturate(1);
}
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
/* Gold left border on hover */
.gallery-overlay::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.gallery-overlay h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: .06em;
  color: var(--white);
}
.gallery-overlay p {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
}

.gallery-item.hidden { display: none; }

.gallery-note {
  text-align: center;
  margin-top: 28px;
  color: var(--silver-d);
  font-size: .8rem;
  line-height: 1.7;
}
.gallery-note code {
  background: var(--dark3);
  padding: 2px 7px;
  border-radius: 3px;
  font-family: monospace;
  color: var(--gold);
}

/* ============================================================
   FEATURED PROJECT
============================================================ */
.featured-project { background: var(--dark); }

.fp-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.fp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}
.fp-hero:hover .fp-hero-img { transform: scale(1.02); }
.fp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.95) 0%,
    rgba(0,0,0,.5) 50%,
    rgba(0,0,0,.1) 100%
  );
  z-index: 1;
}
.fp-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}
.fp-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 8px;
}
.fp-year {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.fp-desc {
  color: var(--silver);
  max-width: 620px;
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.fp-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fp-tags span {
  padding: 5px 16px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.06);
}

/* Gallery grid */
.fp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 3px;
  background: var(--dark);
  padding: 3px;
}
.fp-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.8) saturate(.85);
}
.fp-gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.1);
}
.fp-wide { grid-column: span 2; }

.fp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.fp-gallery-item:hover .fp-gallery-overlay { opacity: 1; }
.fp-gallery-overlay span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Breaking Ground Banner */
.fp-breaking-ground {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 16px;
  animation: pulse-gold 2s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

/* Map Section */
.fp-map-section {
  background: var(--dark3);
  padding: 80px 0;
  border-top: 1px solid rgba(201,168,76,.15);
}
.fp-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: stretch;
}
.fp-map-title {
  font-family: var(--font-head);
  font-size: 2.4rem;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 8px;
}
.fp-map-address {
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.fp-map-desc {
  color: var(--silver-d);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.fp-map-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  overflow: hidden;
}
.fp-map-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.fp-map-detail-item:last-child { border-bottom: none; }
.fp-map-detail-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 90px;
  flex-shrink: 0;
}
.fp-map-detail-value {
  font-size: .88rem;
  color: var(--silver);
  font-weight: 500;
}
.fp-map-detail-value.groundbreak {
  color: var(--gold);
  font-weight: 700;
}

.fp-map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  min-height: 420px;
  box-shadow: var(--shadow);
}
.fp-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

@media (max-width: 900px) {
  .fp-map-grid { grid-template-columns: 1fr; }
  .fp-map-embed { min-height: 300px; }
  .fp-map-embed iframe { min-height: 300px; }
}

/* Real Work Section */
.real-work-section {
  background: var(--dark);
  padding: 72px 0 0;
  border-top: 1px solid rgba(201,168,76,.12);
}
.real-work-section .container { margin-bottom: 40px; }

.real-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
}
.rw-hero {
  grid-column: span 3;
  grid-row-start: 1;
  height: 480px;
}
.rw-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.rw-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.85) saturate(1.05) contrast(1.05);
}
.rw-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.2) contrast(1.08);
}
.rw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  opacity: 0;
  transition: opacity var(--transition);
}
.rw-item:hover .rw-overlay { opacity: 1; }
.rw-overlay h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 4px;
}
.rw-overlay p {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 768px) {
  .real-work-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .rw-hero {
    grid-column: span 2;
    height: 300px;
  }
}
@media (max-width: 480px) {
  .real-work-grid { grid-template-columns: 1fr; }
  .rw-hero { grid-column: span 1; }
}

/* CTA bar */
.fp-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 24px;
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.fp-cta-bar p {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--silver);
}

@media (max-width: 1024px) {
  .fp-gallery { grid-template-columns: repeat(2, 1fr); }
  .fp-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .fp-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .fp-wide { grid-column: span 2; }
  .fp-cta-bar { flex-direction: column; gap: 16px; text-align: center; }
  .fp-cta-bar p { font-size: 1.2rem; }
}

/* ============================================================
   STATS
============================================================ */
.stats {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 56px 20px;
  border-right: 1px solid rgba(201,168,76,.12);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .6s ease;
}
.stat-item.visible::after { transform: scaleX(1); }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 4.8rem);
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--gold-d);
}
.stat-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-d);
  margin-top: 10px;
}

/* ============================================================
   PROCESS
============================================================ */
.process { background: var(--light); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 16px;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.step-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--gold-l), var(--gold-d));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: .05em;
  margin-bottom: 10px;
  color: var(--dark);
}
.process-step p { color: #666; font-size: .9rem; }
.process-connector {
  width: 80px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,.2));
  margin-top: 58px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--dark3); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.12);
  margin-top: 16px;
}
.testimonial-card {
  background: var(--dark2);
  padding: 36px 32px;
  position: relative;
  transition: background var(--transition);
}
.testimonial-card:hover { background: var(--dark3); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card > p {
  color: var(--silver-d);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,.12);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-l), var(--gold-d));
  color: var(--dark);
  font-weight: 800;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--silver);
  font-size: .88rem;
}
.testimonial-author span {
  font-size: .76rem;
  color: var(--gray);
}

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--dark); }
.contact .section-title { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  color: var(--silver-d);
  margin-bottom: 36px;
  font-size: .95rem;
  line-height: 1.75;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.2rem; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  color: var(--silver);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1px solid rgba(201,168,76,.15);
  border-top: 2px solid var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver-d);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--silver);
  background: var(--dark2);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group select option { background: var(--dark2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group input.error,
.form-group textarea.error { border-color: #c0392b; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: .75rem;
  margin-top: 14px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: var(--silver-d);
  padding: 72px 0 0;
  border-top: 1px solid rgba(201,168,76,.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.footer-brand p {
  margin-top: 16px;
  font-size: .85rem;
  line-height: 1.75;
  max-width: 240px;
  color: var(--silver-d);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-d);
  transition: var(--transition);
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.08);
  box-shadow: 0 0 12px rgba(201,168,76,.15);
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .86rem; }
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: .78rem;
  color: #444;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
  border: 1px solid rgba(201,168,76,.2);
}
.lightbox p {
  color: var(--silver-d);
  font-size: .85rem;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--silver);
  font-size: 1.4rem;
  cursor: pointer;
  opacity: .6;
  transition: opacity var(--transition), color var(--transition);
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }

/* ============================================================
   HERO WATERMARK
============================================================ */
.hero-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: .07;
  width: 700px;
  animation: floatLogo 8s ease-in-out infinite;
}
.hero-watermark img {
  width: 100%;
  height: auto;
  filter: brightness(2) saturate(0);
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%       { transform: translateY(-52%) scale(1.015); }
}

/* Ghost VCA section text */
.ghost-text {
  position: absolute;
  font-family: var(--font-head);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  letter-spacing: .08em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
  white-space: nowrap;
}
.ghost-text-light {
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.12);
}
.ghost-text-dark {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
}

/* Section watermark logo (small, corner) */
.section-watermark {
  position: absolute;
  pointer-events: none;
  opacity: .04;
  z-index: 0;
}
.section-watermark img { width: 100%; height: auto; }

/* Gold corner accent */
.gold-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
.gold-corner-tl {
  top: 24px; left: 24px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.gold-corner-br {
  bottom: 24px; right: 24px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* Diagonal gold stripe on about section */
.about {
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.about .container { position: relative; z-index: 1; }

/* Stats position relative for ghost text */
.stats { position: relative; overflow: hidden; }
.stats .container { position: relative; z-index: 1; }

/* Process position */
.process { position: relative; overflow: hidden; }
.process .container { position: relative; z-index: 1; }

/* Contact section gold glow */
.contact { position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.05) 0%, transparent 65%);
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }

/* Scrolling gold ticker */
.ticker-wrap {
  background: var(--dark3);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  overflow: hidden;
  padding: 14px 0;
}
.ticker {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-d);
  white-space: nowrap;
}
.ticker-item::after {
  content: '◆';
  color: var(--gold);
  font-size: .6rem;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hover glow on nav logo */
.logo-img-link:hover .nav-logo {
  filter: drop-shadow(0 4px 20px rgba(201,168,76,.5));
  transition: filter .3s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-wide { grid-column: span 2; }
  .about-grid    { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { right: 0; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { display: none; position: fixed; inset: 0; top: 64px; background: rgba(8,8,8,.99); z-index: 999; flex-direction: column; align-items: center; justify-content: center; }
  .nav.open { display: flex; }
  .nav-links { flex-direction: column; gap: 0; text-align: center; }
  .nav-links a { font-size: 1.2rem; padding: 18px 30px; }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .strip-item { border-right: none; padding: 14px 18px; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item-wide, .gallery-item-tall { grid-column: span 1; grid-row: span 1; }

  .process-steps { flex-direction: column; align-items: center; gap: 24px; }
  .process-connector { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; background: none; border: none; gap: 16px; }
  .testimonial-card { border: 1px solid rgba(201,168,76,.12); }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: fit-content; }

  .filter-bar { transform: none; left: 0; position: static; display: flex; justify-content: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: 3.6rem; }
  .stat-item { padding: 36px 16px; }
  .about-img-secondary { display: none; }
  .about-badge { width: 90px; height: 90px; left: -12px; top: -12px; }
  .badge-years { font-size: 1.8rem; }
}

/* ============================================================
   ENCLAVE AT RIVERWOODS — PROJECT #2
============================================================ */
.erw-section { background: var(--dark2); }

/* Hero — gradient background since photos TBD */
.erw-hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.erw-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(192,192,192,.07) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #111108 50%, #0d0d0a 100%);
}

/* Coming-soon badge — silver pulse instead of gold */
.erw-badge {
  display: inline-block;
  background: rgba(192,192,192,.12);
  border: 1px solid rgba(192,192,192,.4);
  color: var(--silver);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse-silver 2s ease-in-out infinite;
}
@keyframes pulse-silver {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,192,192,.35); }
  50%       { box-shadow: 0 0 0 10px rgba(192,192,192,0); }
}

/* Plat section */
.erw-plat-section { padding: 80px 0; background: var(--dark); }
.erw-plat-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* Stats cards */
.erw-stat-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin: 0 12px 16px 0;
  min-width: 100px;
}
.erw-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.erw-stat-label {
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver-d);
  margin-top: 4px;
  text-align: center;
}

/* Info rows */
.erw-info-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.erw-info-label {
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver-d);
  min-width: 110px;
  flex-shrink: 0;
}
.erw-info-val {
  font-size: .9rem;
  color: var(--light);
  line-height: 1.4;
}

/* Plat iframe embed */
.erw-plat-embed {
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  background: #111;
}
.erw-plat-embed iframe { display: block; width: 100%; height: 100%; }

/* Home type cards */
.erw-home-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.erw-home-card {
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.erw-home-card:hover { transform: translateY(-4px); box-shadow: var(--gold-shadow); }
.erw-home-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.erw-home-info { padding: 20px; }
.erw-home-info h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.erw-home-info p { font-size: .88rem; color: var(--silver-d); line-height: 1.6; }

/* Stats row */
.erw-stats-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .erw-plat-grid { grid-template-columns: 1fr; }
  .erw-plat-embed { height: 440px; }
  .erw-home-types { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .erw-plat-embed { height: 320px; }
  .erw-stat-card { padding: 14px 18px; }
  .erw-home-types { grid-template-columns: 1fr; }
}
