/* =====================================================================
   Kgalalelo Package Solutions — Stylesheet
   Design language: printing/packaging die-line system.
   Solid gold rule = "cut line". Dashed rule = "fold line".
   Small crosshair = print "registration mark".
   Folded corner on cards = a label/box flap.
   ===================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Montserrat:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root{
  --ink:      #14120F;   /* near-black, warm */
  --charcoal: #201D18;   /* body text on paper */
  --paper:    #FBF9F4;   /* warm off-white background */
  --kraft:    #EDE6D6;   /* kraft-paper tan, card surfaces */
  --kraft-2:  #E2D8C1;
  --gold:     #C9A227;   /* primary brand gold — buttons, borders, backgrounds */
  --gold-dark:#7A5E13;   /* darkened for AA text contrast on light backgrounds */
  --gold-light:#E8D9A8;
  --white:    #FFFFFF;
  --line:     rgba(20,18,15,0.14);
  --line-on-ink: rgba(255,255,255,0.18);

  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1180px;
  --radius: 2px;
  --shadow-card: 0 1px 2px rgba(20,18,15,0.06), 0 8px 24px rgba(20,18,15,0.07);
  --shadow-lift: 0 14px 34px rgba(20,18,15,0.16);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; overflow-wrap:break-word; }
p, li, h1, h2, h3, h4{ overflow-wrap:break-word; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:1rem; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:700; line-height:1.15; color:var(--ink); letter-spacing:-0.01em; }
:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; }

.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 20px; }
@media(min-width:640px){ .container{ padding:0 32px; } }

section{ position:relative; }
.section-pad{ padding:64px 0; }
@media(min-width:900px){ .section-pad{ padding:104px 0; } }

/* ---------- Utility type ---------- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:0.72rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color: var(--gold-dark);
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background: var(--gold-dark);
  display:inline-block;
}
.eyebrow.on-ink{ color: var(--gold-light); }
.eyebrow.on-ink::before{ background: var(--gold-light); }

h2.section-title{ font-size:clamp(1.7rem, 4vw, 2.6rem); margin-bottom:14px; }
.section-lede{ max-width:640px; color:#4a453c; font-size:1.02rem; }
.on-ink .section-lede{ color:#cfc9bb; }

/* ---------- Die-line dividers ---------- */
.fold-rule{
  width:100%; height:0;
  border-top:1.5px dashed rgba(20,18,15,0.3);
  position:relative;
}
.fold-rule.on-ink{ border-top-color: rgba(255,255,255,0.25); }
.cut-rule{ width:100%; height:2px; background:var(--gold); }

