/* ============================================
   De Harmonie - Vergaderlocatie Website
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #1a2744;
  --color-primary-light: #243352;
  --color-primary-dark: #111b30;
  --color-gold: #c8a55a;
  --color-gold-light: #dbb96e;
  --color-gold-dark: #b08f45;
  --color-white: #ffffff;
  --color-off-white: #f8f7f4;
  --color-light-gray: #f0eeea;
  --color-gray: #6b7280;
  --color-text: #333333;
  --color-text-light: #555555;
  --color-success: #22c55e;
  --color-error: #ef4444;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --container-max: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26, 39, 68, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo img {
  height: 48px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav__item {
  position: relative;
}

.nav__link {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-gold);
  background: rgba(255,255,255,0.08);
}

/* Dropdown */
.nav__dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform var(--transition);
}

.nav__item:hover .nav__dropdown-toggle::after {
  transform: rotate(-135deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  padding: 8px 0;
  margin-top: 8px;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown a:hover {
  background: var(--color-off-white);
  color: var(--color-gold);
}

.nav__cta {
  margin-left: 16px;
}

.nav__cta .btn-primary {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200, 165, 90, 0.35);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-off-white);
  border-color: var(--color-off-white);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-outline--dark {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline--dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary--large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 24px 60px;
}

.page-hero--small {
  min-height: 35vh;
  padding: 120px 24px 50px;
}

.page-hero--dark {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.page-hero--dark::before {
  display: none;
}

.page-hero--dark::after {
  display: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 700;
}

.page-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.875rem;
  color: var(--color-gray);
}

.breadcrumb a {
  color: var(--color-gray);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--color-gray);
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--color-off-white);
}

.section--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.section--dark .section__subtitle {
  color: rgba(255,255,255,0.75);
}

/* ============================================
   Grids
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

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

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card__text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.card__price {
  font-size: 0.9rem;
  color: var(--color-gold-dark);
  font-weight: 600;
}

.card__link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.card--featured {
  border: 2px solid var(--color-gold);
}

/* Image Card */
.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.85), transparent);
  padding: 32px 24px 24px;
  color: var(--color-white);
}

.image-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.image-card__subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   USP Blocks
   ============================================ */
.usp-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.usp-block__item {
  text-align: center;
  padding: 32px 24px;
}

.usp-block__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--color-gold);
}

.usp-block__icon svg {
  width: 100%;
  height: 100%;
}

.usp-block__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.usp-block__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ============================================
   Gallery Grid
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

/* ============================================
   Extras Table
   ============================================ */
.extras-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.extras-table thead {
  background: var(--color-primary);
  color: var(--color-white);
}

.extras-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-body);
}

.extras-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-light-gray);
}

.extras-table--rounded {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ============================================
   Multi-step Form
   ============================================ */
.progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 0 20px;
}

.progress-bar__step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-gray);
  white-space: nowrap;
}

.progress-bar__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-light-gray);
  color: var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.progress-bar__step.active .progress-bar__number {
  background: var(--color-gold);
  color: var(--color-primary);
}

.progress-bar__step.completed .progress-bar__number {
  background: var(--color-primary);
  color: var(--color-white);
}

.progress-bar__step.active .progress-bar__label,
.progress-bar__step.completed .progress-bar__label {
  color: var(--color-primary);
  font-weight: 500;
}

.progress-bar__line {
  width: 60px;
  height: 2px;
  background: var(--color-light-gray);
  margin: 0 12px;
  flex-shrink: 0;
  transition: background var(--transition);
}

.progress-bar__line.active {
  background: var(--color-gold);
}

.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step__title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-step__subtitle {
  color: var(--color-text-light);
  margin-bottom: 32px;
}

/* Form Elements */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.form-group label .required {
  color: var(--color-error);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 165, 90, 0.15);
}

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

/* Radio & Checkbox groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-option,
.checkbox-option {
  flex: 1 1 calc(50% - 6px);
  min-width: 200px;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  display: none;
}

.radio-option label,
.checkbox-option label {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 2px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 400;
  margin-bottom: 0;
}

.radio-option label::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.checkbox-option label::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: var(--radius-sm);
  margin-right: 12px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.radio-option input:checked + label,
.checkbox-option input:checked + label {
  border-color: var(--color-gold);
  background: rgba(200, 165, 90, 0.05);
}

.radio-option input:checked + label::before {
  border-color: var(--color-gold);
  background: var(--color-gold);
  box-shadow: inset 0 0 0 3px var(--color-white);
}

.checkbox-option input:checked + label::before {
  border-color: var(--color-gold);
  background: var(--color-gold);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2.5-2.5a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.radio-option label:hover,
.checkbox-option label:hover {
  border-color: var(--color-gold-light);
}

/* Privacy checkbox */
.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.privacy-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
}

/* Form buttons */
.form-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.form-buttons .btn-back {
  color: var(--color-gray);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 14px 24px;
}

.form-buttons .btn-back:hover {
  color: var(--color-primary);
}

/* Form container */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.form-success.active {
  display: block;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success__icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-success);
}

