:root {
  --green: #034421;
  --green-dark: #011a0d;
  --gold: #a8873e;
  --gold-light: #c9a55a;
  --cream: #f4efe4;
  --black: #0a0a08;
  --off-white: #f9f7f2;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--black);
  font-family: 'Work Sans', sans-serif;
  overflow-x: hidden;
  padding-top: 18vh;
}

/* SVG logo styling */
.nav-logo svg rect:first-of-type {
  fill: none;
  stroke: rgb(3,68,33);
  stroke-width: 4px;
}
.nav-logo svg text:first-of-type {
  fill: rgb(3,68,33);
  font-family: 'Work Sans';
  font-size: 109px;
  font-weight: 600;
  letter-spacing: -11.2px;
}
.nav-logo svg text:nth-of-type(2),
.nav-logo svg text:nth-of-type(3) {
  fill: rgb(3,68,33);
  font-family: 'Work Sans';
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 5.5px;
}
.nav-logo svg rect:nth-of-type(n+2) {
  fill: rgb(3,68,33);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  height: 18vh;
  min-height: 100px;
  background: var(--off-white);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.nav-logo svg {
  height: 95%;
  width: auto;
}
.nav-wordmark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links a.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
  position: absolute;
  top: 100%;
  right: 24px;
  background: var(--off-white);
  padding: 24px;
  border: 1px solid rgba(3,68,33,0.12);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  width: min(240px, calc(100vw - 48px));
}
.nav-links.open a {
  color: var(--green-dark);
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 18vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 48px;
  position: relative;
  margin-top: 0;
  border-bottom: 1px solid rgba(3,68,33,0.15);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* giant background monogram */
.hero-bg-mono {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(320px, 45vw, 600px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(3,68,33,0.07);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -40px;
}

/* deco corner marks */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: var(--green);
}
.hero::before { top: 28px; left: 48px; }
.hero::after  { top: 28px; right: 48px; }
.hero-corner-bl, .hero-corner-br {
  position: absolute;
  width: 18px; height: 18px;
  background: var(--green);
  bottom: 28px;
}
.hero-corner-bl { left: 48px; }
.hero-corner-br { right: 48px; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  display: block;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(72px, 10vw, 148px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -4px;
  color: var(--green);
  margin-bottom: 48px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  display: block;
}

.hero-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.hero-descriptor {
  max-width: 420px;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(10,10,8,0.6);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.hero-cta-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--cream);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px 40px;
  position: relative;
  transition: all 0.35s ease;
}
.hero-cta::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(244,239,228,0.25);
  pointer-events: none;
}
.hero-cta:hover { background: var(--gold); }
.cta-arr { transition: transform 0.3s; font-size: 16px; }
.hero-cta:hover .cta-arr { transform: translateX(5px); }


.final-copy {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--cream);
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
  position: absolute;
  top: 100%;
  right: 24px;
  background: var(--off-white);
  padding: 24px;
  border: 1px solid rgba(3,68,33,0.12);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  width: min(240px, calc(100vw - 48px));
}
.nav-links.open a {
  color: var(--green-dark);
}


/* ── MARQUEE TICKER ── */
.ticker {
  border-top: 1px solid rgba(3,68,33,0.15);
  border-bottom: 1px solid rgba(3,68,33,0.15);
  overflow: hidden;
  padding: 14px 0;
  background: var(--green);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  flex-shrink: 0;
}
.ticker-diamond {
  width: 5px; height: 5px;
  background: var(--gold-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services-section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 40px;
  flex-wrap: wrap;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-big-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--green);
}
.section-big-title em {
  font-style: italic;
  font-weight: 400;
  display: block;
}
.section-desc {
  max-width: 340px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(10,10,8,0.55);
  padding-top: 16px;
}

.section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

/* utility: small top padding used on inserted sections */
.section--padded { padding-top: 48px; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.05;
  color: var(--green);
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 24px;
}

.hero-headline em,
.section-heading em {
  font-style: italic;
  font-weight: 400;
  display: block;
  color: var(--black);
}

.communication-grid,
.takeoff {
  display: grid;
  gap: 24px;
}

.communication-grid,
.takeoff {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comm-card {
  background: var(--cream);
  padding: 36px 34px;
  border: 1px solid rgba(3,68,33,0.12);
}
.comm-card { padding: 32px; }

.comm-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}

.takeoff p,
.comm-card p {
  margin-bottom: 16px;
}

