/* ==========================================================================
   AmpLine Supply — site stylesheet

   Every colour, size and spacing value used across the site is defined once
   in the :root block below. Change a value there and it updates everywhere.

   Layout is mobile-first: the base rules describe the phone layout, and the
   min-width media queries add the tablet and desktop layouts on top.
   ========================================================================== */

:root{
  /* Brand colours, sampled from the AmpLine Supply logo file */
  --navy-900:#101E3B;   /* hero, dark bands, footer */
  --navy-800:#14274E;   /* logo navy — headings, body text, dark panels */
  --navy-700:#1E3462;
  --slate-500:#4C6785;  /* logo slate — secondary text */
  --slate-300:#93A2BB;  /* secondary text on dark backgrounds */
  --teal-500:#00B3BA;   /* logo teal — accents on dark backgrounds */
  --teal-700:#077F86;   /* darkened teal — buttons and links on white */
  --teal-800:#066A70;   /* button hover */

  --danger:#B3261E;     /* form errors */
  --success:#0F6B45;    /* form success */

  --line:#DCE2EA;
  --surface:#F4F6F9;
  --white:#FFFFFF;
  --text:#14274E;
  --text-2:#4C6785;

  --f-display:"Archivo","Helvetica Neue",Arial,sans-serif;
  --f-body:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --f-mono:"IBM Plex Mono",ui-monospace,Consolas,monospace;

  --r:3px;
  --maxw:1160px;
  --pad:20px;

  --sec-y:56px;         /* vertical section rhythm — grows on larger screens */
}

@media (min-width:640px){ :root{ --pad:24px; --sec-y:68px; } }
@media (min-width:1000px){ :root{ --sec-y:78px; } }

*,*::before,*::after{box-sizing:border-box;}

html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto;} }

body{
  margin:0;
  background:var(--white);
  color:var(--text);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4,h5{font-family:var(--f-display);margin:0;letter-spacing:-.015em;line-height:1.14;text-wrap:balance;}
p{margin:0;}
/* height:auto is required — without it the width/height attributes on <img>
   win over the CSS aspect-ratio and images render at full natural height. */
img{max-width:100%;height:auto;display:block;}
a{color:var(--teal-700);}

:focus-visible{outline:2px solid var(--teal-500);outline-offset:2px;}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 var(--pad);}

.skip-link{
  position:absolute;left:-9999px;top:0;z-index:100;
  background:var(--navy-800);color:#fff;padding:12px 18px;
  font-weight:600;text-decoration:none;
}
.skip-link:focus{left:0;}

