/* =============================================================
   Until you're Found — stylesheet
   Web design & development · Belgium
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  /* Brand */
  --accent: #FF6B5B;
  --accent-ink: #0E0E0E;

  /* Surfaces */
  --bg: #0E0E0E;
  --bg-2: #151514;
  --surface: #1b1b19;
  --surface-2: #232320;

  /* Text */
  --text: #F4F1EA;
  --muted: #9d9a90;
  --dim: #67645d;

  /* Lines & depth */
  --border: rgba(244, 241, 234, .13);
  --hairline: rgba(244, 241, 234, .07);
  --shadow: 0 30px 60px -25px rgba(0, 0, 0, .7);

  /* Layout */
  --maxw: 1200px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.eyebrow { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hidden { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem;
  padding: .85em 1.5em; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .25s ease, color .25s ease, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 30px -10px var(--accent); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--text); }
.btn-arrow { transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo svg { width: 38px; height: 34px; flex: none; }
.logo .eye-shape { stroke: var(--accent); }
.logo .eye-pupil { fill: var(--accent); }
.logo .eye-ray { stroke: var(--accent); }
.logo .word { font-family: var(--font-display); line-height: .92; font-size: 1.06rem; }
.logo .word .u { font-style: italic; font-weight: 500; color: var(--text); display: block; font-size: .74em; }
.logo .word .f { font-weight: 800; color: var(--accent); display: block; }

/* ---------- Header / nav ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
header.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-links { display: flex; align-items: center; gap: 2rem; font-size: .95rem; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.menu-btn { display: none; background: none; border: 0; cursor: pointer; color: var(--text); padding: 6px; }
.menu-btn svg { width: 26px; height: 26px; }
.lang-switch { display: inline-flex; border: 1px solid var(--border); border-radius: 100px; padding: 3px; gap: 2px; flex: none; }
.lang-btn {
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-sans); font-weight: 600; font-size: .82rem;
  color: var(--muted); padding: .4em .8em; border-radius: 100px;
  transition: color .2s, background .2s; letter-spacing: .03em;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--accent); color: var(--accent-ink); }

/* ---------- Hero ---------- */
.hero { padding: 170px 0 90px; position: relative; overflow: hidden; }
.hero-eye { position: absolute; right: -8%; top: 8%; width: 62vw; max-width: 880px; opacity: .05; pointer-events: none; color: var(--accent); }
.hero-inner { position: relative; max-width: 960px; }
.hero .eyebrow { margin-bottom: 1.6rem; }
.hero h1 { font-size: clamp(2.9rem, 7vw, 6rem); font-weight: 800; letter-spacing: -.025em; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--accent); }
.hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 560px; margin: 2rem 0 2.6rem; line-height: 1.65; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-meta { display: flex; gap: 2.4rem; margin-top: 4.5rem; flex-wrap: wrap; }
.hero-meta .stat { display: flex; flex-direction: column; gap: .2rem; }
.hero-meta .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.hero-meta .lab { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- Section header ---------- */
.sec-head { max-width: 720px; margin-bottom: 3.2rem; }
.sec-head .eyebrow { margin-bottom: 1rem; display: block; }
.sec-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 700; }
.sec-head h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.sec-head p { color: var(--muted); font-size: 1.1rem; margin-top: 1.1rem; max-width: 600px; }
.pad { padding: 100px 0; }
.divider { height: 1px; background: var(--hairline); max-width: var(--maxw); margin: 0 auto; }

