/* ==========================================================================
   M.W. ENERGY LOGISTICS LLC — Website Stylesheet
   ========================================================================== */

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

/* --- Color tokens ---------------------------------------------------------- */
:root {
  --navy:    #0A1A3A;
  --navy-d:  #05102B;
  --panel:   #0F2248;
  --gold:    #C8A84B;
  --gold-l:  #E2CA7A;
  --gold-d:  #9E7E26;
  --teal:    #0D8A7D;
  --teal-l:  #1ABAAA;
  --cream:   #FAF7F0;
  --cream-2: #F4EFE3;
  --paper:   #FFFFFF;
  --ink:     #0F1A2E;
  --char:    #26303D;
  --slate:   #4A5568;
  --mid:     #718096;
  --soft:    #A0AEC0;
  --rule:    #D4C9B0;
  --rule-d:  #8B8268;
}

/* --- Reset / base ---------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--paper);
  color: var(--char);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-feature-settings: "liga", "dlig", "kern"; }
.mono  { font-family: 'DM Mono', monospace; }

/* --- Layout helpers -------------------------------------------------------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container-tight  { max-width:  880px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }

/* --- Scroll reveal --------------------------------------------------------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1),
              transform .8s cubic-bezier(.22,1,.36,1);
}
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* --- Topographic blueprint pattern ---------------------------------------- */
.blueprint {
  background-image:
    linear-gradient(var(--cream-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--cream-2) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px;
}

/* --- Navigation ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--rule);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand-text { padding-left: 12px; border-left: 1px solid var(--rule); margin-left: 2px; text-align: left; }
.nav-brand-name { font-size: 23px; font-weight: 600; color: var(--navy); line-height: 1; letter-spacing: .01em; }
.nav-brand-sub  { font-size: 9px; color: var(--gold-d); letter-spacing: .18em; margin-top: 4px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  display: none;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--char);
  padding: 4px 0;
  position: relative;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link:hover::after { width: 100%; }
.nav-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; color: var(--navy); }
.nav-mobile-toggle svg { width: 22px; height: 22px; }

@media (min-width: 980px) {
  .nav-link { display: inline-block; }
  .nav-mobile-toggle { display: none; }
}

/* Mobile menu drawer */
.nav-drawer {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 16px 32px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
.nav-drawer.open { display: flex; }
.nav-drawer button {
  background: none;
  border: none;
  text-align: left;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--char);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 980px) { .nav-drawer { display: none !important; } }

/* --- Tags ------------------------------------------------------------------ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 18px;
}
.tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.tag.dark { color: var(--gold); }
.tag.dark::before { background: var(--gold); }

/* --- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 14px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .15s, color .25s, border-color .25s;
  border-radius: 0;
  text-decoration: none;
}
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--navy-d); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy-d); }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 12px 28px;
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-xs { padding: 10px 18px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; padding: 16px; }
.btn-link {
  background: none; border: none; padding: 0;
  font-size: 13px; color: var(--gold-d); font-weight: 600;
}
.btn-link-quiet { color: var(--slate); text-decoration: underline; font-weight: 400; }

/* --- Hero ------------------------------------------------------------------ */
.hero {
  min-height: 92vh;
  background: var(--cream);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-circle {
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
}
.hero-circle-1 { top: 80px; right: -100px; width: 500px; height: 500px; opacity: .15; }
.hero-circle-2 { top: 140px; right: -50px; width: 400px; height: 400px; opacity: .10; }
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  opacity: .05;
  pointer-events: none;
}
.hero-watermark img { width: 620px; height: 620px; }
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 8px;
  max-width: 980px;
  position: relative;
}
.hero-title-accent {
  color: var(--gold-d);
  font-style: italic;
  margin-bottom: 24px;
}
.tag-stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--gold-d);
}
.tag-stamp::before, .tag-stamp::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.hero-lede {
  font-size: 18px;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Capability stat row */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  max-width: 920px;
}
.cap {
  background: var(--cream);
  padding: 22px 22px 20px;
}
.cap-stat {
  font-family: 'DM Mono', monospace;
  font-size: 24px;
  font-weight: 500;
  color: var(--gold-d);
  margin-bottom: 6px;
  line-height: 1;
}
.cap-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.cap-desc { font-size: 11px; color: var(--mid); line-height: 1.5; }

