/* ==============
   Co-Lab Mindspace-style (pure CSS) — FIXED
   - Prevent double menus (desktop vs mobile)
   - Fullscreen mobile menu (100dvh)
   - Remove desktop nav scrollbar/line
============== */
/* --------------------------
   Playfair Display (Headings)
   Gebruik: 400 + 700
-------------------------- */

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/PlayfairDisplay-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* --------------------------
   Nunito (Body/UI)
   Gebruik: 400 + 600
-------------------------- */

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("/assets/fonts/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}





:root{
  --bg: #0f1110;
  --paper: #ffffff;
  --ink: #0b0d0c;

  --cream: #FCF6ED;
  --brand: #564834;

  --text: rgba(11,13,12,.92);
  --muted: rgba(11,13,12,.65);

  --card: rgba(255,255,255,.85);
  --card-border: rgba(11,13,12,.10);

  --radius: 22px;
  --shadow: 0 14px 40px rgba(0,0,0,.08);

  --serif: "Playfair Display", ui-serif, Georgia, serif;
  --sans: "Nunito", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;


  --container: 1160px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
}

img{ max-width: 100%; height: auto; display:block; }
a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .92; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.lead{ font-size: 1.05rem; line-height: 1.7; color: var(--muted); }

.h2{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 1.2rem + 2vw, 2.6rem);
  line-height: 1.12;
  margin: 0;
}
.h3{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
}

/* =========================
   HEADER + NAV
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10,12,11,.10);
}

/* Layout: flex to avoid wrapping/double rows */
.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Logo */
.brand--logo {
  display: flex;
  align-items: center;
  height: 65px;
  flex: 0 0 auto;
}
.brand__logo {
  height: 100%;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .brand--logo{ height: 56px; }
  .brand__logo{ max-width: 180px; }
}

/* Desktop nav (center) */
.nav-links{
  display: flex;
  gap: 18px;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

/* Typography */
.nav-link{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  color: rgba(11,13,12,.78);
  white-space: nowrap;
}
.nav-link.is-active{ color: rgba(11,13,12,1); }
.nav-link:hover{ color: rgba(11,13,12,.92); }

/* Actions (right) */
.nav-actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

/* Hamburger */
.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  gap: 6px;
  border: 1px solid rgba(11,13,12,.14);
  background: rgba(255,255,255,.70);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  flex-direction: column;
}
.nav-toggle__bar{
  width: 20px;
  height: 2px;
  background: #0B0D0C;
  border-radius: 2px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: .95rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn--primary{
  background: #0b0d0c;
  color: var(--cream);
}
.btn--ghost{
  background: transparent;
  border-color: rgba(11,13,12,.18);
  color: rgba(11,13,12,.85);
}
.btn--ghostOnDark{
  background: rgba(15,17,16,.35);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
}
.btn--full{ width: 100%; }

/* =========================
   NAV VISIBILITY (PREVENT DOUBLE MENU)
   Mobile-first: hamburger only
========================= */

/* Mobile/tablet: hide desktop nav + actions, show hamburger */
.nav-links,
.nav-actions{ display: none; }
.nav-toggle{ display: inline-flex; }

/* Desktop: show desktop nav + actions, hide hamburger */
@media (min-width: 1024px){
  .nav-links,
  .nav-actions{ display: flex; }
  .nav-toggle{ display: none; }

  /* Prevent any scrollbars/lines under nav on desktop */
  .nav-links{ overflow: visible; }
}

/* =========================
   HERO (dark on image)
========================= */
.hero{
  position: relative;
  min-height: 78vh;
  padding: 128px 0 56px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 20% 20%, rgba(0,0,0,.15), rgba(0,0,0,.70)),
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.75));
}
.hero__inner{
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.hero__kicker{
  margin: 0 0 18px;
  font-size: .95rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.80);
}
.hero__title{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 1.2rem + 5vw, 5.4rem);
  line-height: 1.02;
  margin: 0 0 18px;
}
.hero__title p{ margin:0; }
.hero__subtitle{
  margin: 0 0 26px;
  max-width: 56ch;
  color: rgba(255,255,255,.76);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.hero__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.meta-pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15,17,16,.35);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  font-size: .92rem;
  color: rgba(255,255,255,.88);
}
.hero, .hero *{ color: var(--cream); }

