/* =========================================================
   EVIDANDS — Verification Services
   Design tokens: ink navy + brass seal + ledger paper
   ========================================================= */

:root{
  /* -- colour tokens -- */
  --ink:        #0B1B2E;   /* primary dark navy */
  --ink-2:      #122A46;   /* secondary navy (cards/gradients) */
  --ink-3:      #1B3B60;   /* lighter navy for borders on dark */
  --paper:      #E9ECE7;   /* cool ledger-paper background */
  --paper-2:    #DFE3DC;   /* paper shadow / divider */
  --paper-line: #C9CFC5;   /* faint rule lines on paper */
  --ink-text:   #10151F;   /* near-black text on paper */
  --ink-muted:  #4B5563;   /* secondary text on paper */
  --white:      #FFFFFF;
  --white-70:   rgba(255,255,255,.7);
  --white-50:   rgba(255,255,255,.5);
  --brass:      #B0812A;   /* seal / accent gold-brass */
  --brass-light:#D9A94A;   /* hover brass */
  --brass-deep: #8C6620;   /* pressed / border brass */
  --verify:     #1F7A5C;   /* verification green — status only */

  /* -- type tokens -- */
  --font-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* -- layout -- */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --ease-stamp: cubic-bezier(.34,1.56,.64,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink-text);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

::selection{ background:var(--brass); color:var(--white); }

a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }

.container-ev{
  width:100%;
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--ink-text);
  font-weight:600;
  margin:0;
  line-height:1.12;
}
p{ margin:0; }

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

.section-label{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--ink-muted);
}

/* -------- buttons -------- */
.btn-ev{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  padding:14px 26px;
  border-radius:8px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space:nowrap;
}
.btn-ev:hover{ transform:translateY(-2px); }
.btn-primary-ev{
  background:var(--brass);
  color:var(--ink);
  box-shadow:0 10px 24px -10px rgba(176,129,42,.6);
}
.btn-primary-ev:hover{ background:var(--brass-light); color:var(--ink); }
.btn-outline-ev{
  background:transparent;
  border-color:currentColor;
  color:var(--white);
}
.btn-outline-ev:hover{ background:var(--white); color:var(--ink); }
.btn-outline-ink{
  background:transparent;
  border-color:var(--ink-text);
  color:var(--ink-text);
}
.btn-outline-ink:hover{ background:var(--ink-text); color:var(--paper); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:20px 0;
  background:transparent;
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled{
  background:rgba(11,27,46,.92);
  backdrop-filter:blur(10px);
  padding:12px 0;
  box-shadow:0 12px 30px -18px rgba(0,0,0,.6);
}
.site-header .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* logo */
.brand{ display:flex; align-items:center; gap:12px; }
.brand svg{ height:38px; width:auto; flex:none; }
.brand .wordmark{
  font-family:var(--font-display);
  font-size:22px;
  font-weight:600;
  letter-spacing:.01em;
  color:var(--white);
  line-height:1;
}
.brand .wordmark span{ color:var(--brass-light); }
.brand .tagline{
  display:none;
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--white-50);
  margin-top:3px;
}
@media (min-width:768px){ .brand .tagline{ display:block; } }

.main-nav{ display:flex; align-items:center; gap:36px; }
.main-nav ul{ display:flex; gap:34px; }
.main-nav a{
  font-size:15px;
  font-weight:500;
  color:var(--white-70);
  position:relative;
  padding:6px 0;
  transition:color .25s ease;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  height:2px; width:0;
  background:var(--brass-light);
  transition:width .3s ease;
}
.main-nav a:hover, .main-nav a.active{ color:var(--white); }
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }

.header-cta{ display:flex; align-items:center; gap:18px; }
.header-cta .phone-link{
  display:none;
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--white-70);
  gap:8px;
  align-items:center;
}
@media (min-width:992px){ .header-cta .phone-link{ display:inline-flex; } }