.eyebrow{
  font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--teal-700);display:block;margin-bottom:12px;
}
.eyebrow-lt{color:var(--teal-500);}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* ---------- buttons ---------- */
.btn{
  font-family:var(--f-display);font-weight:600;font-size:15px;
  padding:0 22px;min-height:48px;border-radius:var(--r);text-decoration:none;
  border:1.5px solid transparent;display:inline-flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background-color .15s ease,border-color .15s ease;
}
.btn-lg{font-size:15.5px;min-height:52px;padding:0 27px;}
.btn-primary{background:var(--teal-700);color:var(--white);}
.btn-primary:hover{background:var(--teal-800);}
.btn-outline{background:transparent;color:var(--navy-800);border-color:#C3CDDA;}
.btn-outline:hover{border-color:var(--navy-800);}
.btn-outline-lt{background:transparent;color:var(--white);border-color:rgba(255,255,255,.45);}
.btn-outline-lt:hover{border-color:#fff;background:rgba(255,255,255,.08);}
.btn-block{width:100%;}
@media (prefers-reduced-motion:reduce){ .btn{transition:none;} }

/* A quieter text link used where a second button would compete with the
   page's primary call to action. */
.link-arrow{
  font-family:var(--f-display);font-weight:600;font-size:15px;color:var(--teal-700);
  text-decoration:none;display:inline-flex;align-items:center;gap:8px;min-height:44px;
}
.link-arrow:hover{text-decoration:underline;}
.link-arrow-lt{color:var(--teal-500);}

/* ---------- utility bar ---------- */
.util{background:var(--navy-900);color:var(--slate-300);font-size:12px;}
.util .wrap{display:flex;justify-content:space-between;gap:12px;align-items:center;min-height:34px;flex-wrap:wrap;}
.util-l{display:flex;gap:14px;flex-wrap:wrap;align-items:center;}
.util a{color:var(--white);text-decoration:none;}
.util a:hover{text-decoration:underline;}
/* On small screens the service-area line is the first thing to go. */
.util-region{display:none;}
@media (min-width:700px){ .util-region{display:inline;} }

/* <address> is italic by default in browsers; we want it to read as plain text */
address{font-style:normal;}

/* ---------- header ---------- */
/* Mobile: logo left, hamburger right, nothing else. */
.site-head{background:var(--white);border-bottom:1px solid var(--line);position:relative;}
.site-head .wrap{display:flex;align-items:center;gap:12px;min-height:64px;}
.nav-logo{margin-right:auto;display:block;flex:none;}
.nav-logo img{height:36px;width:auto;}

.nav-toggle{
  display:inline-flex;background:none;border:1px solid var(--line);border-radius:var(--r);
  width:44px;height:44px;padding:0;cursor:pointer;color:var(--navy-800);
  align-items:center;justify-content:center;flex:none;
}
.nav-toggle:hover{border-color:#C3CDDA;}
.nav-toggle .icon-close{display:none;}
.nav-toggle[aria-expanded="true"] .icon-open{display:none;}
.nav-toggle[aria-expanded="true"] .icon-close{display:block;}

.nav-menu{
  display:none;position:absolute;left:0;right:0;top:100%;
  background:var(--white);border-bottom:1px solid var(--line);
  box-shadow:0 12px 24px rgba(16,30,59,.10);
  padding:8px var(--pad) 20px;z-index:40;
}
.nav-menu.open{display:block;}
.nav-links{display:flex;flex-direction:column;}
.nav-links a{
  font-size:16px;font-weight:500;text-decoration:none;color:var(--navy-800);
  padding:14px 0;border-bottom:1px solid var(--line);
}
.nav-links a[aria-current="page"]{color:var(--teal-700);font-weight:600;}
.nav-menu > .btn{margin-top:18px;width:100%;}
.head-cta{display:none;}

@media (min-width:1081px){
  .site-head .wrap{gap:26px;min-height:84px;}
  .nav-logo img{height:46px;}
  .nav-toggle{display:none;}
  .nav-menu{
    display:flex;position:static;background:none;border:0;box-shadow:none;
    padding:0;align-items:center;gap:26px;
  }
  .nav-links{flex-direction:row;gap:24px;flex-wrap:nowrap;}
  .nav-links a{
    font-size:14.5px;padding:8px 0;border-bottom:2px solid transparent;
  }
  .nav-links a:hover{border-bottom-color:var(--line);}
  .nav-links a[aria-current="page"]{border-bottom-color:var(--teal-500);font-weight:500;}
  /* The in-menu quote button belongs to the mobile drawer only. */
  .nav-menu > .btn{display:none;}
  .head-cta{display:inline-flex;}
}

/* ---------- page header (interior pages) ---------- */
.page-head{background:var(--navy-900);color:var(--white);padding:38px 0 44px;}
.page-head h1{font-size:clamp(1.75rem,6vw,2.7rem);font-weight:700;margin-bottom:14px;}
.page-head p{color:#CBD6E4;font-size:1rem;max-width:60ch;}
.page-head .btn{margin-top:24px;}
.page-rule{height:3px;background:linear-gradient(90deg,var(--teal-500) 0%,var(--teal-500) 20%,rgba(0,179,186,0) 58%);}
@media (min-width:760px){
  .page-head{padding:56px 0 60px;}
  .page-head p{font-size:1.06rem;}
  .page-head .btn{margin-top:28px;}
}

.crumbs{font-size:13px;color:var(--slate-300);margin-bottom:18px;}
.crumbs ol{list-style:none;display:flex;flex-wrap:wrap;gap:8px;margin:0;padding:0;}
.crumbs li::after{content:"/";margin-left:8px;color:rgba(147,162,187,.6);}
.crumbs li:last-child::after{content:"";}
.crumbs a{color:var(--slate-300);text-decoration:none;}
.crumbs a:hover{color:var(--white);text-decoration:underline;}
.crumbs [aria-current="page"]{color:var(--white);}

/* ---------- generic sections ---------- */
.section{padding:var(--sec-y) 0;}
.section-alt{background:var(--surface);}
.section-head{max-width:640px;margin-bottom:32px;}
.section-head h2{font-size:clamp(1.4rem,4.4vw,2.05rem);font-weight:700;margin-bottom:12px;}
.section-head p{color:var(--text-2);font-size:1rem;}
@media (min-width:760px){ .section-head{margin-bottom:40px;} .section-head p{font-size:1.02rem;} }

.two-col{display:grid;gap:32px;align-items:start;}
@media (min-width:880px){ .two-col{grid-template-columns:1fr 1fr;gap:56px;} }
.two-col-center{align-items:center;}

.prose p{color:var(--text-2);font-size:1rem;margin-bottom:16px;}
.prose p:last-child{margin-bottom:0;}
.prose h2{font-size:clamp(1.4rem,4.4vw,2.05rem);font-weight:700;margin-bottom:14px;}
.prose h3{font-size:1.12rem;font-weight:600;margin:0 0 12px;}
@media (min-width:760px){ .prose p{font-size:1.02rem;} }

/* ---------- home hero ---------- */
.hero{background:var(--navy-900);color:var(--white);}
.hero .wrap{display:grid;gap:28px;padding-top:40px;padding-bottom:44px;}
.hero h1{font-size:clamp(1.85rem,7vw,3.15rem);font-weight:700;margin-bottom:16px;}
.hero .hero-sub{font-size:1rem;color:#CBD6E4;max-width:52ch;margin-bottom:24px;}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap;}
.hero-btns .btn{flex:1 1 auto;min-width:180px;}
.hero-fig{margin:0;border-radius:var(--r);overflow:hidden;border:1px solid rgba(255,255,255,.14);}
.hero-fig img{width:100%;aspect-ratio:16/10;object-fit:cover;object-position:50% 40%;}
.hero-rule{height:3px;background:linear-gradient(90deg,var(--teal-500) 0%,var(--teal-500) 20%,rgba(0,179,186,0) 58%);}

@media (min-width:640px){
  .hero .wrap{padding-top:52px;padding-bottom:56px;}
  .hero .hero-sub{font-size:1.06rem;margin-bottom:28px;}
  .hero-btns .btn{flex:0 0 auto;}
}
@media (min-width:940px){
  .hero .wrap{grid-template-columns:1fr 42%;align-items:center;gap:60px;padding-top:80px;padding-bottom:80px;}
  .hero .hero-sub{font-size:1.08rem;margin-bottom:30px;}
  .hero-fig img{aspect-ratio:4/5;}
}

/* ---------- capability strip ---------- */
.cap{background:var(--navy-800);}
.cap .wrap{display:grid;gap:1px;background:rgba(255,255,255,.12);grid-template-columns:1fr;padding-left:0;padding-right:0;}
@media (min-width:560px){ .cap .wrap{grid-template-columns:repeat(2,1fr);} }
@media (min-width:1000px){ .cap .wrap{grid-template-columns:repeat(4,1fr);} }
.cap-item{background:var(--navy-800);padding:18px var(--pad);display:flex;gap:12px;align-items:flex-start;}
.cap-item svg{flex:none;margin-top:2px;}
.cap-item b{display:block;font-family:var(--f-display);font-weight:600;font-size:14.5px;color:var(--white);}
.cap-item span{display:block;font-size:12.5px;color:var(--slate-300);line-height:1.45;margin-top:3px;}
@media (min-width:1000px){ .cap-item{padding:22px 24px;} }

/* ---------- equipment grid ---------- */
.eq-grid{display:grid;gap:12px;grid-template-columns:1fr;}
@media (min-width:560px){ .eq-grid{gap:16px;grid-template-columns:repeat(2,1fr);} }
@media (min-width:1000px){ .eq-grid{grid-template-columns:repeat(4,1fr);} }

.eq-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r);
  padding:18px 16px;display:flex;flex-direction:column;gap:6px;
  border-top:3px solid var(--navy-800);text-decoration:none;color:inherit;
  min-height:44px;
  transition:border-color .15s ease,box-shadow .15s ease;
}
.eq-card:hover{
  border-color:#C3CDDA;border-top-color:var(--teal-500);
  box-shadow:0 6px 18px rgba(16,30,59,.08);
}
.eq-card .ico{color:var(--teal-700);}
.eq-card .ico svg{width:24px;height:24px;}
.eq-card h3{font-size:1.02rem;font-weight:600;margin-top:2px;}
.eq-card p{font-size:13.5px;color:var(--text-2);line-height:1.5;flex:1;margin:0;}
.eq-card-link{
  font-size:13px;font-weight:600;color:var(--teal-700);margin-top:4px;
  display:inline-flex;align-items:center;gap:6px;
}
@media (min-width:560px){
  .eq-card{padding:24px 22px 22px;gap:8px;}
  .eq-card .ico svg{width:26px;height:26px;}
  .eq-card h3{font-size:1.05rem;margin-top:4px;}
  .eq-card-link{margin-top:6px;}
}
@media (prefers-reduced-motion:reduce){ .eq-card{transition:none;} }

/* ---------- check lists ---------- */
.check-list{margin:0;padding:0;list-style:none;display:grid;gap:10px;}
.check-list li{display:flex;gap:10px;font-size:14.5px;color:var(--text-2);align-items:flex-start;}
.check-list li svg{flex:none;margin-top:4px;color:var(--teal-700);}
.check-list li b{color:var(--text);font-weight:600;}
.check-list-lt li{color:#C6D2E1;}
.check-list-lt li svg{color:var(--teal-500);}
.check-list-lt li b{color:var(--white);}
@media (min-width:560px){ .check-list{gap:12px;} .check-list li{gap:11px;} }

/* "What to send us" — one tight column on a phone, two roomier ones above. */
.send-panel{border:1px solid var(--line);border-radius:var(--r);background:var(--white);padding:20px 18px;}
.send-panel h2,.send-panel h3{font-size:1.05rem;font-weight:600;margin-bottom:14px;}
.send-list{margin:0;padding:0;list-style:none;display:grid;gap:0;}
.send-list li{
  display:flex;gap:10px;align-items:flex-start;
  padding:11px 0;border-bottom:1px solid var(--line);
}
.send-list li:last-child{border-bottom:0;padding-bottom:0;}
.send-list li:first-child{padding-top:0;}
.send-list li svg{flex:none;margin-top:4px;color:var(--teal-700);}
.send-list b{display:block;color:var(--text);font-weight:600;font-size:14.5px;line-height:1.4;}
.send-list .hint{display:block;color:var(--text-2);font-size:13px;line-height:1.45;margin-top:2px;}
@media (min-width:560px){
  .send-panel{padding:26px 24px;}
  .send-panel h2,.send-panel h3{font-size:1.1rem;margin-bottom:18px;}
}
@media (min-width:880px){
  .send-list{grid-template-columns:1fr 1fr;column-gap:28px;}
  .send-list li{border-bottom:0;padding:9px 0;}
  .send-list li:first-child{padding-top:9px;}
}
.cat-no{font-family:var(--f-mono);font-size:12.5px;color:var(--navy-800);background:var(--surface);padding:1px 5px;border-radius:2px;}

.panel{border:1px solid var(--line);border-radius:var(--r);background:var(--white);padding:22px 20px;}
.panel h2,.panel h3{font-size:1.08rem;font-weight:600;margin-bottom:16px;}
@media (min-width:560px){ .panel{padding:30px;} }

/* ---------- feature grid ---------- */
.feature-grid{display:grid;gap:26px;grid-template-columns:1fr;}
@media (min-width:560px){ .feature-grid{grid-template-columns:repeat(2,1fr);gap:32px;} }
@media (min-width:1000px){ .feature-grid{grid-template-columns:repeat(4,1fr);} }
.feature h3{font-size:1.02rem;font-weight:600;margin:12px 0 7px;}
.feature p{font-size:14px;color:var(--text-2);line-height:1.55;}
.feature .ico{color:var(--teal-700);}

/* ---------- industries ---------- */
.ind-grid{display:grid;gap:12px;grid-template-columns:1fr;}
@media (min-width:560px){ .ind-grid{gap:14px;grid-template-columns:repeat(2,1fr);} }
@media (min-width:880px){ .ind-grid{grid-template-columns:repeat(3,1fr);} }
.ind-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r);
  padding:18px;display:flex;gap:12px;align-items:center;font-weight:500;font-size:14.5px;
}
.ind-card svg{flex:none;color:var(--teal-700);}
.ind-detail{display:block;}
.ind-detail h3{font-size:1.05rem;font-weight:600;margin-bottom:8px;}
.ind-detail p{font-size:14px;color:var(--text-2);line-height:1.55;margin:0;}
.ind-detail .ico{color:var(--teal-700);margin-bottom:12px;display:block;}

/* ---------- mid-page CTA band ---------- */
.cta-band{background:var(--navy-800);color:var(--white);padding:40px 0;}
.cta-band .wrap{display:grid;gap:20px;align-items:center;}
.cta-band h2{font-size:clamp(1.25rem,4.6vw,1.75rem);font-weight:700;margin-bottom:10px;}
.cta-band p{color:var(--slate-300);font-size:.97rem;max-width:58ch;}
.cta-band .btn{justify-self:start;}
@media (min-width:820px){
  .cta-band{padding:56px 0;}
  .cta-band .wrap{grid-template-columns:1fr auto;gap:40px;}
  .cta-band p{font-size:1rem;}
}

/* ---------- split CTA ---------- */
.cta-split .wrap{display:grid;gap:1px;background:var(--line);padding-left:0;padding-right:0;}
@media (min-width:820px){ .cta-split .wrap{grid-template-columns:1fr 1fr;} }
.cta-half{background:var(--white);padding:34px var(--pad);}
.cta-half.dark{background:var(--navy-800);color:var(--white);}
.cta-half h2{font-size:1.22rem;font-weight:700;margin-bottom:10px;}
.cta-half p{font-size:14.5px;color:var(--text-2);margin-bottom:20px;}
.cta-half.dark p{color:var(--slate-300);}
@media (min-width:820px){ .cta-half{padding:50px 42px;} .cta-half h2{font-size:1.32rem;} }

/* ---------- sell band ---------- */
.sell-band{background:var(--navy-900);color:var(--white);padding:var(--sec-y) 0;}
.sell-band h2{font-size:clamp(1.4rem,4.4vw,2.05rem);font-weight:700;margin-bottom:14px;}
.sell-band p{color:#C6D2E1;margin-bottom:16px;}
.sell-band .fig{margin:0;border-radius:var(--r);overflow:hidden;background:var(--navy-800);}
.sell-band .fig img{width:100%;aspect-ratio:4/3;object-fit:cover;}
.sell-band .btn{margin-top:22px;}

.fig{margin:0;border-radius:var(--r);overflow:hidden;background:var(--navy-900);}
.fig img{width:100%;aspect-ratio:4/3;object-fit:cover;}

/* ---------- forms ---------- */
.form-wrap{max-width:760px;}
.field-set{border:0;padding:0;margin:0 0 32px;}
.field-set legend{
  font-family:var(--f-display);font-size:1.05rem;font-weight:600;padding:0;margin-bottom:6px;color:var(--text);
}
.field-set .legend-hint{font-size:14px;color:var(--text-2);margin-bottom:18px;}
.field-row{display:grid;gap:16px;grid-template-columns:1fr;}
@media (min-width:640px){ .field-row{grid-template-columns:1fr 1fr;} }
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px;}
.field label{font-size:14px;font-weight:600;color:var(--text);}
.field .req{color:var(--danger);}
.field .opt{font-weight:400;color:var(--text-2);}
.field .hint{font-size:13px;color:var(--text-2);}
.field input,.field select,.field textarea{
  font-family:var(--f-body);font-size:16px;color:var(--text);
  padding:12px 13px;min-height:48px;border:1px solid #C3CDDA;border-radius:var(--r);
  background:var(--white);width:100%;
}
.field textarea{min-height:130px;resize:vertical;line-height:1.55;}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--teal-700);outline:2px solid var(--teal-500);outline-offset:1px;
}
.field input[aria-invalid="true"],.field select[aria-invalid="true"],.field textarea[aria-invalid="true"]{
  border-color:var(--danger);border-width:2px;
}
.field-error{font-size:13.5px;color:var(--danger);font-weight:500;display:none;}
.field-error.show{display:flex;gap:6px;align-items:flex-start;}
.field input[type="file"]{padding:10px;background:var(--surface);}

