/*
Theme Name: Human Design voor Bedrijven
Theme URI: https://humandesignvoorbedrijven.nl
Author: HDVB
Description: Custom theme voor Human Design voor Bedrijven
Version: 2.0.0
License: Private
Text Domain: hdvb
*/

/* ============================================================
   DESIGN SYSTEM — HUMAN DESIGN VOOR BEDRIJVEN
   Editorial Organic — Cormorant + Jakarta Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Core palette */
  --ink:           #1B2D38;
  --ink-mid:       #3D5566;
  --ink-soft:      #6B8090;
  --parchment:     #FAF8F5;
  --parchment-2:   #F3EFEA;
  --parchment-3:   #EAE4DC;
  --white:         #FFFFFF;

  /* Brand colours */
  --teal:          #40667C;
  --teal-dark:     #2D4F62;
  --teal-mid:      #5A8099;
  --teal-light:    #8FD0CC;
  --teal-pale:     #D6EFED;
  --yellow:        #FFDC39;
  --yellow-dark:   #E8C820;
  --coral:         #F46569;
  --coral-light:   #F2A7A7;
  --blush:         #FFE6E6;
  --sky:           #BEE5FB;
  --sky-pale:      #E8F5FD;

  /* Typography */
  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body:    'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  /* Scale */
  --max-w:        1200px;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(27,45,56,0.07);
  --shadow:      0 6px 28px rgba(27,45,56,0.10);
  --shadow-lg:   0 16px 56px rgba(27,45,56,0.14);
  --shadow-xl:   0 32px 80px rgba(27,45,56,0.18);

  /* Motion */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   0.18s;
  --dur:        0.28s;
  --dur-slow:   0.5s;
}

/* ============================================================
   LEGACY VARIABLE ALIASES (v1 → v2 compat)
   ============================================================ */
:root {
  --color-primary:       var(--teal);
  --color-primary-dark:  var(--teal-dark);
  --color-primary-light: var(--teal-light);
  --color-dark:          var(--ink);
  --color-text-light:    var(--ink-soft);
  --color-white:         var(--white);
  --color-bg-light:      var(--parchment-2);
  --color-yellow:        var(--yellow);
  --color-coral:         var(--coral);
  --font-heading:        var(--font-display);
  --font-sans:           var(--font-body);
  --shadow-md:           var(--shadow);
}

/* ============================================================
   LEGACY COMPONENT CLASSES (v1 templates → v2 styles)
   ============================================================ */

/* Section labels / titles */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Quote block */
.quote-block {
  background: var(--teal-pale);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 32px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin: 32px 0;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  text-align: left;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 2px solid var(--parchment-3);
}
.comparison-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--parchment-3);
  color: var(--ink-mid);
  line-height: 1.5;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--parchment-2); }
.comparison-table td:first-child { font-weight: 600; color: var(--ink); }

/* Icon list */
.icon-list { display: flex; flex-direction: column; gap: 16px; }
.icon-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.icon-list__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--teal-pale);
}
.icon-list__text {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.65;
  padding-top: 10px;
}
.icon-list__text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}

/* Service blocks */
.service-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.service-block:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-block__header {
  background: var(--teal);
  padding: 28px 28px 24px;
}
.service-block__header--teal  { background: var(--teal-mid); }
.service-block__header--ink   { background: var(--ink); }
.service-block__header--coral { background: var(--coral); }
.service-block__icon { font-size: 2rem; margin-bottom: 10px; }
.service-block__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.service-block__subtitle { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.service-block__body { padding: 28px; flex: 1; }
.service-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-mid);
}
.service-block__list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Card variants (v1 style) */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden; }
.card--accent-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
}
.card__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--teal-pale);
}
.card__icon--primary { background: var(--teal-pale); }
.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.card__text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }
.card-accent { height: 3px; margin: -28px -28px 24px; }
.card-accent--teal   { background: var(--teal); }
.card-accent--yellow { background: var(--yellow); }
.card-accent--coral  { background: var(--coral); }
.card-accent--sky    { background: var(--sky); }
.card-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.card-icon--teal   { background: var(--teal-pale); }
.card-icon--yellow { background: rgba(255,220,57,0.15); }
.card-icon--coral  { background: var(--blush); }
.card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.card-text  { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* Tag list */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Team cards */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease);
}
.team-card:hover { box-shadow: var(--shadow); }
.team-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card__body { padding: 24px; }
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Accordion */
/* Accordion — defined in main accordion block below */