/* =========================
   SECTIONS (cream)
========================= */
.section{
  padding: 72px 0;
  background: var(--cream);
  color: var(--ink);
}
.section--intro{ padding-top: 56px; }

.section-head{
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  max-width: 70ch;
}
.grid-2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.intro-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card__media{
  height: 190px;
  background-size: cover;
  background-position: center;
}
.card__body{
  padding: 18px 18px 20px;
  display: grid;
  gap: 10px;
}

/* Feature split */
.section--feature{ padding-top: 28px; }
.feature{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
.feature__copy{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.feature-list{
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.feature-item{
  display: grid;
  gap: 4px;
  padding: 14px 14px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(11,13,12,.10);
  border-radius: 16px;
}
.feature-item__label{
  font-weight: 600;
  letter-spacing: .01em;
}
.feature__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.feature__media{ border-radius: var(--radius); overflow: hidden; }
.media-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.media-tile{
  min-height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  border: 1px solid rgba(11,13,12,.10);
}
.media-tile--tall{ min-height: 320px; }

/* Pricing */
.pricing{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.price-card{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.price-card__top{
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}
.price{
  display: grid;
  gap: 4px;
}
.price__amount{
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.bullets{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(11,13,12,.72);
}
.bullets li{ margin: 6px 0; }

/* FAQ */
.faq{ display: grid; gap: 12px; }
.faq-item{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.faq-item summary{
  cursor: pointer;
  font-weight: 600;
}
.faq-item__body{
  margin-top: 10px;
  line-height: 1.7;
}

/* CTA band */
.cta{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow);
}
.cta__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer{
  padding: 48px 0 26px;
  background: var(--brand);
  color: var(--cream);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.brand--footer{
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.footer-title{
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-bottom{
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(252,246,237,.18);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer .muted{ color: rgba(252,246,237,.78); }
.site-footer a{ color: rgba(252,246,237,.92); }

/* Responsive layout */
@media (min-width: 860px){
  .grid-2{ grid-template-columns: 1.05fr .95fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .feature{ grid-template-columns: 1.05fr .95fr; }
  .media-grid{ grid-template-columns: 1fr 1fr; }
  .media-tile--tall{ grid-row: span 2; }
  .pricing{ grid-template-columns: repeat(3, 1fr); }
  .footer-grid{ grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (min-width: 1100px){
  .hero{ min-height: 82vh; }
  .cards{ grid-template-columns: repeat(4, 1fr); }
}

/* =========================
   FULLSCREEN MOBILE MENU
   (expects: .mobile-nav + .mobile-nav__panel etc.)
========================= */

.mobile-nav{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  height: 100dvh;
}
.mobile-nav.is-open{ display: block; }

/* overlay not needed in fullscreen mode */
.mobile-nav__overlay{ display: none; }

.mobile-nav__panel{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  background: var(--cream);
  border: none;
  border-radius: 0;
  box-shadow: none;

  display: flex;
  flex-direction: column;
}

.mobile-nav__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(86,72,52,.15);
}

.mobile-nav__title{
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--brand);
}

.mobile-nav__close{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(86,72,52,.25);
  background: transparent;
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav__links{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
}

.mobile-nav__link{
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--brand);
  padding: 6px 0;
}
.mobile-nav__link:hover{ opacity: .85; }

.mobile-nav__actions{
  padding: 22px;
  border-top: 1px solid rgba(86,72,52,.15);
  display: grid;
  gap: 12px;
}
.mobile-nav__actions .btn{ font-family: var(--sans); }

/* Ensure mobile menu never shows in desktop */
@media (min-width: 1024px){
  .mobile-nav{ display: none !important; }
}


/* Put hamburger left of logo (mobile/tablet) */
.nav-toggle{ order: -1; margin-right: 10px; }

/* Ensure header items are vertically centered */
.nav{ align-items: center; }

/* Minimal button: no border/background */
.nav-toggle{
  border: none !important;
  background: transparent !important;
  padding: 10px 8px;
  border-radius: 0;
  gap: 6px;
  line-height: 0;
}

/* We'll use ::before + 2 spans as 3 lines */
.nav-toggle{
  position: relative;
  width: 34px;
  height: 28px;
  display: inline-flex !important;
  flex-direction: column;
  justify-content: center;
}

/* 1px lines */
.nav-toggle__bar,
.nav-toggle::before{
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: #0B0D0C;
  border-radius: 0;
  margin: 0 auto;
  transition: transform .18s ease, opacity .18s ease;
}

/* Space the lines: top (::before), middle (span 1), bottom (span 2) */
.nav-toggle::before{ transform: translateY(-6px); }
.nav-toggle__bar:nth-child(1){ transform: translateY(0); }
.nav-toggle__bar:nth-child(2){ transform: translateY(6px); }

/* Animate to X when open */
.nav-toggle[aria-expanded="true"]::before{
  transform: translateY(0) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1){
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2){
  transform: translateY(0) rotate(-45deg);
}

/* Slightly larger tap target on very small screens */
@media (max-width: 420px){
  .nav-toggle{ margin-right: 8px; width: 32px; }
}

/* Desktop nav doesn't need Playfair */
@media (min-width: 1024px){
  .nav-link{
    font-family: var(--sans);
    font-size: .95rem;
    letter-spacing: .01em;
  }
}




/* Show actions on mobile */
.nav-actions{
  display: flex !important;
}

/* But hide secondary actions if needed */
.nav-actions .btn--ghost{
  display: none;
}

/* Keep CTA aligned right */
.nav-actions{
  margin-left: auto;
}


/* =========================
   MOBILE HEADER CTA (keep primary visible)
========================= */
.nav-actions{ display:flex; margin-left:auto; }
.nav-actions .btn--ghost{ display:none; }

/* =========================
   HAMBURGER (perfectly aligned) + ANIMATION (→ X)
   Assumes HTML:
   <button class="nav-toggle" ...>
     <span class="nav-toggle__bar"></span>
     <span class="nav-toggle__bar"></span>
   </button>
   We'll render 3 lines using ::before (top) + span1 (middle) + span2 (bottom)
========================= */

/* place hamburger left of logo */
.nav-toggle{ order:-1; margin-right:12px; }

/* reset button */
.nav-toggle{
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

/* force-hide on desktop */
@media (min-width: 1024px){
  .nav-toggle{ display:none !important; }
}

/* base line style (hard reset) */
.nav-toggle::before,
.nav-toggle__bar{
  content: "";
  position: absolute !important;
  left: 50% !important;
  width: 24px !important;
  height: 1px !important;
  background-color: #0B0D0C !important;
  opacity: 1 !important;
  border-radius: 0 !important;
  transform: translateX(-50%) !important;
  transform-origin: 50% 50% !important;
  transition: transform .22s ease, opacity .18s ease, top .22s ease, bottom .22s ease !important;
  pointer-events: none;
}

/* positions: top / middle / bottom */
.nav-toggle::before{ top: 13px !important; }
.nav-toggle__bar:nth-child(1){ top: 19.5px !important; } /* middle */
.nav-toggle__bar:nth-child(2){ top: 26px !important; }   /* bottom */

/* OPEN state -> X */
.nav-toggle[aria-expanded="true"]::before{
  top: 19.5px !important;
  transform: translateX(-50%) rotate(45deg) !important;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1){
  opacity: 0 !important;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2){
  top: 19.5px !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}

/* =========================
   MOBILE MENU CLOSE BUTTON (show again, styled)
   Keep a visible close option inside fullscreen menu
========================= */
.mobile-nav__close{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none !important;
  background: transparent !important;
  color: var(--brand) !important;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

/* Desktop nav typography: sans (not Playfair) */
@media (min-width: 1024px){
  .nav-link{
    font-family: var(--sans);
    font-size: .95rem;
    letter-spacing: .01em;
  }
}

.booking-btn {
  padding: 14px 30px;
  background: #453636;
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}

.booking-btn:hover {
  background: #5a4747;
}

/* Map section */
.section--map {
  padding: 64px 0;
}

/* Content width */
.container .container-google {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Title styling */
.map-title {
  font-family: "Playfair Display", serif; /* pas aan naar jouw font */
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 28px;
  color: #1b2a22;
}

/* Map card */
.map-embed {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 16 / 7; /* brede banner look */
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

/* Iframe full size */
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========== CO-LAB COOKIE BANNER STYLING ========== */

/* Accept button – primary */
.silktide-cookie-banner
  .silktide-cookie-banner__accept {
  background-color: #453636 !important;
  border-color: #453636 !important;
  color: #ffffff !important;
}

/* Accept hover */
.silktide-cookie-banner
  .silktide-cookie-banner__accept:hover {
  background-color: #3a2e2e !important;
  border-color: #3a2e2e !important;
}

/* ========== SILKTIDE REJECT BUTTON — CO-LAB GHOST STYLE ========== */

.st-button.reject-all {
  background-color: transparent !important;
  background-image: none !important;
  color: #453636 !important;
  border: 1px solid #453636 !important;
  box-shadow: none !important;
}

.st-button.reject-all::before,
.st-button.reject-all::after {
  background: none !important;
  content: none !important;
}

.st-button.reject-all:hover {
  background-color: rgba(69, 54, 54, 0.06) !important;
}

.st-button.reject-all:focus-visible {
  outline: 2px solid #453636;
  outline-offset: 2px;
}

/* Reject hover – subtle */
.silktide-cookie-banner
  .silktide-cookie-banner__reject:hover {
  background: rgba(69, 54, 54, 0.06) !important;
}

/* Preferences / instellingen button */
.silktide-cookie-banner
  .silktide-cookie-banner__preferences {
  color: #453636 !important;
}

/* Focus state (toegankelijkheid) */
.silktide-cookie-banner button:focus-visible {
  outline: 2px solid #453636;
  outline-offset: 2px;
}

/* Algemene finesse */
.silktide-cookie-banner button {
  border-radius: 6px;
  font-weight: 500;
}

.st-button.accept-all {
  border: none !important;
  box-shadow: none !important;
}

.st-button.accept-all:hover {
  border: 1px solid #453636!important;
}



/* ===============================
   Co-Lab – Ruimtes cards
   =============================== */

.spaces {
  padding: clamp(40px, 6vw, 80px) 0;
}

.spaces__container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.spaces__grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .spaces__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.space-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.space-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.space-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .5s ease;
}

.space-card__img--hover {
  opacity: 0;
}

.space-card:hover .space-card__img--hover {
  opacity: 1;
}

.space-card:hover .space-card__img--base {
  opacity: 0;
}

/* Card body */
.space-card__body {
  background: #ffffff;
  padding: 22px 24px 26px;
}

.space-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

/* Meta lists */
.space-card__meta,
.space-card__extras {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.space-card__meta li {
  margin-bottom: 6px;
}

.space-card__meta strong {
  font-weight: 600;
}

/* CTA */
.space-card__cta {
  margin-top: 16px;
}

/* ===============================
   Badges
   =============================== */

.space-card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =========================================================
   Co-Lab – Coworking page (uses existing colab.css variables)
   Requires: colab.css loaded BEFORE this file.
   Variables used (from colab.css):
   --cream, --brand, --ink, --text, --muted, --card, --card-border,
   --radius, --shadow, --serif, --sans, --container
   ========================================================= */

/* Page-level container: align with your existing .container sizing */
.cw-container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Sections */
.cw-section{
  padding: 72px 0;
  background: var(--cream);
  color: var(--text);
}
.cw-section--alt{
  background: linear-gradient(180deg, rgba(11,13,12,.035), rgba(11,13,12,.02));
}
.cw-section--cta{
  padding: 56px 0;
}
.cw-section__header{
  max-width: 70ch;
  margin-bottom: 32px;
}

/* Typography */
.cw-h1{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 1.2rem + 3.3vw, 3.2rem);
  line-height: 1.06;
  margin: 10px 0 14px;
  color: var(--ink);
}
.cw-h2{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 1.15rem + 2.2vw, 2.5rem);
  line-height: 1.12;
  margin: 0 0 10px;
  color: var(--ink);
}
.cw-h3{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}
.cw-eyebrow{
  margin: 0;
  font-family: var(--sans);
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--muted);
}
.cw-lead{
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 56ch;
}
.cw-sub{
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.cw-note{
  margin-top: 18px;
  font-size: .95rem;
  color: var(--muted);
}

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */
.cw-hero{
  padding: 74px 0 56px;
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(11,13,12,.06), transparent 55%),
    radial-gradient(900px 380px at 90% 10%, rgba(86,72,52,.07), transparent 60%),
    var(--cream);
  border-bottom: 1px solid rgba(11,13,12,.10);
}
.cw-hero__grid{
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr .9fr;
  align-items: center;
}
.cw-hero__content{ min-width: 0; }

.cw-hero__visual{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.5);
  min-height: 340px;
  border: 1px solid var(--card-border);
}
.cw-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
}
.cw-hero__placeholder{
  height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
}
.cw-hero__placeholderInner{
  border: 1px dashed rgba(11,13,12,.16);
  border-radius: calc(var(--radius) - 6px);
  padding: 16px;
  color: var(--muted);
  background: rgba(255,255,255,.6);
  text-align: center;
  font-size: 14px;
}

.cw-hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}

/* ---------------------------------------------------------
   Buttons (match your .btn look & brand colors)
--------------------------------------------------------- */
.cw-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .95rem;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.cw-btn:hover{ transform: translateY(-1px); }

.cw-btn--primary,
.cw-btn--dark{
  background: var(--ink);
  color: var(--cream);
}
.cw-btn--ghost{
  background: transparent;
  border-color: rgba(11,13,12,.18);
  color: rgba(11,13,12,.85);
}
.cw-btn--full{ width: 100%; }

/* Badges (like meta-pill but light) */
.cw-badges{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cw-badge{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(11,13,12,.10);
  font-size: .92rem;
  color: rgba(11,13,12,.78);
}

/* ---------------------------------------------------------
   Cards
--------------------------------------------------------- */
.cw-cards{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cw-card{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.cw-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-family: var(--sans);
}

/* ---------------------------------------------------------
   Pricing
--------------------------------------------------------- */
.cw-pricing{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cw-price{
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.cw-price--featured{
  border-color: rgba(11,13,12,.18);
  transform: translateY(-4px);
}
.cw-price__tag{
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11,13,12,.06);
  color: rgba(11,13,12,.85);
  border: 1px solid rgba(11,13,12,.10);
}
.cw-price__value{
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 2px;
  color: var(--ink);
  font-family: var(--sans);
}
.cw-price__suffix{
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.cw-price__meta{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-family: var(--sans);
}
.cw-list{
  margin: 14px 0 16px;
  padding-left: 18px;
  color: rgba(11,13,12,.72);
  line-height: 1.7;
  font-family: var(--sans);
}
.cw-list li{ margin: 6px 0; }

/* ---------------------------------------------------------
   Included list
--------------------------------------------------------- */
.cw-included{
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,.65);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.cw-included__grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}
.cw-included__item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--sans);
}
.cw-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  opacity: .85;
  flex: 0 0 auto;
}

/* ---------------------------------------------------------
   CTA band
--------------------------------------------------------- */
.cw-cta{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255,255,255,.65);
  box-shadow: var(--shadow);
}
.cw-cta__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ---------------------------------------------------------
   FAQ
----------------------------------------------------

/* =========================================================
   Full size hero
   ========================================================= */

.cw-hero--full {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.cw-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cw-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(11,13,12,0.55) 0%,
      rgba(11,13,12,0.35) 45%,
      rgba(11,13,12,0.15) 100%
    );
}

.cw-hero__contentWrap {
  position: relative;
  z-index: 2;
}

.cw-hero--full .cw-h1,
.cw-hero--full .cw-eyebrow,
.cw-hero--full .cw-lead {
  color: var(--cream);
}

.cw-hero--full .cw-lead {
  max-width: 60ch;
}

.cw-hero--full .cw-badge {
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  border-color: transparent;
}

@media (max-width: 900px) {
  .cw-hero--full {
    min-height: 75vh;
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
/* =========================================================
   Image sections + pricing 2-up layout
   (paste at bottom of assets/css/coworking.css)
   ========================================================= */

/* Full width image band (editorial) */
.cw-imageband {
  position: relative;
  padding: 0;
  margin: 0;
}

.cw-imageband__inner {
  position: relative;
  min-height: clamp(360px, 52vh, 620px);
  overflow: hidden;
}

.cw-imageband__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.cw-imageband__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11,13,12,0.62) 0%,
    rgba(11,13,12,0.26) 52%,
    rgba(11,13,12,0.08) 100%
  );
}

.cw-imageband__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color:  var(--cream);
  padding-bottom: 46px;
  z-index: 2;
}

.cw-imageband__kicker {
  margin: 0 0 8px;
  letter-spacing: .02em;
  color: var(--cream);
  opacity: .92;
}

.cw-imageband__title {
  margin: 0;
  color: var(--cream);
  max-width: 22ch;
}

/* Pricing 2 cards per row (desktop), 1 per row (mobile) */
.cw-pricing--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

/* Split editorial gallery section */
.cw-split {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}

.cw-split__media {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.cw-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.6);
}

.cw-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cw-figure--tall {
  aspect-ratio: 4 / 5;
}

.cw-figure--wide {
  aspect-ratio: 16 / 9;
}

.cw-split__content {
  min-width: 0;
}

.cw-finalcta {
  margin-top: 28px;
}

.cw-finalcta__box {
  background: rgba(255,255,255,.65);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

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

/* =========================================================
   TYPOGRAPHY – HIGH END
========================================================= */

.cw-h1,
.cw-h2,
.cw-imageband__title,
.cw-price__value {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cw-h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.cw-h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.15;
}

.cw-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* =========================================================
   HERO – MORE LUXURY
========================================================= */

.cw-hero--full .cw-lead {
  font-size: 1.05rem;
  max-width: 56ch;
  opacity: 0.95;
}

.cw-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(11,13,12,0.65) 0%,
    rgba(11,13,12,0.4) 55%,
    rgba(11,13,12,0.2) 100%
  );
}

/* =========================================================
   INTRO CARDS – EDITORIAL
========================================================= */

.cw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cw-card {
  padding: 26px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cw-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .cw-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   IMAGE BAND – MORE DRAMA
========================================================= */

.cw-imageband__inner img {
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.05);
}

.cw-imageband__caption h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 18ch;
}


/* =========================================================
   IMAGE HERO – SUBTIELER & LICHTERE TEKST
========================================================= */

/* Maak de sectie minder hoog */
.cw-imageband {
  min-height: 50vh;              /* was waarschijnlijk ~80–100vh */
}

@media (max-width: 900px) {
  .cw-imageband {
    min-height: 48vh;
  }
}

/* Beperk de caption-breedte en spacing */
.cw-imageband__caption {
  max-width: 520px;
  padding-top: 40px;
}

/* Headline: lichter & eleganter */
.cw-imageband__title {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Subtiele kicker */
.cw-imageband__kicker {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
}

/* Eventuele paragrafen ook lichter */
.cw-imageband p,
.cw-imageband__caption p {
  color: rgba(255, 255, 255, 0.75);
}

/* Iets minder zware overlay (beeld blijft leading) */
.cw-imageband__overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.55) 100%
  );
}