/* ---------- Journey ---------- */
.journey { display: flex; flex-direction: column; gap: 14px; }
.stage {
  display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 1.5rem;
  padding: 1.5rem 2rem; border-radius: 18px; border: 1px solid var(--border); background: var(--bg-2);
  cursor: pointer; opacity: 1;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1), border-color .3s, background .3s;
}
.stage:hover { transform: translateX(6px); border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); }
.stage .s-num { font-size: .9rem; color: var(--dim); font-weight: 600; letter-spacing: .18em; font-variant-numeric: tabular-nums; }
.stage .s-name { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--muted); font-weight: 500; transition: color .3s; }
.stage .s-desc { justify-self: end; text-align: right; color: var(--muted); font-size: 1rem; max-width: 340px; }
.stage[data-stage="3"] { background: color-mix(in srgb, var(--accent) 9%, var(--bg-2)); }
.stage[data-stage="3"] .s-name { color: color-mix(in srgb, var(--text) 80%, transparent); }
.stage[data-stage="4"] { border-color: color-mix(in srgb, var(--accent) 60%, transparent); background: color-mix(in srgb, var(--accent) 13%, var(--bg-2)); }
.stage[data-stage="4"] .s-name { color: var(--text); }
.stage--found { background: var(--accent); border-color: var(--accent); }
.stage--found .s-num { color: color-mix(in srgb, var(--accent-ink) 60%, transparent); }
.stage--found .s-name { color: var(--accent-ink); font-style: normal; font-weight: 700; }
.stage--found .s-desc { color: color-mix(in srgb, var(--accent-ink) 78%, transparent); font-weight: 500; }
.stage--found:hover { transform: translateX(6px); border-color: var(--accent); }
.stage .s-detail { grid-column: 1 / -1; display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .35s ease, margin .35s; }
.stage.open .s-detail { grid-template-rows: 1fr; margin-top: .9rem; }
.stage .s-detail > div { overflow: hidden; min-height: 0; }
.stage .s-detail p { color: var(--muted); font-size: .98rem; max-width: 640px; padding-top: .9rem; border-top: 1px solid var(--hairline); }
.stage--found .s-detail p { color: color-mix(in srgb, var(--accent-ink) 70%, transparent); border-top-color: color-mix(in srgb, var(--accent-ink) 20%, transparent); }
/* Scroll-reveal (added by JS when motion is allowed) */
.reveal .stage { opacity: 0; transform: translateY(26px); }
.reveal.in-view .stage { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1); }
.reveal.in-view .stage:nth-child(1) { transition-delay: .05s; }
.reveal.in-view .stage:nth-child(2) { transition-delay: .13s; }
.reveal.in-view .stage:nth-child(3) { transition-delay: .21s; }
.reveal.in-view .stage:nth-child(4) { transition-delay: .29s; }
.reveal.in-view .stage:nth-child(5) { transition-delay: .37s; }

/* ---------- Services ---------- */
.grid-svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc { padding: 2rem; border-radius: 18px; border: 1px solid var(--border); background: var(--bg-2); transition: transform .25s, border-color .25s, background .25s; }
.svc:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.svc .ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); margin-bottom: 1.3rem; }
.svc .ic svg { width: 24px; height: 24px; }
.svc h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: .5rem; }
.svc p { color: var(--muted); font-size: .98rem; }

/* ---------- Portfolio ---------- */
.grid-work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work {
  display: flex; flex-direction: column;
  border-radius: 18px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-2);
  transition: transform .25s, border-color .25s;
}
.work:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.work .shot { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-bottom: 1px solid var(--border); background: var(--surface); }
.work .shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.work:hover .shot img { transform: scale(1.04); }
.work .meta { padding: 1.3rem 1.5rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.work .meta h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.1; }
.work .meta .work-sub { display: block; color: var(--muted); font-size: .85rem; margin-top: .25rem; }
.work .tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: .4em .7em; border-radius: 100px; white-space: nowrap; flex: none; }
.work .tag.live { color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); }
.work .tag.wip { color: var(--muted); border: 1px solid var(--border); }
.work .visit { display: inline-flex; align-items: center; gap: .4rem; margin: 0 1.5rem 1.4rem; color: var(--accent); font-size: .85rem; font-weight: 600; opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s; }
.work:hover .visit { opacity: 1; transform: translateY(0); }
.work .visit svg { width: 14px; height: 14px; }
.work-note { margin-top: 1.8rem; color: var(--dim); font-size: .95rem; text-align: center; font-style: italic; font-family: var(--font-display); }