.menu-toggle{
  display:flex;
  flex-direction:column;
  gap:5px;
  width:32px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px 0;
  z-index:1100;
}
.menu-toggle span{
  height:2px; width:100%;
  background:var(--white);
  transition:transform .3s ease, opacity .3s ease;
}
.menu-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity:0; }
.menu-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:991px){
  .main-nav{
    position:fixed;
    inset:0 0 0 30%;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    background:var(--ink);
    padding:40px;
    transform:translateX(100%);
    transition:transform .4s ease;
  }
  .main-nav.active{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; gap:26px; }
  .main-nav a{ font-size:22px; }
  .header-cta > .btn-outline-ev{ display:none; }
}
@media (min-width:992px){ .menu-toggle{ display:none; } }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  background:var(--ink);
  color:var(--white);
  padding:172px 0 120px;
  overflow:hidden;
}
.hero-grid-bg{
  position:absolute; inset:-10% -10%;
  background-image:
    linear-gradient(rgba(217,169,74,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,169,74,.08) 1px, transparent 1px);
  background-size:52px 52px;
  will-change:transform;
  pointer-events:none;
}
.hero-glow{
  position:absolute;
  width:640px; height:640px;
  right:-160px; top:-220px;
  background:radial-gradient(circle, rgba(176,129,42,.28), transparent 70%);
  filter:blur(10px);
  pointer-events:none;
  will-change:transform;
}
.hero .container-ev{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr;
  gap:56px;
  align-items:center;
}
@media (min-width:992px){
  .hero .container-ev{ grid-template-columns:1.05fr .95fr; gap:40px; }
}
.hero h1{
  color:var(--white);
  font-size:clamp(36px,5.4vw,60px);
  margin:18px 0 22px;
}
.hero h1 em{
  font-style:normal;
  color:var(--brass-light);
}
.hero p.lede{
  font-size:18px;
  line-height:1.7;
  color:var(--white-70);
  max-width:52ch;
  margin-bottom:34px;
}
.hero .cta-row{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom:52px; }

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  max-width:520px;
  border-top:1px solid var(--ink-3);
  padding-top:26px;
}
.hero-stats .stat-num{
  font-family:var(--font-mono);
  font-size:26px;
  font-weight:600;
  color:var(--white);
}
.hero-stats .stat-label{
  font-size:12px;
  color:var(--white-50);
  margin-top:4px;
  line-height:1.4;
}