/* =========================================================
   PRICING – BOUTIQUE MEMBERSHIP FEEL
========================================================= */

.cw-pricing {
  margin-top: 36px;
}

.cw-price {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
}

.cw-price h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.cw-price__value {
  font-size: 2.1rem;
  margin: 14px 0 6px;
}

.cw-price__meta {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 14px;
}

.cw-price ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 22px;
}

.cw-price ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.cw-price ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  opacity: 0.5;
}

.cw-price--featured {
  background: rgba(255,255,255,0.85);
  border-color: var(--ink);
}

.cw-price__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
}

/* =========================================================
   TWO IMAGES + TEXT (layout like your sketch)
========================================================= */

.cw-twoimg {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}

/* Left big image */
.cw-twoimg__left {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cw-twoimg__left img {
  display: block;
  width: 100%;
  height: auto;
}

/* Right column: text on top, image lower */
.cw-twoimg__right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 26px;
  align-items: start;
}

.cw-twoimg__text {
  max-width: 46ch;
}

.cw-twoimg__text .cw-h2 {
  margin: 0 0 10px;
}

/* Right image: pushed down a bit for playful offset */
.cw-twoimg__rightImage {
  margin: 34px 0 0; /* <-- this creates the "lower" effect */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cw-twoimg__rightImage img {
  display: block;
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 980px) {
  .cw-twoimg {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cw-twoimg__rightImage {
    margin-top: 0;
  }

  .cw-twoimg__text {
    max-width: 100%;
  }
}

.about {
  background: #fbfaf8;
  color: #121212;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
}

.about-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 20px 120px;
}

/* HEADER */

.about-header {
  margin-bottom: 80px;
}

.about-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: rgba(0,0,0,.5);
  margin-bottom: 12px;
}

