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

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7530;
  --ink: #0F0E0D;
  --charcoal: #1C1B19;
  --warm-gray: #2E2D2A;
  --mid-gray: #9B9890;
  --light-gray: #C8C5BC;
  --cream: #F5F1EA;
  --cream-dark: #EDE8DF;
  --white: #FDFCFA;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  font-weight: 300;
}

/* ── CURSOR ── */
* { cursor: none; }
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  transform: translate(-50%, -50%);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
  background: rgba(15,14,13,0.0);
}
nav.scrolled, nav.solid {
  background: rgba(15,14,13,0.96);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); border: 2px solid var(--gold); font-weight: 500;
  padding: 10px 24px; text-decoration: none;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold); color: #0F0E0D; font-weight: 500; letter-spacing: 0.28em; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 54vh; min-height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease-out;
}
.page-hero-bg.loaded { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,14,13,0.45) 0%, rgba(15,14,13,0.75) 60%, rgba(15,14,13,1) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 64px;
}
.page-hero-eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 300; line-height: 0.97;
  color: var(--white);
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.9s ease 0.35s forwards;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }

/* ── SECTION BASE ── */
section { padding: 100px 60px; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.05;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.gold-divider { width: 60px; height: 1px; background: var(--gold); margin: 28px 0; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: #0F0E0D; font-weight: 500; letter-spacing: 0.28em;
  padding: 16px 40px; text-decoration: none; font-weight: 400;
  transition: all 0.3s ease; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); letter-spacing: 0.28em; }
