/* ==========================================================================
   OPTIMUM DEVELOPMENT GROUP — stylesheet
   Merkkleuren: navy #0B1F3A · goud #C9A227
   Typografie: Cormorant Garamond (koppen) · Inter (leestekst)
   ========================================================================== */

/* -------------------------- Fonts (zelf gehost) -------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
}

/* -------------------------- Design tokens -------------------------- */
:root {
  --navy: #0B1F3A;
  --navy-700: #122745;
  --navy-800: #0E2038;
  --navy-900: #071427;
  --gold: #C9A227;
  --gold-600: #B08F22;
  --gold-700: #836919; /* WCAG AA-veilige goudtint voor tekst op wit/crème (4.5:1+) */
  --gold-100: #E8D9A6;
  --white: #FFFFFF;
  --cream: #F7F5F0;
  --cream-200: #F1EEE6;
  --ink: #1B2330;
  --muted: #5B6472;
  --muted-on-dark: #B7C0CE;
  --border: #E3E0D6;
  --border-dark: rgba(255,255,255,0.16);

  --font-serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-w: 1200px;
  --container-narrow: 760px;

  --radius-sm: 4px;
  --radius-md: 8px;

  --shadow-sm: 0 1px 3px rgba(11,31,58,0.08), 0 1px 2px rgba(11,31,58,0.06);
  --shadow-md: 0 8px 24px rgba(11,31,58,0.10);
  --shadow-lg: 0 20px 48px rgba(11,31,58,0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 84px;
  --header-h-compact: 64px;
}

/* -------------------------- Reset -------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h-compact); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }

::selection { background: var(--gold-100); color: var(--navy); }

/* Focus states — visible & accessible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.9em 1.4em;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* -------------------------- Layout helpers -------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(64px, 9vw, 112px); }
.section--tint { background: var(--cream); }

.section__head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section__title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 0.4em;
}
.section__lead {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 52ch;
}
.section__lead--left { max-width: 46ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.9em;
}
.eyebrow--on-dark { color: var(--gold); }

.prose p {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 68ch;
}
.prose p + p { margin-top: 1.1em; }

.grid { display: grid; gap: 32px; }
.grid--services { grid-template-columns: repeat(1, 1fr); }
.grid--why { grid-template-columns: repeat(1, 1fr); gap: 40px 32px; }

@media (min-width: 640px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .grid--why { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--services { grid-template-columns: repeat(3, 1fr); }
}

/* -------------------------- Buttons -------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.8em;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-700); border-color: var(--navy-700); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-600); border-color: var(--gold-600); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--sm { padding: 0.65em 1.3em; font-size: 0.875rem; }
.btn--block { width: 100%; }

/* -------------------------- Header -------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .site-header__inner { height: var(--header-h-compact); }

.site-header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__logo-img {
  height: 40px;
  width: auto;
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .site-header__logo-img { height: 32px; }

.site-nav { flex: 1; display: none; }
.site-nav__list { display: flex; justify-content: center; gap: clamp(20px, 3vw, 40px); }
.site-nav__list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 0.4em 0.1em;
}
.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.25s var(--ease);
}
.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after { right: 0; }

.site-header__actions { display: flex; align-items: center; gap: 16px; }
.site-header__actions > .btn { display: none; }

.lang-switch { display: none; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 600; }
.lang-switch__btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: 4px 2px; letter-spacing: 0.03em;
}
.lang-switch__btn.is-active { color: var(--navy); }
.lang-switch__sep { color: var(--border); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 24px 20px 32px;
}
.mobile-nav__list { display: flex; flex-direction: column; margin-bottom: 20px; }
.mobile-nav__list a {
  display: block;
  padding: 14px 4px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-bottom: 20px; }
.lang-switch--mobile { display: flex; justify-content: center; font-size: 0.9375rem; }

@media (min-width: 900px) {
  .site-nav { display: block; }
  .lang-switch { display: flex; }
  .site-header__actions > .btn { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* -------------------------- Hero -------------------------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(96px, 16vw, 168px) clamp(72px, 12vw, 120px);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(201,162,39,0.14), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy) 55%, var(--navy-700) 100%);
}
/*
  BEELD-PLACEHOLDER (zie ook opmerking in index.html):
  vervang bovenstaande achtergrond later door een foto via bijvoorbeeld:
  .hero__bg { background: linear-gradient(180deg, rgba(11,31,58,.6), rgba(11,31,58,.88)), url('../assets/hero-project.jpg') center/cover no-repeat; }
*/
.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 46%;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: 1600px 340px;
  background-position: bottom center;
  opacity: 0.55;
}
.hero__bg::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 340'%3E%3Cpath d='M0 260C220 160 420 340 700 240C960 150 1180 320 1600 190V340H0Z' fill='%23C9A227' fill-opacity='0.10'/%3E%3C/svg%3E");
  bottom: -20px;
}
.hero__bg::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 340'%3E%3Cpath d='M0 300C260 220 460 300 760 230C1020 170 1240 300 1600 240V340H0Z' fill='%23C9A227' fill-opacity='0.16'/%3E%3C/svg%3E");
  bottom: -40px;
  opacity: 0.5;
}

.hero__inner { max-width: 760px; }
.hero__title {
  color: var(--white);
  font-size: clamp(2.1rem, 5.6vw, 3.6rem);
  margin-bottom: 0.42em;
  letter-spacing: -0.01em;
}
.hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  color: var(--muted-on-dark);
  max-width: 52ch;
  margin-bottom: 2.1em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 479px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { white-space: normal; text-align: center; }
}

