/* ===================================================================
   PLAYDISTRICT "Matchday Press"
   Warm sports-editorial / risograph. Cream paper, coral + teal duotone,
   expanded grotesk display, scoreboard mono, hairline rules.
   =================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* paper + ink */
  --paper:      #f3ead9;   /* warm cream base */
  --paper-2:    #faf4e8;   /* lighter card paper */
  --ink:        #181410;   /* near-black warm */
  --ink-soft:   #4a4036;   /* muted body */
  --ink-faint:  rgba(24, 20, 16, 0.14);
  --line:       rgba(24, 20, 16, 0.16);
  --line-soft:  rgba(24, 20, 16, 0.09);

  /* brand */
  --coral:      #ff5836;
  --coral-deep: #e8421f;
  --teal:       #16b6c4;
  --teal-deep:  #0f8f9b;
  --amber:      #ffb43c;
  --navy:       #14171f;   /* deep panel */
  --navy-2:     #1d2330;

  /* type */
  --display: "Archivo Expanded", "Archivo", sans-serif;
  --sans:    "Instrument Sans", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

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

/* ----------------------------- 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: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: clamp(16px, 1.05vw, 18px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 3px; border-radius: 2px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ------------------------- Grain + cursor ------------------------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed; top: 0; left: 0; z-index: 9500;
  width: 28px; height: 28px; margin: -14px 0 0 -14px;
  border: 1.5px solid var(--coral); border-radius: 50%;
  pointer-events: none; opacity: 0;
  transition: opacity .3s, width .25s var(--ease), height .25s var(--ease),
              background-color .25s, border-color .25s, margin .25s var(--ease);
  will-change: transform;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hot {
  width: 56px; height: 56px; margin: -28px 0 0 -28px;
  background: rgba(255, 88, 54, 0.14); border-color: var(--coral);
}
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ------------------------------ Type ------------------------------ */
.kicker {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coral-deep);
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--coral);
}
.kicker--light { color: var(--coral); }

.ital { font-style: italic; color: var(--coral-deep); }

/* ----------------------------- Buttons ---------------------------- */
.btn {
  --bg: var(--ink); --fg: var(--paper-2);
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--display); font-weight: 700; font-size: 0.86rem;
  letter-spacing: 0.01em;
  padding: 0.92em 1.4em; border-radius: 2px;
  background: var(--bg); color: var(--fg);
  position: relative; isolation: isolate; overflow: hidden;
  transition: transform .35s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--coral); transform: translateY(101%);
  transition: transform .42s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn--primary { --bg: var(--coral); --fg: #fff; }
.btn--primary::before { background: var(--ink); }
.btn--primary:hover { color: #fff; }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: var(--paper-2); }
.btn--block { width: 100%; justify-content: center; padding-block: 1.1em; }
.btn--line {
  --bg: transparent; --fg: var(--paper-2);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--line::before { background: var(--paper-2); }
.btn--line:hover { color: var(--ink); }
.flagship__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ----------------------------- Balls/discs ------------------------ */
.ball {
  display: inline-block; width: 0.72em; height: 0.72em; border-radius: 50%;
  position: relative;
}
.ball--coral { background: var(--coral); box-shadow: inset -2px -2px 0 rgba(0,0,0,.16); }
.ball--teal  { background: var(--teal);  box-shadow: inset -2px -2px 0 rgba(0,0,0,.16); }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.nav.is-scrolled {
  background: rgba(243, 234, 217, 0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line);
}
.nav__logo { display: inline-flex; align-items: center; gap: 0.6em; }
.nav__logo-mark { width: 30px; height: 30px; }
.nav__logo-word {
  font-family: var(--display); font-weight: 800; font-size: 1.18rem;
  letter-spacing: -0.01em;
}
.nav__menu { display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.6rem); }
.nav__menu > a:not(.nav__cta) {
  display: inline-flex; align-items: baseline; gap: 0.5em;
  font-weight: 600; font-size: 0.92rem;
  position: relative; padding-block: 0.3em;
}
.nav__idx {
  font-family: var(--mono); font-size: 0.62rem; color: var(--coral-deep);
  letter-spacing: 0.1em;
}
.nav__menu > a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--coral); transition: width .35s var(--ease);
}
.nav__menu > a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { font-size: 0.82rem; padding: 0.7em 1.15em; }

