/* ==========================================================================
   Global Pokhara Express Cargo — stylesheet
   Design language: the physical air-waybill / shipping manifest —
   kraft paper, stamped ink, brass seals, dashed transit routes.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* --- palette — drawn from the Pokhara Express Cargo logo --- */
  --ink:        #180F0E;   /* near-black, warm undertone   */
  --ink-2:      #271614;   /* raised panel on dark         */
  --ink-3:      #402522;   /* border/divider on dark       */
  --paper:      #FBF8F3;   /* clean manifest white         */
  --paper-2:    #F1E7DA;   /* warm card tint on paper      */
  --paper-line: rgba(24,15,14,.13);
  --brass:      #E31E24;   /* brand red — the logo's red   */
  --brass-dark: #A9161D;   /* hover / deeper red           */
  --stamp:      #7A1015;   /* oxblood ink-stamp red        */
  --stamp-dark: #530B0E;
  --ink-text:   #1C1210;
  --ink-text-soft: #5c4a46;
  --off-white:  #FBF9F3;
  --line-dark:  rgba(251,249,243,.15);

  --radius-s: 4px;
  --radius-m: 10px;
  --radius-l: 22px;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
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(--font-display); margin:0; font-weight:600; letter-spacing:-.01em; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

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

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

/* ---------- eyebrow / mono labels ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: var(--brass-dark);
}
.eyebrow::before{
  content:"";
  width: 18px; height: 1px;
  background: var(--brass-dark);
  display:inline-block;
}
.on-dark .eyebrow{ color: var(--brass); }
.on-dark .eyebrow::before{ background: var(--brass); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(15,30,51,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 28px;
  max-width: var(--max); margin:0 auto;
}
.brand{
  display:flex; align-items:center; gap:12px;
  color: var(--off-white);
}
.brand-mark{
  width:42px;height:42px;border-radius:50%;
  object-fit: cover;
  border: 1.5px solid var(--brass);
  flex:none;
}
.brand-name{
  font-family: var(--font-display); font-size: 17px; line-height:1.15;
}
.brand-name small{
  display:block; font-family: var(--font-mono); font-size:10.5px;
  letter-spacing:.1em; color: var(--brass); font-weight:500; margin-top:2px;
}
.nav-links{
  display:flex; align-items:center; gap: 30px;
}
.nav-links a{
  color: var(--off-white); opacity:.82; font-size: 14.5px; font-weight:500;
  position:relative; padding: 6px 0;
}
.nav-links a:hover{ opacity:1; }
.nav-links a.current{ opacity:1; }
.nav-links a.current::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--brass);
}
.nav-cta{
  background: var(--brass); color: var(--off-white) !important;
  padding: 10px 20px; border-radius: 999px; font-weight:700 !important;
  font-size: 13.5px !important; opacity:1 !important;
  transition: transform .15s ease, background .2s ease;
}
.nav-cta:hover{ background: var(--brass-dark); transform: translateY(-1px); }

.nav-toggle{
  display:none; background:none; border:none; padding:8px;
}
.nav-toggle span{
  display:block; width:24px; height:2px; background: var(--off-white); margin:5px 0; transition: all .2s ease;
}

@media (max-width: 880px){
  .nav-toggle{ display:block; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background: var(--ink); flex-direction:column; align-items:flex-start;
    padding: 8px 28px 24px; gap:18px;
    display:none;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-links.open{ display:flex; }
  .nav-cta{ margin-top:6px; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  padding: 13px 26px; border-radius: 999px;
  font-weight:700; font-size:14.5px; border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary{ background: var(--brass); color: var(--off-white); }
.btn-primary:hover{ background: var(--brass-dark); transform: translateY(-2px); }
.btn-ghost-dark{ border-color: var(--line-dark); color: var(--off-white); }
.btn-ghost-dark:hover{ border-color: var(--brass); color: var(--brass); }
.btn-ghost-light{ border-color: var(--paper-line); color: var(--ink-text); }
.btn-ghost-light:hover{ border-color: var(--stamp); color: var(--stamp-dark); }
.btn-stamp{ background: var(--stamp); color: var(--off-white); }
.btn-stamp:hover{ background: var(--stamp-dark); transform: translateY(-2px); }
.btn-block{ width:100%; justify-content:center; }
.btn[disabled]{ opacity:.55; cursor:not-allowed; transform:none !important; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(227,30,36,.16), transparent 60%),
    var(--ink);
  color: var(--off-white);
  position:relative;
  overflow:hidden;
  padding: 84px 0 0;
}
.hero .wrap{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:center;
  padding-bottom: 70px;
}
.hero h1{
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  margin: 18px 0 22px;
  color: var(--off-white);
}
.hero h1 em{
  font-style: italic; color: var(--brass);
}
.hero-sub{
  font-size: 17px; color: rgba(251,249,243,.78); max-width: 480px; margin-bottom: 30px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 34px; }
.hero-stats{
  display:flex; gap: 34px; flex-wrap:wrap;
  border-top: 1px solid var(--line-dark); padding-top: 22px;
}
.hero-stats .stat b{
  font-family: var(--font-display); font-size: 26px; color: var(--brass); display:block;
}
.hero-stats .stat span{
  font-family: var(--font-mono); font-size: 11px; letter-spacing:.08em; text-transform:uppercase; color: rgba(251,249,243,.6);
}

/* --- signature: the waybill card --- */
.waybill{
  position:relative;
  background: var(--paper);
  color: var(--ink-text);
  border-radius: var(--radius-m);
  box-shadow: 0 30px 70px rgba(0,0,0,.45), 0 2px 0 rgba(0,0,0,.05) inset;
  padding: 26px 26px 22px;
  transform: rotate(1.2deg);
}
.waybill::before, .waybill::after{
  content:""; position:absolute; left:0; right:0; height:14px;
  background-image: radial-gradient(circle, var(--ink) 4px, transparent 4.2px);
  background-size: 20px 14px; background-repeat: repeat-x; background-position: 4px center;
}
.waybill::before{ top:-7px; }
.waybill::after{ bottom:-7px; }
.waybill-top{
  display:flex; justify-content:space-between; align-items:flex-start;
  border-bottom: 1.5px dashed var(--paper-line); padding-bottom: 14px; margin-bottom:14px;
}
.waybill-top .wt-label{ font-family: var(--font-mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-text-soft); }
.waybill-top .wt-value{ font-family: var(--font-mono); font-size: 13px; font-weight:600; margin-top:3px; }
.waybill-seal{
  width:56px; height:56px; border-radius:50%;
  border: 2px solid var(--stamp); color: var(--stamp);
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-family: var(--font-mono); font-size: 9px; font-weight:700; letter-spacing:.05em;
  transform: rotate(-14deg); opacity:.85;
  flex:none;
}
.waybill-route{
  display:grid; grid-template-columns: 1fr auto 1fr; align-items:center; gap:8px;
  margin: 16px 0 18px;
}
.route-city{ font-family: var(--font-display); font-size:19px; font-weight:600; }
.route-code{ font-family: var(--font-mono); font-size:11px; color: var(--ink-text-soft); margin-top:2px; }
.route-to{ text-align:right; }
.route-line{ position:relative; height: 2px; }
.route-map-svg{ width:100%; height:56px; display:block; }
.waybill-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom:16px;
}
.wg-item{
  background: var(--paper-2); border-radius: 6px; padding: 9px 10px;
}
.wg-item .wt-label{ font-size:9.5px; }
.wg-item .wt-value{ font-size:12px; }
.waybill-barcode{
  height: 46px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 5px, transparent 5px 9px, var(--ink) 9px 12px, transparent 12px 15px);
  border-radius: 3px;
}
.waybill-barcode-label{
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing:.25em; text-align:center; margin-top:8px; color: var(--ink-text-soft);
}