.btn-outline {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); border: 2px solid var(--gold); font-weight: 500;
  padding: 14px 36px; text-decoration: none;
  transition: all 0.3s ease; display: inline-block;
}
.btn-outline:hover { background: var(--gold); color: #0F0E0D; font-weight: 500; letter-spacing: 0.28em; }
.btn-ghost {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--light-gray); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s;
}
.btn-ghost::after { content: '→'; font-size: 16px; transition: transform 0.3s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream); transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 90;
  background: rgba(15,14,13,0.97); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 40px; font-weight: 300;
  color: var(--cream); text-decoration: none;
  padding: 14px 0; letter-spacing: 0.04em;
  transition: color 0.3s; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05); width: 240px;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-cta {
  margin-top: 36px !important;
  font-family: var(--font-body) !important; font-size: 11px !important;
  letter-spacing: 0.25em !important; color: var(--gold) !important;
  border: 1px solid var(--gold) !important; padding: 13px 32px !important;
  border-bottom: 1px solid var(--gold) !important; width: auto !important;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── CONTACT FORM (shared) ── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--light-gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream); padding: 14px 18px;
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.3s; resize: none;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.03);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--mid-gray); font-weight: 300; }
.form-group select option { background: var(--charcoal); color: var(--cream); }
.form-submit {
  background: var(--gold); color: #0F0E0D; font-weight: 500; letter-spacing: 0.28em;
  border: none; padding: 18px 48px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 400; transition: all 0.3s ease; align-self: flex-start; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); letter-spacing: 0.3em; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 60px 40px;
}
.footer-gold-line {
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 56px; opacity: 0.3;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 300; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white);
}
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p {
  font-size: 13px; line-height: 1.8; color: var(--light-gray);
  font-weight: 300; margin-top: 14px; max-width: 280px;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; color: var(--light-gray); text-decoration: none;
  font-weight: 300; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px; color: var(--light-gray); font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav, nav.scrolled, nav.solid { padding: 20px 36px; }
  section { padding: 80px 36px; }
  .page-hero-content { padding: 0 36px 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  * { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  nav, nav.scrolled, nav.solid { padding: 18px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 60px 20px; }
  .page-hero-content { padding: 0 20px 44px; }
  .page-hero { min-height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; text-align: center; }
  footer { padding: 44px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 10px; }
}
@media (max-width: 380px) {
  .page-hero-title { font-size: 36px; }
}

/* ── VISIBILITY OVERRIDES ── */
.nav-cta {
  background: var(--gold) !important;
  color: #0F0E0D !important;
  border: 2px solid var(--gold) !important;
  font-weight: 500 !important;
  padding: 11px 26px !important;
}
.nav-cta:hover {
  background: #E8D5A3 !important;
  border-color: #E8D5A3 !important;
  color: #0F0E0D !important;
}
.btn-primary {
  background: var(--gold) !important;
  color: #0F0E0D !important;
  font-weight: 500 !important;
  border: 2px solid var(--gold) !important;
  letter-spacing: 0.26em !important;
}
.btn-primary:hover {
  background: #E8D5A3 !important;
  border-color: #E8D5A3 !important;
  color: #0F0E0D !important;
}

/* ── FOOTER VISIBILITY FIX ── */
.footer-col ul li a {
  color: #C8C5BC !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}
.footer-col ul li a:hover {
  color: #FDFCFA !important;
}
.footer-col h4 {
  color: #C9A84C !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  margin-bottom: 20px !important;
}
.footer-brand p {
  color: #C8C5BC !important;
  font-size: 14px !important;
}
.footer-brand .logo-text {
  color: #FDFCFA !important;
  font-size: 28px !important;
}
.footer-bottom span {
  color: #C8C5BC !important;
  font-size: 12px !important;
}
.footer-bottom a {
  color: #C9A84C !important;
}

/* ── GLOBAL READABILITY FIX ── */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.section-eyebrow, .page-hero-eyebrow, .hero-eyebrow, .stat-num, .director-role, .principal-title, .step-detail-title, .timeline-label, .proj-tag, .project-tag, .why-num, .service-block-eyebrow, .footer-col h4, .contact-label, .form-group label { color: #D4A843 !important; }
.about-body, .story-body, .services-desc, .services-intro-desc, .hero-subtitle, .home-intro-body, .service-tile-desc, .service-desc, .step-desc, .director-bio, .value-desc, .why-desc, .footer-brand p, .contact-value { color: #E8E5DE !important; }
.hero-title, .page-hero-title, .section-title, .service-tile-name, .director-name, .step-title, .value-title, .timeline-name, .proj-name, .project-name, .why-title, .service-block-title { color: #FDFCFA !important; }
.nav-links a { color: #E8E5DE !important; }
.nav-links a.active, .nav-links a:hover { color: #D4A843 !important; }
.footer-col ul li a { color: #C8C5BC !important; }
.footer-col ul li a:hover { color: #FDFCFA !important; }
.footer-bottom span { color: #C8C5BC !important; }
.service-feature, .step-list-item, .project-location, .proj-loc, .stat-label { color: #C8C5BC !important; }

/* ── PERFORMANCE ── */

/* ════ GLOBAL READABILITY OVERHAUL ════ */
body{color:#E8E5DE !important;}
h1,h2,h3,h4,.hero-title,.page-hero-title,.section-title,.service-tile-name,.service-name,.service-block-title,.director-name,.step-title,.value-title,.timeline-name,.proj-name,.project-name,.why-title,.cta-band-text h2,.card-title{color:#FDFCFA !important;}
.section-eyebrow,.page-hero-eyebrow,.hero-eyebrow,.director-role,.principal-title,.step-detail-title,.timeline-label,.proj-tag,.project-tag,.why-num,.service-block-eyebrow,.footer-col h4,.contact-label,.form-group label,.nav-cta{color:#D4A843 !important;}
p,.about-body,.story-body,.services-desc,.services-intro-desc,.hero-subtitle,.home-intro-body,.service-tile-desc,.service-desc,.service-block-body p,.step-desc,.director-bio,.value-desc,.why-desc,.contact-value,.testimonial-quote,.process-intro p,.directors-intro p{color:#E0DDD6 !important;}
.project-location,.proj-loc,.attr-role,.stat-label,.service-feature,.step-list-item,.timeline-sub,.footer-brand p,.footer-col ul li a,.footer-bottom span,.hero-scroll-indicator,.form-hint{color:#C8C5BC !important;}
.nav-links a{color:#E8E5DE !important;font-weight:400 !important;}
.nav-links a:hover,.nav-links a.active{color:#D4A843 !important;}
.footer-col ul li a:hover,.footer-bottom a{color:#FDFCFA !important;}
.form-group input,.form-group textarea,.form-group select{color:#F5F1EA !important;}
.form-group input::placeholder,.form-group textarea::placeholder{color:#9B9890 !important;}
.mobile-menu a{color:#E8E5DE !important;}
.stat-num{color:#D4A843 !important;font-size:52px !important;}
.testimonial-quote{color:#F5F1EA !important;}
.page-hero-title{color:#FDFCFA !important;}
.contact-value a{color:#D4A843 !important;}