/* Contact info items */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--parchment-3);
}
.contact-info-item:first-of-type { padding-top: 0; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.contact-info-text strong { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
.contact-info-text a { color: var(--ink); font-weight: 500; transition: color var(--dur-fast); }
.contact-info-text a:hover { color: var(--teal); }

/* Forms (v1 style) */
.hdvb-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--parchment-3);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(64,102,124,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2340667C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.privacy-note { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.6; margin-top: 8px; }
#contact-message, #event-reg-message, #newsletter-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.hdvb-msg-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.hdvb-msg-error   { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }

/* Event date box (v1) */
.event-date-box {
  background: var(--teal);
  color: white;
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}
.event-date-box__day   { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.event-date-box__month { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }

/* Event info (v1) */
.event-info { flex: 1; }
.event-info h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.event-info p  { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.6; }
.event-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: var(--ink-soft); }

/* Two-col__content / two-col__media aliases for v1 templates */
.two-col__content { }
.two-col__content h2 { margin-bottom: 20px; }
.two-col__content p:not(:last-child) { margin-bottom: 1.3em; }
.two-col--reverse .two-col__media { order: -1; }
.two-col__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-xl);
}

/* Divider */
.divider { border: none; border-top: 1px solid var(--parchment-3); margin: 32px 0; }

/* (cta-group, mb/mt, text-center defined later in file) */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
}

.caption {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

em, .italic { font-style: italic; }

.serif { font-family: var(--font-display); }

/* Decorative italic pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--teal);
  line-height: 1.4;
  position: relative;
  padding-left: 28px;
}
.pull-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 28px;
}

.section-sm { padding: 60px 28px; }
.section-lg { padding: 130px 28px; }
.section--light { background: var(--parchment); }
.section--white { background: var(--white); }
.section--teal  { background: var(--teal); }

/* Background variants */
.bg-parchment  { background: var(--parchment); }
.bg-parchment2 { background: var(--parchment-2); }
.bg-teal       { background: var(--teal); }
.bg-teal-dark  { background: var(--teal-dark); }
.bg-teal-pale  { background: var(--teal-pale); }
.bg-yellow     { background: var(--yellow); }
.bg-ink        { background: var(--ink); }
.bg-white      { background: var(--white); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.align-center { align-items: center; }

/* ============================================================
   CURVED SECTION DIVIDERS (organic feel)
   ============================================================ */
.wave-top {
  position: relative;
}
.wave-top::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 2;
}

.curve-in {
  clip-path: ellipse(120% 100% at 50% 100%);
  padding-bottom: 80px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(29,47,57,0.75) 0%, rgba(29,47,57,0) 100%);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background var(--dur-slow) var(--ease),
              padding var(--dur) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              backdrop-filter var(--dur-slow) var(--ease);
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(27,45,56,0.08), var(--shadow-sm);
  padding: 12px 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Nav logo link + optional image */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Keep logo visible on both transparent and white header states */
  filter: brightness(0) invert(1);
  transition: filter var(--dur) var(--ease);
}
.site-header.scrolled .nav-logo__img {
  filter: none;
}

/* Logo wordmark */
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}
.logo-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.site-header.scrolled .logo-brand {
  color: var(--teal-dark);
}
.site-header.scrolled .logo-sub {
  color: var(--ink-soft);
}

/* Footer logo wordmark */
.footer-logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
  margin-bottom: 20px;
}
.footer-logo-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}
.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}

.site-header.scrolled .nav-menu a { color: var(--ink-mid); }
.nav-menu a:hover { background: rgba(255,255,255,0.12); color: white; }
.site-header.scrolled .nav-menu a:hover { background: var(--parchment-2); color: var(--teal); }

.nav-cta-btn {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  background: var(--yellow) !important;
  color: var(--ink) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  margin-left: 8px;
  transition: all var(--dur-fast) var(--ease) !important;
  border: 2px solid var(--yellow) !important;
}
.nav-cta-btn:hover {
  background: var(--yellow-dark) !important;
  border-color: var(--yellow-dark) !important;
  color: var(--ink) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,220,57,0.4) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: white;
  transition: all var(--dur) var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left panel */
.hero__left {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 50%, #52879F 100%);
  padding: 140px 60px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__left::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(143,208,204,0.12);
  pointer-events: none;
}

.hero__left::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,220,57,0.07);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 36px;
  width: fit-content;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.12;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--yellow);
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  font-weight: 300;
  max-width: 440px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero__divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 28px;
}