.error-summary{
  border:2px solid var(--danger);border-radius:var(--r);background:#FDF3F2;
  padding:18px 20px;margin-bottom:28px;display:none;
}
.error-summary.show{display:block;}
.error-summary h2{font-size:1.05rem;font-weight:700;color:var(--danger);margin-bottom:10px;}
.error-summary ul{margin:0;padding-left:20px;display:grid;gap:6px;}
.error-summary a{color:var(--danger);font-weight:500;}

.form-note{
  font-size:13.5px;color:var(--text-2);border-left:3px solid var(--teal-500);
  padding-left:14px;margin-bottom:28px;
}
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;}

.form-status{border-radius:var(--r);padding:20px;margin-bottom:28px;}
.form-status-ok{border:1px solid #B7DCC9;background:#F1F9F5;color:var(--success);}
.form-status-err{border:1px solid #E7BEBB;background:#FDF3F2;color:var(--danger);}
.form-status h2{font-size:1.08rem;font-weight:700;margin-bottom:6px;}
.form-status p{font-size:14.5px;color:var(--text-2);}

/* ---------- footer ---------- */
/* On a phone the footer is deliberately dense: the link lists and the contact
   list both run in two columns so the whole footer stays roughly one screen. */
.site-foot{background:var(--navy-900);color:var(--slate-300);padding:28px 0 18px;font-size:13.5px;}
.foot-grid{display:grid;gap:22px;grid-template-columns:1fr;}
.site-foot h2{
  font-family:var(--f-body);font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--white);margin:0 0 10px;font-weight:600;
}
.site-foot ul{margin:0;padding:0;list-style:none;display:grid;gap:3px;}
/* Footer links stay compact but keep a 24px target height (WCAG 2.2 2.5.8). */
.site-foot a{
  color:var(--slate-300);text-decoration:none;
  display:inline-flex;align-items:center;min-height:24px;
}
.site-foot a:hover{color:var(--white);text-decoration:underline;}
.foot-logo{height:30px;width:auto;margin-bottom:10px;}
.foot-about{font-size:12.5px;line-height:1.55;}
.foot-bot{
  margin-top:20px;padding-top:14px;border-top:1px solid rgba(255,255,255,.13);
  font-size:11.5px;display:grid;gap:5px;
}
.foot-links{display:grid;grid-template-columns:1fr 1fr;gap:22px;}
/* Phone and email sit side by side on a phone; the address and hours span both
   columns so the address never breaks across a narrow column. */
.foot-contact ul{grid-template-columns:1fr 1fr;gap:6px 16px;}
.foot-contact .foot-address,.foot-contact .foot-hours{grid-column:1 / -1;}
.foot-contact address{line-height:1.5;font-size:12.5px;}
.foot-contact .foot-hours{font-size:12.5px;min-height:0;}
@media (min-width:560px){
  .site-foot{padding:40px 0 22px;font-size:14px;}
  .foot-logo{height:36px;}
  .foot-about{font-size:13px;}
  .foot-contact ul{grid-template-columns:1fr;gap:9px;}
  .foot-contact address,.foot-contact .foot-hours{font-size:13px;}
}
@media (min-width:880px){
  .site-foot{padding:54px 0 26px;}
  .foot-grid{grid-template-columns:1.3fr 2fr 1fr;gap:32px;align-items:start;}
  .foot-links{grid-template-columns:1fr 1fr;gap:32px;}
  .foot-logo{height:42px;margin-bottom:16px;}
  .foot-about{font-size:13.5px;}
  .site-foot ul{gap:9px;}
  .foot-bot{
    margin-top:36px;padding-top:20px;font-size:12.5px;
    display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;
  }
}

/* ---------- scroll reveal ---------- */
.reveal{opacity:0;transform:translateY(12px);transition:opacity .35s ease,transform .35s ease;}
.reveal.is-visible{opacity:1;transform:none;}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none;}
}
.no-js .reveal{opacity:1;transform:none;}
