/* =========================================================================
   EE DevCo / Entrepreneurs Enterprises — Design System
   Premium real estate development & construction
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Color */
  --ink:        #14171c;   /* near-black charcoal */
  --ink-2:      #1d232b;
  --ink-3:      #2b333d;
  --paper:      #ffffff;
  --bg:         #f6f4f1;   /* warm off-white */
  --bg-2:       #efece7;
  --line:       #e4e0da;
  --line-2:     #d3cec6;

  --accent:      #ec5a24;  /* warm red-orange — pulled from logo roofline */
  --accent-deep: #c8431a;
  --accent-soft: #fdeee7;

  --green:       #51614f;  /* muted construction green — secondary accent */
  --green-deep:  #3c4a3a;

  --text:        #20262d;
  --muted:       #5f6872;
  --muted-2:     #8b939c;
  --on-dark:     #f3f1ee;
  --on-dark-mut: #aab1ba;

  /* Type */
  --font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Geometry */
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --maxw:      1240px;
  --gutter:    clamp(20px, 5vw, 56px);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20,23,28,.05), 0 2px 8px rgba(20,23,28,.05);
  --shadow:    0 6px 22px rgba(20,23,28,.09), 0 2px 6px rgba(20,23,28,.05);
  --shadow-lg: 0 24px 60px rgba(20,23,28,.16), 0 8px 22px rgba(20,23,28,.08);

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 78px;
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---- Typography ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.05rem, 5.4vw, 4.3rem); overflow-wrap: break-word; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { color: var(--muted); }
strong { color: var(--text); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  font-family: var(--font-head); font-weight: 600;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-deep); max-width: 100%;
}
@media (max-width: 480px) { .eyebrow { font-size: .68rem; letter-spacing: .1em; } }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block;
}
.eyebrow.light { color: var(--accent); }
.eyebrow.center { justify-content: center; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); line-height: 1.7; }

/* ---- Layout helpers --------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--ink { background: var(--ink); color: var(--on-dark); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: var(--on-dark-mut); }
.section--bg2 { background: var(--bg-2); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .65rem; }
.section-head p { margin-top: 1rem; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px)  { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  padding: .92rem 1.5rem; border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(236,90,36,.28); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(236,90,36,.34); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--sm { padding: .65rem 1.1rem; font-size: .9rem; }

.textlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 600; color: var(--accent-deep);
  font-size: .95rem;
}
.textlink svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* =========================================================================
   ROOFLINE  — the signature active-nav detail
   ========================================================================= */