/* -- hero visual: the case-file card -- */
.hero-visual{ position:relative; display:flex; justify-content:center; }
.case-card{
  position:relative;
  width:100%;
  max-width:400px;
  background:var(--paper);
  border-radius:var(--radius-lg);
  padding:30px 28px 34px;
  color:var(--ink-text);
  box-shadow:0 40px 80px -30px rgba(0,0,0,.65);
  transform:rotate(2.5deg);
  will-change:transform;
}
.case-card::before{
  content:"";
  position:absolute; inset:0;
  border-radius:var(--radius-lg);
  border:1px dashed var(--paper-line);
  margin:10px;
  pointer-events:none;
}
.case-card .case-top{
  display:flex; justify-content:space-between; align-items:flex-start;
  margin-bottom:22px;
}
.case-card .case-id{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.06em;
  color:var(--ink-muted);
}
.case-card .case-status{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--verify);
  background:rgba(31,122,92,.12);
  padding:4px 10px;
  border-radius:20px;
}
.case-card .case-row{
  display:flex; justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid var(--paper-2);
  font-size:13.5px;
}
.case-card .case-row span:first-child{ color:var(--ink-muted); }
.case-card .case-row span:last-child{ font-weight:600; }
.case-card .scan-wrap{
  position:relative;
  margin-top:22px;
  height:74px;
  border-radius:8px;
  background:repeating-linear-gradient(135deg, #dfe3dc, #dfe3dc 8px, #e6e9e1 8px, #e6e9e1 16px);
  overflow:hidden;
}
.case-card .scan-line{
  position:absolute; left:0; right:0; height:34%;
  background:linear-gradient(180deg, transparent, rgba(176,129,42,.55), transparent);
  animation:scan 2.6s ease-in-out infinite;
}
@keyframes scan{
  0%{ top:-40%; }
  50%{ top:106%; }
  100%{ top:-40%; }
}

.floating-seal{
  position:absolute;
  right:-18px; bottom:-26px;
  width:118px; height:118px;
  filter:drop-shadow(0 14px 22px rgba(0,0,0,.35));
  opacity:0; transform:scale(.5) rotate(-25deg);
}
.floating-seal.stamped{
  animation:stampIn .7s var(--ease-stamp) forwards;
}
@keyframes stampIn{
  0%{ opacity:0; transform:scale(1.7) rotate(-18deg); }
  60%{ opacity:1; transform:scale(.92) rotate(-8deg); }
  100%{ opacity:1; transform:scale(1) rotate(-8deg); }
}

/* generic reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-delay-1.in-view{ transition-delay:.08s; }
.reveal-delay-2.in-view{ transition-delay:.16s; }
.reveal-delay-3.in-view{ transition-delay:.24s; }
.reveal-delay-4.in-view{ transition-delay:.32s; }

.stamp-el{
  opacity:0;
  transform:scale(1.8) rotate(-20deg);
  transition:opacity .55s var(--ease-stamp), transform .55s var(--ease-stamp);
}
.stamp-el.in-view{ opacity:1; transform:scale(1) rotate(-6deg); }

/* =========================================================
   SECTION SPACING / DIVIDERS
   ========================================================= */
.section{ padding:104px 0; position:relative; }
.section-tight{ padding:80px 0; }
.on-ink{ background:var(--ink); color:var(--white); }
.on-ink h2, .on-ink h3, .on-ink h4{ color:var(--white); }
.on-ink p{ color:var(--white-70); }
.on-paper-2{ background:var(--paper-2); }

.section-head{
  max-width:640px;
  margin-bottom:56px;
}
.section-head h2{
  font-size:clamp(28px,3.6vw,42px);
  margin-top:14px;
}
.section-head p{
  margin-top:16px;
  font-size:16.5px;
  line-height:1.7;
  color:var(--ink-muted);
}
.on-ink .section-head p{ color:var(--white-70); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* =========================================================
   TRUST / LOGO STRIP
   ========================================================= */
.trust-strip{
  border-top:1px solid var(--paper-line);
  border-bottom:1px solid var(--paper-line);
  padding:26px 0;
}
.trust-strip .row-flex{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.trust-strip .label{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--ink-muted);
  flex:none;
}
.trust-strip .marks{
  display:flex; flex-wrap:wrap; gap:34px;
  font-family:var(--font-display);
  font-size:18px;
  color:var(--ink-muted);
  opacity:.75;
}

/* =========================================================
   PILLARS / VALUE GRID
   ========================================================= */
.pillars{
  display:grid;
  grid-template-columns:repeat(1,1fr);
  gap:1px;
  background:var(--paper-line);
  border:1px solid var(--paper-line);
  border-radius:var(--radius-md);
  overflow:hidden;
}
@media (min-width:768px){ .pillars{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1100px){ .pillars{ grid-template-columns:repeat(4,1fr); } }
.pillar{
  background:var(--paper);
  padding:34px 28px;
  transition:background .3s ease, transform .3s ease;
}
.pillar:hover{ background:var(--white); transform:translateY(-4px); }
.pillar .pillar-icon{
  width:44px; height:44px;
  margin-bottom:18px;
}
.pillar h4{ font-size:19px; margin-bottom:10px; }
.pillar p{ font-size:14.5px; color:var(--ink-muted); line-height:1.65; }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.service-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}
@media (min-width:768px){ .service-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1150px){ .service-grid{ grid-template-columns:repeat(3,1fr); } }

.service-card{
  position:relative;
  background:var(--white);
  border:1px solid var(--paper-line);
  border-radius:var(--radius-md);
  padding:32px 26px;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 50px -30px rgba(11,27,46,.35);
  border-color:var(--brass-light);
}
.service-card .num{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--brass);
  letter-spacing:.08em;
}
.service-card .icon-wrap{
  width:52px; height:52px;
  border-radius:12px;
  background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  margin:16px 0 20px;
  transition:transform .35s ease;
}
.service-card:hover .icon-wrap{ transform:rotate(-6deg) scale(1.06); }
.service-card .icon-wrap svg{ width:24px; height:24px; }
.service-card h3{ font-size:20px; margin-bottom:10px; }
.service-card p{ font-size:14.5px; color:var(--ink-muted); line-height:1.65; margin-bottom:16px; }
.service-card ul{ display:flex; flex-direction:column; gap:8px; }
.service-card ul li{
  font-size:13.5px;
  color:var(--ink-text);
  display:flex; align-items:center; gap:8px;
}
.service-card ul li::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:var(--verify);
  flex:none;
}

