/* ============================================================
   Katartizo Manufacturing Cooperative — Design System
   ============================================================
   Brand palette (official):
   Primary Charcoal #292F30 | Primary Gold #C6994A
   Accent Gold #AA7B1A | Light Gold #E4C58A
   Olive Green #4F5534 | Warm Ivory #EAE5DA
   Neutral Grey #999A99 | Deep Black #060705
   ============================================================ */

:root {
  --charcoal-900: #292F30;
  --charcoal-800: #292F30;
  --charcoal-700: #343A3B;
  --charcoal-500: #5A6060;
  --charcoal-300: #999A99;
  --black: #060705;

  /* Gold accent scale (legacy variable names retained) */
  --copper-700: #AA7B1A;
  --copper-600: #AA7B1A;
  --copper-500: #C6994A;
  --copper-100: #EAE5DA;

  --olive-700: #4F5534;
  --olive-600: #4F5534;
  --olive-500: #5C6340;

  --gold-700: #AA7B1A;
  --gold-600: #C6994A;
  --gold-500: #E4C58A;

  --white-100: #FFFFFF;
  --white-200: #FAF9F6;
  --stone-100: #F3F1EB;
  --stone-200: #EAE5DA;
  --stone-300: #DEDACE;
  --stone-500: #C9C4B6;

  --shadow-sm: 0 1px 2px rgba(6, 7, 5, 0.06);
  --shadow-md: 0 8px 24px -12px rgba(6, 7, 5, 0.20);
  --shadow-lg: 0 24px 60px -24px rgba(6, 7, 5, 0.30);

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --container: 1240px;
  --nav-h: 84px;
  --nav-h-scrolled: 66px;

  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal-800);
  background: var(--white-200);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--copper-600); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--charcoal-900);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; color: var(--charcoal-700); }
