/* ============================================================
   Altun Works — Design System
   Palette extracted from logo: metallic gold #BC9A5B
   Light & airy: cream base, white cards, warm ink text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --gold:        #BC9A5B;
  --gold-deep:   #9E7E40;
  --gold-soft:   #D8C49A;
  --gold-tint:   #F3ECDD;
  --gold-wash:   #FBF8F1;

  /* Neutrals (warm) */
  --ink:         #221F1A;
  --ink-soft:    #4A453C;
  --muted:       #837B6E;
  --line:        #E7E1D6;
  --cream:       #FAF7F1;
  --cream-2:     #F3EEE4;
  --white:       #FFFFFF;
  --charcoal:    #211E19;

  /* Type */
  --display: 'Archivo', system-ui, sans-serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(34,31,26,.06), 0 2px 8px rgba(34,31,26,.05);
  --shadow-md: 0 8px 30px rgba(34,31,26,.10);
  --shadow-lg: 0 24px 60px rgba(34,31,26,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.h-display { font-size: clamp(2.1rem, 5.2vw, 4rem); }
.h-section { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); line-height: 1.7; }
.muted { color: var(--muted); }

.center { text-align: center; }
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  --fg: #2a2114;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(188,154,91,.35); background: var(--gold-deep); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: var(--shadow-md); }

.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover { background: var(--gold); color: #2a2114; box-shadow: 0 12px 28px rgba(0,0,0,.25); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250,247,241,.85);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,.02), var(--shadow-sm); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut);
  height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 38px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  font-weight: 500; font-size: 15.5px;
  padding: 10px 16px; border-radius: var(--radius);
  color: var(--ink-soft);
  transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .32s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ink); font-weight: 600; }
.nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { margin-left: 12px; }
.nav__right { display: flex; align-items: center; gap: 6px; }

