:root {
  --charcoal: #2a2a2a;
  --bronze: #b97332;
  --bronze-light: #d4904a;
  --bronze-pale: #f5ede0;
  --cream: #faf8f4;
  --white: #ffffff;
  --text-dark: #1e1e1e;
  --text-muted: #6b6460;
  --nav-height: 100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── NAV ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(185,115,50,0.3);
  transition: height 0.3s ease, box-shadow 0.3s ease;
}

#site-nav .logo img { height: 80px; width: auto; }

#site-nav .nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

#site-nav .nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

#site-nav .nav-links a:hover { color: var(--bronze-light); }

#site-nav .nav-cta {
  background: transparent;
  border: 1px solid var(--bronze);
  color: var(--bronze-light) !important;
  padding: 0.55rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
}

#site-nav .nav-cta:hover {
  background: var(--bronze);
  color: var(--white) !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transition: all 0.2s;
}

#mobile-menu {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--charcoal);
  z-index: 199;
  border-bottom: 1px solid rgba(185,115,50,0.3);
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  display: block;
}

#mobile-menu.open { transform: translateY(0); }
#mobile-menu ul { list-style: none; padding: 1rem 5%; }

#mobile-menu ul li a {
  display: block;
  padding: 0.85rem 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

#mobile-menu ul li a:hover { color: var(--bronze-light); }

#site-nav.scrolled { height: 72px; }
#site-nav.scrolled .logo img { height: 60px; transition: height 0.3s ease; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--bronze);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--bronze-light); color: var(--white); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline:hover { border-color: var(--bronze); color: var(--bronze-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 5% 80px;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42,42,42,0.85) 0%,
    rgba(42,42,42,0.6) 50%,
    rgba(42,42,42,0.75) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
  max-width: 900px;
}

.hero-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 440px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── INTRO BAND ── */
.intro-band { background: var(--bronze); padding: 2.5rem 5%; }

.intro-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.intro-band p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--white);
  max-width: 720px;
  line-height: 1.5;
}

.intro-band a {
  white-space: nowrap;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.intro-band a:hover { opacity: 0.85; }

/* ── SECTIONS SHARED ── */
section { padding: 6rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section-heading em { font-style: normal; color: var(--bronze); }

.section-intro {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.bronze-divider {
  width: 0;
  height: 1px;
  background: var(--bronze);
  margin: 2rem 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bronze-divider.drawn { width: 48px; }

/* ── ABOUT US ── */
#about { background: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.about-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-cta { margin-top: 0.5rem; }

/* ── SERVICES ── */
#services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover { background: var(--charcoal); }
.service-card:hover .service-icon { background: var(--bronze-light); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.6); }
.service-card:hover .service-learn { color: var(--bronze-light); border-color: rgba(212,144,74,0.5); }

.service-icon { width: 40px; height: 2px; background: var(--bronze); margin-bottom: 1.5rem; display: block; transition: background 0.25s; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.75rem; transition: color 0.25s; line-height: 1.3; }
.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; transition: color 0.25s; flex: 1; }

.service-learn {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid rgba(185,115,50,0.35);
  transition: color 0.25s, border-color 0.25s;
}

/* ── WHY ── */
#why { background: var(--white); }

.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why-intro { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; }
.why-items { display: flex; flex-direction: column; }

.why-item { border-top: 1px solid rgba(0,0,0,0.08); padding: 1.5rem 0; display: flex; gap: 1.25rem; }
.why-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }

.why-num { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--bronze); flex-shrink: 0; width: 2rem; line-height: 1; padding-top: 0.1rem; }
.why-content h4 { font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.4rem; }
.why-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── INDUSTRIES ── */
#industries { background: var(--charcoal); }
.industries-heading { color: var(--white) !important; }
.industries-intro { color: rgba(255,255,255,0.5) !important; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(185,115,50,0.15);
  border: 1px solid rgba(185,115,50,0.15);
  margin-top: 3rem;
}

.industry-item {
  background: rgba(255,255,255,0.03);
  padding: 1.1rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  transition: background 0.2s;
}

