/* =========================================================================
   FEMME IN SYNC · Editorial Warm — site-wide styles
   Imported by every page in /site/. Page-specific styles live inline.
   ========================================================================= */

:root {
  --site-pad-x: 80px;
  --site-max: 1280px;

  /* Editorial Warm type rhythm — anchored to Oswald display + Carphe accents */
  --t-mega: 128px;
  --t-display: 96px;
  --t-h2: 60px;
  --t-h3: 36px;
  --t-h4: 24px;
  --t-eyebrow: 13px;
  --t-body-lg: 19px;
  --t-body: 17px;
  --t-small: 14px;

  --section-py: 140px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--fis-cream);
  font-family: var(--font-body);
  color: var(--fis-neutral-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* =========================================================================
   Reusable headline helpers — every page uses these.
   ========================================================================= */
.h-eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--t-eyebrow); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fis-pink); display: inline-flex; align-items: center; gap: 14px;
}
.h-eyebrow.with-rule::before {
  content: ""; width: 40px; height: 1px; background: var(--fis-pink);
}
.h-eyebrow.on-pink { color: var(--fis-blush); }
.h-eyebrow.on-pink.with-rule::before { background: var(--fis-blush); }

.h-display {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: var(--t-display); line-height: 0.92; letter-spacing: -0.02em;
  color: var(--fis-neutral-900); margin: 0;
}
.h-h2 {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: var(--t-h2); line-height: 0.95; letter-spacing: -0.012em;
  color: var(--fis-neutral-900); margin: 0;
}
.h-h3 {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: var(--t-h3); line-height: 1.0; letter-spacing: -0.005em;
  color: var(--fis-neutral-900); margin: 0;
}
.h-h4 {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: var(--t-h4); line-height: 1.05; letter-spacing: 0;
  color: var(--fis-neutral-900); margin: 0;
}
/* Carphe italic accent — for "in sync"-moments inside headlines */
.h-script {
  font-family: var(--font-logo); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0; color: var(--fis-pink);
  font-size: 1.05em;
}
.h-script.on-pink { color: var(--fis-blush); }
.h-lead {
  font-family: var(--font-body); font-weight: 300; font-size: var(--t-body-lg);
  line-height: 1.6; color: var(--fis-neutral-700); margin: 0;
}
.h-body {
  font-family: var(--font-body); font-weight: 300; font-size: var(--t-body);
  line-height: 1.65; color: var(--fis-neutral-700); margin: 0;
}

/* =========================================================================
   Layout shells
   ========================================================================= */
.container {
  max-width: var(--site-max); margin: 0 auto;
  padding: 0 var(--site-pad-x);
}
.section { padding: var(--section-py) 0; }
.section-cream { background: var(--fis-cream); }
.section-white { background: white; }
.section-blush { background: var(--fis-blush); }
.section-pink {
  background: var(--fis-pink); color: white;
  position: relative; padding: var(--section-py) 0;
}
.section-pink .h-h2,
.section-pink .h-display { color: white; }
.section-pink .h-body,
.section-pink .h-lead { color: rgba(255,255,255,0.92); }

/* Wavy bottom/top edges for pink sections — brand signature */
.wave-top, .wave-bot {
  position: absolute; left: 0; right: 0; height: 80px;
  color: var(--fis-cream); pointer-events: none;
}
.wave-top { top: -1px; transform: scaleY(-1); }
.wave-bot { bottom: -1px; }
.wave-top svg, .wave-bot svg { width: 100%; height: 100%; display: block; }
/* When a pink section is sandwiched between non-cream sections, override
   .wave-{top,bot} color via inline style or a modifier. */
.wave-on-white { color: white; }
.wave-on-blush { color: var(--fis-blush); }

/* =========================================================================
   Buttons + chips
   ========================================================================= */