@media (max-width: 940px){
  .hero .wrap{ grid-template-columns: 1fr; padding-top:10px; }
  .waybill{ transform:none; margin-top:10px; }
}

/* ==========================================================================
   SECTION SCAFFOLDING
   ========================================================================== */
.section{ padding: 92px 0; }
.section-dark{ background: var(--ink); color: var(--off-white); }
.section-alt{ background: var(--paper-2); }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(28px,3.4vw,40px); margin-top:14px; line-height:1.12; }
.section-dark .section-head p, .section-dark .lead{ color: rgba(251,249,243,.72); }
.section-head p{ margin-top:14px; font-size:16px; color: var(--ink-text-soft); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ==========================================================================
   ABOUT / MISSION-VISION-VALUES
   ========================================================================== */
.about-grid{
  display:grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items:start;
}
.about-copy p{ margin-bottom:16px; color: var(--ink-text-soft); font-size:15.5px; }
.mv-cards{ display:grid; gap:16px; }
.mv-card{
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-m);
  padding: 22px 24px;
}
.mv-card h3{ font-size:18px; margin-bottom:8px; }
.mv-card h3 .num{ font-family: var(--font-mono); color: var(--brass-dark); font-size:12px; margin-right:8px; }
.mv-card p{ font-size:14.5px; color: var(--ink-text-soft); }