/* -------------------------- Services -------------------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.45em; }
.service-card p { color: var(--muted); font-size: 0.9375rem; margin: 0; }

/* -------------------------- Why us -------------------------- */
.why-item__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-700);
  margin-bottom: 0.3em;
}
.why-item h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
.why-item p { color: var(--muted); font-size: 0.9375rem; margin: 0; }

/* -------------------------- Process -------------------------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  counter-reset: step;
  position: relative;
}
.process__step { position: relative; padding-left: 0; }
.process__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-700);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 16px;
  background: var(--white);
}
.process__step h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.process__step p { color: var(--muted); font-size: 0.9375rem; margin: 0; max-width: 34ch; }

@media (min-width: 720px) {
  .process { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .process::before {
    content: "";
    position: absolute;
    top: 23px;
    left: calc(12.5% + 23px);
    right: calc(12.5% + 23px);
    height: 1px;
    background: var(--border);
    z-index: 0;
  }
  .process__index { position: relative; z-index: 1; }
}

/* -------------------------- About -------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about__media-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  background:
    linear-gradient(155deg, var(--navy) 0%, var(--navy-700) 60%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
}
.about__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cpath d='M0 380C90 320 160 420 260 360C320 325 360 380 400 340V500H0Z' fill='%23C9A227' fill-opacity='0.14'/%3E%3Cpath d='M0 420C100 380 180 440 260 400C330 365 370 410 400 385V500H0Z' fill='%23C9A227' fill-opacity='0.2'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
}
/* BEELD-PLACEHOLDER: vervang .about__media-frame door <img src="assets/team-or-project.jpg" alt="..."> */

@media (min-width: 860px) {
  .about__grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
}

/* -------------------------- CTA -------------------------- */
.cta {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(64px, 9vw, 100px);
}
.cta__inner { max-width: 700px; text-align: left; }
.cta__title { color: var(--white); font-size: clamp(1.75rem, 3.4vw, 2.35rem); }
.cta__text { color: var(--muted-on-dark); font-size: 1.0625rem; margin-bottom: 1.8em; max-width: 56ch; }
.cta__actions { margin-bottom: 1.6em; }
.cta__alt { font-size: 0.9375rem; color: var(--muted-on-dark); }
.cta__alt a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------- Contact -------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.contact__details { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.contact__details li { display: flex; flex-direction: column; gap: 2px; }
.contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__details a { font-size: 1rem; color: var(--navy); font-weight: 500; }
.contact__details a:hover { color: var(--gold-700); }

.social-links { display: flex; gap: 14px; margin-top: 8px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.social-links a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.social-links--footer a { border-color: var(--border-dark); color: var(--white); }
.social-links--footer a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

@media (min-width: 980px) {
  .contact__grid { grid-template-columns: 0.85fr 1.15fr; }
}

/* Form */
.contact__form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 40px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-row .form-field { margin-bottom: 0; }
.form-field label,
.form-field legend {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 8px;
  padding: 0;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.85em 1em;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.08);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-field--radio { border: none; padding: 0; margin: 4px 0 20px; }
.form-field--radio legend { margin-bottom: 10px; }
.form-field--radio label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--ink);
  margin-right: 20px;
  margin-bottom: 8px;
}
.form-field--checkbox { margin-bottom: 24px; }
.form-field--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}
.form-field--checkbox input { margin-top: 3px; flex-shrink: 0; }

.form-field__error {
  display: none;
  color: #B3261E;
  font-size: 0.8125rem;
  margin-top: 6px;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #B3261E;
}
.form-field.has-error .form-field__error { display: block; }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
}
.form-status.is-success { background: #E7F3E8; color: #256029; display: block; }
.form-status.is-error { background: #FBEAE9; color: #B3261E; display: block; }

/* -------------------------- Footer -------------------------- */
.site-footer { background: var(--navy-900); color: var(--muted-on-dark); }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-block: clamp(48px, 7vw, 80px) 40px;
}
.site-footer__logo { height: 34px; width: auto; margin-bottom: 16px; }
.site-footer__brand p { font-size: 0.9375rem; max-width: 34ch; }
.site-footer__col h3 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { font-size: 0.9375rem; color: var(--muted-on-dark); }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__col span { font-size: 0.9375rem; }

@media (min-width: 700px) {
  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.site-footer__bottom { border-top: 1px solid var(--border-dark); }
.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-block: 22px;
  font-size: 0.8125rem;
  color: var(--muted-on-dark);
}
@media (min-width: 600px) {
  .site-footer__bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* -------------------------- Legal pages -------------------------- */
.legal-page { padding-block: clamp(56px, 8vw, 96px); }
.legal-page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-page h2 { font-size: 1.35rem; margin-top: 1.6em; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 1rem; }
.legal-page ul, .legal-page ol {
  margin: 0 0 1.2em;
  padding-left: 1.35em;
}
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page li { margin-bottom: 0.5em; line-height: 1.6; }
.legal-page li:last-child { margin-bottom: 0; }
.legal-page h3 { font-size: 1.05rem; color: var(--navy); margin-top: 1.4em; margin-bottom: 0.5em; }
.legal-page strong { color: var(--navy); }
.legal-page .meta-updated { font-size: 0.875rem; color: var(--muted); margin-top: -0.6em; margin-bottom: 2em; }
.legal-page .notice {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 2.4em;
  font-size: 0.9375rem;
  color: var(--navy);
}
.legal-page .back-link { display: inline-block; margin-top: 2.5em; font-weight: 600; color: var(--navy); }
.legal-page .back-link:hover { color: var(--gold-700); }

/* -------------------------- Reveal-on-scroll -------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