/* =========================================================
   PROCESS TIMELINE (real sequence -> numbering justified)
   ========================================================= */
.process-track{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
}
@media (min-width:900px){
  .process-track{ grid-template-columns:repeat(4,1fr); gap:24px; }
  .process-track::before{
    content:"";
    position:absolute; top:27px; left:6%; right:6%;
    height:1px;
    background:repeating-linear-gradient(90deg, var(--white-50) 0 8px, transparent 8px 16px);
  }
}
.process-step{ position:relative; }
.process-step .step-num{
  width:54px; height:54px;
  border-radius:50%;
  border:1.5px solid var(--brass-light);
  color:var(--brass-light);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono);
  font-size:16px;
  background:var(--ink);
  position:relative; z-index:2;
  margin-bottom:20px;
}
.process-step h4{ font-size:17px; margin-bottom:8px; }
.process-step p{ font-size:14px; line-height:1.6; }

/* =========================================================
   FOUNDER / ABOUT STORY
   ========================================================= */
.story-row{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  align-items:center;
}
@media (min-width:992px){ .story-row{ grid-template-columns:.9fr 1.1fr; } }
.story-row.flip{ direction:rtl; }
.story-row.flip > *{ direction:ltr; }
.story-visual{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/3.1;
  background:linear-gradient(155deg,var(--ink),var(--ink-2));
}
.story-visual .grain{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(217,169,74,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,169,74,.10) 1px, transparent 1px);
  background-size:26px 26px;
}
.story-visual .mono-tag{
  position:absolute; left:22px; bottom:22px;
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--white-50);
  letter-spacing:.08em;
}
.story-visual .big-year{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  font-size:clamp(52px,9vw,110px);
  color:var(--white-70);
  opacity:.5;
}
.story-copy p{ margin-bottom:16px; font-size:16px; line-height:1.8; color:var(--ink-muted); }
.story-copy p:last-child{ margin-bottom:0; }

/* =========================================================
   VALUES (about page)
   ========================================================= */
.values-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
@media (min-width:768px){ .values-grid{ grid-template-columns:repeat(2,1fr); } }
.value-item{
  display:flex; gap:18px;
  padding:26px;
  border-radius:var(--radius-md);
  background:var(--white);
  border:1px solid var(--paper-line);
}
.value-item .seal-mini{ width:46px; height:46px; flex:none; }
.value-item h4{ font-size:17px; margin-bottom:6px; }
.value-item p{ font-size:14px; color:var(--ink-muted); line-height:1.6; }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}
@media (min-width:768px){ .stats-band{ grid-template-columns:repeat(4,1fr); } }
.stats-band .stat{ text-align:left; border-left:2px solid var(--brass); padding-left:16px; }
.stats-band .stat .n{
  font-family:var(--font-mono);
  font-size:clamp(28px,3.4vw,40px);
  font-weight:600;
  color:var(--white);
}
.stats-band .stat .l{ font-size:13px; color:var(--white-50); margin-top:6px; }

/* =========================================================
   TEAM / CREDENTIAL STRIP (about)
   ========================================================= */
.credential-list{ display:flex; flex-direction:column; }
.credential-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 0;
  border-bottom:1px solid var(--paper-line);
  gap:20px;
}
.credential-row:first-child{ border-top:1px solid var(--paper-line); }
.credential-row .c-title{ font-family:var(--font-display); font-size:19px; }
.credential-row .c-desc{ font-size:13.5px; color:var(--ink-muted); max-width:44ch; }
.credential-row .c-mark{ font-family:var(--font-mono); font-size:12px; color:var(--verify); flex:none; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band{
  position:relative;
  background:var(--ink);
  border-radius:var(--radius-lg);
  padding:64px 40px;
  overflow:hidden;
  color:var(--white);
  text-align:center;
}
.cta-band .hero-grid-bg{ opacity:.6; }
.cta-band h2{ color:var(--white); font-size:clamp(26px,4vw,38px); margin-bottom:16px; }
.cta-band p{ color:var(--white-70); max-width:52ch; margin:0 auto 30px; font-size:16px; }
.cta-band .cta-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
}
@media (min-width:992px){ .contact-grid{ grid-template-columns:.85fr 1.15fr; } }