.roofline { display: block; width: 64px; height: 20px; overflow: visible; }
.roofline path {
  fill: none; stroke: var(--accent); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 150; stroke-dashoffset: 150;
  transition: stroke-dashoffset .55s var(--ease);
}
.roofline.drawn path { stroke-dashoffset: 0; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.topbar {
  background: var(--ink); color: var(--on-dark-mut);
  font-size: .82rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 40px; padding-block: 6px; gap: 1rem; }
.topbar a { color: var(--on-dark-mut); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__meta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__meta svg { width: 14px; height: 14px; color: var(--accent); }
.topbar__social { display: flex; align-items: center; gap: .35rem; }
.topbar__social a { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); }
.topbar__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.topbar__social svg { width: 14px; height: 14px; }
@media (max-width: 760px) { .topbar__meta .hide-sm { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.compact { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.96); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: var(--header-h); transition: height .3s var(--ease);
}
.site-header.compact .header-inner { height: 64px; }

/* Logo */
.brand { display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand__mark { position: relative; display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.brand__roof { width: 46px; height: 15px; margin-bottom: 2px; }
.brand__roof path { fill: none; stroke: var(--accent); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: -.03em; color: var(--ink); }
.brand__name b { color: var(--accent); font-weight: 700; }
.brand__sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.nav__link {
  position: relative; font-family: var(--font-head); font-weight: 500; font-size: .98rem;
  color: var(--ink-2); padding: .5rem .15rem; letter-spacing: -.01em;
  transition: color .2s;
}
.nav__link:hover { color: var(--accent-deep); }
.nav__roof {
  position: absolute; left: 50%; top: -11px; transform: translateX(-50%);
  width: 48px; height: 16px; opacity: 0; transition: opacity .3s var(--ease);
  pointer-events: none;
}
.nav__roof path {
  fill: none; stroke: var(--accent); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 120; stroke-dashoffset: 120;
  transition: stroke-dashoffset .5s var(--ease);
}
.nav__link:hover .nav__roof { opacity: 1; }
.nav__link:hover .nav__roof path { stroke-dashoffset: 0; }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__link[aria-current="page"] .nav__roof { opacity: 1; }
.nav__link[aria-current="page"] .nav__roof path { stroke-dashoffset: 0; }

.header-cta { display: flex; align-items: center; gap: .8rem; }
.nav > .btn { display: none; } /* in-menu CTA shows on mobile only */

/* Mobile toggle */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px auto; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav, .header-cta .btn { }
  .nav-toggle { display: block; }
  .header-cta .btn--primary { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.5rem; box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__link { display: flex; align-items: center; gap: .7rem; padding: 1rem .25rem; font-size: 1.12rem; border-bottom: 1px solid var(--line); }
  .nav__roof { position: static; transform: none; width: 30px; height: 11px; opacity: 0; order: -1; flex-shrink: 0; }
  .nav__link[aria-current="page"] .nav__roof { opacity: 1; }
  .nav__link:hover .nav__roof { opacity: 1; }
  .nav > .btn { display: inline-flex; margin-top: 1.2rem; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,17,21,.62) 0%, rgba(15,17,21,.42) 38%, rgba(15,17,21,.78) 100%);
}
.hero__inner { padding-block: clamp(96px, 16vw, 188px); max-width: 760px; }
.hero h1 { color: #fff; margin-top: 1.1rem; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead { color: #e9e7e3; font-size: clamp(1.05rem, 1.8vw, 1.3rem); margin-top: 1.4rem; max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.4rem);
  margin-top: clamp(2.5rem, 5vw, 3.6rem); padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.18);
}
.hero__stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; line-height: 1; }
.hero__stat .num span { color: var(--accent); }
.hero__stat .lbl { display: block; margin-top: .5rem; font-size: .82rem; letter-spacing: .04em; color: #cfccc7; text-transform: uppercase; }

/* Page hero (interior pages) */
.page-hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,17,21,.55), rgba(15,17,21,.8)); }
.page-hero__inner { padding-block: clamp(70px, 11vw, 130px); max-width: 760px; }
.page-hero h1 { color: #fff; margin-top: .9rem; }
.page-hero p { color: #e3e1dd; margin-top: 1rem; max-width: 58ch; font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: #c7c4bf; display: flex; gap: .5rem; align-items: center; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--accent); }

/* =========================================================================
   CARDS — services
   ========================================================================= */
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  display: flex; flex-direction: column; height: 100%;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-2); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .05em;
  background: rgba(20,23,28,.7); color: #fff; padding: .3rem .6rem; border-radius: 6px; backdrop-filter: blur(4px);
}
.svc-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.svc-card__body h3 { color: var(--ink); }
.svc-card__body p { font-size: .96rem; flex: 1; }
.svc-card__body .textlink { margin-top: .4rem; }

/* =========================================================================
   PROJECT CARDS / PORTFOLIO
   ========================================================================= */
.proj-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink);
  cursor: pointer; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: block; width: 100%; text-align: left;
}
.proj-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.proj-card__media { aspect-ratio: 3/4; overflow: hidden; }
.proj-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.proj-card:hover .proj-card__media img { transform: scale(1.07); }
.proj-card__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem; color: #fff;
  background: linear-gradient(180deg, rgba(15,17,21,0) 40%, rgba(15,17,21,.45) 66%, rgba(15,17,21,.9) 100%);
}
.proj-card__tag {
  align-self: flex-start; font-family: var(--font-head); font-weight: 600; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  background: rgba(236,90,36,.92); padding: .32rem .6rem; border-radius: 5px; margin-bottom: .7rem;
}
.proj-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: #fff; letter-spacing: -.02em; }
.proj-card__loc { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: #d8d5d0; margin-top: .3rem; }
.proj-card__loc svg { width: 13px; height: 13px; color: var(--accent); }
.proj-card__desc { font-size: .9rem; color: #cbc8c3; margin-top: .55rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .3s var(--ease), margin-top .4s; }
.proj-card:hover .proj-card__desc { max-height: 100px; opacity: 1; }
.proj-card__plus { position: absolute; top: 1.1rem; right: 1.1rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s var(--ease); }
.proj-card:hover .proj-card__plus { opacity: 1; transform: scale(1); }
.proj-card__plus svg { width: 18px; height: 18px; color: #fff; }

/* Filter bar */
.filterbar { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: clamp(28px, 4vw, 44px); }
.filter-btn {
  font-family: var(--font-head); font-weight: 500; font-size: .9rem;
  padding: .55rem 1.05rem; border-radius: 999px; border: 1.5px solid var(--line-2);
  color: var(--ink-2); background: #fff; transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-btn .count { color: var(--muted-2); font-size: .8em; margin-left: .3rem; }
.filter-btn.active .count { color: rgba(255,255,255,.6); }

.proj-card.is-hidden { display: none; }

/* =========================================================================
   STATS / CREDIBILITY
   ========================================================================= */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat-band .cell { background: #fff; padding: clamp(1.4rem, 3vw, 2.2rem); }
.section--ink .stat-band { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); }
.section--ink .stat-band .cell { background: var(--ink-2); }
.stat-band .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--ink); line-height: 1; }
.section--ink .stat-band .num { color: #fff; }
.stat-band .num span { color: var(--accent); }
.stat-band .lbl { margin-top: .55rem; font-size: .9rem; color: var(--muted); }
.section--ink .stat-band .lbl { color: var(--on-dark-mut); }
@media (max-width: 720px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }

/* Certification grid */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 820px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cert-grid { grid-template-columns: 1fr; } }
.cert {
  display: flex; align-items: flex-start; gap: .9rem; padding: 1.25rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .25s, transform .25s var(--ease);
}
.cert:hover { border-color: var(--accent); transform: translateY(-3px); }
.cert__ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; background: var(--accent-soft); display: grid; place-items: center; }
.cert__ic svg { width: 22px; height: 22px; color: var(--accent-deep); }
.cert__t { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); line-height: 1.25; }
.cert__s { font-size: .85rem; color: var(--muted); margin-top: .2rem; }