.hero__stat-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero__stat {}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  font-weight: 400;
}

/* Right panel */
.hero__right {
  background: var(--parchment-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 500px;
}

/* Decorative circle on the seam */
.hero__circle-deco {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--parchment-2);
  border: 3px solid var(--yellow);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__circle-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--teal);
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
}

/* Floating card — relative to .hero grid */
.hero__floating-card {
  position: absolute;
  bottom: 48px;
  left: calc(50% - 120px);
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
  max-width: 240px;
  z-index: 30;
  animation: card-float 4s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero__floating-card .card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-mid);
  margin-bottom: 4px;
}
.hero__floating-card .card-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.hero__floating-card .card-desc {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ============================================================
   STRIP / MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--yellow);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0 32px;
}

.marquee-inner span::before {
  content: '◆';
  margin-right: 32px;
  font-style: normal;
  font-size: 0.7rem;
  opacity: 0.5;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,220,57,0.38);
  color: var(--ink);
}

.btn-teal {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(64,102,124,0.28);
}

.btn-ink {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.btn-ink:hover {
  background: var(--ink-mid);
  border-color: var(--ink-mid);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,45,56,0.28);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--teal-dark);
  border-color: white;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  border-color: white;
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
}
.btn-coral:hover {
  background: #e05558;
  border-color: #e05558;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,101,105,0.32);
}

.btn-lg { padding: 18px 36px; font-size: 0.94rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* Arrow icon in button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  font-size: 0.75rem;
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal-light);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-label--white { color: rgba(255,255,255,0.6); }
.section-label--white::before { background: rgba(255,255,255,0.3); }

.section-label--yellow { color: var(--yellow); }
.section-label--yellow::before { background: rgba(255,220,57,0.4); }

/* ============================================================
   INTRO / BIG STATEMENT
   ============================================================ */
.big-statement {
  padding: 100px 28px;
  background: var(--parchment-2);
  text-align: center;
  position: relative;
}

.big-statement__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--teal-dark);
  line-height: 1.35;
  max-width: 860px;
  margin: 0 auto 32px;
  letter-spacing: -0.01em;
}

.big-statement__quote strong {
  font-style: normal;
  color: var(--teal);
  position: relative;
  display: inline;
}

.big-statement__sub {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* Decorative circle in big statement */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.deco-circle-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: 10%;
  background: rgba(143,208,204,0.08);
  border: 1px solid rgba(143,208,204,0.15);
}
.deco-circle-2 {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: 8%;
  background: rgba(255,220,57,0.06);
  border: 1px solid rgba(255,220,57,0.12);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Card top accent bar */
.card-accent {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: var(--teal-light);
  border-radius: 0 0 3px 3px;
}
.card-accent--yellow  { background: var(--yellow); }
.card-accent--coral   { background: var(--coral); }
.card-accent--teal    { background: var(--teal); }
.card-accent--sky     { background: var(--sky); }

/* Card icon */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--parchment-2);
}
.card-icon--teal   { background: var(--teal-pale); }
.card-icon--yellow { background: rgba(255,220,57,0.15); }
.card-icon--coral  { background: rgba(244,101,105,0.1); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.card-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SERVICE CARDS (full-color header)
   ============================================================ */
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.service-card__head {
  padding: 32px;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.service-card__head::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.service-card__head--teal-mid { background: var(--teal-mid); }
.service-card__head--coral    { background: var(--coral); }
.service-card__head--ink      { background: var(--ink); }

.service-card__head-icon { font-size: 2.2rem; margin-bottom: 12px; }
.service-card__head-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  line-height: 1.15;
}
.service-card__head-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.service-card__body { padding: 28px 32px; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-pale);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2340667C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   RESULT BOXES
   ============================================================ */
.result-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.result-box:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.result-box__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.result-box__label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* ============================================================
   TWO-COLUMN LAYOUTS
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-section__media {
  position: relative;
  overflow: hidden;
}
.split-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.split-section__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Standard 2-col with media */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.two-col--reverse { }
.two-col--reverse .col-media { order: 2; }
.two-col--reverse .col-content { order: 1; }

.col-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  object-position: top center;
}

.col-content h2 { margin-bottom: 20px; }
.col-content p:not(:last-child) { margin-bottom: 1.3em; }