/* Distinctive nav CTA — outlined pill with gold arrow-chip; gold sweeps in on hover */
.navcta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  padding: 8px 8px 8px 22px; border-radius: var(--radius);
  border: 1.5px solid var(--gold); color: var(--ink); background: transparent;
  position: relative; overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.navcta::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: var(--radius);
  background: var(--gold); transform: scaleX(0); transform-origin: right center;
  transition: transform .5s var(--ease);
}
.navcta:hover { color: #2a2114; box-shadow: 0 10px 24px rgba(188,154,91,.30); }
.navcta:hover::before { transform: scaleX(1); transform-origin: left center; }
.navcta__chip {
  width: 31px; height: 31px; border-radius: 3px; flex: none;
  background: var(--gold); color: #2a2114; display: grid; place-items: center;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.navcta:hover .navcta__chip { background: #2a2114; color: var(--gold); }
.navcta__chip svg { transition: transform .45s var(--ease); }
.navcta:hover .navcta__chip svg { transform: translateX(2px); }

.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .3s; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: .3s; }
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.is-open span::after { top: 0; transform: rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 8px var(--gut) 24px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  gap: 2px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a { padding: 14px 4px; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile a.is-active { color: var(--gold-deep); }
.nav__mobile .btn { margin-top: 16px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: #C9C2B5; padding-block: clamp(56px, 7vw, 84px) 32px; }
.footer a { color: #C9C2B5; transition: color .2s; }
.footer a:hover { color: var(--gold); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer__brand img { height: 54px; margin-bottom: 20px; }
.footer__brand p { color: #948C7E; font-size: 15px; max-width: 30ch; }
.footer h5 {
  font-family: var(--body); font-weight: 600; color: var(--white);
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px;
}
.footer__list { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer__contact { display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.footer__contact .row { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { flex: none; margin-top: 3px; color: var(--gold); }
.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #2a2114; transform: translateY(-3px); }
.footer__bar {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: #837B6E;
}

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

/* ============================================================
   HOME — Hero (3 variants via .hero[data-variant])
   ============================================================ */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; }

/* Variant: full — centered overlay on full-bleed image */
.hero[data-variant="full"] { min-height: clamp(560px, 88vh, 880px); display: grid; align-items: center; }
.hero[data-variant="full"] .hero__media img { transform: scale(1.03); filter: saturate(.92) brightness(.96); }
.hero[data-variant="full"] .hero__scrim {
  background:
    linear-gradient(180deg, rgba(28,24,18,.55) 0%, rgba(28,24,18,.34) 34%, rgba(24,20,15,.52) 66%, rgba(20,17,12,.82) 100%),
    radial-gradient(116% 78% at 50% 46%, rgba(0,0,0,0) 32%, rgba(20,17,12,.5) 100%);
}
/* warm tint + soft top-glow so white type reads on any frame */
.hero[data-variant="full"]::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(70% 52% at 50% 56%, rgba(20,16,11,.42) 0%, rgba(20,16,11,0) 70%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 22%);
  mix-blend-mode: multiply;
}
.hero[data-variant="full"] .hero__inner { max-width: 880px; margin: 0 auto; text-align: center; color: #fff; padding-block: 120px; }
.hero[data-variant="full"] h1 { text-shadow: 0 2px 30px rgba(16,12,8,.45), 0 1px 3px rgba(16,12,8,.35); }
.hero[data-variant="full"] .hero__lead { text-shadow: 0 1px 16px rgba(16,12,8,.5); }
.hero[data-variant="panel"] h1 { text-shadow: 0 2px 30px rgba(16,12,8,.4); }
.hero[data-variant="full"] .hero__inner .eyebrow { color: var(--gold-soft); justify-content: center; }
.hero[data-variant="full"] .hero__inner .eyebrow::before { background: var(--gold-soft); }
.hero[data-variant="full"] h1 { color: #fff; }
.hero[data-variant="full"] .hero__lead { color: rgba(255,255,255,.88); margin-inline: auto; }
.hero[data-variant="full"] .hero__cta { justify-content: center; }

/* Variant: split — text panel left on cream, tall image right */
.hero[data-variant="split"] { background: var(--cream); }
.hero[data-variant="split"] .hero__media { display: none; }
.hero[data-variant="split"] .hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center;
  min-height: clamp(520px, 82vh, 800px);
}
.hero[data-variant="split"] .hero__inner { padding-block: 64px; }
.hero[data-variant="split"] .hero__pic {
  position: relative; height: clamp(380px, 62vh, 660px); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero[data-variant="split"] .hero__pic img { width: 100%; height: 100%; object-fit: cover; }
.hero[data-variant="split"] .hero__badge {
  position: absolute; left: 22px; bottom: 22px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: 14px 20px; border-radius: var(--radius); box-shadow: var(--shadow-md); display: flex; gap: 14px; align-items: center;
}

/* Variant: panel — image with frosted text card bottom-left */
.hero[data-variant="panel"] { min-height: clamp(560px, 90vh, 900px); display: grid; align-items: end; }
.hero[data-variant="panel"] .hero__scrim {
  background: linear-gradient(115deg, rgba(20,18,14,.62) 0%, rgba(20,18,14,.18) 55%, rgba(20,18,14,0) 100%);
}
.hero[data-variant="panel"] .hero__inner { padding-block: clamp(48px, 8vh, 96px); max-width: 720px; color: #fff; }
.hero[data-variant="panel"] .hero__inner .eyebrow { color: var(--gold-soft); }
.hero[data-variant="panel"] .hero__inner .eyebrow::before { background: var(--gold-soft); }
.hero[data-variant="panel"] h1 { color: #fff; }
.hero[data-variant="panel"] .hero__lead { color: rgba(255,255,255,.9); }

.hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.hero__inner .eyebrow { margin-bottom: 22px; }
.hero[data-variant="full"] .hero__inner .eyebrow { white-space: nowrap; }
.hero__lead { font-size: clamp(1.08rem, 1.7vw, 1.4rem); line-height: 1.6; max-width: 56ch; margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__stats { display: flex; gap: clamp(20px, 4vw, 48px); margin-top: 52px; flex-wrap: wrap; }
.hero__stat .n { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1; }
.hero[data-variant="full"] .hero__stats, .hero[data-variant="panel"] .hero__stats { color: #fff; }
.hero[data-variant="full"] .hero__stats { justify-content: center; }
.hero__stat .l { font-size: 13.5px; letter-spacing: .04em; opacity: .8; margin-top: 8px; }
.hero__stat .n b { color: var(--gold); }
.hero[data-variant="split"] .hero__stat .n b { color: var(--gold-deep); }
.hero__divider { width: 1px; background: currentColor; opacity: .18; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  width: 30px; height: 48px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 20px; display: grid; justify-items: center;
}
.scroll-cue::after { content: ""; width: 4px; height: 9px; background: #fff; border-radius: 4px; margin-top: 8px; animation: scrollcue 1.7s var(--ease) infinite; }
@keyframes scrollcue { 0%{opacity:0;transform:translateY(0)} 35%{opacity:1} 70%{opacity:0;transform:translateY(12px)} 100%{opacity:0} }
.hero[data-variant="split"] .scroll-cue { display: none; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.about__media { position: relative; }
.about__media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about__media .frame--sm {
  position: absolute; right: -28px; bottom: -34px; width: 46%; aspect-ratio: 1/1; border: 8px solid var(--cream);
}
.about__media .accent { position: absolute; left: -22px; top: -22px; width: 120px; height: 120px; border: 1.5px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.about p + p { margin-top: 18px; }
.about__sign { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.about__sign .name { font-family: var(--display); font-weight: 700; font-size: 18px; }
.about__sign .role { font-size: 14px; color: var(--muted); }
.about__list { margin-top: 28px; display: grid; gap: 14px; }
.about__list .item { display: flex; gap: 12px; align-items: flex-start; }
.about__list .item span.tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); display: grid; place-items: center; margin-top: 1px; }

/* ---------- Why choose us ---------- */
.why { background: var(--cream-2); }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__ic { width: 56px; height: 56px; border-radius: var(--radius); background: var(--gold-tint); color: var(--gold-deep); display: grid; place-items: center; margin-bottom: 22px; transition: background .35s, color .35s; }
.feature:hover .feature__ic { background: var(--gold); color: #2a2114; }
.feature h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.feature .num { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: .1em; display: block; margin-bottom: 18px; }

/* ---------- Why: bento grid ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 230px; gap: 18px; margin-top: 56px; }
.bento__cell {
  position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff;
  box-shadow: var(--shadow-sm); min-height: 0;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.bento__cell:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bento__cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s var(--ease); }
.bento__cell:hover img { transform: scale(1.06); }
.bento__cell::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,18,14,.12) 0%, rgba(20,18,14,.30) 42%, rgba(20,18,14,.72) 78%, rgba(20,18,14,.90) 100%);
}
.bento__ic {
  position: absolute; top: 26px; left: 26px; width: 50px; height: 50px; border-radius: var(--radius);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: #fff; transition: background .35s, color .35s, border-color .35s;
}
.bento__cell:hover .bento__ic { background: var(--gold); color: #2a2114; border-color: var(--gold); }
.bento__body .num { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--gold-soft); letter-spacing: .12em; display: block; margin-bottom: 10px; }
.bento__cell h3 { color: #fff; font-size: 1.32rem; }
.bento__cell p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.6; margin-top: 10px; max-width: 40ch; }
.cell--a { grid-column: span 5; grid-row: span 2; }
.cell--a h3 { font-size: 1.85rem; }
.cell--a p { font-size: 16px; max-width: 32ch; }
.cell--b { grid-column: span 7; }
.cell--c { grid-column: span 4; }
.cell--d { grid-column: span 3; }
@media (max-width: 900px) {
  .bento { grid-auto-rows: 210px; }
  .cell--a { grid-column: 1 / -1; grid-row: span 1; }
  .cell--b { grid-column: 1 / -1; }
  .cell--c { grid-column: span 6; }
  .cell--d { grid-column: span 6; }
}
@media (max-width: 560px) {
  .bento__cell { grid-column: 1 / -1 !important; }
}

/* ---------- Teaser grid ---------- */
.teaser__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.teaser__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.tcard { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.tcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tcard:hover img { transform: scale(1.06); }
.tcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(20,18,14,.78) 100%); }
.tcard__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; z-index: 2; color: #fff; transform: translateY(8px); transition: transform .5s var(--ease); }
.tcard:hover .tcard__body { transform: translateY(0); }
.tcard__cat { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.tcard__body h3 { color: #fff; font-size: 1.3rem; margin-top: 8px; }
.tcard--lg { grid-column: span 6; min-height: 440px; }
.tcard--sm { grid-column: span 6; min-height: 300px; }
.tcard--t { grid-column: span 3; }
@media (min-width: 901px) {
  .tcard--lg { grid-row: span 2; }
}

/* ---------- CTA band ---------- */
.ctaband { position: relative; overflow: hidden; isolation: isolate; }
.ctaband__media { position: absolute; inset: 0; z-index: -2; }
.ctaband__media img { width: 100%; height: 100%; object-fit: cover; }
.ctaband::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(20,18,14,.86), rgba(20,18,14,.55)); }
.ctaband__inner { padding-block: clamp(64px, 9vw, 120px); max-width: 720px; color: #fff; }
.ctaband h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3.2rem); }
.ctaband p { color: rgba(255,255,255,.86); margin-top: 18px; font-size: 1.15rem; }
.ctaband .hero__cta { margin-top: 34px; }
.ctaband .eyebrow { color: var(--gold-soft); }
.ctaband .eyebrow::before { background: var(--gold-soft); }

/* ============================================================
   PROJECTEN
   ============================================================ */
.page-hero { background: var(--charcoal); color: #fff; padding-block: clamp(120px, 16vh, 190px) clamp(56px, 8vw, 90px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -6%; top: -30%; width: 460px; height: 460px; border: 1.5px solid rgba(188,154,91,.22); border-radius: 50%; }
.page-hero::after { content: ""; position: absolute; right: 8%; top: 10%; width: 260px; height: 260px; border: 1.5px solid rgba(188,154,91,.16); border-radius: 50%; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4.2rem); max-width: 16ch; }
.page-hero .eyebrow { color: var(--gold-soft); margin-bottom: 20px; }
.page-hero .eyebrow::before { background: var(--gold-soft); }
.page-hero p { color: rgba(255,255,255,.82); max-width: 56ch; margin-top: 20px; font-size: 1.12rem; }
.page-hero__crumb { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 26px; letter-spacing: .02em; }
.page-hero__crumb a:hover { color: var(--gold-soft); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter {
  font-family: var(--body); font-weight: 500; font-size: 14.5px; padding: 11px 20px; border-radius: 100px;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink-soft); cursor: pointer;
  transition: all .25s var(--ease);
}
.filter:hover { border-color: var(--gold); color: var(--ink); }
.filter.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.filter .count { opacity: .55; margin-left: 7px; font-size: 12.5px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gitem {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; background: var(--cream-2);
  box-shadow: var(--shadow-sm); aspect-ratio: 4/3;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  animation: fadein .5s var(--ease) both;
}
.gitem:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gitem:hover img { transform: scale(1.07); }
.gitem__overlay {
  position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(20,18,14,.82) 100%);
  opacity: 1; color: #fff;
}
.gitem__cat { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.gitem__overlay h3 { color: #fff; font-size: 1.18rem; margin-top: 7px; }
.gitem__overlay p { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 8px; max-width: 38ch; opacity: 0; max-height: 0; transform: translateY(8px); transition: all .45s var(--ease); }
.gitem:hover .gitem__overlay p { opacity: 1; max-height: 80px; transform: translateY(0); }
.gitem__zoom { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; color: #fff; opacity: 0; transform: scale(.8); transition: all .35s var(--ease); }
.gitem:hover .gitem__zoom { opacity: 1; transform: scale(1); }
@keyframes fadein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px;
  background: rgba(16,14,11,.92); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .35s; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage { position: relative; max-width: min(1100px, 94vw); max-height: 88vh; }
.lightbox__img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }
.lightbox__cap { color: #fff; margin-top: 18px; display: flex; justify-content: space-between; gap: 16px; align-items: baseline; flex-wrap: wrap; }
.lightbox__cap h3 { color: #fff; font-size: 1.3rem; }
.lightbox__cap .c { color: var(--gold-soft); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }
.lightbox__cap p { color: rgba(255,255,255,.72); font-size: 15px; max-width: 60ch; width: 100%; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .25s; }
.lb-btn:hover { background: var(--gold); color: #2a2114; border-color: var(--gold); }
.lb-prev { left: -68px; } .lb-next { right: -68px; }
.lb-close { position: absolute; top: -54px; right: 0; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; cursor: pointer; display: grid; place-items: center; }
.lb-close:hover { background: var(--gold); color: #2a2114; }
.lb-count { position: absolute; top: -46px; left: 0; color: rgba(255,255,255,.6); font-size: 14px; }
@media (max-width: 820px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-btn { width: 44px; height: 44px; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.field label .req { color: var(--gold-deep); }
.field input, .field textarea, .field select {
  font-family: var(--body); font-size: 16px; color: var(--ink); background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 14px 16px; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(188,154,91,.14); }
.field.invalid input, .field.invalid textarea { border-color: #C5503B; box-shadow: 0 0 0 4px rgba(197,80,59,.1); }
.field__err { color: #C5503B; font-size: 13px; min-height: 0; display: none; }
.field.invalid .field__err { display: block; }
.form__submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form__note { font-size: 13.5px; color: var(--muted); }
.form__success {
  background: var(--gold-tint); border: 1px solid var(--gold-soft); border-radius: var(--radius-lg); padding: 20px 22px;
  display: flex; gap: 14px; align-items: flex-start; color: #6a5320;
}
.form__success .ic { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: #2a2114; display: grid; place-items: center; }

.infocard { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px); }
.infocard h3 { font-size: 1.3rem; margin-bottom: 6px; }
.infocard .sub { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.info-list { display: grid; gap: 4px; }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-row:last-child { border-bottom: none; }
.info-row .ic { flex: none; width: 44px; height: 44px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); color: var(--gold-deep); display: grid; place-items: center; }
.info-row .k { font-size: 13px; color: var(--muted); letter-spacing: .02em; }
.info-row .v { font-weight: 600; font-size: 15.5px; margin-top: 3px; }
.info-row .v a:hover { color: var(--gold-deep); }
.hours { margin-top: 4px; }
.hours .h-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.hours .h-row:last-child { border-bottom: none; }
.hours .h-row .day { color: var(--ink-soft); }
.hours .h-row .closed { color: #C5503B; }
.hours .h-row.today { color: var(--gold-deep); font-weight: 600; }

.map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.02); }
.map__tag { position: absolute; left: 20px; top: 20px; background: var(--white); border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; gap: 12px; align-items: center; font-size: 14px; max-width: 80%; }
.map__tag .ic { color: var(--gold-deep); flex: none; }
.map__tag .v { font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; }
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero[data-variant="split"] .hero__grid { grid-template-columns: 1fr; }
  .hero[data-variant="split"] .hero__pic { order: -1; height: clamp(280px, 50vh, 420px); }
  .contact__grid { grid-template-columns: 1fr; }
  .teaser__grid .tcard--t { grid-column: span 6; }
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
  .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .teaser__grid .tcard, .teaser__grid .tcard--t, .teaser__grid .tcard--lg, .teaser__grid .tcard--sm { grid-column: 1 / -1; min-height: 260px; }
  .about__media .frame--sm { display: none; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}
