/* ══════════════════════════════════════════
   SAFFIERSPACE — Stylesheet
   Eigen identiteit: saffierblauwen + warm beige
   ══════════════════════════════════════════ */

/* ── SELF-HOSTED FONTS (latin subset) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../../../assets/fonts/inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../../assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../../../assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../../assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../../../assets/fonts/playfair-display-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../../assets/fonts/playfair-display-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../../assets/fonts/playfair-display-600.woff2') format('woff2');
}


:root {
  --saffier:       #1E3A6B;
  --saffier-mid:   #2D5EB8;
  --saffier-light: #4A7FD4;
  --saffier-pale:  #D6E4F7;
  --cream:         #E8DDD0;
  --cream-dark:    #DCCFC0;
  --cream-deeper:  #CABFAD;
  --dark:          #12202E;
  --warm-gray:     #7A8A9A;
  --white:         #FFFFFF;
  --terra:         #C4714A;

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;

  --shadow-sm:     0 2px 8px rgba(18,32,46,0.08);
  --shadow-md:     0 8px 24px rgba(18,32,46,0.12);
  --shadow-lg:     0 16px 48px rgba(18,32,46,0.14);

  --max-w:         1100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 0.35rem;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-desktop { display: flex; gap: 2rem; align-items: center; }
.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}
.nav-mobile a { display: block; padding: 0.5rem 0; color: var(--dark); }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}

/* ── TYPE ── */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}
h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
}
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffier-mid);
  margin-bottom: 0.75rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  margin-top: 2.5rem;
  background: var(--white);
  color: var(--saffier);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ══ HEADER ══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--saffier);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.9rem 0;
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(18,32,46,0.2); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}
.brand-back { font-size: 1rem; opacity: 0.7; }
.brand-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.brand-sub { opacity: 0.6; font-weight: 400; }

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
nav a:hover { color: var(--white); }
.btn-nav {
  color: var(--saffier) !important;
  background: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--cream) !important; }

/* ══ HERO ══ */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--saffier) 0%, #163060 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,127,212,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--saffier-light); }
.hero-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-top: 1.5rem;
  line-height: 1.65;
}

/* ══ VIDEO ══ */
.video-section {
  padding: 4rem 0;
  background: var(--cream-dark);
}
.video-section h2 { margin-bottom: 2rem; }
.video-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--cream-deeper);
  color: var(--warm-gray);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

/* ══ WAAROM ══ */
.waarom {
  padding: 4.5rem 0;
  background: var(--cream);
}
.waarom h2 { margin-bottom: 3rem; }
.waarom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.waarom-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.waarom-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.waarom-icon {
  width: 40px;
  height: 40px;
  color: var(--saffier-mid);
  margin-bottom: 1rem;
}
.waarom-icon svg { width: 100%; height: 100%; }
.waarom-card h3 { margin-bottom: 0.5rem; }
.waarom-card p  { font-size: 0.92rem; color: var(--warm-gray); line-height: 1.65; }

/* ══ PLATTEGRONDEN ══ */
.plattegrond {
  padding: 4.5rem 0;
  background: var(--cream-dark);
}
.plattegrond h2 { margin-bottom: 2rem; }
.plattegrond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.plattegrond-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-deeper);
  background: var(--white);
}
.plan-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: filter 0.2s;
}
.plan-wrapper:hover {
  filter: brightness(0.9);
}
.plan-wrapper::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 32, 46, 0.85);
  color: var(--white);
  padding: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  pointer-events: none;
}
.plan-wrapper:hover::after {
  opacity: 1;
}
.plan-legende {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plan-legende-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: none;
}
.plan-legende img {
  width: 100%;
}

/* ══ FOTO'S ══ */
.fotos {
  padding: 4.5rem 0;
  background: var(--cream);
}
.fotos h2 { margin-bottom: 2rem; }
.foto-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.foto-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.foto-grid .foto-wrapper.foto-groot,
.foto-grid .foto-wrapper:first-child {
  grid-row: span 2;
  min-height: 320px;
}
.foto-grid .foto-wrapper:not(:first-child) {
  aspect-ratio: 4/3;
}
.foto-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.foto-clickable {
  position: relative;
  cursor: pointer;
  transition: filter 0.2s;
}
.foto-clickable:hover {
  filter: brightness(0.85);
}
.foto-clickable::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 32, 46, 0.85);
  color: var(--white);
  padding: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  pointer-events: none;
}
.foto-clickable:hover::after {
  opacity: 1;
}

/* ══ TECH ══ */
.tech {
  padding: 4.5rem 0;
  background: var(--saffier);
}
.tech .section-label { color: rgba(255,255,255,0.5); }
.tech h2 { color: var(--white); margin-bottom: 2.5rem; }
.tech-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
  max-width: 700px;
}
.tech-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.tech-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--saffier-light);
}
.tech-note {
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.875rem;
  font-style: italic;
}