.about-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 20px;
  line-height: 1.1;
}

.about-intro {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(0,0,0,.7);
}

/* CONTENT */

.about-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 20px;
  color: rgba(0,0,0,.8);
}

/* IMAGE */

.about-image {
  margin: 40px 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* QUOTE */

.about-quote {
  padding: 40px;
  border-left: 3px solid #c8b48a;
  background: linear-gradient(180deg, rgba(200,180,138,.08), transparent);
}

.about-quote p {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  line-height: 1.4;
  margin: 0;
}

/* MANIFEST */

.about-manifest {
  font-size: 22px;
  line-height: 1.8;
  font-family: "Playfair Display", serif;
  margin-top: 20px;
}

.about-manifest p {
  margin: 0 0 12px;
}

/* FOOTER */

.about-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.about-footer h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 10px;
}

.about-footer p {
  font-size: 18px;
  color: rgba(0,0,0,.7);
}

.footer-description {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-link {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.22);
  padding-bottom: 2px;
  width: fit-content;
}

.footer-link:hover {
  border-bottom-color: rgba(0,0,0,.45);
}

/* --- Layout helpers (if not already in your CSS) --- */
.section { padding: 56px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }

.container { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }
.container--narrow { width: min(880px, calc(100% - 32px)); margin: 0 auto; }

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