.values-strip{
  margin-top: 26px; display:flex; flex-wrap:wrap; gap:10px;
}
.values-strip span{
  font-family: var(--font-mono); font-size:12px; letter-spacing:.04em;
  border: 1px dashed var(--paper-line); border-radius: 999px; padding: 7px 14px;
  color: var(--ink-text-soft);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.service-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card{
  background: var(--paper); border-radius: var(--radius-m);
  border: 1px solid var(--paper-line);
  padding: 28px 26px;
  position:relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,30,51,.1);
  border-color: var(--brass);
}
.service-tag{
  font-family: var(--font-mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase;
  color: var(--brass-dark); background: rgba(227,30,36,.1);
  display:inline-block; padding:5px 10px; border-radius:5px; margin-bottom:16px;
}
.service-card h3{ font-size:20px; margin-bottom:10px; }
.service-card p{ color: var(--ink-text-soft); font-size:14.5px; margin-bottom:16px; }
.service-card ul li{
  font-size: 13.5px; color: var(--ink-text); padding: 6px 0 6px 20px; position:relative;
  border-top: 1px dashed var(--paper-line);
}
.service-card ul li:first-child{ border-top:none; }
.service-card ul li::before{
  content:"→"; position:absolute; left:0; color: var(--brass-dark); font-family: var(--font-mono);
}

@media (max-width: 980px){ .service-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .service-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  overflow:hidden;
}
.why-item{
  background: var(--ink); padding: 30px 24px;
}
.why-item .wi-icon{
  width:38px; height:38px; border-radius:50%; border:1.5px solid var(--brass);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  color:var(--brass); font-family: var(--font-mono); font-size:14px; font-weight:600;
}
.why-item h3{ font-size:16px; color: var(--off-white); margin-bottom:8px; }
.why-item p{ font-size:13.5px; color: rgba(251,249,243,.62); }

@media (max-width: 980px){ .why-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   PROCESS (real sequence — numbering justified)
   ========================================================================== */
.process-rail{
  display:grid; grid-template-columns: repeat(4,1fr); gap:0; position:relative;
}
.process-rail::before{
  content:""; position:absolute; top:23px; left:6%; right:6%; height:1px;
  background: repeating-linear-gradient(90deg, var(--paper-line) 0 8px, transparent 8px 16px);
}
.process-step{ position:relative; padding-right: 20px; }
.process-num{
  width:46px; height:46px; border-radius:50%; background: var(--paper);
  border: 1.5px solid var(--ink); display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-weight:600; font-size:15px; margin-bottom:18px; position:relative; z-index:2;
}
.process-step h3{ font-size:17px; margin-bottom:8px; }
.process-step p{ font-size:14px; color: var(--ink-text-soft); }
@media (max-width: 880px){
  .process-rail{ grid-template-columns: 1fr; gap: 30px; }
  .process-rail::before{ display:none; }
}

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industry-marquee{
  display:flex; flex-wrap:wrap; gap:12px;
}
.industry-chip{
  font-size:14px; font-weight:500; padding: 11px 18px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--paper-line);
}

/* ==========================================================================
   BRANCHES
   ========================================================================== */
.branch-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items:start;
}
.branch-list{ display:grid; gap:0; }
.branch-row{
  display:flex; justify-content:space-between; align-items:center;
  padding: 16px 0; border-top: 1px solid var(--paper-line);
  font-size:15px;
}
.branch-row:last-child{ border-bottom: 1px solid var(--paper-line); }
.branch-row .b-tag{
  font-family: var(--font-mono); font-size:11px; color: var(--brass-dark);
  border: 1px solid var(--paper-line); padding:4px 9px; border-radius:5px;
}
.hq-card{
  background: var(--ink); color: var(--off-white); border-radius: var(--radius-m);
  padding: 30px 28px;
}
.hq-card .eyebrow{ margin-bottom:14px; }
.hq-card h3{ font-size:24px; margin-bottom:10px; }
.hq-card p{ color: rgba(251,249,243,.72); font-size:14.5px; margin-bottom:6px; }
.hq-hours{
  margin-top:20px; padding-top:18px; border-top:1px solid var(--line-dark);
  display:flex; justify-content:space-between; font-family: var(--font-mono); font-size:12.5px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.testi-card{
  background: var(--paper); border-radius: var(--radius-m); padding: 26px 24px;
  border: 1px solid var(--paper-line); position:relative;
}
.testi-mark{ font-family: var(--font-display); font-size:44px; color: var(--brass); line-height:1; opacity:.5; }
.testi-card p.quote{ font-size:15px; margin: 10px 0 18px; color: var(--ink-text); }
.testi-name{ font-weight:700; font-size:14px; }
.testi-role{ font-family: var(--font-mono); font-size:11.5px; color: var(--ink-text-soft); }
@media (max-width: 880px){ .testi-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */
.faq-list{ max-width: 760px; }
.faq-item{ border-top: 1px solid var(--paper-line); }
.faq-item:last-child{ border-bottom: 1px solid var(--paper-line); }
.faq-q{
  width:100%; background:none; border:none; text-align:left;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding: 20px 0; font-size:16.5px; font-weight:600; color: var(--ink-text);
  font-family: var(--font-body);
}
.faq-q .plus{
  font-family: var(--font-mono); font-size:20px; color: var(--brass-dark); flex:none;
  transition: transform .25s ease;
}
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden; transition: max-height .3s ease;
}
.faq-a p{ padding: 0 0 20px; color: var(--ink-text-soft); font-size:14.5px; max-width: 620px; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner{
  background: var(--brass);
  color: var(--off-white);
  border-radius: var(--radius-l);
  padding: 48px 50px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-banner h2{ font-size: clamp(24px,3vw,32px); max-width:520px; color: var(--off-white); }
.cta-banner .btn-primary{ background: var(--ink); color: var(--off-white); }
.cta-banner .btn-primary:hover{ background: var(--ink-2); }
.cta-banner .btn-stamp{ background: var(--ink); color: var(--off-white); border-color: var(--ink); }
.cta-banner .btn-stamp:hover{ background: var(--ink-2); }

/* ==========================================================================
   FORMS (contact / quote / track)
   ========================================================================== */
.form-card{
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-m);
  padding: 32px;
}
.field{ margin-bottom:18px; }
.field label{
  display:block; font-family: var(--font-mono); font-size:11.5px; letter-spacing:.06em;
  text-transform:uppercase; color: var(--ink-text-soft); margin-bottom:7px;
}
.field input, .field select, .field textarea{
  width:100%; padding: 12px 14px; border-radius: 7px; border: 1.5px solid var(--paper-line);
  background: var(--off-white); font-family: var(--font-body); font-size:14.5px; color: var(--ink-text);
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--brass); outline:none; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width: 560px){ .field-row{ grid-template-columns:1fr; } }
.field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:12.5px; color: var(--ink-text-soft); margin-top:10px; }