/* Trust / badge strip */
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.4rem, 4vw, 3rem); }
.trust__item { display: flex; align-items: center; gap: .7rem; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink-2); }
.trust__item svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }

/* =========================================================================
   PROCESS
   ========================================================================= */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 28px); counter-reset: step; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0; font-family: var(--font-head); font-weight: 700;
  font-size: 1.1rem; color: var(--accent);
}
.step::after { content: ""; position: absolute; top: 9px; left: 3.2rem; right: 0; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px); }
.step:last-child::after { display: none; }
.step h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; }
.section--ink .step h3 { color: #fff; }
.section--ink .step::after { background: repeating-linear-gradient(90deg, rgba(255,255,255,.2) 0 6px, transparent 6px 12px); }

/* =========================================================================
   FEATURE / SPLIT
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.split__media .badge-float {
  position: absolute; bottom: -20px; right: -10px; background: #fff; border-radius: var(--radius-sm);
  padding: 1rem 1.3rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .8rem;
}
.split__media .badge-float img { width: 64px; border-radius: 0; box-shadow: none; aspect-ratio: auto; }
.split__media .badge-float .num { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--ink); line-height: 1; }
.split__media .badge-float .lbl { font-size: .78rem; color: var(--muted); }
@media (max-width: 540px) { .split__media .badge-float { position: static; margin-top: 1rem; right: auto; bottom: auto; } }

.checklist { display: grid; gap: .85rem; margin-top: 1.5rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; color: var(--text); }
.checklist svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.checklist b { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

/* Pills */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { font-size: .85rem; padding: .4rem .85rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); font-family: var(--font-head); font-weight: 500; }
.section--ink .pill { background: var(--ink-2); border-color: rgba(255,255,255,.12); color: var(--on-dark); }
.pill--accent { background: var(--accent-soft); border-color: transparent; color: var(--accent-deep); }

/* =========================================================================
   ACCORDION
   ========================================================================= */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.ac-item + .ac-item { border-top: 1px solid var(--line); }
.ac-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.4rem; text-align: left; font-family: var(--font-head); font-weight: 600;
  font-size: 1.05rem; color: var(--ink); transition: background .2s;
}
.ac-head:hover { background: var(--bg); }
.ac-head .ac-ic { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.ac-head .ac-ic::before, .ac-head .ac-ic::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease); }
.ac-head .ac-ic::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.ac-head .ac-ic::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.ac-head[aria-expanded="true"] .ac-ic::after { transform: scaleY(0); }
.ac-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.ac-panel__inner { padding: 0 1.4rem 1.4rem; color: var(--muted); }
.ac-panel__inner table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.ac-panel__inner td { padding: .55rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.ac-panel__inner td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--ink); width: 32%; white-space: nowrap; padding-right: 1rem; }
.ac-panel__inner ul.bullets { display: grid; gap: .5rem; }
.ac-panel__inner ul.bullets li { display: flex; gap: .6rem; }
.ac-panel__inner ul.bullets li::before { content: ""; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-top: .55rem; }

/* =========================================================================
   LEADERSHIP
   ========================================================================= */