/* ---------- Pricing ---------- */
.grid-price { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan { padding: 2.2rem; border-radius: 22px; border: 1px solid var(--border); background: var(--bg-2); position: relative; transition: transform .25s; }
.plan.feat { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--bg-2)); transform: scale(1.03); }
.plan.feat:hover { transform: scale(1.03) translateY(-4px); }
.plan:not(.feat):hover { transform: translateY(-4px); }
.plan .badge { position: absolute; top: -13px; left: 2.2rem; background: var(--accent); color: var(--accent-ink); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4em .9em; border-radius: 100px; }
.plan .pname { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: .3rem; }
.plan .ptag { color: var(--muted); font-size: .92rem; min-height: 2.6em; }
.plan .price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; margin: 1.1rem 0 .2rem; display: flex; align-items: baseline; gap: .3rem; }
.plan .price .from { font-size: .85rem; font-family: var(--font-sans); color: var(--muted); font-weight: 500; }
.plan .price .cur { font-size: 1.6rem; }
.plan ul { list-style: none; margin: 1.6rem 0; display: flex; flex-direction: column; gap: .85rem; }
.plan li { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; color: var(--text); }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: .25em; color: var(--accent); }
.plan .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.price-note { text-align: center; color: var(--dim); font-size: .9rem; margin-top: 1.8rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo { position: relative; }
.about-photo .photo {
  width: 100%; height: 480px; border-radius: 20px; border: 1px solid var(--border);
  background: radial-gradient(120% 120% at 30% 20%, var(--surface-2), var(--bg-2) 70%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-photo .photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .monogram { font-family: var(--font-display); font-weight: 700; font-size: 6rem; color: color-mix(in srgb, var(--accent) 80%, var(--text)); letter-spacing: -.02em; }
.about-photo .sig { position: absolute; bottom: -18px; left: -18px; background: var(--accent); color: var(--accent-ink); padding: 1rem 1.4rem; border-radius: 14px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; box-shadow: var(--shadow); }
.about h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin: 1rem 0 1.4rem; }
.about h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.about p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.05rem; }
.about .checks { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--border); border-radius: 100px; padding: .5em 1em; font-size: .88rem; color: var(--text); }
.chip svg { width: 15px; height: 15px; color: var(--accent); }

/* ---------- Contact ---------- */
.contact-sec { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 700; margin-top: 1rem; }
.contact h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.contact .lead { color: var(--muted); margin: 1.2rem 0 2.4rem; font-size: 1.08rem; max-width: 420px; }
.contact-list { display: flex; flex-direction: column; gap: 1.3rem; }
.cline { display: flex; align-items: center; gap: 1rem; }
.cline .cic { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent); flex: none; }
.cline .cic svg { width: 19px; height: 19px; }
.cline .ct { font-size: .78rem; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.cline .cv { font-size: 1.05rem; font-weight: 500; }
.cline a.cv:hover { color: var(--accent); }
form { background: var(--bg-2); border: 1px solid var(--border); border-radius: 22px; padding: 2.4rem; }
.contact-sec form { background: var(--surface); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .5rem; font-weight: 500; }
.field input, .field textarea { width: 100%; background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: .85em 1em; color: var(--text); font-family: var(--font-sans); font-size: 1rem; transition: border-color .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
form .btn { width: 100%; justify-content: center; margin-top: .4rem; }
.honeypot { display: none; }
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success .ck { width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.form-success .ck svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.form-success p { color: var(--muted); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--hairline); padding: 64px 0 40px; background: var(--bg-2); }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.foot-tag { max-width: 320px; color: var(--muted); margin-top: 1.2rem; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; line-height: 1.45; }
.foot-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.foot-col h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; font-family: var(--font-sans); font-weight: 600; }
.foot-col a, .foot-col span { display: block; color: var(--text); font-size: .96rem; margin-bottom: .7rem; transition: color .2s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid var(--hairline); padding-top: 28px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: var(--dim); font-size: .85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .grid-svc, .grid-work, .grid-price { grid-template-columns: 1fr; }
  .about, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .plan.feat { transform: none; }
  .plan.feat:hover { transform: translateY(-4px); }
  .about-photo .photo { height: 380px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 10px 28px 22px;
  }
  .nav-links.open a { padding: .9rem 0; border-bottom: 1px solid var(--hairline); font-size: 1.05rem; }
  .nav-right .btn { display: none; }
  .menu-btn { display: block; }
  .stage { grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.2rem 1.3rem; }
  .stage .s-desc { display: none; }
  .stage.open .s-desc { display: block; grid-column: 1 / -1; justify-self: start; text-align: left; max-width: none; margin-top: .4rem; }
  .hero { padding: 130px 0 70px; }
  .hero-meta { gap: 1.8rem; }
  .pad { padding: 72px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal .stage { opacity: 1 !important; transform: none !important; }
}