.font-playfair { font-family: "Playfair Display", serif; }

/* --- Typography --- */
.h1 { font-size: 28px; line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
@media (min-width: 768px) { .h1 { font-size: 40px; } }

.h2 { font-size: 22px; line-height: 1.2; margin: 0; }
@media (min-width: 768px) { .h2 { font-size: 28px; } }

.lead { margin: 12px auto 0; max-width: 60ch; color: rgba(24,24,27,.72); font-size: 16px; }
@media (min-width: 768px) { .lead { font-size: 18px; } }

.muted { color: rgba(24,24,27,.72); margin: 10px 0 0; }
.fineprint { margin: 12px 0 0; font-size: 12px; line-height: 1.5; }
.fineprint--muted { color: rgba(24,24,27,.62); }
.fineprint--light { color: rgba(24,24,27,.55); }

/* Scoped cards for contact/newsletter only (avoid colliding with homepage .card) */
.section--contact .card,
.section--newsletter .card,
.modal .card{
  margin: 28px auto 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(24,24,27,.10);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
@media (min-width: 768px){
  .section--contact .card,
  .section--newsletter .card,
  .modal .card{
    padding: 22px;
  }
}

.section--contact .card--soft,
.section--newsletter .card--soft,
.modal .card--soft{
  background: rgba(250,250,250,.75);
}

/* --- Form layout --- */
.form { text-align: left; max-width: 720px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.field--full { grid-column: 1 / -1; }

.label {
  display: block;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(24,24,27,.70);
  margin: 0 0 6px;
}

.input, .textarea, .select {
  width: 100%;
  border: 1px solid rgba(24,24,27,.16);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.textarea { resize: vertical; min-height: 120px; }

.input:focus, .textarea:focus, .select:focus {
  border-color: rgba(24,24,27,.35);
  box-shadow: 0 0 0 4px rgba(24,24,27,.08);
}

::placeholder { color: rgba(24,24,27,.45); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

.btn--primary {
  background: #111;
  color: #fff;
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}
.btn--primary:hover { opacity: .92; }
.btn--primary:active { transform: translateY(1px); }

.btn--full { width: 100%; }

/* --- Checkbox --- */
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(24,24,27,.72);
  line-height: 1.4;
  user-select: none;
}
.check input { margin-top: 3px; }

/* --- Newsletter section tweaks --- */
.section--newsletter .card { margin-top: 0; }
.newsletter-form { margin-top: 14px; }
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .newsletter-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .newsletter-grid .field--full { grid-column: 1 / -1; }
}

/* --- Accessibility helper --- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Footer link (optional) */
.footer-link { text-decoration: none; }
.footer-link:hover { text-decoration: underline; }

/* Modal */
.modal { display: none; }
.modal.is-open { display: block; }

.is-modal-open { overflow: hidden; }

.modal__overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  z-index: 999;
}

.modal__panel {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 32px));
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(24,24,27,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  z-index: 1000;
  padding: 18px;
}

@media (min-width: 768px) {
  .modal__panel { padding: 22px; }
}

.modal__close {
  position: absolute;
  right: 12px; top: 10px;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(24,24,27,.12);
  background: rgba(250,250,250,.9);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal__close:hover { opacity: .9; }

.modal__head { text-align: center; margin-bottom: 14px; }