/* ============================================================
   ABOUT / TEAM
   ============================================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--dur) var(--ease-out);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.team-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.03); }

.team-card__body { padding: 28px; }

/* Direct img variant (v1 templates use <img class="team-card__img">) */
.team-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-card__img { transform: scale(1.03); }

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-mid);
  margin-bottom: 14px;
}
.team-card__bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* Tag pills */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--teal-pale);
  color: var(--teal);
  letter-spacing: 0.02em;
}
.tag--yellow { background: rgba(255,220,57,0.18); color: #7A6200; }
.tag--coral  { background: rgba(244,101,105,0.12); color: #b83a3d; }

/* ============================================================
   ICON FEATURE LIST
   ============================================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon--yellow { background: rgba(255,220,57,0.15); }
.feature-icon--coral  { background: rgba(244,101,105,0.1); }

.feature-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.feature-text span {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 60%, #5A8099 100%);
  padding: 100px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(143,208,204,0.1);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,220,57,0.06);
  pointer-events: none;
}

.cta-section__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--parchment-3);
  padding: 80px 28px;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.newsletter-inner p {
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.nl-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nl-form input[type="email"] {
  flex: 1;
  min-width: 260px;
  padding: 14px 22px;
  border: 2px solid var(--parchment-3);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color var(--dur-fast);
  box-shadow: var(--shadow-sm);
}
.nl-form input:focus { border-color: var(--teal-light); }
.nl-form input::placeholder { color: var(--ink-soft); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.hdvb-form { max-width: 100%; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--parchment-3);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  box-shadow: var(--shadow-sm);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(143,208,204,0.2);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  background: var(--teal-pale);
  border: 1px solid var(--teal-light);
  color: var(--teal-dark);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-error {
  background: var(--blush);
  border: 1px solid var(--coral-light);
  color: #b83a3d;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

.privacy-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================================================
   MODAL
   ============================================================ */
.hdvb-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hdvb-modal.active { display: flex; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 45, 56, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-box {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.modal-header {
  background: var(--teal);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}
.modal-close:hover { background: rgba(255,255,255,0.25); }

.modal-body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 36px;
}

.modal-body p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.modal-body iframe {
  width: 100%;
  border: none;
  min-height: 750px;
  border-radius: var(--radius);
}

.booking-placeholder {
  background: var(--parchment-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--ink-soft);
}
.booking-placeholder p:first-child { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-hero {
  background: linear-gradient(155deg, var(--teal-dark), var(--teal) 55%, var(--teal-mid) 100%);
  padding: 150px 28px 130px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 200px;
  background: var(--parchment);
  border-radius: 50% 50% 0 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 5%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(143,208,204,0.1);
  border: 1px solid rgba(143,208,204,0.15);
}

.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero__crumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.page-hero__crumb a { color: rgba(255,255,255,0.55); transition: color var(--dur-fast); }
.page-hero__crumb a:hover { color: var(--yellow); }

.page-hero h1 {
  color: white;
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 580px;
  line-height: 1.85;
  margin: 8px 0 0;
  font-weight: 400;
}

/* ============================================================
   POST CONTENT (single artikel & page.php)
   ============================================================ */
.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-mid);
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}
.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 12px;
}
.post-content p { margin-bottom: 20px; }
.post-content strong { color: var(--ink); font-weight: 600; }
.post-content em { color: var(--teal-mid); }
.post-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--coral); }
.post-content ul, .post-content ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--yellow);
  background: var(--parchment-2);
  padding: 20px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
}
.post-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
}
.post-content hr { border: none; border-top: 1px solid var(--parchment-2); margin: 40px 0; }

/* Article-specific elements */
.article-featured-img {
  margin-bottom: 48px;
}
.article-featured-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/7;
  object-fit: cover;
}
.article-cat-badge {
  display: inline-block;
  background: rgba(255,220,57,0.2);
  color: var(--yellow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.article-hero-title {
  max-width: 820px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-top: 16px;
}
.article-hero-meta__dot { opacity: 0.4; }
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--parchment-2);
}
.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--parchment-2);
  flex-wrap: wrap;
}
.article-nav__posts { display: flex; gap: 16px; flex-wrap: wrap; }
.article-nav__link {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 500;
  max-width: 200px;
}
.article-nav__link span {
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}
.article-nav__link:hover { color: var(--coral); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.post-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--parchment-2);
}
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.post-card__title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--teal); }
.post-card__excerpt { font-size: 0.88rem; color: var(--ink-soft); flex: 1; margin-bottom: 16px; line-height: 1.65; }
.post-card__link { font-size: 0.82rem; font-weight: 600; color: var(--teal); }
.post-card__link:hover { color: var(--coral); }