/* ══ LIGGING ══ */
.ligging {
  padding: 4.5rem 0;
  background: var(--cream-dark);
}
.ligging-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.ligging-text h2 { margin-bottom: 1.5rem; }
.ligging-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--warm-gray);
}
.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--cream-deeper);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-gray);
  font-size: 0.85rem;
  border: 2px dashed var(--cream-deeper);
}

/* ══ FAQ ══ */
.faq {
  padding: 4.5rem 0;
  background: var(--cream);
}
.faq h2 { margin-bottom: 2.5rem; }
.faq-list { max-width: 720px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--cream-dark);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--cream-dark); }
.faq-item summary {
  padding: 1.4rem 0;
  min-height: 48px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
}
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--saffier-mid);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 0 1.25rem;
  font-size: 0.93rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* ══ ABOUT SAFFIERSPACE ══ */
.about-saffierspace {
  padding: 4rem 0;
  background: var(--white);
}
.about-saffierspace .container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-saffierspace h2 { margin-bottom: 1.5rem; }
.about-photo-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-md);
}
.about-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.8;
}
.about-text p:first-of-type {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .about-saffierspace .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo-circle {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
  .about-text { text-align: center; }
}

/* ══ CONTACT ══ */
.contact {
  padding: 4.5rem 0;
  background: var(--cream-dark);
}
.contact h2 { margin-bottom: 1rem; }
.contact-intro {
  max-width: 520px;
  color: var(--warm-gray);
  margin-bottom: 3rem;
}
.contact-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  border-color: var(--saffier-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--saffier);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-icon--li { background: #0077B5; }

/* ══ FOOTER ══ */
.site-footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
  text-align: center;
}
.site-footer p { font-size: 0.82rem; color: var(--warm-gray); }
.site-footer a { color: var(--saffier); text-decoration: underline; text-underline-offset: 2px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  
  .waarom-grid,
  .ligging-grid { grid-template-columns: 1fr; }

  .plattegrond-grid { grid-template-columns: repeat(2, 1fr); }

  .foto-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foto-grid img:first-child {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
    aspect-ratio: 16/9;
  }
  .foto-grid img:not(:first-child) { aspect-ratio: 4/3; }

  .tech-list { grid-template-columns: 1fr; }
  
  section { padding: 2.5rem 0; }
}

@media (max-width: 600px) {
  .foto-grid { grid-template-columns: 1fr; }
  .foto-grid img:first-child { grid-column: 1; aspect-ratio: 4/3; min-height: 0; }
  .plattegrond-grid { grid-template-columns: 1fr 1fr; }
  .contact-links { flex-direction: column; max-width: 320px; }
}

/* ══ MODAL FOR FLOOR PLANS ══ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18,32,46,0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.2s;
  z-index: 1001;
}
.modal-close:hover { background: rgba(0,0,0,0.7); }

/* ══ FLOOR PLAN THUMBNAILS ══ */
.plan-subtitle {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}
.plan-thumbnail {
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: var(--radius-md);
}
.plan-thumbnail:active {
  transform: scale(0.98);
}

/* ══ TECH COLUMNS ══ */
.tech-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.tech-column h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}
.tech-column .tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tech-column li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.tech-column svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--saffier);
}
  stroke: var(--saffier);
}

/* ══ INQUIRY FORM ══ */
.inquiry-form {
  background: var(--saffier-pale);
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--saffier);
  box-shadow: 0 0 0 3px rgba(30,58,107,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-form {
  background: var(--saffier);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}
.btn-form:hover { background: var(--dark); }

.form-note {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 1rem;
  text-align: center;
}

/* ══ RESPONSIVE FORM ══ */
@media (max-width: 900px) {
  .tech-columns { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 1.5rem; }
}
@media (max-width: 600px) {
  .inquiry-form { padding: 1rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; }
}

/* ══ PHOTO GALLERY CLICKABLE ══ */
.foto-clickable {
  cursor: pointer;
  transition: opacity 0.2s;
}
.foto-clickable:active {
  opacity: 0.9;
}

/* ══ HOUSEHOLD RULES ══ */
.reglement {
  padding: 4rem 0;
  background: var(--saffier-pale);
}
.reglement .container {
  max-width: 1100px;
}
.reglement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.reglement-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--saffier);
  box-shadow: var(--shadow-sm);
}
.reglement-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.reglement-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--saffier);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.reglement-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--dark);
}
.reglement-card strong {
  color: var(--saffier);
}

@media (max-width: 900px) {
  .reglement-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reglement-grid { grid-template-columns: 1fr; }
  .reglement { padding: 2rem 0; }
}