/* Registration mark (print alignment crosshair) */
.reg-mark{ width:16px; height:16px; position:relative; flex-shrink:0; opacity:0.9; }
.reg-mark::before,.reg-mark::after{ content:""; position:absolute; background:var(--gold); }
.reg-mark::before{ left:50%; top:0; width:1.5px; height:100%; transform:translateX(-50%); }
.reg-mark::after{ top:50%; left:0; height:1.5px; width:100%; transform:translateY(-50%); }
.reg-mark-circle{ position:absolute; inset:3px; border:1.5px solid var(--gold); border-radius:50%; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-mono); font-size:0.82rem; letter-spacing:0.06em; text-transform:uppercase;
  padding:15px 28px;
  border-radius:var(--radius);
  border:1.5px solid transparent;
  transition:transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space:nowrap;
}
.btn-gold{ background:var(--gold); color:var(--ink); border-color:var(--gold); }
.btn-gold:hover{ background:var(--gold-dark); border-color:var(--gold-dark); transform:translateY(-2px); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--white); transform:translateY(-2px); }
.btn-outline.on-ink{ color:var(--white); border-color:rgba(255,255,255,0.5); }
.btn-outline.on-ink:hover{ background:var(--white); color:var(--ink); }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:0.6; cursor:not-allowed; transform:none !important; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(251,249,244,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-row{ display:flex; align-items:center; justify-content:space-between; height:76px; gap:12px; }
.brand{ display:flex; align-items:center; gap:10px; min-width:0; flex:1 1 auto; }
.brand-mark{ width:38px; height:38px; flex-shrink:0; }
@media(min-width:480px){ .brand-mark{ width:42px; height:42px; } }
.brand-word{ font-family:var(--font-display); font-weight:700; font-size:clamp(0.74rem, 3.6vw, 1rem); line-height:1.15; color:var(--ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; min-width:0; }
.brand-word small{ display:block; font-family:var(--font-mono); font-weight:400; font-size:0.6rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-dark); margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
@media(min-width:960px){ .brand{ flex:0 1 auto; } .brand-word{ white-space:normal; overflow:visible; } .brand-word small{ overflow:visible; } }
.header-cta{ flex-shrink:0; }
.nav-toggle{ flex-shrink:0; }

.nav-desktop{ display:none; }
@media(min-width:960px){
  .nav-desktop{ display:flex; align-items:center; gap:2px; }
  .nav-desktop a{
    font-size:0.86rem; font-weight:600; padding:10px 16px; border-radius:var(--radius); position:relative; color:var(--charcoal);
    transition:color .2s;
  }
  .nav-desktop a:hover, .nav-desktop a.active{ color:var(--gold-dark); }
  .nav-desktop a.active::after{ content:""; position:absolute; left:16px; right:16px; bottom:5px; height:2px; background:var(--gold); }
}
.header-cta{ display:none; }
@media(min-width:960px){ .header-cta{ display:flex; align-items:center; gap:10px; } }

.nav-toggle{
  display:flex; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; background:transparent; border:1.5px solid var(--ink); border-radius:var(--radius);
  align-items:center;
}
@media(min-width:960px){ .nav-toggle{ display:none; } }
.nav-toggle span{ width:20px; height:2px; background:var(--ink); transition:transform .25s var(--ease), opacity .25s 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); }

.nav-mobile{
  display:flex; flex-direction:column;
  max-height:0; overflow:hidden;
  background:var(--paper);
  border-bottom:1px solid var(--line);
  transition:max-height .35s var(--ease);
}
.nav-mobile.open{ max-height:600px; }
.nav-mobile a{ padding:16px 20px; font-weight:600; border-top:1px solid var(--line); font-size:0.98rem; }
.nav-mobile a.active{ color:var(--gold-dark); }
.nav-mobile .mobile-cta{ padding:18px 20px; display:flex; flex-direction:column; gap:10px; border-top:1px solid var(--line); }
@media(min-width:960px){ .nav-mobile{ display:none !important; } }

/* ---------- Hero ---------- */
.hero{ background:var(--paper); overflow:hidden; }
.hero-grid{
  display:grid; grid-template-columns:1fr; gap:48px;
  padding:52px 0 60px;
  align-items:center;
}
@media(min-width:960px){
  .hero-grid{ grid-template-columns:1.05fr 0.95fr; padding:76px 0 90px; gap:40px; }
}
.hero-title{ font-size:clamp(2.2rem, 6vw, 3.6rem); margin-bottom:20px; }
.hero-title .accent{ color:var(--gold-dark); }
.hero-sub{ font-size:1.08rem; color:#454037; max-width:520px; margin-bottom:32px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:36px; }
.hero-stats{ display:flex; flex-wrap:wrap; gap:0; border-top:1.5px dashed rgba(20,18,15,0.3); padding-top:22px; }
.hero-stat{ padding-right:28px; margin-right:28px; border-right:1px solid var(--line); }
.hero-stat:last-child{ border-right:none; }
.hero-stat b{ display:block; font-family:var(--font-display); font-size:1.5rem; color:var(--ink); }
.hero-stat span{ font-family:var(--font-mono); font-size:0.68rem; letter-spacing:0.08em; text-transform:uppercase; color:#6b6558; }

.hero-visual{
  background:var(--ink); border-radius:var(--radius); position:relative; padding:36px 22px;
  min-height:320px; display:flex; align-items:center; justify-content:center;
}
.hero-visual .reg-mark{ position:absolute; top:14px; left:14px; }
.hero-visual .reg-mark.br{ top:auto; left:auto; bottom:14px; right:14px; }
.hero-visual svg{ width:100%; height:auto; max-width:360px; }

/* ---------- Marquee strip (service areas) ---------- */
.strip{ background:var(--ink); color:var(--gold-light); padding:14px 0; overflow:hidden; border-top:2px solid var(--gold); border-bottom:2px solid var(--gold); }
.strip-track{ display:flex; gap:44px; white-space:nowrap; font-family:var(--font-mono); font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase; animation:scroll 26s linear infinite; width:max-content; }
.strip-track span{ opacity:0.9; }
@keyframes scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- Cards with folded corner (die-cut flap) ---------- */
.card{
  background:var(--white);
  border:1px solid var(--line);
  padding:30px 26px 26px;
  position:relative;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::after{
  content:""; position:absolute; top:0; right:0; width:22px; height:22px;
  background:linear-gradient(135deg, var(--kraft-2) 50%, transparent 50.5%);
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lift); border-color:var(--gold); }
.card-kraft{ background:var(--kraft); border-color:var(--kraft-2); }

.card-icon{ width:52px; height:52px; border:1.5px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:20px; color:var(--gold-dark); }
.card-icon svg{ width:24px; height:24px; }
.card h3{ font-size:1.15rem; margin-bottom:10px; }
.card p{ color:#4a453c; font-size:0.95rem; }
.card-code{ font-family:var(--font-mono); font-size:0.7rem; letter-spacing:0.1em; color:var(--gold-dark); text-transform:uppercase; display:block; margin-bottom:14px; }

.grid{ display:grid; gap:26px; grid-template-columns:1fr; }
@media(min-width:640px){
  .grid-2{ grid-template-columns:1fr 1fr; }
  .grid-3{ grid-template-columns:1fr 1fr; }
  .grid-4{ grid-template-columns:1fr 1fr; }
}
@media(min-width:900px){ .grid-3{ grid-template-columns:repeat(3,1fr); } .grid-4{ grid-template-columns:repeat(4,1fr); } }

/* ---------- Process steps ---------- */
.process{ display:grid; gap:0; grid-template-columns:1fr; border-top:1px solid var(--line); }
@media(min-width:800px){ .process{ grid-template-columns:repeat(5,1fr); } }
.process-step{ padding:26px 20px; border-bottom:1px solid var(--line); border-right:1px solid var(--line); }
@media(min-width:800px){ .process-step:last-child{ border-right:none; } }
.process-step .num{ font-family:var(--font-mono); font-size:0.78rem; color:var(--gold-dark); display:block; margin-bottom:10px; }
.process-step h4{ font-size:1rem; margin-bottom:8px; }
.process-step p{ font-size:0.88rem; color:#4a453c; }

/* ---------- Band on ink ---------- */
.band-ink{ background:var(--ink); color:var(--white); }
.band-ink h2, .band-ink h3, .band-ink h4{ color:var(--white); }
.band-kraft{ background:var(--kraft); }

/* ---------- CTA banner ---------- */
.cta-banner{ display:flex; flex-direction:column; gap:26px; align-items:flex-start; justify-content:space-between; }
@media(min-width:800px){ .cta-banner{ flex-direction:row; align-items:center; } }
.cta-banner h2{ font-size:clamp(1.5rem,3.4vw,2.1rem); margin-bottom:8px; }
.cta-banner .actions{ display:flex; gap:14px; flex-wrap:wrap; flex-shrink:0; }

/* ---------- Testimonials ---------- */
.t-card{ background:var(--white); border:1px solid var(--line); padding:28px 26px; clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%); position:relative; }
.t-card::after{ content:""; position:absolute; top:0; right:0; width:22px; height:22px; background:linear-gradient(135deg, var(--kraft-2) 50%, transparent 50.5%); }
.t-stars{ color:var(--gold); letter-spacing:2px; margin-bottom:14px; font-size:0.95rem; }
.t-quote{ font-style:italic; color:var(--charcoal); margin-bottom:18px; font-size:0.98rem; }
.t-name{ font-weight:700; font-family:var(--font-display); font-size:0.92rem; }
.t-role{ font-family:var(--font-mono); font-size:0.7rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--gold-dark); }
.t-sample-tag{ position:absolute; top:12px; left:-32px; transform:rotate(-38deg); background:var(--gold); color:var(--ink); font-family:var(--font-mono); font-size:0.58rem; letter-spacing:0.08em; text-transform:uppercase; padding:2px 34px; }
.t-card{ overflow:hidden; }

/* ---------- FAQ accordion ---------- */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:none; padding:22px 4px; display:flex; align-items:center; justify-content:space-between; gap:16px; font-family:var(--font-display); font-weight:600; font-size:1rem; color:var(--ink); }
.faq-q .plus{ flex-shrink:0; width:24px; height:24px; position:relative; }
.faq-q .plus::before,.faq-q .plus::after{ content:""; position:absolute; background:var(--gold-dark); transition:transform .3s var(--ease); }
.faq-q .plus::before{ left:0; top:50%; width:100%; height:2px; transform:translateY(-50%); }
.faq-q .plus::after{ top:0; left:50%; height:100%; width:2px; transform:translateX(-50%); }
.faq-item.open .plus::after{ transform:translateX(-50%) rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.faq-a p{ padding:0 4px 22px; color:#4a453c; max-width:680px; }

/* ---------- Gallery ---------- */
.filter-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:34px; }
.filter-btn{ font-family:var(--font-mono); font-size:0.74rem; letter-spacing:0.08em; text-transform:uppercase; padding:9px 18px; border:1.5px solid var(--ink); border-radius:999px; background:transparent; color:var(--ink); transition:all .2s; }
.filter-btn.active,.filter-btn:hover{ background:var(--ink); color:var(--white); }
.gallery-item{
  aspect-ratio:4/3; background:var(--kraft); border:1px solid var(--kraft-2);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:10px; padding:20px;
  position:relative; clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  cursor:pointer; transition:transform .3s var(--ease);
}
.gallery-item::after{ content:""; position:absolute; top:0; right:0; width:26px; height:26px; background:linear-gradient(135deg, var(--gold-light) 50%, transparent 50.5%); }
.gallery-item:hover{ transform:translateY(-4px); }
.gallery-item .g-icon{ width:44px; height:44px; opacity:0.55; }
.gallery-item span.g-label{ font-family:var(--font-mono); font-size:0.68rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold-dark); }
.gallery-item p{ font-size:0.82rem; color:#5c574c; max-width:220px; }

/* Lightbox */
.lightbox{ position:fixed; inset:0; background:rgba(20,18,15,0.94); z-index:200; display:none; align-items:center; justify-content:center; padding:24px; }
.lightbox.open{ display:flex; }
.lightbox-box{ background:var(--paper); max-width:520px; width:100%; padding:38px 28px; text-align:center; position:relative; }
.lightbox-close{ position:absolute; top:14px; right:14px; width:36px; height:36px; border:1.5px solid var(--ink); background:none; border-radius:50%; }

/* ---------- Forms ---------- */
.form-panel{ background:var(--white); border:1px solid var(--line); padding:32px 24px; }
@media(min-width:640px){ .form-panel{ padding:44px 40px; } }
.form-row{ display:grid; gap:20px; grid-template-columns:1fr; margin-bottom:20px; }
@media(min-width:640px){ .form-row.two{ grid-template-columns:1fr 1fr; } }
.field label{ display:block; font-family:var(--font-mono); font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase; color:#5c574c; margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 14px; border:1.5px solid var(--line); border-radius:var(--radius); background:var(--paper); color:var(--ink);
  transition:border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--gold); }
.field textarea{ min-height:130px; resize:vertical; }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; margin-bottom:22px; }
.checkbox-row input{ margin-top:4px; width:16px; height:16px; accent-color:var(--gold); flex-shrink:0; }
.checkbox-row label{ font-size:0.85rem; color:#4a453c; }
.form-note{ font-size:0.82rem; color:#6b6558; margin-top:14px; }
.form-status{ margin-top:16px; font-size:0.88rem; font-weight:600; display:none; padding:12px 14px; border-radius:var(--radius); }
.form-status.show{ display:block; }
.form-status.ok{ background:#eef6ea; color:#356024; }
.form-status.err{ background:#fbeceb; color:#8c2c22; }

/* ---------- Info cards (contact page) ---------- */
.info-card{ display:flex; gap:16px; align-items:flex-start; padding:20px 0; border-bottom:1px solid var(--line); }
.info-card .ic{ width:40px; height:40px; border-radius:50%; border:1.5px solid var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--gold-dark); }
.info-card .ic svg{ width:18px; height:18px; }
.info-card h4{ font-size:0.95rem; margin-bottom:4px; }
.info-card p, .info-card a{ font-size:0.9rem; color:#4a453c; }
.map-placeholder{ border:1.5px dashed var(--line); background:var(--kraft); min-height:280px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:12px; padding:34px 22px; }
.map-placeholder svg{ width:40px; height:40px; opacity:0.5; }
.map-placeholder p{ max-width:340px; font-size:0.88rem; color:#5c574c; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:#cfc9bb; padding-top:64px; }
.footer-grid{ display:grid; gap:40px; grid-template-columns:1fr; padding-bottom:44px; }
@media(min-width:760px){ .footer-grid{ grid-template-columns:1.3fr 1fr 1fr 1.2fr; } }
.footer-brand{ display:flex; gap:12px; align-items:center; margin-bottom:16px; }
.footer-brand .brand-word{ color:var(--white); }
.footer-col h5{ font-family:var(--font-mono); font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.footer-col ul li{ margin-bottom:11px; font-size:0.88rem; }
.footer-col ul li a:hover{ color:var(--gold-light); }
.footer-p{ font-size:0.88rem; max-width:280px; color:#a9a293; margin-bottom:20px; }
.social-row{ display:flex; gap:10px; }
.social-row a{ width:38px; height:38px; border:1.5px solid rgba(255,255,255,0.25); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:border-color .2s, background .2s; }
.social-row a:hover{ border-color:var(--gold); background:rgba(201,162,39,0.12); }
.social-row svg{ width:16px; height:16px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.14); padding:22px 0 30px; display:flex; flex-direction:column; gap:14px; font-size:0.78rem; color:#8b8477; }
@media(min-width:760px){ .footer-bottom{ flex-direction:row; align-items:center; justify-content:space-between; } }
.footer-legal{ display:flex; gap:18px; flex-wrap:wrap; }
.footer-legal a:hover{ color:var(--gold-light); }

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed; bottom:22px; right:22px; z-index:150;
  width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 22px rgba(0,0,0,0.28);
  transition:transform .25s var(--ease);
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; }

/* ---------- Back to top ---------- */
.top-btn{
  position:fixed; bottom:22px; left:22px; z-index:150; width:44px; height:44px; border-radius:50%;
  background:var(--ink); color:var(--gold); border:none; display:none; align-items:center; justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,0.22);
}
.top-btn.show{ display:flex; }

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:180; background:var(--ink); color:#d9d3c4;
  padding:18px 20px; display:none; gap:16px; align-items:center; flex-wrap:wrap; border-top:2px solid var(--gold);
}
.cookie-banner.show{ display:flex; }
.cookie-banner p{ font-size:0.85rem; flex:1; min-width:220px; }
.cookie-banner .actions{ display:flex; gap:10px; }
.cookie-banner a{ color:var(--gold-light); text-decoration:underline; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{ background:var(--ink); color:var(--white); padding:56px 0 46px; position:relative; }
.page-hero h1{ color:var(--white); font-size:clamp(2rem,5vw,2.9rem); }
.page-hero p{ color:#cfc9bb; max-width:560px; margin-top:14px; font-size:1rem; }
.breadcrumb{ font-family:var(--font-mono); font-size:0.72rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--gold-light); display:flex; gap:8px; margin-bottom:18px; }
.breadcrumb a:hover{ color:var(--white); }

/* ---------- Legal pages ---------- */
.legal-content h2{ font-size:1.35rem; margin:34px 0 12px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ color:#3a352c; font-size:0.96rem; margin-bottom:12px; }
.legal-content ul{ list-style:disc; padding-left:22px; }
.legal-content .updated{ font-family:var(--font-mono); font-size:0.75rem; color:var(--gold-dark); text-transform:uppercase; letter-spacing:0.06em; margin-bottom:30px; display:block; }

/* ---------- Misc ---------- */
.text-center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }
.mt-8{ margin-top:8px;} .mt-16{margin-top:16px;} .mt-24{margin-top:24px;} .mt-40{margin-top:40px;}
.mb-8{ margin-bottom:8px;} .mb-16{margin-bottom:16px;} .mb-24{margin-bottom:24px;} .mb-40{margin-bottom:40px;}
.tag{ display:inline-block; font-family:var(--font-mono); font-size:0.68rem; letter-spacing:0.08em; text-transform:uppercase; padding:5px 12px; border:1px solid var(--gold-dark); color:var(--gold-dark); border-radius:999px; }
.value-list{ display:grid; gap:18px; grid-template-columns:1fr; }
@media(min-width:640px){ .value-list{ grid-template-columns:1fr 1fr; } }
.value-item{ display:flex; gap:14px; }
.value-item .dot{ width:8px; height:8px; background:var(--gold); border-radius:50%; margin-top:8px; flex-shrink:0; }
.value-item h4{ font-size:1rem; margin-bottom:6px; }
.value-item p{ font-size:0.9rem; color:#4a453c; }

.skip-link{ position:absolute; left:-999px; top:auto; background:var(--gold); color:var(--ink); padding:12px 18px; z-index:300; font-weight:700; }
.skip-link:focus{ left:16px; top:16px; }

.team-photo{ aspect-ratio:1/1; background:var(--kraft); border:1px solid var(--kraft-2); display:flex; align-items:center; justify-content:center; clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%); position:relative; }
.team-photo::after{ content:""; position:absolute; top:0; right:0; width:20px; height:20px; background:linear-gradient(135deg, var(--gold-light) 50%, transparent 50.5%); }
.team-photo svg{ width:38px; height:38px; opacity:0.4; }