.info-card{
  background:var(--ink);
  color:var(--white);
  border-radius:var(--radius-lg);
  padding:38px 32px;
}
.info-card .info-row{
  display:flex; gap:16px; align-items:flex-start;
  padding:18px 0;
  border-bottom:1px solid var(--ink-3);
}
.info-card .info-row:first-of-type{ border-top:1px solid var(--ink-3); margin-top:22px; }
.info-card .info-row .ic{ width:20px; height:20px; margin-top:3px; flex:none; color:var(--brass-light); }
.info-card .info-row .lbl{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--white-50); margin-bottom:4px; }
.info-card .info-row .val{ font-size:15px; color:var(--white); line-height:1.5; }
.info-card .info-row a.val:hover{ color:var(--brass-light); }

.form-card{
  background:var(--white);
  border:1px solid var(--paper-line);
  border-radius:var(--radius-lg);
  padding:38px 34px;
}
.form-card .form-label{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--ink-muted);
  margin-bottom:8px;
}
.form-card .form-control,
.form-card .form-select{
  background:var(--paper);
  border:1px solid var(--paper-2);
  border-radius:8px;
  padding:13px 14px;
  font-family:var(--font-body);
  font-size:14.5px;
  color:var(--ink-text);
  transition:border-color .25s ease, box-shadow .25s ease;
}
.form-card .form-control:focus,
.form-card .form-select:focus{
  border-color:var(--brass);
  box-shadow:0 0 0 3px rgba(176,129,42,.15);
  background:var(--white);
}
.form-card textarea.form-control{ min-height:130px; resize:vertical; }
.form-note{ font-size:12.5px; color:var(--verify); margin-top:14px; opacity:0; transition:opacity .3s ease; }
.form-note.show{ opacity:1; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--ink); color:var(--white-70); padding-top:88px; }
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:44px;
  padding-bottom:56px;
  border-bottom:1px solid var(--ink-3);
}
@media (min-width:768px){ .footer-grid{ grid-template-columns:1.3fr .8fr 1fr; } }
.footer-grid .f-about p{ font-size:14px; line-height:1.7; max-width:38ch; margin-top:16px; }
.footer-grid .f-title{
  font-family:var(--font-mono);
  font-size:11.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--white);
  margin-bottom:18px;
  display:block;
}
.footer-grid ul li{ margin-bottom:12px; }
.footer-grid ul a{ font-size:14.5px; color:var(--white-70); transition:color .2s ease; }
.footer-grid ul a:hover{ color:var(--brass-light); }
.footer-bottom{
  display:flex; flex-wrap:wrap; gap:14px;
  justify-content:space-between; align-items:center;
  padding:26px 0 34px;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--white-50);
}
.footer-bottom .socials{ display:flex; gap:16px; }
.footer-bottom .socials a{
  width:34px; height:34px;
  border:1px solid var(--ink-3);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .25s ease, transform .25s ease;
}
.footer-bottom .socials a:hover{ border-color:var(--brass-light); transform:translateY(-3px); }
.footer-bottom .socials svg{ width:15px; height:15px; }

/* =========================================================
   PAGE HERO (inner pages: About / Services / Contact)
   ========================================================= */
.page-hero{
  position:relative;
  background:var(--ink);
  color:var(--white);
  padding:168px 0 92px;
  overflow:hidden;
}
.page-hero h1{ color:var(--white); font-size:clamp(34px,5vw,54px); margin-top:16px; }
.page-hero p{ color:var(--white-70); max-width:58ch; margin-top:18px; font-size:16.5px; line-height:1.7; }
.page-hero .breadcrumbs{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--white-50);
  letter-spacing:.04em;
}
.page-hero .breadcrumbs a{ color:var(--white-70); }
.page-hero .breadcrumbs a:hover{ color:var(--brass-light); }

/* utility */
.mt-64{ margin-top:64px; }
.text-brass{ color:var(--brass); }
.hr-line{ border:0; border-top:1px solid var(--paper-line); }