.post-card__thumb-link { display: block; overflow: hidden; }
.post-card__thumb-link:hover .post-card__thumb { transform: scale(1.04); }
.post-card__thumb { transition: transform 0.4s var(--ease); }
.post-card__thumb--placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card__thumb--placeholder span { font-size: 2.5rem; opacity: 0.5; }

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.post-card__date {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 400;
}

/* Blog empty state */
.blog-empty {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.blog-empty__icon { font-size: 4rem; margin-bottom: 20px; }
.blog-empty h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 16px; }
.blog-empty p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 32px; }

/* Blog pagination */
.posts-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
.posts-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.posts-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-mid);
  background: var(--white);
  border: 1px solid rgba(64,102,124,0.15);
  transition: all var(--dur-fast);
}
.posts-pagination .page-numbers.current {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.posts-pagination .page-numbers:hover:not(.current) {
  background: var(--teal-pale);
  color: var(--teal);
  border-color: var(--teal);
}
.posts-pagination .prev, .posts-pagination .next {
  width: auto;
  padding: 0 18px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.section-404 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: var(--parchment);
}
.container-404 {
  max-width: 720px;
  width: 100%;
  text-align: center;
  position: relative;
}
.error-404__deco {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 700;
  color: var(--teal);
  opacity: 0.06;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.error-404__icon { font-size: 4rem; margin-bottom: 16px; position: relative; }
.error-404__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  position: relative;
}
.error-404__desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.8;
  position: relative;
}
.error-404__links { position: relative; margin-top: 20px; }
.error-404__links-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.error-404__links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.error-link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  border: 1px solid rgba(64,102,124,0.12);
  transition: all var(--dur-fast);
  gap: 4px;
}
.error-link-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.error-link-card__icon { font-size: 1.5rem; margin-bottom: 8px; }
.error-link-card strong { font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.error-link-card span { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4; }

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all var(--dur) var(--ease-out);
  margin-bottom: 16px;
}
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }

.event-date {
  background: var(--teal);
  color: white;
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
}
.event-date__day   { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.event-date__month { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; margin-top: 2px; }

.event-info h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }
.event-info p  { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 8px; }
.event-meta    { display: flex; flex-wrap: wrap; gap: 12px; }
.event-meta span { font-size: 0.8rem; color: var(--ink-soft); display: flex; align-items: center; gap: 4px; }

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-text strong { display: block; font-weight: 600; color: var(--ink); margin-bottom: 2px; font-size: 0.9rem; }
.contact-text a, .contact-text span { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion { border-top: 1px solid var(--parchment-3); }
.accordion-item { border-bottom: 1px solid var(--parchment-3); }
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--dur-fast);
}
.accordion-trigger:hover { color: var(--teal); }

.accordion-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--parchment-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease-out);
  font-weight: 300;
}
.accordion-item.open .accordion-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.accordion-item.open .accordion-panel {
  max-height: 800px;
  padding-bottom: 20px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 24px;
}
.compare-table th {
  background: var(--teal);
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.compare-table td { padding: 13px 20px; border-bottom: 1px solid var(--parchment-3); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--parchment); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 80px 28px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto 56px;
}

/* .footer-logo is replaced by .footer-logo-wordmark (see top of file) */

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 270px;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--dur-fast);
}
.social-link:hover { background: var(--teal); color: white; transform: translateY(-2px); }

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-fast);
}
.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }

.text-white  { color: white; }
.text-teal   { color: var(--teal); }
.text-yellow { color: var(--yellow); }
.text-soft   { color: var(--ink-soft); }

.max-w-lg { max-width: 680px; margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 560px; margin-left: auto; margin-right: auto; }

.mb-4  { margin-bottom: 4px;  }
.mb-8  { margin-bottom: 8px;  }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.divider { border: none; border-top: 1px solid var(--parchment-3); margin: 36px 0; }