.alert{
  border-radius:8px; padding:14px 16px; font-size:14px; margin-bottom:20px;
  display:flex; gap:10px; align-items:flex-start;
}
.alert-success{ background: rgba(76,125,84,.12); color:#2f5a37; border:1px solid rgba(76,125,84,.3); }
.alert-error{ background: rgba(169,59,46,.1); color: var(--stamp-dark); border:1px solid rgba(169,59,46,.3); }

/* tracking result */
.track-result{
  background: var(--ink); color: var(--off-white); border-radius: var(--radius-m);
  padding: 28px 30px; margin-top: 28px;
}
.track-result-head{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  padding-bottom:18px; border-bottom:1px solid var(--line-dark); margin-bottom:22px;
}
.track-status-pill{
  font-family: var(--font-mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px; background: var(--brass); color: var(--off-white); font-weight:700;
}
.track-timeline{ display:grid; gap:0; }
.tt-row{ display:grid; grid-template-columns: 110px 20px 1fr; gap:14px; padding-bottom:22px; position:relative; }
.tt-row:last-child{ padding-bottom:0; }
.tt-time{ font-family: var(--font-mono); font-size:12px; color: rgba(251,249,243,.6); padding-top:2px; }
.tt-dot-col{ display:flex; flex-direction:column; align-items:center; }
.tt-dot{ width:11px; height:11px; border-radius:50%; background: var(--brass); flex:none; margin-top:4px; }
.tt-line{ width:1px; flex:1; background: var(--line-dark); margin-top:4px; }
.tt-row:last-child .tt-line{ display:none; }
.tt-body h4{ font-size:14.5px; margin-bottom:4px; color: var(--off-white); }
.tt-body p{ font-size:13px; color: rgba(251,249,243,.6); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--ink); color: rgba(251,249,243,.75); padding: 64px 0 0; }
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand p{ font-size:13.5px; margin: 14px 0 18px; max-width:280px; color: rgba(251,249,243,.6); }
.footer-badges{ display:flex; gap:8px; }
.footer-badges span{
  font-family: var(--font-mono); font-size:10.5px; border:1px solid var(--line-dark);
  padding:5px 9px; border-radius:5px; letter-spacing:.05em;
}
.footer-col h4{
  font-family: var(--font-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--brass); margin-bottom:16px; font-weight:600;
}
.footer-col ul li{ margin-bottom:10px; font-size:14px; }
.footer-col ul li a:hover{ color: var(--brass); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  padding: 22px 0; font-size:12.5px; color: rgba(251,249,243,.5);
}
@media (max-width: 880px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */
.page-header{
  background: var(--ink); color: var(--off-white); padding: 64px 0 54px;
  position:relative; overflow:hidden;
}
.page-header h1{ font-size: clamp(30px,4vw,46px); margin-top:14px; }
.page-header p{ margin-top:14px; max-width:560px; color: rgba(251,249,243,.72); font-size:15.5px; }
.breadcrumb{ font-family: var(--font-mono); font-size:12px; color: rgba(251,249,243,.55); margin-top:20px; }
.breadcrumb a:hover{ color: var(--brass); }

/* generic two column */
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:start; }
@media (max-width: 880px){ .two-col{ grid-template-columns:1fr; } }

.divider-dashed{ border-top: 1.5px dashed var(--paper-line); margin: 40px 0; }

.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