/* match hero-descriptor font settings for communication / takeoff content */
.comm-card,
.comm-card p,
.takeoff,
.takeoff p,
.takeoff-list,
.takeoff-list li {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(10,10,8,0.6);
}

.takeoff-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.takeoff-list li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
  color: rgba(10,10,8,0.6);
}

.takeoff-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}


.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(3,68,33,0.15);
}
.service-item {
  padding: 48px 40px;
  border-right: none;
  border-bottom: 1px solid rgba(3,68,33,0.15);
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.service-item:hover { background: var(--green); }
.service-item:hover .svc-num,
.service-item:hover .svc-title,
.service-item:hover .svc-body { color: var(--cream); }
.service-item:hover .svc-num { color: var(--gold-light); }
.service-item:hover .svc-bar { background: var(--gold-light); }

/* deco corner on hover */
.service-item::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  background: var(--gold);
  transition: width 0.3s, height 0.3s;
}
.service-item:hover::after { width: 14px; height: 14px; }

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
  transition: color 0.3s;
}
.svc-bar {
  width: 32px; height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
  transition: background 0.3s;
}
.svc-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.4;
  transition: color 0.3s;
}
.svc-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(10,10,8,0.6);
  transition: color 0.3s;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--cream);
  border-top: 1px solid rgba(3,68,33,0.15);
  border-bottom: 1px solid rgba(3,68,33,0.15);
}
.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 72px 48px;
  border-right: 1px solid rgba(3,68,33,0.15);
  text-align: left;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -3px;
  display: block;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 0.55em;
  font-weight: 400;
  font-style: italic;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--green);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px;
}
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: var(--gold);
}
.final-cta::before { top: 32px; left: 48px; }
.final-cta::after  { bottom: 32px; right: 48px; }
.final-cta-inner { text-align: center; position: relative; z-index: 1; }
.final-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(200px, 30vw, 400px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,154,90,0.12);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.final-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.final-label::before, .final-label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: block;
}
.final-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -3px;
  color: var(--cream);
  margin-bottom: 56px;
}
.final-headline em {
  font-style: italic;
  font-weight: 400;
  display: block;
  color: var(--gold-light);
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  color: var(--green);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 20px 52px;
  position: relative;
  transition: all 0.35s;
}
.final-cta-btn::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(3,68,33,0.2);
  pointer-events: none;
}
.final-cta-btn:hover { background: var(--gold); color: var(--off-white); }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,239,228,0.35);
}
.footer-right {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,239,228,0.35);
}
.footer-right a { color: var(--gold-light); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: fadeUp 1s ease forwards; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .hero { padding: 0 24px 56px; }
  .hero::before { left: 24px; }
  .hero::after  { right: 24px; }
  .hero-corner-bl { left: 24px; }
  .hero-corner-br { right: 24px; }
  .hero-headline { font-size: clamp(56px, 14vw, 96px); letter-spacing: -2px; }
  .services-section,
  .section { padding: 80px 24px; }
  .services-grid,
  .communication-grid,
  .takeoff { grid-template-columns: 1fr; }
  .service-item { border-right: none; }
  .service-item:nth-child(3n) { border-right: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(3,68,33,0.15); padding: 48px 24px; }
  .stat-cell:nth-child(odd) { border-right: 1px solid rgba(3,68,33,0.15); }
  .final-cta { padding: 80px 24px; }
  footer { padding: 24px; }
}
@media (max-width: 560px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-cell:nth-child(odd) { border-right: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-cta-wrap { align-items: flex-start; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 430px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero {
    margin-top: 100px;
  }
  .nav-cta { display: none; }
  .hero-eyebrow {
    font-size: 10px;
    gap: 8px;
    white-space: nowrap;
  }
  .hero-eyebrow::before {
    width: 18px;
  }
  .hero-cta-wrap {
    align-items: center;
    width: 100%;
    max-width: 560px;
  }
    .hero-cta {
      width: 100%;
      justify-content: center;
    }
    .hero-cta .cta-arr {
      display: none;
    }
    .services-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100%, 540px);
  }
  .stats-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100%, 420px);
  }
  .stats-band .stat-cell {
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(3,68,33,0.15);
    padding: 48px 24px;
  }
  .stats-band .stat-cell:last-child { border-bottom: none; }
  nav,
  .hero,
  .ticker,
  .services-section,
  .stats-band,
  .final-cta,
  footer {
    width: 100%;
  }
  footer {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
  }
  .footer-left,
  .footer-right {
    font-size: 10px;
    white-space: nowrap;
  }
}