.nav__toggle {
  display: none; width: 46px; height: 46px; position: relative;
  border: 1.5px solid var(--line);
}
.nav__toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  padding-top: clamp(108px, 16vh, 168px);
  padding-bottom: clamp(40px, 6vh, 72px);
  position: relative;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--ink-soft); margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3.1rem, 8.2vw, 7rem);
  line-height: 0.92; letter-spacing: -0.025em; text-transform: uppercase;
}
.hero__line { display: block; }
.hero__line--mark { margin-top: 0.06em; }
.mark {
  position: relative; display: inline-block; color: var(--coral);
  z-index: 0;
}
.mark::after {
  content: ""; position: absolute; left: -0.04em; right: -0.04em; bottom: 0.07em;
  height: 0.36em; background: var(--teal); z-index: -1;
  transform: scaleX(0); transform-origin: left; opacity: 0.85;
  animation: markIn 0.7s var(--ease) 1.1s forwards;
}
@keyframes markIn { to { transform: scaleX(1); } }

.hero__sub {
  max-width: 30ch; margin-top: 1.7rem;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--ink-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }

.hero__stats {
  display: flex; gap: clamp(1.4rem, 4vw, 3rem); margin-top: 3rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 0.12em;
}
.stat__suffix {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  color: var(--coral-deep); letter-spacing: 0.04em;
}
.stat__label {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft); margin-top: 0.5rem;
}

/* hero visual */
.hero__visual { position: relative; }
.hero__frame {
  position: relative; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 14px 16px 0 var(--ink);
  rotate: 1.4deg;
}
.hero__photo {
  width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}
.hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(255,88,54,0.18));
  mix-blend-mode: multiply; pointer-events: none;
}
.hero__tag {
  position: absolute; z-index: 2;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.4em 0.7em;
  background: var(--ink); color: var(--paper-2);
}
.hero__tag--tl { top: 12px; left: 12px; }
.hero__tag--br { bottom: 12px; right: 12px; background: var(--coral); color: #fff; }

/* hero entrance */
.hero__el { opacity: 0; transform: translateY(26px); animation: heroIn 0.85s var(--ease) forwards; }
.hero__el[data-d="1"] { animation-delay: 0.05s; }
.hero__el[data-d="2"] { animation-delay: 0.16s; }
.hero__el[data-d="3"] { animation-delay: 0.26s; }
.hero__el[data-d="4"] { animation-delay: 0.36s; }
.hero__el[data-d="5"] { animation-delay: 0.5s; }
.hero__el[data-d="6"] { animation-delay: 0.62s; }
.hero__el[data-d="7"] { animation-delay: 0.74s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* =================================================================
   TICKER
   ================================================================= */
.ticker {
  background: var(--ink); color: var(--paper);
  border-block: 1px solid var(--ink);
  padding-block: 0.85rem; overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex; align-items: center; gap: 1.6rem;
  animation: marquee 26s linear infinite;
}
.ticker__track span:not(.ticker__dot) {
  font-family: var(--display); font-weight: 700; font-size: clamp(1rem, 2vw, 1.4rem);
  text-transform: uppercase; letter-spacing: 0.01em;
}
.ticker__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); flex: none; }
.ticker__dot:nth-of-type(even) { background: var(--teal); }
@keyframes marquee { to { transform: translateX(-50%); } }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* =================================================================
   SECTIONS shared
   ================================================================= */
.section { padding-block: clamp(64px, 11vh, 130px); position: relative; }

.sec-head {
  display: grid;
  grid-template-columns: auto 1fr minmax(0, 30ch);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.sec-head__idx {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 0.8;
  -webkit-text-stroke: 1.5px var(--ink); color: transparent;
  align-self: start;
}
.sec-head__idx--light { -webkit-text-stroke-color: rgba(255,255,255,.5); }
.sec-head__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 3.1rem); line-height: 1.02;
  letter-spacing: -0.02em; margin-top: 0.9rem;
}
.sec-head__lead { color: var(--ink-soft); font-size: 1rem; align-self: end; }
.sec-head--dark .sec-head__title,
.sec-head--dark .sec-head__lead { color: var(--paper); }

/* =================================================================
   STUDIO / traits
   ================================================================= */