.industry-item:hover { background: rgba(185,115,50,0.12); }
.industry-item span { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); display: block; line-height: 1.4; text-align: center; }

/* ── COMMITMENT ── */
#commitment { background: var(--bronze-pale); }
.commitment-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; }
.commitment-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 300; color: var(--bronze); line-height: 1.4; border-left: 2px solid var(--bronze); padding-left: 1.5rem; }
.commitment-body { font-size: 1rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.5rem; }
.commitment-cta { margin-top: 0.5rem; }

/* ── CONTACT ── */
#contact { background: var(--charcoal); padding: 6rem 5%; }

.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-heading { color: var(--white) !important; }
.contact-heading em { color: var(--bronze-light) !important; }
.contact-intro { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; }

.contact-form .form-group { margin-bottom: 1.25rem; }

.contact-form label { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.required { color: var(--bronze); }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--bronze); }
.contact-form textarea { height: 120px; resize: none; }
.contact-form select option { background: var(--charcoal); color: var(--white); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.25); }

.contact-submit { width: 100%; padding: 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; }
.contact-submit:disabled { opacity: 0.7; cursor: default; }

.form-message { padding: 1rem 1.25rem; margin-bottom: 1.25rem; font-size: 0.9rem; line-height: 1.5; border-left: 3px solid var(--bronze); }
.form-message.success { background: rgba(74,124,63,0.15); border-color: #4a7c3f; color: #9fd98e; }
.form-message.error { background: rgba(180,60,60,0.15); border-color: #b43c3c; color: #f4a0a0; }

/* ── FOOTER ── */
.site-footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(185,115,50,0.25);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo-full img {
  height: 52px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-logo-full:hover img { opacity: 1; }

.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-email {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--bronze-light);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(185,115,50,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.footer-email:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 5%;
  text-align: center;
}

.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20,18,16,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.25s ease;
}

.modal-overlay.active { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: var(--white);
  max-width: 680px;
  width: 100%;
  padding: 3.5rem;
  position: relative;
  animation: slideUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--charcoal); }

.modal-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.modal-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.modal-heading em { font-style: normal; color: var(--bronze); }

.modal-body p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-cta { margin-top: 2rem; }

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="left"] { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
[data-reveal="right"] { opacity: 0; transform: translateX(40px); transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
[data-reveal="fade"] { opacity: 0; transform: none; transition: opacity 0.9s ease; }

[data-reveal].revealed,
[data-reveal="left"].revealed,
[data-reveal="right"].revealed,
[data-reveal="fade"].revealed { opacity: 1; transform: none; }

[data-stagger-child] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-stagger-child].revealed { opacity: 1; transform: none; }

.service-card[data-stagger-child] {
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s;
}
.service-card[data-stagger-child].revealed { opacity: 1; transform: none; }

.industry-item[data-stagger-child] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s;
}
.industry-item[data-stagger-child].revealed { opacity: 1; transform: none; }

.why-item[data-stagger-child] {
  transform: translateX(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── HERO ENTRANCE ── */
.hero-anim-eyebrow, .hero-anim-h1, .hero-anim-desc, .hero-anim-actions {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim-eyebrow { animation-delay: 0.3s; }
.hero-anim-h1 { animation-delay: 0.5s; }
.hero-anim-desc { animation-delay: 0.7s; }
.hero-anim-actions { animation-delay: 0.9s; }

@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .commitment-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 80px; }
  #site-nav .nav-links { display: none; }
  #site-nav .logo img { height: 58px; }
  .nav-mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 4rem 5%; }
  .modal-box { padding: 2.5rem 1.75rem; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-right { align-items: center; }
  .footer-left { align-items: center; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .intro-band-inner { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim-eyebrow, .hero-anim-h1, .hero-anim-desc, .hero-anim-actions { animation: none; opacity: 1; transform: none; }
  [data-reveal], [data-reveal="left"], [data-reveal="right"], [data-reveal="fade"], [data-stagger-child] { opacity: 1; transform: none; transition: none; }
  .bronze-divider { width: 48px; transition: none; }
}