.form-success__title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.form-success__text {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 165, 90, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info__value {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-info__value a {
  color: var(--color-text-light);
}

.contact-info__value a:hover {
  color: var(--color-gold);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Bereikbaarheid */
.bereikbaarheid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bereikbaarheid-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.bereikbaarheid-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--color-gold);
}

.bereikbaarheid-item__icon svg {
  width: 100%;
  height: 100%;
}

.bereikbaarheid-item__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bereikbaarheid-item__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Contact form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

/* Social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(200, 165, 90, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Activities List
   ============================================ */
.activities-list {
  list-style: none;
}

.activities-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.activities-list li:last-child {
  border-bottom: none;
}

.activities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col__logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col__text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom__social {
  display: flex;
  gap: 16px;
}

.footer-bottom__social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-bottom__social a:hover {
  color: var(--color-gold);
}

.footer-bottom__social svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   WhatsApp Float + Mobile CTA
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  padding: 12px 24px;
  z-index: 998;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.mobile-cta-bar .btn-primary {
  width: 100%;
  text-align: center;
  padding: 14px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav .container {
    height: 64px;
  }

  .nav__logo img {
    height: 36px;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__link {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .nav__cta .btn-primary {
    display: block;
    text-align: center;
  }

  .nav__item:hover .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    margin-top: 0;
    border-radius: 0;
  }

  .nav__dropdown a {
    color: rgba(255,255,255,0.7);
    padding: 10px 32px;
  }

  .nav__dropdown a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--color-gold);
  }

  .page-hero {
    min-height: 40vh;
    padding: 100px 24px 50px;
  }

  .page-hero--small {
    min-height: 30vh;
    padding: 100px 24px 40px;
  }

  .section {
    padding: 60px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .usp-block {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .bereikbaarheid-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 32px 24px;
  }

  .progress-bar {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .progress-bar__label {
    display: none;
  }

  .progress-bar__line {
    width: 32px;
  }

  .radio-option,
  .checkbox-option {
    flex: 1 1 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 80px;
  }

  .mobile-cta-bar {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .extras-table {
    font-size: 0.85rem;
  }

  .extras-table th,
  .extras-table td {
    padding: 10px 12px;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .usp-block {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 24px 16px;
  }
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq {
  max-width: 700px;
  margin: 2rem auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--color-gold-dark);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-gold);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"]::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 0 20px;
}
.faq-answer p {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   Accessibility
   ============================================ */

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-gold);
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.btn-primary:focus-visible,
.btn-outline:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(200, 165, 90, 0.25);
}
.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* ============================================
   Social Proof Notification
   ============================================ */
.social-proof {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 900;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  font-family: var(--font-body);
}
.social-proof.show {
  opacity: 1;
  transform: translateX(0);
}
.social-proof__icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-proof__icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.social-proof__text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text);
}
.social-proof__text strong {
  color: var(--color-primary);
}
.social-proof__close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #999;
  padding: 2px;
  line-height: 1;
}
@media (max-width: 768px) {
  .social-proof {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 80px;
  }
}


/* ============================================
   WORLD-CLASS ANIMATIONS & EFFECTS
   ============================================ */

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  z-index: 10000;
  width: 0%;
  transition: width 0.05s linear;
}

/* --- Ken Burns Hero --- */
.page-hero::before {
  content: '';
  position: absolute;
  inset: -5%;
  background: inherit;
  background-size: cover;
  background-position: inherit;
  animation: kenBurns 25s ease-in-out infinite alternate;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,39,68,0.4) 0%, rgba(26,39,68,0.7) 100%);
  z-index: 1;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

/* --- Hero Text Reveal --- */
.word-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.word-wrap .word {
  display: inline-block;
  transform: translateY(110%);
  animation: wordReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
@keyframes wordReveal {
  to { transform: translateY(0); opacity: 1; }
}
.page-hero__subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: subtitleReveal 0.8s ease 0.6s forwards;
}
@keyframes subtitleReveal {
  to { opacity: 1; transform: translateY(0); }
}
.page-hero .btn-primary,
.page-hero .btn-outline {
  opacity: 0;
  transform: translateY(20px);
  animation: subtitleReveal 0.6s ease 0.9s forwards;
}