.traits {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  background: var(--paper-2);
}
.trait {
  padding: clamp(1.4rem, 2.4vw, 2.1rem) 1.3rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1.4rem;
  position: relative; transition: background-color .35s var(--ease);
  min-height: 220px;
}
.trait:last-child { border-right: none; }
.trait:hover { background: var(--paper); }
.trait__num {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--coral-deep);
}
.trait__icon {
  width: 46px; height: 46px; color: var(--ink);
  display: grid; place-items: center; margin-top: auto;
}
.trait__icon svg { width: 30px; height: 30px; }
.trait__label {
  font-family: var(--display); font-weight: 700; font-size: 1.04rem;
  line-height: 1.15; letter-spacing: -0.01em;
}
.trait--accent { background: var(--coral); color: #fff; }
.trait--accent .trait__num { color: rgba(255,255,255,.85); }
.trait--accent:hover { background: var(--coral-deep); }

/* =================================================================
   FLAGSHIP
   ================================================================= */
.flagship {
  background: var(--navy); color: var(--paper);
  position: relative; overflow: hidden;
}
.flagship::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
}
.flagship::after {
  content: ""; position: absolute; top: -20%; right: -10%; width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(255,88,54,0.3), transparent 62%);
  pointer-events: none;
}
.flagship__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 0.92fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.flagship__title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 0.88;
  letter-spacing: -0.03em; text-transform: uppercase; margin-top: 1rem;
}
.flagship__title-accent {
  display: block; color: var(--coral);
  -webkit-text-stroke: 0; position: relative; width: max-content;
}
.flagship__title-accent::after {
  content: ""; display: block; height: 4px; width: 100%; margin-top: 0.15em;
  background: linear-gradient(90deg, var(--coral), var(--teal));
}
.flagship__subtitle {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin-top: 1.6rem; color: var(--paper);
}
.flagship__body {
  margin-top: 0.9rem; max-width: 42ch; color: rgba(243,234,217,0.74);
}
.steps {
  display: flex; flex-wrap: wrap; gap: 0; margin: 2.2rem 0;
  border: 1px solid rgba(255,255,255,0.16); border-radius: 4px; overflow: hidden;
  width: max-content; max-width: 100%;
}
.step {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.3rem; border-right: 1px solid rgba(255,255,255,0.16);
}
.step:last-child { border-right: none; }
.step__num {
  font-family: var(--mono); font-size: 0.72rem; color: var(--coral);
  border: 1px solid var(--coral); border-radius: 50%;
  width: 26px; height: 26px; display: grid; place-items: center;
}
.step__label { font-family: var(--display); font-weight: 700; font-size: 0.94rem; }

/* flagship visual */
.flagship__visual { position: relative; }
.court {
  position: relative; border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  rotate: -1.6deg;
}
.court__photo { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.court__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.8em 1em; color: var(--paper);
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
}
/* =================================================================
   GAME MODES
   ================================================================= */
.modes-sec { background: var(--paper); }
.modes {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.3rem);
}
.mode {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px;
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  display: flex; flex-direction: column; min-height: 280px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.mode::before {
  content: ""; position: absolute; left: var(--mx, 50%); top: var(--my, 0);
  width: 380px; height: 380px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,88,54,0.16), transparent 62%);
  opacity: 0; transition: opacity .4s; z-index: -1; pointer-events: none;
}
.mode:hover {
  transform: translateY(-6px); border-color: var(--ink);
  box-shadow: 10px 12px 0 var(--ink);
}
.mode:hover::before { opacity: 1; }
.mode__head { display: flex; align-items: center; justify-content: space-between; }
.mode__idx {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em;
  color: var(--coral-deep);
}
.mode__icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1.5px solid var(--line); border-radius: 50%;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s;
}
.mode__icon svg { width: 22px; height: 22px; }
.mode:hover .mode__icon { background: var(--coral); color: #fff; border-color: var(--coral); }
.mode__title {
  font-family: var(--display); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.01em; margin-top: 2.4rem;
}
.mode__tag { font-weight: 600; font-size: 0.92rem; margin-top: 0.5rem; color: var(--coral-deep); }
.mode__body { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.6rem; }

/* =================================================================
   WAAROM (dark)
   ================================================================= */
.waarom { background: var(--navy); color: var(--paper); overflow: hidden; }
.waarom__inner { position: relative; z-index: 1; }
.waarom__head { grid-template-columns: auto 1fr; }
.waarom__head .kicker { grid-column: 2; }
.waarom__list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
}
.waarom__item {
  padding-top: 1.5rem; border-top: 2px solid var(--coral);
  display: flex; flex-direction: column; gap: 1rem;
}
.waarom__num { font-family: var(--mono); font-size: 0.74rem; color: var(--coral); letter-spacing: 0.1em; }
.waarom__icon { width: 40px; height: 40px; color: var(--teal); }
.waarom__icon svg { width: 38px; height: 38px; }
.waarom__title { font-family: var(--display); font-weight: 800; font-size: 1.3rem; }
.waarom__body { color: rgba(243,234,217,0.7); font-size: 0.94rem; }