.box-light {
  background: var(--parchment-2);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.box-teal {
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border-left: 4px solid var(--teal-light);
}

/* ============================================================
   ANIMATIONS / SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__floating-card { display: none; }
  .hero__left { padding: 160px 40px 100px; min-height: 90svh; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse .col-media,
  .two-col--reverse .two-col__media { order: 0; }
  .two-col--reverse .col-content,
  .two-col--reverse .two-col__content { order: 0; }
  .split-section { grid-template-columns: 1fr; }
  .split-section__media { aspect-ratio: 16/9; height: auto; }
  .split-section__media img { min-height: unset; }
  .split-section__content { padding: 60px 40px; }
  .page-hero { padding: 130px 28px 100px; }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  /* Spacing — .section has zero horizontal padding; container provides it */
  .section    { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  .section-sm { padding: 40px 0; }
  .container  { padding: 0 20px; }

  /* Sections that render content WITHOUT an inner .container need side padding */
  .big-statement    { padding: 60px 20px; }
  .cta-section      { padding: 60px 20px; }
  .newsletter-section { padding: 52px 20px; }
  .page-hero        { padding: 100px 20px 120px; }
  .site-footer      { padding: 60px 20px 32px; }

  /* Navigation */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px 24px;
    gap: 2px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { color: var(--ink-mid) !important; padding: 12px 16px; width: 100%; }
  .nav-menu a:hover { background: var(--parchment-2) !important; color: var(--teal) !important; }
  .nav-cta-btn { display: block; text-align: center; margin: 10px 0 0; }
  .nav-toggle { display: flex; }
  .site-header { background: var(--teal-dark); }
  .logo-brand { color: white; }
  .logo-sub   { color: rgba(255,255,255,0.6); }
  .site-header.scrolled .logo-brand { color: var(--teal-dark); }
  .site-header.scrolled .logo-sub   { color: var(--ink-soft); }
  .site-header.scrolled { background: rgba(250,248,245,0.96); }

  /* Hero */
  .hero__left { padding: 120px 20px 64px; }
  .hero__floating-card { display: none; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__stat-row { gap: 24px; }

  /* Page hero text */
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  /* CSS-class grids → single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }

  /* Override inline 2-column grids written directly on template elements */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Reduce large inline padding (48px) inside template card wrappers */
  [style*="padding:48px"] { padding: 28px !important; }

  /* Service cards */
  .service-card__head { padding: 24px; }
  .service-card__body { padding: 20px 24px; }

  /* Split section */
  .split-section__content { padding: 40px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Forms — 16px min prevents iOS auto-zoom on focus */
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group textarea,
  .form-group select,
  .nl-form input[type="email"] { font-size: max(16px, 0.92rem); }

  /* Event cards — date + info on first row, button spans full width */
  .event-card { grid-template-columns: 60px 1fr; gap: 16px; padding: 20px 16px; }
  .event-card .btn { grid-column: 1 / -1; }

  /* CTA groups — stack buttons vertically */
  .cta-group { flex-direction: column; align-items: stretch; }
  .cta-group .btn { justify-content: center; }

  /* Newsletter form */
  .nl-form { flex-direction: column; }
  .nl-form input { min-width: unset; }

  /* Booking modal */
  .hdvb-modal { padding: 12px; }
  .modal-box { max-height: 92vh; border-radius: 16px; }
  .modal-header { padding: 16px 20px; }
  .modal-header h3 { font-size: 1.15rem; }
  .modal-body { padding: 20px 16px; }
  .modal-body iframe { min-height: 400px; height: calc(100vh - 180px); }

  /* Comparison table */
  .comparison-table { font-size: 0.82rem; }
  .comparison-table th,
  .comparison-table td { padding: 8px; }

  /* Portrait images → landscape crop on mobile to save vertical space */
  .col-media img,
  .two-col__media img { aspect-ratio: 4/3; }
  .team-card__img,
  .team-card__photo img { aspect-ratio: 4/3; }

  /* Blog */
  .posts-grid { grid-template-columns: 1fr; }
}

/* ---- Small phones (≤480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section    { padding: 52px 0; }
  .big-statement  { padding: 48px 16px; }
  .cta-section    { padding: 52px 16px; }
  .page-hero      { padding: 88px 16px 110px; }
  .site-footer    { padding: 52px 16px 28px; }

  .hero__title  { font-size: 2.2rem; line-height: 1.12; }
  .hero__left   { padding: 100px 16px 56px; }
  .hero__stat-num { font-size: 1.8rem; }
  .hero__stat-row { gap: 20px; }
  .display-xl   { font-size: 3rem; }

  .service-card__head { padding: 20px; }
  .service-card__body { padding: 16px 20px; }

  /* Event card: fully stacked on very small screens */
  .event-card { grid-template-columns: 1fr; }
  .event-date-box { max-width: 72px; }

  .error-404__links-grid { grid-template-columns: 1fr; }
  .article-nav { flex-direction: column; }
  .posts-grid  { grid-template-columns: 1fr; }
}