.leader { display: grid; grid-template-columns: 320px 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
@media (max-width: 760px) { .leader { grid-template-columns: 1fr; } }
.leader__photo { background: var(--ink); border-radius: var(--radius); aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; position: relative; }
.leader__initials { font-family: var(--font-head); font-weight: 700; font-size: 5rem; color: #fff; letter-spacing: -.04em; }
.leader__photo .ring { position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, rgba(236,90,36,.35), transparent 55%); }
.leader__name { margin-top: .3rem; }
.leader__role { font-family: var(--font-head); font-weight: 600; color: var(--accent-deep); margin-top: .4rem; }

/* =========================================================================
   EVENTS / NEWS
   ========================================================================= */
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); height: 100%; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-2); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.news-card__meta { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-deep); }
.news-card__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.news-card__meta .cat { color: var(--muted); }
.news-card h3 { font-size: 1.25rem; }
.news-card p { font-size: .95rem; flex: 1; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 2rem 2.6rem; }
.tl-item::before { content: ""; position: absolute; left: 2px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); }
.tl-item .yr { font-family: var(--font-head); font-weight: 700; color: var(--accent-deep); font-size: .9rem; }
.tl-item h3 { font-size: 1.15rem; margin: .25rem 0 .35rem; }
.tl-item p { font-size: .95rem; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { display: flex; gap: 1rem; padding: 1.3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.info-card__ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; }
.info-card__ic svg { width: 22px; height: 22px; color: var(--accent-deep); }
.info-card .k { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .95rem; }
.info-card .v { color: var(--muted); font-size: .95rem; margin-top: .15rem; }
.info-card a.v:hover { color: var(--accent-deep); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 0; }
.field.row > .field { margin-bottom: 1.1rem; }
@media (max-width: 520px) { .field.row { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .45rem; }
.field label .req { color: var(--accent); }
.input, .field select, textarea.input {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--bg); transition: border-color .2s, background .2s, box-shadow .2s; font-size: 1rem;
}
.input:focus, .field select:focus, textarea.input:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px var(--accent-soft); }
textarea.input { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235f6872' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form__note { font-size: .82rem; color: var(--muted-2); margin-top: .4rem; }
.form-success { display: none; padding: 1rem 1.2rem; background: #eef6ee; border: 1px solid #cfe6cf; border-radius: var(--radius-sm); color: var(--green-deep); font-weight: 500; margin-bottom: 1.2rem; align-items: center; gap: .6rem; }
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 85% 15%, rgba(236,90,36,.28), transparent 50%); }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: var(--on-dark-mut); margin-top: 1rem; max-width: 52ch; }
.cta-band .hero__cta { margin-top: 2rem; }
.cta-band__roof { width: 90px; height: 28px; margin-bottom: 1.2rem; }
.cta-band__roof path { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--ink); color: var(--on-dark-mut); padding-top: clamp(56px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 48px); padding-bottom: 56px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: #fff; }
.footer-about { font-size: .95rem; color: var(--on-dark-mut); margin-top: 1.1rem; max-width: 34ch; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--font-head); }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a, .footer-contact li { color: var(--on-dark-mut); font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact { display: grid; gap: .9rem; }
.footer-contact li { display: flex; gap: .65rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: .55rem; margin-top: 1.3rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; transition: all .2s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: var(--muted-2); }
.footer-bottom a:hover { color: #fff; }

/* =========================================================================
   LIGHTBOX
   ========================================================================= */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(12,13,16,.94); display: none; align-items: center; justify-content: center; padding: 4vw; opacity: 0; transition: opacity .3s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img { max-width: 100%; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__cap { position: absolute; bottom: 4vw; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-head); font-weight: 500; }
.lightbox__cap span { display: block; color: var(--on-dark-mut); font-size: .85rem; font-weight: 400; margin-top: .25rem; }
.lb-btn { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.lb-btn:hover { background: var(--accent); border-color: var(--accent); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 3vw; right: 3vw; }
.lb-prev { left: 2vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 2vw; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lb-prev { left: 1vw; } .lb-next { right: 1vw; } .lb-btn { width: 44px; height: 44px; } }

/* Gallery thumb grid */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; cursor: pointer; background: var(--bg-2); position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: rgba(20,23,28,0); transition: background .3s; }
.gallery__item:hover::after { background: rgba(20,23,28,.18); }
.gallery__item.span-2 { grid-column: span 2; aspect-ratio: auto; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* Misc */
.divider-roof { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--line-2); }
.divider-roof svg { width: 50px; height: 16px; }
.divider-roof svg path { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.divider-roof::before, .divider-roof::after { content: ""; height: 1px; width: 60px; background: var(--line-2); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: .6rem 1rem; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
