@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy: #0B2545;
  --navy-deep: #071829;
  --navy-mid: #1a3a5c;
  --green: #1A6B45;
  --green-light: #2a8a5a;
  --green-pale: #E4F2EB;
  --white: #FFFFFF;
  --off-white: #F7F6F2;
  --light-gray: #E8EDF4;
  --text-muted: #8A9BB0;
  --border: rgba(255,255,255,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--navy-deep); color: var(--white); overflow-x: hidden; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(7,24,41,0.97), transparent);
  backdrop-filter: blur(12px);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(7,24,41,0.98); }
.nav-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.logo-badge {
  width: 46px; height: 46px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700;
  color: white; letter-spacing: 0.05em;
  border: 2.5px solid var(--green);
  box-shadow: 0 0 0 1px rgba(26,107,69,0.15);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; color: white; line-height: 1.2; }
.logo-sub { font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-cta { background: var(--green) !important; color: white !important; padding: 0.6rem 1.4rem; border-radius: 6px; transition: all 0.2s !important; }
.nav-cta:hover { background: var(--green-light) !important; box-shadow: 0 4px 20px rgba(26,107,69,0.4); }
.nav-mobile-btn { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.nav-mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-deep); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { color: white; text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; transition: color 0.2s; }
.nav-mobile-menu a:hover { color: var(--green-light); }
.nav-mobile-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--green); color: white; padding: 0.9rem 2rem; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 30px rgba(26,107,69,0.3); border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(26,107,69,0.4); }
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { color: white; border-bottom-color: white; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--green); padding: 0.9rem 2rem; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none;
  transition: all 0.3s; border: 2px solid var(--green); cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { background: var(--green); color: white; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--green); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.1; margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--green); }
.section-title.light { color: white; }
.section-title.dark { color: var(--navy-deep); }
.section-desc { font-size: 1rem; line-height: 1.8; font-weight: 300; }
.section-desc.muted { color: #526070; }
.section-desc.light { color: rgba(255,255,255,0.6); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 50vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden; padding: 8rem 4rem 5rem;
}
.page-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.2) saturate(0.5); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,24,41,0.97) 0%, rgba(7,24,41,0.7) 100%); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 80px 80px; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1rem; }
.page-hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--green-light); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.05; }
.page-hero h1 em { font-style: italic; color: var(--green-light); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-top: 1rem; max-width: 540px; font-weight: 300; }

/* ── MARQUEE ── */
.marquee-strip { background: var(--green); padding: 0.9rem 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: 1.5rem; padding: 0 2rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.marquee-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.5); border-radius: 50%; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── FOOTER ── */
footer { background: #040e1a; padding: 4rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; flex-wrap: wrap; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); max-width: 260px; line-height: 1.7; margin-top: 1rem; font-weight: 300; }
.footer-links h5 { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: white; }
.footer-contact p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; font-weight: 300; }
.footer-contact a { color: var(--green-light); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-naics { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .page-hero { padding: 7rem 2rem 4rem; min-height: 40vh; }
  footer { padding: 3rem 2rem; }
  .footer-top { flex-direction: column; }
}

/* ── REVIEWS ── */
.reviews { padding: 8rem 4rem; background: var(--navy-deep); position: relative; overflow: hidden; }
.reviews::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--green), transparent); }
.reviews-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(26,107,69,0.06) 0%, transparent 60%); pointer-events: none; }
.reviews-inner { position: relative; z-index: 2; }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

/* Carousel */
.reviews-carousel-wrap { position: relative; }
.reviews-carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2rem; position: relative; transition: all 0.3s; display: flex; flex-direction: column; gap: 1rem; }
.review-card:hover { border-color: rgba(26,107,69,0.3); background: rgba(26,107,69,0.05); transform: translateY(-3px); }
.review-stars { display: flex; gap: 0.2rem; }
.review-star { font-size: 0.9rem; }
.review-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; flex: 1; }
.review-meta { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; color: white; flex-shrink: 0; }
.review-name { font-size: 0.82rem; font-weight: 600; color: white; }
.review-service { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }
.review-quote-mark { position: absolute; top: 1.2rem; right: 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: rgba(26,107,69,0.15); line-height: 1; pointer-events: none; }

/* Empty state */
.reviews-empty { text-align: center; padding: 4rem 2rem; color: rgba(255,255,255,0.35); font-size: 0.9rem; }

/* Carousel nav */
.reviews-nav { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.reviews-nav-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: transparent; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 1rem; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.reviews-nav-btn:hover { border-color: var(--green); color: white; background: rgba(26,107,69,0.15); }
.reviews-dots { display: flex; gap: 0.5rem; align-items: center; justify-content: center; margin-top: 1.25rem; }
.reviews-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.2s; border: none; }
.reviews-dot.active { background: var(--green); width: 20px; border-radius: 3px; }

/* Submit form */
.reviews-submit { margin-top: 4rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 2.5rem; }
.reviews-submit h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: white; margin-bottom: 0.4rem; }
.reviews-submit p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 2rem; line-height: 1.6; font-weight: 300; }
.reviews-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.reviews-field label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; font-family: 'DM Mono', monospace; }
.reviews-field input, .reviews-field select, .reviews-field textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.75rem 1rem; color: white; font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; transition: border-color 0.2s; outline: none; resize: none;
}
.reviews-field input::placeholder, .reviews-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.reviews-field input:focus, .reviews-field select:focus, .reviews-field textarea:focus { border-color: var(--green); }
.reviews-field select option { background: var(--navy-deep); color: white; }
.reviews-star-pick { display: flex; gap: 0.4rem; }
.reviews-star-pick button { background: none; border: none; font-size: 1.4rem; cursor: pointer; opacity: 0.3; transition: opacity 0.15s, transform 0.15s; padding: 0; line-height: 1; }
.reviews-star-pick button.selected, .reviews-star-pick button:hover { opacity: 1; transform: scale(1.15); }
.reviews-submit-row { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.25rem; flex-wrap: wrap; }
.reviews-submit-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.5; }
.review-submit-success { display: none; align-items: center; gap: 0.75rem; background: rgba(26,107,69,0.15); border: 1px solid rgba(26,107,69,0.3); border-radius: 10px; padding: 1rem 1.4rem; margin-top: 1rem; font-size: 0.88rem; color: #7ED4A4; }

@media(max-width:900px) {
  .reviews { padding: 5rem 2rem; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-form-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .reviews { padding: 3.5rem 1.2rem !important; }
  .reviews-submit { padding: 1.6rem; }
}