/* =================================================================
   MEER GAMES
   ================================================================= */
.meer { background: var(--paper); text-align: center; }
.meer__inner { max-width: 760px; margin-inline: auto; }
.meer__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.0;
  letter-spacing: -0.02em; margin-top: 1.2rem;
}
.meer__body { color: var(--ink-soft); margin-top: 1.3rem; font-size: 1.06rem; }
.meer__social {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.4rem;
}
.meer__social a {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--display); font-weight: 700; font-size: 0.92rem;
  padding: 0.85em 1.5em; border: 1.5px solid var(--ink); border-radius: 100px;
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.meer__social svg { width: 19px; height: 19px; }
.meer__social a:hover { background: var(--ink); color: var(--paper-2); }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-sec { background: var(--paper-2); border-top: 1px solid var(--line); }
.contact {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
.contact__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.02;
  letter-spacing: -0.02em; margin-top: 1.1rem;
}
.contact__lead { color: var(--ink-soft); margin-top: 1.2rem; font-size: 1.06rem; }
.contact__points { margin-top: 1.8rem; display: grid; gap: 0.7rem; }
.contact__points li {
  display: flex; align-items: center; gap: 0.7em;
  font-weight: 500; color: var(--ink-soft);
}
.contact__points li::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal); box-shadow: inset -2px -2px 0 rgba(0,0,0,.18); flex: none;
}
.contact__mail {
  display: inline-block; margin-top: 2rem;
  font-family: var(--display); font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--coral-deep); position: relative;
}
.contact__mail::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: var(--coral); transform: scaleX(0.25); transform-origin: left;
  transition: transform .4s var(--ease);
}
.contact__mail:hover::after { transform: scaleX(1); }

/* form */
.contact__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 10px 12px 0 var(--ink);
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field textarea, .datepicker__field {
  font: inherit; font-size: 0.96rem;
  background: var(--paper-2); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 3px;
  padding: 0.78em 0.9em; width: 100%;
  transition: border-color .3s, box-shadow .3s, background-color .3s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(74,64,54,0.5); }
.field input:focus, .field textarea:focus, .datepicker__field:focus {
  outline: none; border-color: var(--coral); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(255,88,54,0.14);
}
.form__status { font-size: 0.9rem; margin-top: 0.7rem; font-weight: 600; }
.form__status.ok  { color: var(--teal-deep); }
.form__status.err { color: var(--coral-deep); }