/* --- Staggered Scroll Reveals --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Gold Shimmer on Headlines --- */
.gold-shimmer {
  background: linear-gradient(
    90deg,
    #b8953a 0%, #e8d5a3 25%, #c8a55a 50%, #e8d5a3 75%, #b8953a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}
@keyframes goldShimmer {
  to { background-position: 200% center; }
}

/* --- Magnetic Button Base --- */
.btn-primary,
.btn-outline,
.btn-nav {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.15s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* --- Liquid Fill Hover --- */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}
.btn-primary:hover::before {
  width: 320px;
  height: 320px;
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 8px 25px rgba(26, 39, 68, 0.3);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--color-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}
.btn-outline:hover::before {
  width: 320px;
  height: 320px;
}
.btn-outline:hover {
  color: var(--color-primary);
  border-color: var(--color-gold);
}

/* --- Page Transitions --- */
body {
  animation: pageIn 0.4s ease;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
body.page-exit {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* --- Number Counter --- */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* --- WhatsApp Pulse --- */
.whatsapp-float {
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

/* --- Footer Link Underlines --- */
.footer-col ul li a {
  position: relative;
  display: inline-block;
}
.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.footer-col ul li a:hover::after {
  width: 100%;
}

/* --- CTA Gradient Shift --- */
.cta-section {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Table Row Hovers --- */
.extras-table tbody tr {
  transition: background 0.25s ease, transform 0.25s ease;
}
.extras-table tbody tr:hover {
  background: rgba(200, 165, 90, 0.06);
}

/* --- Gallery Hover Overlay --- */
.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-grid__item:hover::after {
  opacity: 1;
}

/* --- USP Icon Bounce --- */
.usp-block__item:hover .usp-block__icon svg {
  animation: iconBounce 0.5s ease;
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

/* --- Mobile Menu Stagger --- */
@media (max-width: 768px) {
  .nav__menu.open .nav__item,
  .nav__menu.open .nav__cta {
    opacity: 0;
    transform: translateX(30px);
    animation: menuItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .nav__menu.open .nav__item:nth-child(1) { animation-delay: 0.05s; }
  .nav__menu.open .nav__item:nth-child(2) { animation-delay: 0.1s; }
  .nav__menu.open .nav__item:nth-child(3) { animation-delay: 0.15s; }
  .nav__menu.open .nav__cta { animation-delay: 0.25s; }
  @keyframes menuItemIn {
    to { opacity: 1; transform: translateX(0); }
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .page-hero::before { animation: none; transform: none; }
  .scroll-progress { display: none; }
}


/* ============================================
   ROUND 2: VERFIJNINGEN
   ============================================ */

/* --- Tighter heading typography --- */
h1, h2 {
  letter-spacing: -0.02em;
}
.page-hero__title {
  letter-spacing: -0.03em;
}
.section__subtitle,
.page-hero__subtitle {
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* --- Overline label style --- */
.section__header .overline,
[style*="letter-spacing: 3px"] {
  font-family: var(--font-body);
  opacity: 0.9;
}

/* --- Lanceeractie section breathing room --- */
.lanceeractie {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* --- USP block hover lift --- */
.usp-block__item {
  padding: 32px 24px;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
              box-shadow 0.4s ease;
  background: var(--color-white);
}
.usp-block__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* --- USP icon size + color --- */
.usp-block__icon {
  margin-bottom: 16px;
}
.usp-block__icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--color-gold);
  transition: transform 0.5s ease;
}

/* --- Section wave dividers --- */
.section--alt {
  position: relative;
}
.section--alt::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 30' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,30 L0,15 Q360,0 720,15 Q1080,30 1440,15 L1440,30Z' fill='%23f8f7f4'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

/* --- Nav glassmorphism on scroll --- */
.nav.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(26, 39, 68, 0.92);
}

/* --- Better table styling --- */
.extras-table thead th {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* --- CTA section polish --- */
.cta-section {
  background: linear-gradient(135deg, #1a2744 0%, #243556 50%, #1a2744 100%);
}
.cta-section__title {
  letter-spacing: -0.02em;
}

/* --- Footer polish --- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* --- Better mobile CTA bar --- */
.mobile-cta-bar {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* --- Pricing table "Meest gekozen" highlight --- */
.extras-table tbody tr:nth-child(3) {
  position: relative;
}
.extras-table tbody tr:nth-child(3) td {
  font-weight: 600;
  color: var(--color-primary);
}
.extras-table tbody tr:nth-child(3) td:first-child::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}
.pricing-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 2px solid transparent;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.pricing-card--featured {
  border-color: var(--color-gold);
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(200, 165, 90, 0.15);
  z-index: 2;
}
.pricing-card--featured:hover {
  transform: scale(1.06) translateY(-6px);
}
.pricing-card--featured::before {
  content: 'Meest gekozen';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-card__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.pricing-card__unit {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-bottom: 16px;
}
.pricing-card__detail {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.5;
  min-height: 2.8em;
}
.pricing-card__btn {
  width: 100%;
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 8px;
  }
  .pricing-card--featured {
    transform: none;
    order: -1;
  }
  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 800px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  text-align: center;
}
.trust-bar__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-bar__label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 500;
}
.trust-bar__stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-top: 4px;
  letter-spacing: 2px;
}
.trust-bar__divider {
  width: 1px;
  height: 50px;
  background: var(--color-light-gray);
}
@media (max-width: 768px) {
  .trust-bar {
    gap: 0;
  }
  .trust-bar__item {
    padding: 16px 20px;
    flex: 1 1 40%;
  }
  .trust-bar__divider {
    display: none;
  }
  .trust-bar__number {
    font-size: 1.8rem;
  }
}

/* --- Lanceeractie (replaces inline styles) --- */
.lanceeractie {
  padding: 3rem 0;
  text-align: center;
}
.lanceeractie__overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.lanceeractie__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}
.lanceeractie__text {
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}


/* --- Mobile table overflow fix --- */
@media (max-width: 768px) {
  .extras-table--rounded {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.active img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover {
  opacity: 1;
}
