:root {
  --bg: #f3efe8;
  --bg-strong: #121826;
  --surface: #fffdfa;
  --text: #101114;
  --muted: #5d6169;
  --line: #d8d1c6;
  --primary: #0f1726;
  --accent: #b78d56;
  --accent-soft: #d8be9a;
  --max: 1160px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f5f1ea 0%, #f0ece4 100%);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

a:hover {
  text-decoration-thickness: 2px;
}

.brand,
.nav-links a,
.btn,
.route-panel,
.hinge-cta-btn,
.media-card,
.contact-card .email-link {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(243, 239, 232, 0.86);
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 17, 20, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.78);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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);
}

body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.hero {
  padding: 3.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.5rem 2.2rem;
  align-items: center;
}

.hero-text {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.eyebrow-center {
  text-align: center;
  margin-bottom: 1.2rem;
}

h1, h2, h3 {
  font-family: "Bodoni Moda", Georgia, serif;
  line-height: 1.08;
  margin: 0;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  margin-bottom: 0.6rem;
  max-width: 14ch;
  line-height: 1.05;
}

.hero-sub {
  max-width: 28ch;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  border-color: #1c2230;
  color: #1c2230;
  background: rgba(255, 255, 255, 0.62);
}

.microcopy,
.trust-line {
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-line { margin-top: 0.45rem; }

/* ── Phone Frame ── */

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 375px;
  margin-left: auto;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 24px 60px rgba(17, 19, 27, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-top: -20px;
  position: relative;
  z-index: 3;
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 600;
  height: 20px;
  background: #f8f7f4;
  border-radius: 32px 32px 0 0;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-icons svg {
  width: 14px;
  height: 10px;
}

.phone-screen {
  position: relative;
  background: #f8f7f4;
  padding: 6px 10px 10px;
  overflow-y: auto;
  max-height: 540px;
  scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

.scroll-indicator {
  position: sticky;
  top: calc(100% - 44px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  margin: 0 auto;
  padding: 6px 16px;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 20px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
}

.scroll-indicator svg {
  animation: bounce-down 1.6s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.phone-nav-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 12px 4px;
  background: #f8f7f4;
  color: #a09b94;
  border-radius: 0 0 32px 32px;
}

.phone-nav-bar svg:first-child {
  color: #1a1a1a;
}

.phone-home-indicator {
  width: 120px;
  height: 4px;
  background: #555;
  border-radius: 2px;
  margin: 6px auto 0;
}

.swipe-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  pointer-events: none;
  color: var(--muted);
  margin-top: 1.5rem;
  animation: swipeNudge 2.4s ease-in-out infinite;
}

.swipe-arrow {
  transform: rotate(-6deg);
}

.swipe-text {
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
  font-weight: 600;
  transform: rotate(-4deg);
}

@keyframes swipeNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

@keyframes swipeNudgeDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Hinge Cards ── */

.hinge-card {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.hinge-photo {
  position: relative;
  background: #e5e0d8;
}

.hinge-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.hinge-photo-dots {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  z-index: 2;
}

.hinge-photo-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hinge-photo-dots .dot.active {
  background: #fff;
}

.hinge-profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 65%, transparent 100%);
  color: #fff;
}

.hinge-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.hinge-location {
  font-size: 0.76rem;
  margin: 3px 0 0;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 3px;
}

.hinge-location svg {
  flex-shrink: 0;
}

.hinge-tagline {
  font-size: 0.72rem;
  margin: 5px 0 0;
  opacity: 0.7;
  font-style: italic;
}

/* Like buttons */

.hinge-like {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #e05a6d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  z-index: 2;
}

.hinge-like:hover {
  transform: scale(1.1);
}

.hinge-like--prompt {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.hinge-prompt {
  background: #fff;
  border: 1px solid #e8e4dd;
  padding: 14px 14px 14px 14px;
  position: relative;
}

.hinge-prompt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  opacity: 0.5;
}

.hinge-prompt-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a8580;
  margin: 0 0 5px;
}

.hinge-prompt-answer {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0;
  padding-right: 32px;
}

/* ── Hinge CTA ── */

.hinge-cta-label {
  font-family: "Caveat", cursive;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 4px;
}

.hinge-section-label {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #8a8580;
  text-align: center;
  margin: 20px 0 4px;
  line-height: 1.3;
}

.hinge-cta-arrow {
  display: inline-block;
  animation: bounce-down 1.6s ease-in-out infinite;
}

.hinge-cta {
  display: flex;
  gap: 10px;
  padding: 16px 0 8px;
}

.hinge-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 12px 16px;
  border-radius: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hinge-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.hinge-cta-btn--vrouwen {
  background: #e05a6d;
  color: #fff;
}

.hinge-cta-btn--mannen {
  background: #1a1a1a;
  color: #fff;
}

/* ── Media Bar ── */

/* ── Logo Strip ── */

.logo-strip {
  background: var(--bg-strong);
  padding: 2.5rem 0;
  text-align: center;
}

.logo-strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.logo-strip-logos {
  max-width: 620px;
  width: 100%;
  opacity: 0.7;
}

/* ── Manifesto ── */

.manifesto {
  position: relative;
  color: #d7dce8;
  padding: 5rem 0;
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://mannengeheim.nl/wp-content/uploads/2026/02/volle-zaal-shot-2016-scaled.jpg") center/cover no-repeat;
  filter: brightness(0.25);
  z-index: 0;
}

.manifesto > .container {
  position: relative;
  z-index: 1;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 3rem;
  align-items: start;
}

.manifesto .eyebrow {
  color: var(--accent-soft);
  position: sticky;
  top: 100px;
}

.manifesto-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #b0b7c9;
  margin: 0 0 2rem;
  max-width: 58ch;
}

.manifesto-pull {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 0.8rem;
  padding: 0;
  border: none;
}

/* ── Numbers ── */

.numbers {
  background: var(--bg);
  padding: 4.5rem 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.number-item {
  text-align: center;
  padding: 1rem 0.5rem;
}

.number-value {
  display: block;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.number-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Routes ── */

.routes {
  padding: 4rem 0;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.route-panel {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: #fff;
}

.route-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.route-panel:hover img {
  transform: scale(1.04);
}

.route-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
}

.route-overlay h3 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.6rem;
  margin: 0 0 0.3rem;
  line-height: 1.1;
}

.route-overlay p {
  font-size: 0.9rem;
  margin: 0 0 0.6rem;
  opacity: 0.85;
  line-height: 1.4;
  max-width: 30ch;
}

.route-arrow {
  display: inline-block;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.route-panel:hover .route-arrow {
  transform: translateX(6px);
}

/* ── Stories ── */

.stories {
  background: var(--bg-strong);
  padding: 5rem 0;
  color: #d7dce8;
}

.stories-title {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 2rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.story {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.8rem 1.5rem 1.3rem;
  position: relative;
}

.story--large {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story--large p {
  font-size: 1.2rem;
  line-height: 1.55;
}

.story-quote {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: -0.5rem;
  opacity: 0.6;
}

.story p {
  color: #c8d0e5;
  margin: 0 0 1rem;
  line-height: 1.55;
}

.story footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.story cite {
  font-style: normal;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.story a {
  font-size: 0.82rem;
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── CTA Final ── */

.cta-final {
  padding: 5rem 0;
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.cta-final p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}

.cta-final .cta-row {
  justify-content: center;
}

.btn-light {
  background: var(--primary);
  color: #fff;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.site-footer {
  background: var(--bg-strong);
  color: #d7dce8;
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.92rem;
}

.footer-links a {
  color: #b9c1d6;
}

.page-hero {
  padding: 3.8rem 0 1.8rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.6rem;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 64ch;
}

.section {
  padding: 0 0 3.5rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem;
}

.panel h3 {
  margin: 1.5rem 0 0.65rem;
}

.panel p,
.panel li {
  overflow-wrap: anywhere;
}

.panel ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-text {
    text-align: center;
    align-items: center;
  }

  .hero-title {
    max-width: none;
  }

  .phone-frame {
    max-width: 340px;
    margin: 0 auto;
  }

  .phone-screen {
    max-height: 440px;
  }

  .swipe-hint {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 0.8rem;
    animation: swipeNudgeDown 2.4s ease-in-out infinite;
  }

  .swipe-text {
    transform: none;
  }

  .swipe-arrow {
    transform: rotate(90deg);
    width: 32px;
    height: 24px;
  }

  .has-js-nav .nav-toggle {
    display: inline-flex;
  }

  .has-js-nav .nav-links {
    position: fixed;
    top: calc(78px + env(safe-area-inset-top, 0px));
    left: 1.2rem;
    right: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem 1.1rem max(1rem, env(safe-area-inset-bottom, 0px));
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 20px 38px rgba(16, 17, 20, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 30;
    max-height: calc(100vh - 94px);
    max-height: calc(100dvh - 94px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  html.has-js-nav body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    color: var(--text);
    font-size: 1rem;
  }

  html:not(.has-js-nav) .nav {
    align-items: flex-start;
  }

  html:not(.has-js-nav) .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    column-gap: 0.7rem;
    row-gap: 0.45rem;
    padding: 0.8rem 0 0.85rem;
    font-size: 0.88rem;
  }

  .manifesto {
    padding: 3.5rem 0;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .manifesto .eyebrow {
    position: static;
  }

  .manifesto-pull {
    font-size: 1.4rem;
  }

  .numbers {
    padding: 3rem 0;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .routes {
    padding: 3rem 0;
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }

  .route-panel {
    aspect-ratio: 16 / 9;
  }

  .stories {
    padding: 3.5rem 0;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .story--large {
    grid-row: auto;
  }

  .story--large p {
    font-size: 1rem;
  }

  .cta-final {
    padding: 3.5rem 0;
  }

  .cta-final h2 br {
    display: none;
  }

  .panel {
    padding: 1.1rem;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