/* --- Section common -------------------------------------------------------- */
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-navy  { background: var(--navy); color: var(--cream); }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head-center { text-align: center; margin: 0 auto 48px; }
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
}
.section-title.on-dark { color: var(--cream); }
.section-title-accent {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--gold-d);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title-accent.on-dark { color: var(--gold); }
.section-lede {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
}
.section-lede.on-dark { color: var(--cream-2); }

/* --- Wizard ---------------------------------------------------------------- */
.wizard {
  background: var(--cream);
  padding: 40px 36px;
  max-width: 780px;
  margin: 0 auto;
}
.wizard-progress { display: flex; gap: 8px; margin-bottom: 28px; justify-content: center; }
.wizard-progress-dot { width: 32px; height: 3px; background: var(--rule); }
.wizard-progress-dot.active { background: var(--gold); }
.wizard-step-label {
  font-size: 11px;
  color: var(--gold-d);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}
.wizard-question {
  font-size: 28px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
  line-height: 1.2;
}
.wizard-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wz-opt {
  padding: 18px 22px;
  border: 1px solid var(--rule);
  background: var(--paper);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: left;
  width: 100%;
  border-radius: 0;
}
.wz-opt:hover { border-color: var(--gold); background: var(--cream); }
.wz-opt.active { border-color: var(--gold); background: var(--cream-2); border-width: 2px; }
.wz-opt-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.wz-opt-desc  { font-size: 13px; color: var(--mid); line-height: 1.5; }
.wizard-result-card {
  background: var(--paper);
  padding: 22px 24px;
  border: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}