ul { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .35em; }
::selection { background: var(--copper-500); color: #fff; }

/* -------------------- Utilities -------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 88px) 0; }
.bg-white { background: var(--white-100); }
.bg-warm { background: var(--white-200); }
.bg-stone { background: var(--stone-200); }
.bg-charcoal { background: var(--charcoal-900); color: var(--stone-200); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4 { color: var(--white-100); }
.bg-charcoal p { color: rgba(234, 229, 218, 0.78); }
.bg-olive { background: linear-gradient(180deg, var(--white-200) 0%, var(--stone-200) 100%); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--copper-600); font-weight: 600; margin: 0 0 20px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--copper-600);
}
.bg-charcoal .eyebrow { color: var(--gold-500); }
.bg-charcoal .eyebrow::before { background: var(--gold-500); }

.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: 1.15rem; color: var(--charcoal-500); }

.rule-gold { display:block; width:56px; height:2px; background: var(--gold-600); margin: 20px 0 24px; }
.section-head.center .rule-gold { margin-left:auto; margin-right:auto; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  cursor: pointer; text-align: center;
}
.btn-primary { background: var(--charcoal-900); color: #fff; }
.btn-primary:hover { background: var(--copper-700); color:#fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--copper-700); color: #fff; }
.btn-gold { background: var(--gold-600); color: var(--charcoal-900); }
.btn-gold:hover { background: var(--gold-500); color: var(--charcoal-900); }
.btn-secondary:hover { background: var(--olive-700); color:#fff; }
.btn-outline { background: transparent; color: var(--charcoal-900); border-color: var(--charcoal-900); }
.btn-outline:hover { background: var(--charcoal-900); color: #fff; }
.bg-charcoal .btn-outline { color: var(--white-100); border-color: rgba(255,255,255,.45); }
.bg-charcoal .btn-outline:hover { background: var(--white-100); color: var(--charcoal-900); }
.btn-ghost { background: transparent; color: var(--copper-600); padding: 12px 0; }
.btn-ghost:hover { color: var(--copper-700); gap: 14px; }
.btn-ghost::after { content: "→"; transition: transform .25s var(--ease); }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-row { display:flex; flex-wrap:wrap; gap:14px; align-items:center; margin-top: 28px; }

/* -------------------- Header / Nav -------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(6,7,5,.06);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, 0.98); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  transition: height .3s var(--ease);
}
.site-header.scrolled .nav-wrap { height: var(--nav-h-scrolled); }
.brand { display:flex; align-items:center; }
.brand img { height: 52px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand img { height: 42px; }

.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-menu > li > a {
  font-size: .92rem; font-weight: 500; color: var(--charcoal-800);
  padding: 6px 0; position: relative;
}
.nav-menu > li > a::after {
  content:""; position:absolute; left:0; right:0; bottom: -4px;
  height: 2px; background: var(--copper-600); transform: scaleX(0);
  transform-origin: left; transition: transform .3s var(--ease);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-menu > li > a.active { color: var(--charcoal-900); }

.nav-cta .btn { padding: 12px 22px; font-size: .88rem; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(6,7,5,.15);
  background: transparent; border-radius: var(--radius-sm); align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--white-100);
  transform: translateX(100%); transition: transform .35s var(--ease);
  padding: 24px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display:flex; justify-content: space-between; align-items:center; margin-bottom: 40px; }
.mobile-menu-head img { height: 48px; }
.mobile-menu-close { background:transparent; border:none; font-size: 1.6rem; padding:8px; }
.mobile-menu nav ul { list-style:none; padding:0; margin:0; }
.mobile-menu nav a {
  display:block; padding: 18px 4px; border-bottom: 1px solid var(--stone-300);
  font-family: var(--font-serif); font-size: 1.4rem;
}
.mobile-menu .btn { width: 100%; margin-top: 32px; }

.skip-link {
  position:absolute; left:-9999px; top:0; z-index: 100;
  background: var(--charcoal-900); color:#fff; padding: 10px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* -------------------- Hero -------------------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 130px);
  background: linear-gradient(180deg, var(--white-200) 0%, var(--stone-100) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy h1 .accent { color: var(--copper-600); font-style: italic; font-weight: 500; }
.hero-copy p { font-size: 1.1rem; max-width: 560px; color: var(--charcoal-500); }
.hero-tag {
  margin-top: 34px; font-size: .82rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--olive-700); font-weight: 600;
}
.hero-visual {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-visual img { width:100%; height:100%; object-fit: cover; }
.hero-visual::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(210deg, transparent 55%, rgba(6,7,5,.35));
  pointer-events:none;
}
.hero-badge {
  position:absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  padding: 18px 22px; border-radius: var(--radius-md);
  display:flex; align-items:center; gap: 14px;
}
.hero-badge .dot { width:10px; height:10px; border-radius:50%; background: var(--copper-500); box-shadow: 0 0 0 4px rgba(170,123,26,.18); }
.hero-badge span { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal-800); font-weight: 600; }

/* -------------------- Commitments strip -------------------- */
.commit-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; background: var(--white-100);
  border-top: 1px solid var(--stone-300);
  border-bottom: 1px solid var(--stone-300);
}
.commit-item {
  padding: 40px 32px; text-align:left;
  border-right: 1px solid var(--stone-300);
  display:flex; gap: 18px; align-items: flex-start;
}
.commit-item:last-child { border-right: none; }
.commit-icon {
  width: 44px; height: 44px; flex-shrink:0; color: var(--copper-600);
  display:flex; align-items:center; justify-content:center;
}
.commit-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.commit-item h4 { margin: 0 0 4px; font-family: var(--font-sans); font-size: .98rem; letter-spacing:.02em; }
.commit-item p { margin: 0; font-size: .85rem; color: var(--charcoal-500); }

