*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
:root{
  --navy:#0C1C2E;
  --navy2:#14263A;
  --navy3:#1B324B;
  --gold:#A07828;
  --gold-light:#C49A3C;
  --gold-soft:#F4E8CC;
  --off:#F6F7F9;
  --off-2:#FBFBFC;
  --border:#D8DCE4;
  --text:#2C3A4A;
  --muted:#6B7A8D;
  --white-soft:rgba(255,255,255,.72);
  --shadow:0 24px 60px rgba(12,28,46,.12);
  --serif:'Libre Baskerville',Georgia,serif;
  --sans:'Source Sans 3',sans-serif;
}
body{font-family:var(--sans);color:var(--text);background:var(--off-2);line-height:1.7;-webkit-font-smoothing:antialiased}
body.menu-open{overflow:hidden}
a{color:inherit}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}
:focus-visible{outline:2px solid var(--gold-light);outline-offset:3px}

/* NAV */
nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background:rgba(12,28,46,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(160,120,40,.28);
}
.nav-wrap{
  max-width:1200px;
  min-height:72px;
  margin:0 auto;
  padding:0 2rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.logo{
  display:flex;
  align-items:center;
  gap:.85rem;
  text-decoration:none;
}
.logo-diamond{
  width:12px;
  height:12px;
  background:var(--gold);
  transform:rotate(45deg);
  flex-shrink:0;
}
.logo-name{
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#fff;
}
.logo-name span{color:var(--gold-light)}
.nav-links{
  display:flex;
  align-items:center;
  gap:2rem;
  list-style:none;
}
.nav-links a,.mobile-menu a{
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-decoration:none;
}
.nav-links a{
  color:rgba(255,255,255,.68);
  transition:color .2s ease,background .2s ease;
}
.nav-links a:hover{color:#fff}
.nav-btn{
  padding:.48rem 1.2rem;
  background:var(--gold);
  color:var(--navy) !important;
  font-weight:600 !important;
}
.nav-btn:hover{background:var(--gold-light) !important}
.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:transparent;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  color:#fff;
  cursor:pointer;
}
.nav-toggle span{
  width:18px;
  height:1.5px;
  background:currentColor;
  transition:transform .24s ease,opacity .24s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(5.5px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-5.5px) rotate(-45deg)}
.mobile-menu{
  display:none;
  padding:0 2rem 1.2rem;
  background:rgba(12,28,46,.98);
  border-top:1px solid rgba(255,255,255,.08);
}
.mobile-menu.is-open{display:block}
.mobile-menu a{
  display:block;
  padding:.95rem 0;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-menu a:last-child{border-bottom:none}

/* HERO */
#hero{
  position:relative;
  overflow:hidden;
  min-height:100vh;
  padding:8.75rem 2rem 6.25rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(196,154,60,.2), transparent 24rem),
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.06), transparent 20rem),
    linear-gradient(180deg, #102335 0%, #0C1C2E 58%, #091522 100%);
}
#hero::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:120px 120px;
  opacity:.16;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.85), transparent 90%);
}
.hero-rule{
  position:absolute;
  top:0;
  bottom:0;
  left:max(.35rem, calc(50% - 600px - 1.75rem));
  width:3px;
  background:linear-gradient(180deg, transparent 0%, rgba(196,154,60,.9) 14%, rgba(196,154,60,.2) 88%, transparent 100%);
}
.hero-inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(340px,480px);
  gap:4rem;
  align-items:center;
}
.hero-copy{max-width:610px}
.hero-eyebrow{
  margin-bottom:1rem;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold-light);
}
.hero-kicker{
  margin-bottom:1rem;
  font-size:.84rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.46);
}
.hero-h1{
  margin-bottom:1.35rem;
  font-family:var(--serif);
  font-size:clamp(2.7rem,5vw,4.75rem);
  font-weight:400;
  line-height:1.08;
  color:#fff;
}
.hero-p{
  max-width:34rem;
  margin-bottom:2rem;
  font-size:1rem;
  font-weight:300;
  line-height:1.85;
  color:var(--white-soft);
}
.hero-actions{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 1.8rem;
  border:1.5px solid transparent;
  text-decoration:none;
  font-size:.76rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:transform .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-gold{
  background:var(--gold);
  color:var(--navy);
  border-color:var(--gold);
}
.btn-gold:hover{
  background:var(--gold-light);
  border-color:var(--gold-light);
}
.btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.26);
  background:transparent;
}
.btn-outline:hover{
  color:#fff;
  border-color:rgba(255,255,255,.65);
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:2.2rem;
}
.hero-stat{
  min-width:11.5rem;
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,.18);
}
.hero-stat-label{
  display:block;
  margin-bottom:.35rem;
  font-size:.66rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.46);
}
.hero-stat-value{
  display:block;
  font-size:.94rem;
  color:#fff;
}
.hero-visual{
  position:relative;
  overflow:hidden;
  padding:2rem;
  border:1px solid rgba(196,154,60,.18);
  background:linear-gradient(180deg, rgba(20,38,58,.9), rgba(12,28,46,.98));
  box-shadow:var(--shadow);
}
.hero-visual::before{
  content:'';
  position:absolute;
  inset:1.15rem;
  border:1px solid rgba(196,154,60,.12);
}
.hero-visual::after{
  content:'';
  position:absolute;
  right:-12%;
  bottom:-20%;
  width:18rem;
  height:18rem;
  background:radial-gradient(circle, rgba(196,154,60,.22), transparent 62%);
}
.hero-visual-top,.hero-signal-grid,.hero-route{position:relative;z-index:1}
.hero-visual-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
}
.hero-visual-label{
  margin-bottom:.85rem;
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold-light);
}
.hero-visual-title{
  max-width:17rem;
  font-family:var(--serif);
  font-size:1.5rem;
  line-height:1.5;
  color:#fff;
}
.hero-signal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  margin-top:1.9rem;
  background:rgba(196,154,60,.16);
}
.hero-signal{
  padding:1.15rem 1.1rem;
  background:rgba(8,20,32,.76);
}
.hero-signal-label{
  display:block;
  margin-bottom:.4rem;
  font-size:.66rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.46);
}
.hero-signal-value{
  display:block;
  font-size:.92rem;
  color:#fff;
  line-height:1.55;
}
.hero-route{
  margin-top:1.65rem;
  padding-top:1.35rem;
  border-top:1px solid rgba(196,154,60,.16);
}
.hero-route-label{
  margin-bottom:.8rem;
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold-light);
}
.hero-route-line{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:.75rem;
}
.hero-route-line span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:2.4rem;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#fff;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-align:center;
}
.hero-route-copy{
  margin-top:.95rem;
  font-size:.86rem;
  line-height:1.75;
  color:rgba(255,255,255,.58);
}