/* datepicker */
.datepicker { position: relative; }
.datepicker__field {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6em;
  text-align: left; cursor: pointer;
}
.datepicker__value { color: rgba(74,64,54,0.6); }
.datepicker__field.has-value .datepicker__value { color: var(--ink); }
.datepicker__field svg { width: 18px; height: 18px; color: var(--coral-deep); flex: none; }
.datepicker__pop {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 50;
  width: 290px; max-width: calc(100vw - 40px);
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: 4px;
  box-shadow: 8px 10px 0 var(--ink); padding: 0.9rem;
}
.datepicker__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.datepicker__month { font-family: var(--display); font-weight: 700; font-size: 0.96rem; text-transform: capitalize; }
.datepicker__nav {
  width: 32px; height: 32px; display: grid; place-items: center;
  border: 1.5px solid var(--line); border-radius: 3px;
  transition: background-color .25s, color .25s, border-color .25s;
}
.datepicker__nav svg { width: 16px; height: 16px; }
.datepicker__nav:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.datepicker__weekdays, .datepicker__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.datepicker__weekdays span {
  font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase;
  text-align: center; color: var(--ink-soft); padding-bottom: 0.4rem; letter-spacing: 0.05em;
}
.dp-day {
  aspect-ratio: 1; display: grid; place-items: center;
  font-size: 0.82rem; font-weight: 500; border-radius: 3px;
  transition: background-color .2s, color .2s;
}
.dp-day:not(.is-empty):not(.is-disabled):hover { background: var(--coral); color: #fff; }
.dp-day.is-empty { pointer-events: none; }
.dp-day.is-disabled { color: rgba(74,64,54,0.3); cursor: not-allowed; }
.dp-day.is-today { box-shadow: inset 0 0 0 1.5px var(--teal); }
.dp-day.is-selected { background: var(--ink); color: var(--paper-2); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--ink); color: var(--paper); padding-block: clamp(2.5rem, 5vw, 4rem); }
.footer__top {
  display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: center; justify-content: space-between;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer__logo { display: inline-flex; align-items: center; gap: 0.6em; }
.footer__logo-mark { width: 30px; height: 30px; }
.footer__logo-word { font-family: var(--display); font-weight: 800; font-size: 1.2rem; }
.footer__brand p { color: rgba(243,234,217,0.62); margin-top: 0.6rem; font-size: 0.94rem; }
.footer__social { display: flex; gap: 0.8rem; }
.footer__social a {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.86rem; padding: 0.6em 1em;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 100px;
  transition: background-color .3s, color .3s;
}
.footer__social svg { width: 18px; height: 18px; }
.footer__social a:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between;
  padding-top: 1.6rem; font-family: var(--mono); font-size: 0.74rem;
  color: rgba(243,234,217,0.5); letter-spacing: 0.04em;
}

/* =================================================================
   FAQ
   ================================================================= */
.faq-sec { background: var(--paper); }
.faq__maillink { color: var(--coral-deep); border-bottom: 1.5px solid var(--coral); }
.faq {
  border-top: 1px solid var(--line);
  max-width: 920px;
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.4rem); letter-spacing: -0.01em;
  padding: clamp(1.1rem, 2.4vw, 1.6rem) 0;
  position: relative; transition: color .3s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before {
  content: "+"; flex: none;
  width: 34px; height: 34px; display: grid; place-items: center;
  font-family: var(--mono); font-size: 1.3rem; font-weight: 400;
  border: 1.5px solid var(--line); border-radius: 50%;
  transition: transform .35s var(--ease), background-color .35s, color .35s, border-color .35s;
}
.faq__item[open] .faq__q::before {
  content: "+"; transform: rotate(135deg);
  background: var(--coral); color: #fff; border-color: var(--coral);
}
.faq__q:hover { color: var(--coral-deep); }
.faq__a {
  padding: 0 0 1.6rem 50px;
  color: var(--ink-soft); max-width: 62ch;
  animation: faqIn .4s var(--ease);
}
.faq__a a { color: var(--coral-deep); border-bottom: 1.5px solid var(--coral); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =================================================================
   REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1080px) {
  .traits { grid-template-columns: repeat(3, 1fr); }
  .trait:nth-child(3) { border-right: none; }
  .trait { border-bottom: 1px solid var(--line); }
  .modes, .waarom__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .4s var(--ease), opacity .35s var(--ease);
  }
  .nav__menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__menu > a:not(.nav__cta) {
    width: 100%; padding: 1rem 0; font-size: 1.3rem; font-family: var(--display); font-weight: 700;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__cta { margin-top: 1.2rem; width: 100%; justify-content: center; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; }
  .flagship__inner, .contact { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: auto 1fr; }
  .sec-head__lead { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .hero__frame { box-shadow: 8px 10px 0 var(--ink); }
  .traits { grid-template-columns: 1fr 1fr; }
  .trait { border-right: 1px solid var(--line); min-height: 170px; }
  .trait:nth-child(2n) { border-right: none; }
  .trait--accent { grid-column: 1 / -1; min-height: auto; flex-direction: row; align-items: center; }
  .trait--accent .trait__icon { margin: 0; }
  .modes, .waarom__list { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; box-shadow: 6px 8px 0 var(--ink); }
  .steps { width: 100%; }
  .step { flex: 1; justify-content: center; }
  .hero__stats { flex-wrap: wrap; }
}
