/* ==========================================================================
   JANCO EXTRUSION — Corporate Website
   Design system
   ========================================================================== */

:root{
  --red:        #E31E24;
  --red-dark:   #B8151B;
  --black:      #0A0B0D;
  --near-black: #111214;
  --charcoal:   #1B1D21;
  --steel:      #6F7075;
  --steel-light:#9A9BA0;
  --line:       #2A2C31;
  --line-soft:  rgba(255,255,255,0.08);
  --off-white:  #F5F4F2;
  --white:      #FFFFFF;
  --paper:      #FAFAF9;

  --ff-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --ff-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--ff-display); margin:0; line-height:1.05; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* -------------------- Utility -------------------- */
.eyebrow{
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:'';
  width: 28px;
  height: 2px;
  background: var(--red);
}
.eyebrow.on-dark{ color: #FF6A6E; }
.eyebrow.light::before{ background: var(--white); }

.section{ padding: clamp(64px, 10vw, 140px) 0; }
.section-dark{ background: var(--black); color: var(--off-white); }
.section-charcoal{ background: var(--charcoal); color: var(--off-white); }

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head h2{ font-size: clamp(32px, 4.2vw, 56px); font-weight: 700; }
.section-head .lede{ max-width: 380px; color: var(--steel); font-size: 16px; line-height:1.6; }
.section-dark .section-head .lede, .section-charcoal .section-head .lede{ color: var(--steel-light); }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .35s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary{ background: var(--red); color: var(--white); }
.btn-primary:hover{ background: var(--red-dark); transform: translateY(-2px); }
.btn-outline{ border-color: currentColor; color: var(--black); }
.btn-outline:hover{ background: var(--black); color: var(--white); border-color: var(--black); }
.btn-outline.on-dark{ color: var(--white); }
.btn-outline.on-dark:hover{ background: var(--white); color: var(--black); }
.btn svg{ width:14px; height:14px; transition: transform .35s var(--ease); }
.btn:hover svg{ transform: translateX(4px); }

.tag{
  display:inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

/* -------------------- Reveal animation -------------------- */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal-stagger > *{ opacity:0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform:none; }
.reveal-stagger.in > *:nth-child(1){ transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: .14s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: .23s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: .41s; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; }
.site-header.scrolled{
  padding: 10px 0;
  background: rgba(10,11,13,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height: 91px; width:auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand img{ height: 77px; }
.footer-brand .brand img{ height: 102px; }
@media (max-width: 560px){
  .brand img{ height: 70px; }
  .footer-brand .brand img{ height: 81px; }
}
.brand-word{
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.brand-word span{ color: var(--red); }

.nav-links{ display:flex; align-items:center; gap: 40px; }
.nav-links a{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; right:100%; bottom:0;
  height: 2px; background: var(--red);
  transition: right .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after{ right:0; }

.nav-cta{ display:flex; align-items:center; gap:24px; }
.nav-toggle{
  display:none;
  width: 42px; height:42px;
  border:1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  background: transparent;
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
}
.nav-toggle span{ width:18px; height:2px; background:#fff; display:block; transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-links{
    position: fixed; inset: 0 0 0 30%;
    background: var(--black);
    flex-direction: column;
    justify-content:center;
    align-items:flex-start;
    padding: 40px var(--gutter);
    gap: 26px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    z-index: 999;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size: 20px; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn-outline{ display:none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}
.hero-bg::after{
  content:'';
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,11,13,.55) 0%, rgba(10,11,13,.35) 35%, rgba(10,11,13,.92) 100%),
    linear-gradient(90deg, rgba(10,11,13,.75) 0%, rgba(10,11,13,.15) 55%);
}
.hero-content{
  position:relative;
  z-index: 2;
  padding-bottom: clamp(56px, 8vw, 100px);
  padding-top: 180px;
  width:100%;
}
.hero-kicker{
  display:flex; align-items:center; gap:12px;
  color: #FF6A6E; font-size: 12.5px; font-weight:700;
  letter-spacing:0.22em; text-transform:uppercase;
  margin-bottom: 26px;
}
.hero-kicker::before{ content:''; width:28px; height:2px; background: var(--red); }
.hero h1{
  color: var(--white);
  font-size: clamp(44px, 7.8vw, 108px);
  font-weight: 800;
  text-transform: uppercase;
  max-width: 16ch;
}
.hero h1 em{ font-style:normal; color: var(--red); }
.hero-sub{
  color: rgba(255,255,255,0.72);
  font-size: clamp(15px,1.6vw,19px);
  max-width: 520px;
  margin-top: 26px;
  line-height:1.65;
}
.hero-actions{ display:flex; gap:18px; margin-top:44px; flex-wrap:wrap; }

.hero-stats{
  position:relative; z-index:2;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 64px;
}
.hero-stats .container{
  display:grid;
  grid-template-columns: repeat(4,1fr);
}
.hero-stats .stat{
  padding: 26px var(--gutter) 26px 0;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.hero-stats .stat:last-child{ border-right:none; }
.hero-stats .stat .num{
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
}
.hero-stats .stat .num span{ color: var(--red); }
.hero-stats .stat .label{
  margin-top: 4px;
  font-size: 12px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color: var(--steel-light);
}
@media (max-width: 800px){
  .hero-stats .container{ grid-template-columns: repeat(2,1fr); }
  .hero-stats .stat{ padding: 20px 16px 20px 0; }
  .hero-stats .stat:nth-child(2){ border-right:none; }
}

/* Page (inner) hero — for non-home pages */
.page-hero{
  position:relative;
  background: var(--black);
  padding: 190px 0 90px;
  overflow:hidden;
}
.page-hero .bg-img{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:.28;
}
.page-hero .bg-img::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,11,13,.4), rgba(10,11,13,1));
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero .crumb{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color: var(--steel-light); margin-bottom: 22px;
}
.page-hero .crumb span{ color: var(--red); }
.page-hero h1{
  color:var(--white);
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight:800;
  text-transform:uppercase;
  max-width: 18ch;
}
.page-hero .lede{
  margin-top:20px; max-width:600px; color: var(--steel-light);
  font-size: clamp(15px,1.4vw,18px); line-height:1.7;
}

/* ==========================================================================
   Marquee strip
   ========================================================================== */
.marquee{
  background: var(--red);
  overflow:hidden;
  padding: 14px 0;
}
.marquee-track{
  display:flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-track span{
  font-family: var(--ff-display);
  font-weight:800;
  text-transform:uppercase;
  font-size: 15px;
  letter-spacing:.08em;
  color: #fff;
  display:flex; align-items:center; gap:60px;
}
.marquee-track span::after{ content:'◆'; font-size:10px; opacity:.6; margin-left:60px; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid{ display:grid; gap: 28px; }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
.grid-2{ grid-template-columns: repeat(2,1fr); }
@media (max-width: 980px){
  .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

.pillar-card{
  padding: 40px 32px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  transition: all .4s var(--ease);
  background: rgba(255,255,255,0.02);
}
.pillar-card:hover{ background: rgba(255,255,255,0.05); transform: translateY(-6px); border-color: rgba(227,30,36,0.5); }
.pillar-card .idx{ font-family: var(--ff-display); font-size:13px; color: var(--red); font-weight:700; letter-spacing:.1em; }
.pillar-card h3{ font-size: 24px; margin-top:18px; color: var(--white); font-weight:700; }
.pillar-card p{ margin-top:14px; color: var(--steel-light); font-size:15px; line-height:1.65; }

/* Image-backed pillar card (industry teasers) */
.pillar-card-img{
  position:relative;
  border-radius: 4px;
  overflow:hidden;
  min-height: 340px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 28px 26px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-soft);
  transition: all .5s var(--ease);
}
.pillar-card-img::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,11,13,.15) 0%, rgba(10,11,13,.55) 55%, rgba(10,11,13,.95) 100%);
  transition: opacity .5s var(--ease);
}
.pillar-card-img:hover{ transform: translateY(-6px); border-color: rgba(227,30,36,0.6); }
.pillar-card-img:hover::before{ opacity: .85; }
.pillar-card-img .card-inner{ position:relative; z-index:2; }
.pillar-card-img .idx{ font-family: var(--ff-display); font-size:12.5px; color:#FF8A8D; font-weight:700; letter-spacing:.1em; }
.pillar-card-img h3{ font-size: 22px; margin-top:10px; color: var(--white); font-weight:700; }
.pillar-card-img p{ margin-top:8px; color: rgba(255,255,255,.78); font-size:14px; line-height:1.55; }

.light-card{
  background: var(--white);
  border: 1px solid #E7E5E1;
  border-radius: 4px;
  padding: 36px 30px;
  transition: all .4s var(--ease);
}
.light-card:hover{ box-shadow: 0 24px 48px rgba(10,11,13,0.09); transform: translateY(-6px); border-color: #fff; }
.light-card .idx{ font-family: var(--ff-display); font-weight:800; font-size:13px; color: var(--red); letter-spacing:.1em; }
.light-card h3{ font-size:22px; margin-top:16px; font-weight:700; }
.light-card p{ margin-top:12px; color: var(--steel); font-size:14.5px; line-height:1.6; }

.stat-block{ text-align:left; min-width:0; }
.stat-block .num{ font-family: var(--ff-display); font-weight:800; font-size: clamp(19px,2.3vw,32px); white-space:nowrap; }
.stat-block .num span{ color: var(--red); }
.stat-block .label{ margin-top:6px; font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color: var(--steel); }

/* 3-up stat rows (facility / location stats) — force equal-width columns so number + unit never wraps */
.grid-3.stat-row{ grid-template-columns: repeat(3, 1fr); }
.grid-3.stat-row .stat-block{ text-align:left; }
@media (max-width: 480px){
  .grid-3.stat-row{ grid-template-columns: repeat(3, 1fr); gap:12px; }
  .grid-3.stat-row .stat-block .num{ font-size: clamp(16px,4.5vw,22px); }
}

/* Image reveal frame */
.img-frame{ position:relative; overflow:hidden; border-radius: 4px; }
.img-frame img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.img-frame:hover img{ transform: scale(1.06); }

/* ==========================================================================
   Split sections
   ========================================================================== */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items:center;
}
@media (max-width: 900px){ .split{ grid-template-columns:1fr; gap:40px; } }
.split.reverse .split-media{ order:2; }
.split-copy .eyebrow{ margin-bottom:16px; }
.split-copy h2{ font-size: clamp(28px,3.6vw,44px); font-weight:700; margin-bottom:22px; }
.split-copy p{ color: var(--steel); font-size:16px; line-height:1.75; margin-bottom:16px; }
.section-dark .split-copy p, .section-charcoal .split-copy p{ color: var(--steel-light); }

.check-list{ margin-top: 26px; display:flex; flex-direction:column; gap:14px; }
.check-list li{ display:flex; gap:14px; align-items:flex-start; font-size:15px; color: var(--black); }
.section-dark .check-list li, .section-charcoal .check-list li{ color: var(--off-white); }
.check-list .ico{
  flex:none; width:22px; height:22px; border-radius:50%;
  background: var(--red); color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:12px; margin-top:1px;
}

/* ==========================================================================
   Quote block
   ========================================================================== */
.quote-block{
  border-left: 3px solid var(--red);
  padding-left: 32px;
}
.quote-block p{
  font-family: var(--ff-display);
  font-size: clamp(22px,2.6vw,34px);
  font-weight: 600;
  line-height:1.4;
  color: var(--white);
}
.quote-block .attrib{ margin-top:20px; font-size:13px; letter-spacing:.06em; text-transform:uppercase; color: var(--steel-light); }

/* ==========================================================================
   Timeline (career)
   ========================================================================== */
.timeline{ position:relative; padding-left: 32px; border-left: 1px solid var(--line); }
.timeline-item{ position:relative; padding-bottom: 34px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:''; position:absolute; left:-38px; top:4px;
  width:12px; height:12px; border-radius:50%;
  background: var(--red); border: 3px solid var(--black);
}
.timeline-item .role{ font-weight:700; font-size:16px; color: var(--white); }
.timeline-item .org{ color: var(--red); font-size:13.5px; font-weight:600; margin-top:2px; }
.timeline-item .yrs{ color: var(--steel-light); font-size:12.5px; margin-top:4px; text-transform:uppercase; letter-spacing:.05em; }

/* ==========================================================================
   Spec table (equipment)
   ========================================================================== */
.spec-table{ width:100%; border-collapse:collapse; }
.spec-table tr{ border-bottom: 1px solid var(--line-soft); }
.spec-table tr:last-child{ border-bottom:none; }
.spec-table td{ padding: 16px 0; font-size:15px; }
.spec-table td:first-child{ color: var(--steel-light); text-transform:uppercase; font-size:12px; letter-spacing:.06em; width:46%; }
.spec-table td:last-child{ color: var(--white); font-weight:700; font-family: var(--ff-display); font-size:17px; }

/* ==========================================================================
   Equipment cards
   ========================================================================== */
.equip-card{
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 34px;
  transition: all .4s var(--ease);
}
.equip-card:hover{ border-color: rgba(227,30,36,.5); background: rgba(255,255,255,.02); }
.equip-card .num{ font-family: var(--ff-display); font-size:44px; font-weight:800; color: rgba(255,255,255,.12); }
.equip-card h3{ font-size:22px; color:#fff; margin-top:8px; }
.equip-card .supplier{ color: var(--red); font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-top:6px; }
.equip-card .specs{ margin-top:20px; display:flex; flex-direction:column; gap:10px; }
.equip-card .specs div{ display:flex; justify-content:space-between; font-size:13.5px; color: var(--steel-light); border-top:1px dashed var(--line); padding-top:10px; }
.equip-card .specs div b{ color:#fff; font-weight:600; }

/* ==========================================================================
   Map / location
   ========================================================================== */
.coord-badge{
  display:inline-flex; gap:10px; align-items:center;
  padding: 10px 18px; border:1px solid var(--line-soft); border-radius:100px;
  font-family: var(--ff-display); font-size:13px; color:#fff; letter-spacing:.03em;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: var(--red);
  padding: clamp(56px,8vw,96px) 0;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:'';
  position:absolute; right:-10%; top:-40%;
  width:600px; height:600px;
  border-radius:50%;
  background: rgba(255,255,255,0.08);
}
.cta-band .container{ position:relative; z-index:2; display:flex; justify-content:space-between; align-items:center; gap:40px; flex-wrap:wrap; }
.cta-band h2{ color:#fff; font-size: clamp(28px,4vw,46px); font-weight:800; max-width:14ch; }
.cta-band p{ color: rgba(255,255,255,.85); margin-top:14px; max-width: 420px; }
.cta-band .btn-outline{ border-color:#fff; color:#fff; }
.cta-band .btn-outline:hover{ background:#fff; color: var(--red); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--black); color: var(--steel-light); padding-top: 80px; }
.footer-top{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 64px; border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand .brand{ margin-bottom:18px; }
.footer-brand p{ font-size:14px; line-height:1.7; max-width:320px; color: var(--steel-light); }
.footer-social{ display:flex; gap:12px; margin-top:24px; }
.footer-social a{
  width:38px; height:38px; border:1px solid var(--line); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition: all .3s;
}
.footer-social a:hover{ background: var(--red); border-color:var(--red); }
.footer-col h4{ color:#fff; font-size:13px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:22px; }
.footer-col ul{ display:flex; flex-direction:column; gap:13px; }
.footer-col a{ font-size:14.5px; color: var(--steel-light); transition: color .3s; }
.footer-col a:hover{ color: var(--red); }
.footer-col .contact-line{ display:flex; gap:10px; font-size:14px; align-items:flex-start; color:var(--steel-light); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding: 26px 0; font-size:12.5px; color: var(--steel); flex-wrap:wrap; gap:12px;
}
.footer-bottom a{ color: var(--steel); }
.footer-bottom a:hover{ color:#fff; }

/* ==========================================================================
   Contact page specifics
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:64px; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.info-row{ display:flex; gap:18px; padding: 24px 0; border-bottom:1px solid #E7E5E1; }
.info-row .ic{ width:44px; height:44px; border-radius:50%; border:1px solid #D9D6D0; color: var(--red); display:flex; align-items:center; justify-content:center; flex:none; }
.info-row h4{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: var(--steel); margin-bottom:6px; }
.info-row p{ color: var(--black); font-size:16px; font-weight:600; }
.info-row p a{ color: var(--black); }
.info-row p a:hover{ color: var(--red); }

.form-field{ margin-bottom: 22px; }
.form-field label{ display:block; font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color: var(--steel); margin-bottom:10px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; border:none; border-bottom: 1px solid #D9D6D0; background:transparent;
  padding: 12px 2px; font-family: var(--ff-body); font-size:15px; color: var(--black);
  transition: border-color .3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:none; border-color: var(--red); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }

.map-frame{ border-radius:4px; overflow:hidden; border:1px solid var(--line); filter: grayscale(0.15); }

/* ==========================================================================
   Misc
   ========================================================================== */
.divider{ height:1px; background: var(--line-soft); border:none; margin: 0; }
.text-center{ text-align:center; }
.mt-64{ margin-top:64px; }
.back-to-top{
  position:fixed; right:26px; bottom:26px; z-index:900;
  width:48px; height:48px; border-radius:50%;
  background: var(--red); color:#fff;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform: translateY(10px);
  transition: all .4s var(--ease);
  box-shadow: 0 10px 30px rgba(227,30,36,.4);
}
.back-to-top.show{ opacity:1; pointer-events:auto; transform:none; }

.founders-strip{ display:flex; flex-wrap:wrap; gap:24px; }
.founder-tag{
  display:flex; align-items:center; gap:14px;
  border:1px solid var(--line); border-radius: 100px;
  padding: 10px 22px 10px 10px;
}
.founder-tag .av{
  width:42px; height:42px; border-radius:50%; background: var(--charcoal);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--ff-display); font-weight:800; color: var(--red);
}
.founder-tag .nm{ font-size:14px; font-weight:700; color:#fff; }
.founder-tag .rl{ font-size:11.5px; color: var(--steel-light); text-transform:uppercase; letter-spacing:.05em; }