/* STRIP */
.strip{
  background:#fff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.strip-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-left:1px solid var(--border);
}
.strip-item{
  padding:2rem;
  border-right:1px solid var(--border);
}
.strip-label{
  margin-bottom:.55rem;
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
}
.strip-text{
  font-size:.88rem;
  line-height:1.7;
  color:var(--text);
}

/* SECTIONS */
section{scroll-margin-top:82px}
.section{padding:6rem 2rem}
.section-inner{max-width:1200px;margin:0 auto}
.section-dark{
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 18%),
    linear-gradient(180deg, #102335 0%, #0C1C2E 100%);
}
.section-grey{background:var(--off)}
.eyebrow{
  margin-bottom:1rem;
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
}
.section-h{
  margin-bottom:1.15rem;
  font-family:var(--serif);
  font-size:clamp(1.9rem,3vw,2.7rem);
  font-weight:400;
  line-height:1.18;
  color:var(--navy);
}
.section-h em{font-style:italic;color:var(--gold)}
.section-h-light{color:#fff}
.section-p{
  max-width:35rem;
  font-size:.96rem;
  font-weight:300;
  line-height:1.8;
  color:var(--muted);
}
.section-p-light{color:rgba(255,255,255,.62)}
.rule{
  width:44px;
  height:2px;
  margin:1.4rem 0;
  background:linear-gradient(90deg, var(--gold), transparent);
}

/* SERVICES */
.services-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,1.02fr);
  gap:4rem;
  align-items:start;
  margin-top:3.4rem;
}
.services-list{
  display:flex;
  flex-direction:column;
  border:1px solid var(--border);
  background:#fff;
}
.srv{
  display:flex;
  gap:1.2rem;
  align-items:flex-start;
  padding:1.55rem 1.75rem;
  border-bottom:1px solid var(--border);
  transition:background .2s ease,transform .2s ease;
}
.srv:last-child{border-bottom:none}
.srv:hover{background:#FAF8F2}
.srv-num{
  font-family:var(--serif);
  font-size:1.1rem;
  line-height:1;
  color:var(--gold);
  flex-shrink:0;
  padding-top:2px;
}
.srv-title{
  margin-bottom:.35rem;
  font-size:.84rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--navy);
}
.srv-text{
  font-size:.85rem;
  line-height:1.68;
  color:var(--muted);
}
.services-aside{
  position:relative;
  overflow:hidden;
  padding:2.4rem;
  background:linear-gradient(180deg, var(--navy2), var(--navy));
  box-shadow:var(--shadow);
}
.services-aside::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(196,154,60,.16), transparent 16rem);
}
.aside-quote,.aside-body,.aside-list{position:relative;z-index:1}
.aside-quote{
  margin-bottom:1.3rem;
  font-family:var(--serif);
  font-size:1.2rem;
  font-style:italic;
  line-height:1.58;
  color:#fff;
}
.aside-body{
  margin-bottom:1.9rem;
  font-size:.88rem;
  font-weight:300;
  line-height:1.78;
  color:rgba(255,255,255,.64);
}
.aside-list{
  display:flex;
  flex-direction:column;
  gap:.75rem;
  padding-top:1.4rem;
  list-style:none;
  border-top:1px solid rgba(196,154,60,.22);
}
.aside-list li{
  display:flex;
  gap:.7rem;
  align-items:flex-start;
  font-size:.8rem;
  color:rgba(255,255,255,.58);
}
.aside-list li::before{
  content:'';
  width:4px;
  height:4px;
  margin-top:.55rem;
  background:var(--gold);
  flex-shrink:0;
}