.btn-primary {
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  padding: 17px 32px; border-radius: 999px;
  color: white; background: var(--fis-pink);
  box-shadow: var(--shadow-pink-glow);
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s var(--ease-soft);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-on-pink {
  background: white; color: var(--fis-pink); box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}
.btn-ghost {
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  color: var(--fis-neutral-900); padding: 17px 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost::after { content: "→"; transition: transform .2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-ghost-on-pink { color: white; }
.btn-outline {
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  padding: 16px 28px; border-radius: 999px;
  color: var(--fis-pink); background: transparent;
  border: 1.5px solid var(--fis-pink);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-on-pink { color: white; border-color: rgba(255,255,255,0.5); }

.chip {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--fis-pink-50); color: var(--fis-pink);
  letter-spacing: 0.04em;
}

/* =========================================================================
   Nav — sticky glass, cream background
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 250, 0.86);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(230, 13, 91, 0.08);
  padding: 0 var(--site-pad-x);
}
.nav-inner {
  max-width: var(--site-max); margin: 0 auto;
  padding: 20px 0;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: auto; height: 32px; display: block; object-fit: contain; }
.nav-logo .word {
  font-family: var(--font-logo);
  font-size: 28px; color: var(--fis-pink); line-height: 1;
  /* Carphe italic has tall ascenders — nudge to optical center */
  transform: translateY(2px);
}
.nav-links { display: flex; gap: 4px; margin-left: 16px; align-items: center; }
.nav-links a,
.nav-links .nav-dropdown-toggle {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 10px 14px; border-radius: 999px; color: var(--fis-neutral-700);
  transition: background .18s var(--ease-soft), color .18s var(--ease-soft);
}
.nav-links a:hover,
.nav-links .nav-dropdown-toggle:hover { background: var(--fis-pink-50); color: var(--fis-pink); }
.nav-links a.active { color: var(--fis-pink); background: var(--fis-pink-50); }
.nav-spacer { flex: 1; }
.nav-cta {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 12px 22px; border-radius: 999px;
  color: white; background: var(--fis-pink);
  box-shadow: 0 6px 14px rgba(230, 13, 91, 0.28);
  white-space: nowrap;
}

/* Dropdown — Inspiratie (Blog + Favorieten) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: transparent; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit;
}
.nav-dropdown-toggle .caret {
  font-size: 9px; line-height: 1; transition: transform .2s var(--ease-soft);
  display: inline-block; color: var(--fis-pink);
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle.active { background: var(--fis-pink-50); color: var(--fis-pink); }
.nav-dropdown:hover .nav-dropdown-toggle .caret,
.nav-dropdown:focus-within .nav-dropdown-toggle .caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  margin-top: 10px;
  background: white;
  border-radius: 18px;
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 18px 40px rgba(230, 13, 91, 0.14), 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid rgba(230, 13, 91, 0.08);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .18s var(--ease-soft), transform .18s var(--ease-soft), visibility .18s;
  z-index: 60;
}
/* Invisible hover-bridge so cursor can cross the gap */
.nav-dropdown-menu::before {
  content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 10px 14px; border-radius: 12px; color: var(--fis-neutral-700);
  white-space: nowrap;
  transition: background .18s var(--ease-soft), color .18s var(--ease-soft);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { background: var(--fis-pink-50); color: var(--fis-pink); }

/* =========================================================================
   Page header — used on all pages EXCEPT the homepage. A simpler hero with
   eyebrow + big H1 + intro. Lives on cream.
   ========================================================================= */
.page-header { padding: 64px var(--site-pad-x) 80px; }
.page-header-inner {
  max-width: var(--site-max); margin: 0 auto;
}
.page-header .h-eyebrow { margin-bottom: 22px; }
.page-header h1 {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: 96px; line-height: 0.9; letter-spacing: -0.02em;
  color: var(--fis-neutral-900); margin: 0 0 28px; max-width: 1000px;
}
.page-header h1 .h-script { color: var(--fis-pink); }
.page-header p {
  font-family: var(--font-body); font-weight: 300; font-size: 21px;
  line-height: 1.55; color: var(--fis-neutral-700); max-width: 640px; margin: 0;
}

/* =========================================================================
   Footer — used everywhere
   ========================================================================= */
footer.site-footer {
  background: var(--fis-neutral-900); color: var(--fis-blush);
  padding: 96px var(--site-pad-x) 48px;
}
.site-footer .footer-inner { max-width: var(--site-max); margin: 0 auto; }
.site-footer .footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 72px;
}
.site-footer .footer-brand { min-width: 0; }
.site-footer .footer-brand img { width: 200px; margin-bottom: 22px; }
.site-footer .footer-brand p {
  font-family: var(--font-body); font-weight: 300; font-size: 14px;
  line-height: 1.65; color: rgba(247, 193, 218, 0.7);
  margin: 0; max-width: 320px;
}
.site-footer .footer-col { min-width: 0; }
.site-footer .footer-col h4 {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: white;
  margin: 0 0 18px;
}
.site-footer .footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.site-footer .footer-col ul a {
  font-family: var(--font-body); font-weight: 300; font-size: 14px;
  color: rgba(247, 193, 218, 0.75);
  overflow-wrap: anywhere;
}
.site-footer .footer-col ul a:hover { color: white; }
.site-footer .footer-bot {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.site-footer .footer-bot .copy {
  font-family: var(--font-body); font-weight: 300; font-size: 12px;
  color: rgba(247, 193, 218, 0.5);
}
.site-footer .footer-bot .socials { display: flex; gap: 20px; }
.site-footer .footer-bot .socials a {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  color: var(--fis-blush); letter-spacing: 0.06em;
}

/* =========================================================================
   CTA banner — used on the bottom of most pages
   ========================================================================= */
.cta-banner { padding: 0 var(--site-pad-x) var(--section-py); background: var(--fis-cream); }
.cta-banner.on-white { background: white; }
.cta-banner-inner {
  max-width: var(--site-max); margin: 0 auto;
  background: var(--fis-pink); color: white; border-radius: 40px;
  padding: 88px 80px; display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: center; position: relative; overflow: hidden;
}
.cta-banner-inner .bg-icon {
  position: absolute; right: -80px; bottom: -120px;
  width: 460px; opacity: 0.18; pointer-events: none;
}
.cta-banner-inner h2 {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: 64px; line-height: 0.95; letter-spacing: -0.012em;
  margin: 0; position: relative;
}
.cta-banner-inner h2 em {
  font-family: var(--font-logo); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0; color: var(--fis-blush);
  font-size: 1.05em;
}
.cta-banner-inner .right {
  position: relative; display: flex; flex-direction: column; gap: 14px;
}
.cta-banner-inner .right p {
  font-family: var(--font-body); font-weight: 300; font-size: 18px;
  line-height: 1.55; color: rgba(255,255,255,0.92); margin: 0 0 12px;
}
.cta-banner-inner .right a {
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 18px 28px; border-radius: 999px;
  color: var(--fis-pink); background: white; text-align: center;
}
.cta-banner-inner .right a.outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}

/* =========================================================================
   Common image-slot photo cards — used in hero, about, blog, etc.
   ========================================================================= */
.photo-card {
  position: relative; border-radius: 32px; overflow: hidden;
  background: var(--fis-blush);
  box-shadow: 0 30px 80px rgba(230, 13, 91, 0.18);
}
.photo-card image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.photo-card.dark { background: var(--fis-pink); }

/* Subtle reveal for the page below as you scroll — keeps the cream feel */
@media (prefers-reduced-motion: no-preference) {
  section { transition: opacity .4s ease; }
}

/* =========================================================================
   MOBILE NAV — hamburger toggle (≤920px). Desktop nav-links hidden,
   replaced by a button that opens a full-screen sheet.
   ========================================================================= */
.nav-toggle {
  display: none;
  background: transparent; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--fis-pink);
  border-radius: 2px; transition: transform .25s var(--ease-soft), opacity .2s;
}
.nav-mobile-cta { display: none; }

/* Mobile sheet container (always rendered, hidden on desktop) */
.nav-sheet {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: var(--fis-cream);
  flex-direction: column;
  padding: 72px 32px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-sheet.open { display: flex; }
.nav-sheet a {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.005em;
  color: var(--fis-neutral-900); padding: 11px 0;
  border-bottom: 1px solid var(--fis-pink-100);
}
.nav-sheet .sheet-sub {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fis-pink); padding: 18px 0 6px;
  border-bottom: none; line-height: 1;
}
.nav-sheet a.sheet-child {
  font-size: 22px; padding: 9px 0 9px 18px;
  color: var(--fis-neutral-700);
}
.nav-sheet a.active { color: var(--fis-pink); }
.nav-sheet .nav-cta {
  margin-top: 24px; text-align: center; font-size: 16px;
  font-family: var(--font-body); font-weight: 600;
  padding: 18px 28px; border-radius: 999px;
  background: var(--fis-pink); color: white;
  text-transform: none; letter-spacing: 0; border-bottom: none;
  flex-shrink: 0;
}
.nav-sheet .nav-sheet-close {
  position: absolute; top: 20px; right: 24px;
  background: transparent; border: none; cursor: pointer;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 32px; color: var(--fis-pink);
}
.nav-sheet .nav-sheet-foot {
  margin-top: auto; padding-top: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.nav-sheet .nav-sheet-foot a {
  font-family: var(--font-body); font-weight: 400; font-size: 14px;
  text-transform: none; letter-spacing: 0; color: var(--fis-neutral-500);
  border-bottom: none; padding: 4px 0;
}
body.nav-open { overflow: hidden; }

/* =========================================================================
   RESPONSIVE — breakpoints at 1100px (tablet) and 720px (mobile).
   Page-specific @media queries live inline at the bottom of each page.
   ========================================================================= */

/* Tablet — 1100px and below */
@media (max-width: 1100px) {
  :root {
    --site-pad-x: 40px;
    --section-py: 96px;
    --t-display: 72px;
    --t-h2: 48px;
    --t-h3: 30px;
  }
  .nav-inner { padding: 16px 0; }
  .page-header { padding: 48px var(--site-pad-x) 64px; }
  .page-header h1 { font-size: 72px; }
  .cta-banner-inner {
    padding: 56px 48px; gap: 40px;
    grid-template-columns: 1fr; text-align: left;
  }
  .cta-banner-inner h2 { font-size: 48px; }
  .cta-banner-inner .right p { font-size: 16px; }
  .cta-banner-inner .bg-icon { width: 360px; right: -120px; bottom: -160px; }

  .site-footer { padding: 72px var(--site-pad-x) 32px; }
  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr 1fr; gap: 40px 32px;
  }
  .site-footer .footer-brand {
    grid-column: 1 / -1; padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px;
  }
}

/* Mobile — 720px and below */
@media (max-width: 720px) {
  :root {
    --site-pad-x: 20px;
    --section-py: 72px;
    --t-display: 52px;
    --t-h2: 38px;
    --t-h3: 26px;
    --t-h4: 20px;
    --t-body-lg: 17px;
    --t-body: 16px;
  }

  /* NAV — show hamburger, hide desktop links + CTA */
  .nav-links { display: none; }
  .nav-inner > .nav-cta { display: none; }
  .nav-spacer { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo .word { font-size: 22px; }
  .nav-logo img { width: auto; height: 28px; }
  .nav-inner { padding: 14px 0; gap: 16px; }

  /* PAGE HEADERS get smaller */
  .page-header h1 { font-size: 48px; line-height: 0.95; }
  .page-header p { font-size: 17px; }

  /* CTA BANNER mobile */
  .cta-banner { padding: 0 var(--site-pad-x) var(--section-py); }
  .cta-banner-inner {
    padding: 40px 28px 44px; border-radius: 28px;
    grid-template-columns: 1fr; gap: 24px;
  }
  .cta-banner-inner h2 { font-size: 36px; line-height: 0.95; }
  .cta-banner-inner .right a { font-size: 15px; padding: 16px 22px; }
  .cta-banner-inner .bg-icon { width: 240px; right: -80px; bottom: -100px; }

  /* FOOTER mobile */
  .site-footer { padding: 56px var(--site-pad-x) 24px; }
  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr; gap: 32px 24px;
    margin-bottom: 48px;
  }
  .site-footer .footer-brand { grid-column: 1 / -1; }
  .site-footer .footer-brand img { width: 160px; }
  .site-footer .footer-bot {
    flex-direction: column; align-items: flex-start; gap: 14px;
  }
  .site-footer .footer-bot .copy { font-size: 11px; line-height: 1.5; }

  /* BUTTONS — slightly tighter */
  .btn-primary { padding: 15px 24px; font-size: 15px; }
  .btn-outline { padding: 14px 22px; font-size: 14px; }
}