/* -------------------- Introduction / editorial -------------------- */
.intro-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.collage { display:grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; gap: 14px; }
.collage img { width:100%; height:100%; object-fit:cover; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.collage .tall { grid-row: span 2; height: 494px; }

/* -------------------- Range cards -------------------- */
.range-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.range-card {
  background: var(--white-100); border: 1px solid var(--stone-300);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display:flex; flex-direction:column;
}
.range-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.range-card .img { aspect-ratio: 4/3; overflow:hidden; }
.range-card .img img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.range-card:hover .img img { transform: scale(1.05); }
.range-card .body { padding: 24px 24px 28px; flex:1; display:flex; flex-direction: column; }
.range-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.range-card .cat { font-size: .72rem; letter-spacing:.18em; text-transform: uppercase; color: var(--copper-600); font-weight: 600; margin-bottom: 8px; }
.range-card p { font-size: .92rem; color: var(--charcoal-500); flex:1; }
.range-card ul { padding-left: 1.1em; font-size: .88rem; color: var(--charcoal-700); margin-top: 6px; }

/* -------------------- Partnership feature -------------------- */
.partner-feature {
  display:grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.partner-feature .copy { padding: clamp(40px, 5vw, 72px); background: var(--charcoal-900); color: var(--stone-200); }
.partner-feature .copy h2 { color: var(--white-100); }
.partner-feature .copy p { color: rgba(234,229,218,.75); }
.partner-feature .copy ul { padding-left:1.2em; color: rgba(234,229,218,.85); }
.partner-feature .copy li::marker { color: var(--gold-500); }
.partner-feature .img { min-height: 480px; position: relative; }
.partner-feature .img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* -------------------- Process timeline -------------------- */
.process-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.process-step {
  background: var(--white-100); padding: 28px 24px 30px;
  border-top: 3px solid var(--copper-600);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-step .num {
  font-family: var(--font-serif); font-size: 2rem; font-style: italic;
  color: var(--gold-600); line-height: 1; margin-bottom: 10px;
}
.process-step h4 { font-family: var(--font-sans); font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.process-step p { font-size: .88rem; margin: 0; color: var(--charcoal-500); }

/* -------------------- Quality dark section -------------------- */
.quality {
  background: var(--charcoal-900);
  background-image:
    radial-gradient(1200px 500px at 90% -10%, rgba(197,101,45,.18), transparent 60%),
    radial-gradient(900px 400px at -10% 110%, rgba(83,97,59,.22), transparent 60%);
  color: var(--stone-200);
  position: relative;
}
.quality h2 { color: var(--white-100); max-width: 720px; }
.quality-grid { display:grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.quality-list { columns: 2; column-gap: 32px; }
.quality-list li { break-inside: avoid; margin-bottom: 10px; color: rgba(234,229,218,.85); }
.quality-list li::marker { color: var(--gold-500); }

/* -------------------- Branding methods -------------------- */
.brand-methods { display:grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.method {
  background: var(--white-100); padding: 26px 22px;
  border: 1px solid var(--stone-300); border-radius: var(--radius-md);
  transition: transform .3s var(--ease);
}
.method:hover { transform: translateY(-3px); border-color: var(--gold-500); }
.method h4 { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 8px; color: var(--copper-700); }
.method p { font-size: .88rem; margin:0; color: var(--charcoal-500); }

/* -------------------- Other Products -------------------- */
.other-prod { background: var(--stone-200); }
.other-prod .section-head p { max-width: 680px; }
.other-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.other-card {
  background: var(--white-100); padding: 30px 26px; border-radius: var(--radius-md);
  border: 1px solid var(--stone-300);
  transition: all .3s var(--ease);
}
.other-card:hover { border-color: var(--olive-600); box-shadow: var(--shadow-md); }
.other-card h4 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 8px; color: var(--charcoal-900); }
.other-card p { font-size: .92rem; margin: 0 0 12px; color: var(--charcoal-500); }
.other-card ul { font-size: .85rem; color: var(--charcoal-700); padding-left: 1.1em; margin:0; }

/* -------------------- Community / Purpose -------------------- */
.community-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.community-img { position: relative; }
.community-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.community-img::before {
  content:""; position:absolute; inset: 20px -20px -20px 20px;
  border: 1px solid var(--olive-600); border-radius: var(--radius-lg); z-index: -1;
}

/* -------------------- Academy teaser -------------------- */
.academy {
  background:
    linear-gradient(135deg, rgba(6,7,5,.9), rgba(38,48,58,.85)),
    linear-gradient(135deg, var(--charcoal-900), var(--olive-700));
  color: var(--stone-200);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 88px);
  text-align: center;
  max-width: 960px; margin: 0 auto;
  border: 1px solid rgba(185,139,50,.35);
}
.badge {
  display:inline-block; padding: 6px 14px;
  background: var(--gold-600); color: var(--charcoal-900);
  font-size: .72rem; letter-spacing: .22em; font-weight: 700;
  border-radius: 999px; text-transform: uppercase; margin-bottom: 20px;
}
.academy h2 { color: var(--white-100); }
.academy p { color: rgba(234,229,218,.8); max-width: 640px; margin: 0 auto 20px; }
.academy ul { columns: 2; text-align: left; max-width: 620px; margin: 24px auto; color: rgba(234,229,218,.85); }

/* -------------------- Insights -------------------- */
.insights-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card {
  background: var(--white-100); border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--stone-300);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display:flex; flex-direction: column;
}
.insight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.insight-card .img { aspect-ratio: 16/10; overflow: hidden; }
.insight-card .img img { width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.insight-card:hover .img img { transform: scale(1.04); }
.insight-card .body { padding: 26px 26px 28px; flex:1; display:flex; flex-direction:column; }
.insight-card .cat { font-size: .72rem; letter-spacing:.18em; text-transform:uppercase; color: var(--copper-600); font-weight:600; margin-bottom: 12px; }
.insight-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.insight-card p { font-size: .92rem; color: var(--charcoal-500); flex:1; margin-bottom: 16px; }
.insight-card .btn-ghost { padding: 0; }

/* -------------------- Final CTA -------------------- */
.final-cta {
  background: var(--charcoal-900);
  background-image:
    radial-gradient(800px 400px at 80% 20%, rgba(197,101,45,.22), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(185,139,50,.15), transparent 60%);
  text-align: center;
  color: var(--stone-200);
}
.final-cta h2 { color: var(--white-100); max-width: 780px; margin-left:auto; margin-right:auto; }
.final-cta p { color: rgba(234,229,218,.75); max-width: 720px; margin: 0 auto 32px; }
.final-cta .btn-row { justify-content: center; }

/* -------------------- Page hero (interior pages) -------------------- */
.page-hero {
  background:
    linear-gradient(180deg, rgba(6,7,5,.75), rgba(6,7,5,.6)),
    url('../images/manufacturing-floor.jpg') center/cover no-repeat;
  color: var(--stone-200);
  padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 120px);
  text-align: left;
}
.page-hero h1 { color: var(--white-100); max-width: 900px; }
.page-hero p { color: rgba(234,229,218,.82); max-width: 700px; font-size: 1.1rem; }
.page-hero .breadcrumb {
  font-size: .78rem; letter-spacing:.18em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: rgba(234,229,218,.7); }
.page-hero.hero-uniforms { background-image: linear-gradient(180deg, rgba(6,7,5,.65), rgba(6,7,5,.45)), url('../images/hero-learners.jpg'); background-position: center 30%; }
.page-hero.hero-partnership { background-image: linear-gradient(180deg, rgba(6,7,5,.75), rgba(6,7,5,.6)), url('../images/embroidery.jpg'); }
.page-hero.hero-manufacturing { background-image: linear-gradient(180deg, rgba(6,7,5,.72), rgba(6,7,5,.55)), url('../images/manufacturing-floor.jpg'); }
.page-hero.hero-other { background-image: linear-gradient(180deg, rgba(6,7,5,.72), rgba(6,7,5,.55)), url('../images/workwear.jpg'); }
.page-hero.hero-about { background-image: linear-gradient(180deg, rgba(6,7,5,.72), rgba(6,7,5,.55)), url('../images/community-work.jpg'); }
.page-hero.hero-community { background-image: linear-gradient(180deg, rgba(6,7,5,.72), rgba(6,7,5,.55)), url('../images/community-work.jpg'); }
.page-hero.hero-insights { background-image: linear-gradient(180deg, rgba(6,7,5,.72), rgba(6,7,5,.55)), url('../images/quality-inspection.jpg'); }
.page-hero.hero-contact { background-image: linear-gradient(180deg, rgba(6,7,5,.75), rgba(6,7,5,.6)), url('../images/fabric-rolls.jpg'); }

/* -------------------- About / mission blocks -------------------- */
.principle-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.principle {
  background: var(--white-100); padding: 32px 28px;
  border-left: 3px solid var(--gold-600); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}
.principle h4 { font-family: var(--font-sans); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-600); margin-bottom: 10px; }
.principle p { margin: 0; font-size: .95rem; color: var(--charcoal-700); }

/* -------------------- Form -------------------- */
.form-grid { display:grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-info {
  background: var(--charcoal-900); color: var(--stone-200);
  padding: clamp(32px, 4vw, 48px); border-radius: var(--radius-md);
}
.contact-info h3 { color: var(--white-100); margin-bottom: 20px; }
.contact-info dl { margin: 0; }
.contact-info dt { font-size: .72rem; letter-spacing:.18em; text-transform: uppercase; color: var(--gold-500); margin-top: 20px; }
.contact-info dd { margin: 4px 0 0; color: rgba(234,229,218,.9); }

form.katartizo-form { background: var(--white-100); padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-md); border: 1px solid var(--stone-300); }
.fld { margin-bottom: 18px; }
.fld.row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fld label { display:block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--charcoal-800); letter-spacing: .02em; }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: .95rem;
  border: 1px solid var(--stone-500); border-radius: var(--radius-sm);
  background: var(--white-200); color: var(--charcoal-900);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--copper-600);
  box-shadow: 0 0 0 3px rgba(170,123,26,.18);
}
.fld textarea { min-height: 140px; resize: vertical; }
.fld .hint { font-size: .8rem; color: var(--charcoal-500); margin-top: 4px; }
.fld .error { color: #A02224; font-size: .82rem; margin-top: 6px; display:none; }
.fld.invalid .error { display: block; }
.fld.invalid input, .fld.invalid select, .fld.invalid textarea { border-color: #A02224; }
.fld.checkbox { display:flex; gap: 10px; align-items:flex-start; }
.fld.checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.fld.checkbox label { margin: 0; font-weight: 400; font-size: .88rem; color: var(--charcoal-700); }
.honey { position: absolute; left: -9999px; top: -9999px; }

.form-status { margin-top: 20px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: .92rem; display:none; }
.form-status.success { display:block; background: #EAF3E8; color: #2E4E28; border-left: 3px solid var(--olive-600); }
.form-status.error { display:block; background: #FBECE7; color: #7C2A16; border-left: 3px solid var(--copper-700); }

/* -------------------- Footer -------------------- */
.site-footer { background: var(--charcoal-900); color: rgba(234,229,218,.75); padding: 72px 0 28px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-brand h4 { font-family: var(--font-serif); color: var(--white-100); font-size: 1.5rem; letter-spacing:.02em; }
.footer-brand h4 .accent { color: var(--gold-500); }
.footer-brand p { font-size: .9rem; color: rgba(234,229,218,.6); max-width: 320px; }
.footer-col h5 { font-family: var(--font-sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .9rem; color: rgba(234,229,218,.72); }
.footer-col a:hover { color: var(--copper-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: rgba(234,229,218,.55); }
.footer-bottom a { color: rgba(234,229,218,.7); margin-left: 20px; }

/* -------------------- Scroll reveal -------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* -------------------- Insights page: filters -------------------- */
.filters { display:flex; flex-wrap:wrap; gap: 10px; margin-bottom: 40px; }
.filter-chip {
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid var(--stone-500); background: var(--white-100);
  font-size: .82rem; font-weight: 500; color: var(--charcoal-700); cursor: pointer;
  transition: all .2s var(--ease);
}
.filter-chip.active, .filter-chip:hover { background: var(--charcoal-900); color: var(--white-100); border-color: var(--charcoal-900); }

/* -------------------- 404 -------------------- */
.notfound { min-height: 70vh; display:flex; align-items:center; justify-content: center; text-align: center; }
.notfound h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--copper-600); margin-bottom: 8px; }


/* -------------------- Dropdown navigation -------------------- */
.nav-menu li.has-drop { position: relative; }
.nav-menu li.has-drop > a::after { bottom: -4px; }
.nav-menu .drop-toggle { display:inline-flex; align-items:center; gap:6px; }
.nav-menu .drop-toggle .chev { width:10px; height:10px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform: rotate(45deg) translate(-1px,-1px); transition: transform .25s var(--ease); }
.nav-menu li.has-drop.open .drop-toggle .chev { transform: rotate(225deg) translate(-2px,-2px); }
.nav-dropdown {
  position:absolute; top: calc(100% + 14px); left: -18px; min-width: 268px;
  background: var(--white-100); border: 1px solid var(--stone-300);
  border-top: 2px solid var(--gold-600);
  box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 10px; list-style:none; margin:0;
  opacity:0; visibility:hidden; transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-menu li.has-drop:hover .nav-dropdown,
.nav-menu li.has-drop.open .nav-dropdown { opacity:1; visibility:visible; transform:none; }
.nav-dropdown li { margin:0; }
.nav-dropdown a {
  display:block; padding: 11px 14px; font-size:.9rem; color: var(--charcoal-700);
  border-radius: var(--radius-sm);
}
.nav-dropdown a:hover { background: var(--stone-200); color: var(--charcoal-900); }

.mobile-menu .sub { list-style:none; padding:0 0 8px 14px; margin:0; }
.mobile-menu .sub a { font-family: var(--font-sans); font-size: 1rem; padding: 12px 4px; color: var(--charcoal-500); border-bottom: 1px solid var(--stone-200); }

/* -------------------- Academy -------------------- */
.badge-soon {
  display:inline-flex; align-items:center; gap:8px; padding: 8px 16px;
  border: 1px solid var(--gold-600); color: var(--gold-600);
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; font-weight:600;
  border-radius: 100px; margin-bottom: 22px;
}
.badge-soon .dot { width:7px; height:7px; border-radius:50%; background: var(--gold-600); }
.mvv-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.mvv-card { background: var(--white-100); border:1px solid var(--stone-300); border-left:3px solid var(--gold-600); padding: 32px 28px; }
.mvv-card h3 { font-size:1.15rem; }
.learn-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.learn-item {
  background: var(--white-100); border:1px solid var(--stone-300);
  padding: 20px 22px; display:flex; gap:14px; align-items:flex-start;
}
.learn-item .n { font-family: var(--font-serif); font-style:italic; color: var(--gold-600); font-size:1.1rem; line-height:1.3; }
.learn-item h4 { margin:0 0 2px; font-family: var(--font-sans); font-size:.95rem; }
.learn-item p { margin:0; font-size:.85rem; color: var(--charcoal-500); }
.method-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.method-card { padding: 34px 30px; background: var(--charcoal-900); color: var(--stone-200); border-bottom: 3px solid var(--gold-600); }
.method-card h3 { color: var(--white-100); }
.method-card p { color: rgba(234,229,218,.78); margin:0; font-size:.92rem; }
.pill-row { display:flex; flex-wrap:wrap; gap:10px; }
.pill { padding: 10px 18px; border:1px solid var(--stone-300); background: var(--white-100); font-size:.88rem; color: var(--charcoal-700); border-radius: 100px; }

/* -------------------- FAQ -------------------- */
.faq-item { border-bottom: 1px solid var(--stone-300); }
.faq-q {
  width:100%; text-align:left; background:transparent; border:none;
  padding: 24px 40px 24px 0; font-family: var(--font-serif); font-size: 1.12rem;
  color: var(--charcoal-900); position:relative;
}
.faq-q::after { content:"+"; position:absolute; right:6px; top:50%; transform:translateY(-50%); color: var(--gold-600); font-size:1.4rem; font-family: var(--font-sans); }
.faq-item.open .faq-q::after { content:"\2212"; }
.faq-a { max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 40px 22px 0; margin:0; color: var(--charcoal-500); font-size:.95rem; }