/* PRODUCTS */
.prod-header{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,420px);
  gap:3rem;
  align-items:end;
  margin-bottom:3rem;
}
.prod-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.4rem;
}
.prod-card{
  position:relative;
  padding:2rem;
  border:1px solid var(--border);
  background:#fff;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.prod-card:hover{
  transform:translateY(-4px);
  border-color:rgba(160,120,40,.42);
  box-shadow:var(--shadow);
}
.prod-card::before{
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:2px;
  background:linear-gradient(180deg, rgba(160,120,40,0), rgba(160,120,40,1), rgba(160,120,40,0));
  transform:scaleY(.35);
  transform-origin:center;
  transition:transform .3s ease;
}
.prod-card:hover::before{transform:scaleY(1)}
.prod-tag{
  display:inline-block;
  margin-bottom:.9rem;
  padding:.22rem .6rem;
  background:var(--gold-soft);
  color:var(--gold);
  font-size:.64rem;
  font-weight:600;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.prod-title{
  margin-bottom:.7rem;
  font-size:.88rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--navy);
}
.prod-text{
  margin-bottom:1.1rem;
  font-size:.84rem;
  line-height:1.68;
  color:var(--muted);
}
.prod-items{
  display:flex;
  flex-direction:column;
  gap:.42rem;
  list-style:none;
}
.prod-items li{
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  font-size:.8rem;
  line-height:1.55;
  color:var(--text);
}
.prod-items li::before{
  content:'';
  width:4px;
  height:4px;
  margin-top:.52rem;
  background:var(--gold);
  flex-shrink:0;
}

/* INDUSTRIES */
.ind-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;
  margin-top:3rem;
  background:rgba(255,255,255,.08);
}
.ind-card{
  padding:2.15rem;
  background:var(--navy2);
  transition:background .2s ease,transform .2s ease;
}
.ind-card:hover{
  background:var(--navy3);
  transform:translateY(-2px);
}
.ind-title{
  display:flex;
  gap:.7rem;
  align-items:center;
  margin-bottom:.6rem;
  font-size:.84rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
}
.ind-title::before{
  content:'';
  width:20px;
  height:1.5px;
  background:var(--gold);
  flex-shrink:0;
}
.ind-text{
  font-size:.85rem;
  line-height:1.7;
  color:rgba(255,255,255,.56);
}