.wizard-result-name { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.wizard-result-short { font-size: 13px; color: var(--mid); }
.wizard-footer { display: flex; gap: 12px; justify-content: center; margin-top: 24px; align-items: center; }
.wizard-footer-sep { color: var(--rule); }

/* --- Service cards --------------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
.svc:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(15,26,46,.08);
  transform: translateY(-3px);
}
.svc-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  color: var(--gold-d);
  margin-bottom: 20px;
  background: rgba(200,168,75,.06);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
}
.svc-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.svc-short { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 14px; }
.svc-audience {
  font-size: 12px;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.svc-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.svc-cta { font-size: 13px; font-weight: 600; color: var(--gold-d); }
.svc-arrow { color: var(--gold); transition: transform .25s; }
.svc.open .svc-arrow { transform: rotate(180deg); }

/* Service detail panel */
.svc-detail {
  background: var(--paper);
  padding: 40px 36px;
  margin-top: 24px;
  border-left: 4px solid var(--gold);
  display: none;
  animation: fadeIn .3s;
}
.svc-detail.open { display: block; }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.svc-detail-eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--gold-d);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.svc-detail-title { font-size: 30px; font-weight: 600; color: var(--ink); margin-bottom: 18px; line-height: 1.2; }
.svc-detail-desc { font-size: 15px; color: var(--slate); line-height: 1.75; margin-bottom: 24px; }
.svc-detail-list-title { font-size: 11px; letter-spacing: .18em; color: var(--gold-d); text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.svc-detail-item { display: flex; gap: 14px; margin-bottom: 14px; font-size: 14px; color: var(--char); line-height: 1.6; }
.svc-detail-check { color: var(--gold); flex-shrink: 0; font-weight: 700; margin-top: 2px; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Industry tiles -------------------------------------------------------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ind {
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  transition: background .25s, transform .25s;
}
.ind:hover { background: var(--cream); }
.ind-icon { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 32px; color: var(--gold-d); margin-bottom: 12px; line-height: 1; }
.ind-name { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.ind-desc { font-size: 13px; color: var(--slate); margin-bottom: 16px; line-height: 1.6; }
.ind-services { padding-top: 14px; border-top: 1px solid var(--rule); font-size: 11px; color: var(--mid); letter-spacing: .06em; }

/* --- Process steps --------------------------------------------------------- */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.pstep {
  position: relative;
  padding-left: 64px;
  margin-bottom: 36px;
}
.pstep-num {
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  background: var(--navy);
}
.pstep:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 48px;
  width: 1px;
  height: calc(100% + 0px);
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(200,168,75,.2) 100%);
}
.pstep-title { font-size: 24px; font-weight: 600; color: var(--cream); margin-bottom: 6px; }
.pstep-desc { font-size: 14px; color: var(--cream-2); line-height: 1.7; margin-bottom: 6px; }
.pstep-side { font-size: 12px; color: var(--gold); font-style: italic; letter-spacing: .06em; }

.path-card {
  background: var(--panel);
  padding: 40px 36px;
  border-left: 4px solid var(--gold);
  align-self: flex-start;
}
.path-eyebrow { font-size: 11px; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.path-title { font-size: 26px; color: var(--cream); font-weight: 600; margin-bottom: 24px; line-height: 1.25; }
.path-block { padding-bottom: 20px; border-bottom: 1px solid rgba(200,168,75,.2); margin-bottom: 20px; }
.path-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.path-label { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: .06em; margin-bottom: 8px; text-transform: uppercase; }
.path-desc { font-size: 14px; color: var(--cream-2); line-height: 1.65; margin-bottom: 12px; }

/* --- Coverage / Capabilities ---------------------------------------------- */
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.coverage-block { margin-bottom: 24px; }
.coverage-eyebrow { font-size: 11px; letter-spacing: .18em; color: var(--gold-d); text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.coverage-title { font-size: 18px; color: var(--ink); font-weight: 600; margin-bottom: 6px; }
.coverage-desc { font-size: 14px; color: var(--slate); line-height: 1.7; }

.cred-list-title { font-size: 13px; font-weight: 600; color: var(--gold-d); letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Cormorant Garamond', Georgia, serif; }
.cred-item { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.cred-item:first-of-type { border-top: 1px solid var(--rule); }
.cred-name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.cred-desc { font-size: 13px; color: var(--slate); line-height: 1.65; }

/* --- About ---------------------------------------------------------------- */
.brand-lockup { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.brand-lockup-rule { width: 64px; height: 1px; background: var(--gold); }
.brand-lockup-tagline { font-size: 32px; font-weight: 500; color: var(--ink); font-style: italic; letter-spacing: .005em; line-height: 1.2; font-family: 'Cormorant Garamond', Georgia, serif; }
.brand-lockup-tagline-accent { color: var(--gold-d); }
.brand-lockup-meta { font-size: 10px; color: var(--mid); letter-spacing: .28em; text-transform: uppercase; margin-top: 4px; font-family: 'DM Mono', monospace; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-prose p { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 18px; }
.about-prose p:last-child { margin-bottom: 0; }

.standard-card { background: var(--cream); padding: 32px 28px; border-left: 4px solid var(--gold); }
.standard-eyebrow { font-size: 13px; font-weight: 600; color: var(--gold-d); letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; font-family: 'Cormorant Garamond', Georgia, serif; }
.standard-item { padding: 14px 0; border-bottom: 1px solid var(--rule); }
.standard-item:last-child { border-bottom: none; }
.standard-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.standard-desc { font-size: 13px; color: var(--slate); line-height: 1.65; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { border-bottom: 1px solid var(--rule); }
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  gap: 24px;
}
.faq-q { font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.35; font-family: 'Cormorant Garamond', Georgia, serif; }
.faq-icon {
  color: var(--mid);
  flex-shrink: 0;
  font-size: 24px;
  transition: transform .25s, color .2s;
}
.faq.open .faq-icon { color: var(--gold-d); transform: rotate(45deg); }
.faq-body { display: none; padding-bottom: 24px; }
.faq.open .faq-body { display: block; }
.faq-a { font-size: 15px; color: var(--slate); line-height: 1.8; }

.faq-cta {
  background: var(--paper);
  padding: 32px;
  margin-top: 48px;
  text-align: center;
  border: 1px solid var(--rule);
}
.faq-cta-eyebrow { font-size: 11px; letter-spacing: .18em; color: var(--gold-d); text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.faq-cta-title { font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 16px; font-family: 'Cormorant Garamond', Georgia, serif; }

/* --- Forms ---------------------------------------------------------------- */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
label {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--slate);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
label.on-dark { color: var(--cream-2); }
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  width: 100%;
  border: 1px solid var(--rule);
  padding: 13px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--char);
  background: var(--paper);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-on-dark input,
.form-on-dark textarea {
  background: var(--navy-d);
  color: var(--cream);
  border: 1px solid rgba(200,168,75,.2);
}

.form-error {
  margin-bottom: 14px;
  padding: 12px 16px;
  background: rgba(239,68,68,.15);
  border-left: 3px solid #EF4444;
  font-size: 13px;
  color: #FCA5A5;
  display: none;
}
.form-error.show { display: block; }

.form-disclaimer { margin-top: 14px; font-size: 11px; color: var(--soft); line-height: 1.6; }

/* Type toggle */
.form-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.form-type-btn {
  padding: 18px 22px;
  background: var(--navy-d);
  color: var(--cream-2);
  border: 1px solid rgba(200,168,75,.2);
  cursor: pointer;
  text-align: left;
  font-weight: 400;
  transition: all .2s;
  border-radius: 0;
}
.form-type-btn.active { background: var(--gold); color: var(--navy-d); border-color: var(--gold); font-weight: 600; }
.form-type-btn-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.form-type-btn-desc { font-size: 12px; opacity: .85; }

/* --- Contact section ------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-row { display: flex; gap: 18px; }
.contact-row-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  width: 90px;
  flex-shrink: 0;
  padding-top: 3px;
  font-weight: 600;
}
.contact-row-value { font-size: 14px; color: var(--cream-2); }
.contact-divider { padding-top: 24px; border-top: 1px solid rgba(200,168,75,.2); }
.contact-divider-label { font-size: 11px; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.contact-list li { font-size: 13px; color: var(--cream-2); padding-left: 18px; position: relative; }
.contact-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.contact-form-wrap {
  background: var(--panel);
  padding: 40px 36px;
  border-left: 4px solid var(--gold);
}
.contact-form-eyebrow { font-size: 11px; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.contact-form-title { font-size: 26px; color: var(--cream); font-weight: 600; margin-bottom: 22px; line-height: 1.25; font-family: 'Cormorant Garamond', Georgia, serif; }

.contact-success {
  text-align: center;
  padding: 48px 24px;
  display: none;
}
.contact-success.show { display: block; }
.contact-success-icon { width: 64px; height: 64px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 32px; margin: 0 auto 22px; }
.contact-success-title { font-size: 28px; color: var(--cream); font-weight: 600; margin-bottom: 12px; font-family: 'Cormorant Garamond', Georgia, serif; }
.contact-success-text { font-size: 15px; color: var(--cream-2); line-height: 1.7; }

/* --- Footer --------------------------------------------------------------- */
.footer {
  background: var(--navy-d);
  padding: 56px 0 32px;
  color: var(--cream-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.footer-brand-name { font-size: 22px; font-weight: 600; color: var(--cream); line-height: 1; font-family: 'Cormorant Garamond', Georgia, serif; }
.footer-brand-sub { font-size: 9px; color: var(--gold); letter-spacing: .18em; margin-top: 4px; font-family: 'DM Mono', monospace; }
.footer-brand-tag { font-size: 13px; font-style: italic; color: var(--cream-2); margin-top: 8px; opacity: .85; font-family: 'Cormorant Garamond', Georgia, serif; }
.footer-blurb { font-size: 13px; color: var(--soft); line-height: 1.7; max-width: 300px; }

.footer-col-title {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-link {
  display: block;
  background: none;
  border: none;
  color: var(--soft);
  font-size: 13px;
  padding: 5px 0;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}
.footer-link:hover { color: var(--gold); }

.footer-contact-block { margin-bottom: 14px; }
.footer-contact-label { font-size: 11px; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.footer-contact-value { font-size: 13px; color: var(--soft); }

.footer-bottom {
  border-top: 1px solid rgba(200,168,75,.13);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 11px;
  color: var(--soft);
}
.footer-creds { display: flex; gap: 24px; flex-wrap: wrap; }

/* --- Logo ----------------------------------------------------------------- */
.logo { display: block; object-fit: contain; }

/* --- Scrollbar ------------------------------------------------------------ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ==========================================================================
   RESPONSIVE — mobile / tablet
   ========================================================================== */
@media (max-width: 1080px) {
  .svc-grid, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .container, .container-narrow, .container-tight { padding: 0 22px; }
  .section { padding: 72px 0; }
  .nav-inner { height: 64px; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .nav-brand-text { display: none; }
  .nav-drawer { padding: 14px 22px 20px; }

  .cap-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .svc-grid, .ind-grid { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-type-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .wizard-options { grid-template-columns: 1fr; }
  .hero-watermark img { width: 380px; height: 380px; }

  .section-head, .section-head-center { margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .cap-grid { grid-template-columns: 1fr; }
  .nav-brand-text { display: none; }
  .wizard { padding: 28px 20px; }
  .svc { padding: 24px 20px; }
  .svc-detail { padding: 28px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .standard-card, .path-card { padding: 28px 22px; }
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .nav, .footer, .hero-watermark, .hero-circle, .hero-actions { display: none; }
  body { background: white; color: black; }
}

/* --- Reduced motion ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01s !important; }
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; }
}