/* WHY */
.why-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,420px);
  gap:4rem;
  align-items:start;
  margin-top:3.4rem;
}
.why-items{
  display:flex;
  flex-direction:column;
  gap:1.85rem;
}
.why-item{
  display:flex;
  gap:1.2rem;
  align-items:flex-start;
  padding-bottom:1.9rem;
  border-bottom:1px solid var(--border);
}
.why-item:last-child{padding-bottom:0;border-bottom:none}
.why-num{
  font-family:var(--serif);
  font-size:1.45rem;
  line-height:1;
  color:var(--gold);
  flex-shrink:0;
}
.why-title{
  margin-bottom:.32rem;
  font-size:.84rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--navy);
}
.why-text{
  font-size:.85rem;
  line-height:1.7;
  color:var(--muted);
}
.why-aside{
  padding:2.35rem;
  border:1px solid var(--border);
  background:#fff;
}
.why-aside-title{
  margin-bottom:1rem;
  font-family:var(--serif);
  font-size:1.36rem;
  font-weight:400;
  line-height:1.42;
  color:var(--navy);
}
.why-aside-title em{font-style:italic;color:var(--gold)}
.why-aside-text{
  margin-bottom:1rem;
  font-size:.87rem;
  line-height:1.76;
  color:var(--muted);
}
.certs{
  display:flex;
  flex-direction:column;
  gap:.72rem;
  padding-top:1.45rem;
  border-top:1px solid var(--border);
}
.cert{
  display:flex;
  gap:.7rem;
  align-items:flex-start;
  font-size:.79rem;
  line-height:1.55;
  color:var(--text);
}
.cert::before{
  content:'';
  width:5px;
  height:5px;
  margin-top:.45rem;
  background:var(--gold);
  flex-shrink:0;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,420px);
  gap:4rem;
  align-items:start;
  margin-top:3.4rem;
}
.about-text p{
  margin-bottom:1.15rem;
  font-size:.92rem;
  font-weight:300;
  line-height:1.82;
  color:rgba(255,255,255,.68);
}
.about-metrics{
  display:flex;
  flex-direction:column;
  border:1px solid rgba(196,154,60,.22);
  background:rgba(255,255,255,.02);
}
.metric{
  display:flex;
  gap:1.3rem;
  align-items:center;
  padding:1.55rem 1.9rem;
  border-bottom:1px solid rgba(196,154,60,.15);
}
.metric:last-child{border-bottom:none}
.metric-n{
  min-width:4.8rem;
  font-family:var(--serif);
  font-size:1.95rem;
  font-weight:700;
  line-height:1;
  color:var(--gold-light);
  flex-shrink:0;
}
.metric-title{
  margin-bottom:.2rem;
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#fff;
}
.metric-text{
  font-size:.82rem;
  line-height:1.48;
  color:rgba(255,255,255,.48);
}
.values-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;
  margin-top:2.35rem;
  background:rgba(196,154,60,.16);
}
.value{
  padding:1.35rem;
  background:var(--navy2);
}
.value-title{
  margin-bottom:.35rem;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
}
.value-text{
  font-size:.8rem;
  line-height:1.56;
  color:rgba(255,255,255,.48);
}

/* CTA */
.cta-band{
  padding:4rem 2rem;
  background:linear-gradient(90deg, var(--gold) 0%, #B88F37 100%);
}
.cta-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:2rem;
  align-items:center;
}
.cta-h{
  margin-bottom:.45rem;
  font-family:var(--serif);
  font-size:1.95rem;
  font-weight:400;
  color:var(--navy);
}
.cta-p{
  max-width:33rem;
  font-size:.92rem;
  line-height:1.72;
  color:rgba(12,28,46,.75);
}
.btn-navy{
  background:var(--navy);
  color:var(--gold-light);
  border-color:var(--navy);
  white-space:nowrap;
}
.btn-navy:hover{background:var(--navy2)}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:4rem;
  align-items:start;
  margin-top:3.4rem;
}
.contact-details{
  display:flex;
  flex-direction:column;
  gap:1.8rem;
}
.contact-intro{
  font-size:.93rem;
  line-height:1.82;
  color:var(--muted);
}
.cd-label{
  margin-bottom:.32rem;
  font-size:.65rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
}
.cd-val{
  font-size:1rem;
  color:var(--navy);
}
.contact-link{
  text-decoration:none;
  transition:color .2s ease;
}
.contact-link:hover{color:var(--gold)}
.cd-sub{
  margin-top:.15rem;
  font-size:.82rem;
  color:var(--muted);
}
.contact-note{
  margin-top:.15rem;
  padding:1.8rem;
  background:linear-gradient(180deg, var(--navy2), var(--navy));
}
.contact-note p{
  font-size:.83rem;
  line-height:1.72;
  color:rgba(255,255,255,.58);
}
.contact-note strong{
  font-weight:500;
  color:var(--gold-light);
}
.form{
  padding:2.2rem;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:var(--shadow);
}
.form-title{
  margin-bottom:.9rem;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--navy);
}
.form-intro{
  margin-bottom:1.4rem;
  padding-bottom:1.2rem;
  border-bottom:1px solid var(--border);
  font-size:.87rem;
  line-height:1.72;
  color:var(--muted);
}
.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  margin-bottom:1rem;
}
.fg{
  display:flex;
  flex-direction:column;
  gap:.38rem;
  margin-bottom:1rem;
}
.fg-last{margin-bottom:0}
label{
  font-size:.67rem;
  font-weight:600;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--text);
}
input,select,textarea{
  width:100%;
  padding:.78rem .95rem;
  border:1px solid var(--border);
  background:var(--off);
  color:var(--navy);
  outline:none;
  transition:border-color .2s ease,background .2s ease;
  -webkit-appearance:none;
  appearance:none;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--gold);
  background:#fff;
}
textarea{min-height:130px;resize:vertical}
.form-feedback{
  min-height:1.5rem;
  margin-top:.8rem;
  font-size:.84rem;
  line-height:1.6;
  color:var(--muted);
}
.form-feedback.is-success{color:#205947}
.form-feedback.is-error{color:#8A4621}
.submit{
  width:100%;
  margin-top:.65rem;
  border:none;
  background:var(--gold);
  color:var(--navy);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:1rem;
  cursor:pointer;
  transition:background .2s ease,transform .2s ease;
}
.submit:hover{
  background:var(--gold-light);
  transform:translateY(-1px);
}
.submit:disabled{
  opacity:.9;
  cursor:wait;
}

/* FOOTER */
footer{
  padding:4rem 2rem 2rem;
  background:#060E17;
  border-top:1px solid rgba(160,120,40,.2);
}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:3rem;
  margin-bottom:3rem;
}
.footer-brand p{
  margin:.9rem 0 1.2rem;
  font-size:.83rem;
  line-height:1.72;
  color:rgba(255,255,255,.36);
}
.footer-tagline{
  font-family:var(--serif);
  font-style:italic;
  font-size:1rem;
  color:var(--gold-light);
}
.footer-col h4{
  margin-bottom:1rem;
  font-size:.65rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
}
.footer-col ul{
  display:flex;
  flex-direction:column;
  gap:.55rem;
  list-style:none;
}
.footer-col a{
  font-size:.82rem;
  color:rgba(255,255,255,.4);
  text-decoration:none;
  transition:color .2s ease;
}
.footer-col a:hover{color:var(--gold-light)}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  padding-top:1.8rem;
  border-top:1px solid rgba(255,255,255,.07);
}
.footer-copy{
  font-size:.75rem;
  color:rgba(255,255,255,.28);
}
.footer-link{
  color:inherit;
  text-decoration:none;
}
.footer-link:hover{color:var(--gold-light)}

/* REVEALS */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:
    opacity .7s ease var(--reveal-delay,0ms),
    transform .7s cubic-bezier(.2,.8,.2,1) var(--reveal-delay,0ms);
}
body.is-ready .reveal.is-visible{
  opacity:1;
  transform:none;
}

/* RESPONSIVE */
@media(max-width:1080px){
  .hero-inner,.services-layout,.contact-grid,.why-grid,.about-grid{gap:3rem}
  .prod-header{grid-template-columns:1fr}
}

@media(max-width:900px){
  .nav-wrap{padding:0 1.25rem}
  .nav-links{display:none}
  .nav-toggle{display:flex}
  #hero{padding:8rem 1.25rem 5rem}
  .hero-inner,.services-layout,.prod-grid,.why-grid,.about-grid,.contact-grid,.cta-inner,.footer-top{grid-template-columns:1fr}
  .hero-visual{max-width:100%}
  .strip-inner,.ind-grid,.values-grid,.hero-signal-grid,.hero-route-line{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .section,.cta-band,footer{padding-left:1.25rem;padding-right:1.25rem}
  .strip-inner{border-left:none}
  .strip-item{border-left:1px solid var(--border);border-right:1px solid var(--border)}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}

@media(max-width:640px){
  .hero-h1{font-size:clamp(2.3rem,11vw,3.4rem)}
  .hero-meta{flex-direction:column;gap:.8rem}
  .hero-stat{min-width:0}
  .hero-actions{flex-direction:column;align-items:stretch}
  .btn{width:100%}
  .logo-name{font-size:.74rem}
  .cta-h{font-size:1.68rem}
}
