/* ============================================================
   EETHUIS DE WAAG — Stylesheet
   Fonts: Playfair Display + DM Sans
   Palette: #C8102E (rood) | #F5F0EB (crème) | #1A1A1A (donker)
   ============================================================ */

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

:root {
  --red:       #C8102E;
  --red-dark:  #a50d25;
  --cream:     #F5F0EB;
  --cream-alt: #EDE6DC;
  --dark:      #1A1A1A;
  --mid:       #3A3A3A;
  --muted:     #6B6B6B;
  --white:     #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);

  --max-w: 1180px;
  --section-pad: clamp(60px, 8vw, 120px);
}

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

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.85; }

/* ---- Media fill rule ------------------------------------- */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__media img, .hero__img,
.sfeer__image-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---- Typography ------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--mid);
  max-width: 640px;
}

/* ---- Logo script ----------------------------------------- */
.logo-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--red);
  letter-spacing: -0.01em;
}
.logo-script--footer {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  display: block;
  margin-bottom: 8px;
}

/* ---- Utility --------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section { padding: var(--section-pad) 0; }
.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label--red { color: var(--red); }

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.section-header p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.65); }

.text-red { color: var(--red); }

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  min-height: 48px;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }

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

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

.btn--lg { padding: 18px 44px; font-size: 1.05rem; min-height: 56px; }
.btn--full { width: 100%; }

/* ---- HEADER ---------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.desktop-nav a:hover {
  color: var(--white);
  border-bottom-color: var(--red);
  opacity: 1;
}
.desktop-nav .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.desktop-nav .nav-cta:hover { background: var(--red-dark); border-bottom-color: transparent; }

/* ---- Hamburger ------------------------------------------- */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE MENU OVERLAY --------------------------------- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  height: 100svh;
  width: 100%;
  background: var(--dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  min-height: 100svh;
}
.mobile-menu__close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close svg { width: 28px; height: 28px; }

.mobile-menu__list {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
}
.mobile-menu__list li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__item {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  padding: 20px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu__item:hover {
  color: var(--red);
  padding-left: 8px;
  opacity: 1;
}
.mobile-menu__item--cta {
  color: var(--red);
  margin-top: 16px;
  font-style: italic;
}

.mobile-menu__footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.8;
}
.mobile-menu__footer a {
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 4px;
}

/* ---- HERO ------------------------------------------------ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.35) 0%,
    rgba(26,26,26,0.55) 60%,
    rgba(26,26,26,0.7) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: 800px;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.55);
  animation: bounce 2s infinite;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__scroll svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- INTRO ----------------------------------------------- */
.intro { background: var(--cream); }
.intro__text {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.intro__text h2 { margin-bottom: 20px; }
.intro__text .lead { margin: 0 auto; }

/* ---- CARD GRID ------------------------------------------- */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Icon cards */
.card--icon {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,16,46,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card--icon:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(200,16,46,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.card__icon svg { width: 26px; height: 26px; }
.card--icon h3 { margin-bottom: 10px; color: var(--dark); }
.card--icon p  { color: var(--muted); font-size: 0.925rem; line-height: 1.6; }

/* Food cards */
.card--food {
  background: #252525;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.card--food:hover { transform: translateY(-4px); }
.card__media {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.card--food:hover .card__media img { transform: scale(1.04); }
.card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.card--food h3 { color: var(--white); font-size: 1.4rem; }
.card__hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
}
.card--food p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; flex: 1; }
.card--food .btn { align-self: flex-start; margin-top: 4px; }

/* Menu note */
.menu-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.menu-note svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--red); }

/* ---- SFEER ----------------------------------------------- */
.sfeer { background: var(--cream); overflow: hidden; }
.sfeer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.sfeer__image-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.sfeer__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sfeer__content h2 { margin-bottom: 20px; }
.sfeer__content p  { color: var(--mid); margin-bottom: 16px; font-size: 0.975rem; }
.sfeer__list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sfeer__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--mid);
  font-size: 0.925rem;
}
.sfeer__list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}

/* ---- INFO BAR -------------------------------------------- */
.info-bar {
  background: var(--red);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) 0;
}
.info-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.info-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.info-bar__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.info-bar__icon svg { width: 20px; height: 20px; color: var(--white); }
.info-bar__item h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}
.info-bar__item p { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.7; }
.info-bar__item a {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  margin-top: 4px;
  transition: color 0.2s;
}
.info-bar__item a:hover { color: var(--white); opacity: 1; }

/* Hours table */
.hours-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
}
.hours-table td { padding: 3px 0; }
.hours-table td:last-child { padding-left: 16px; font-weight: 500; color: var(--white); }
.hours-sub { color: rgba(255,255,255,0.55) !important; font-style: italic; font-size: 0.82rem !important; }

/* ---- CONTACT --------------------------------------------- */
.contact-section { background: var(--white); }
.contact-section .section-header { margin-bottom: 48px; }
.contact-section .section-header p a { color: var(--red); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; gap: 16px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(26,26,26,0.15);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Contact info panel */
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--mid);
}
.contact-detail-row svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--red); margin-top: 2px;
}
.contact-detail-row a { color: var(--dark); transition: color 0.2s; }
.contact-detail-row a:hover { color: var(--red); opacity: 1; }

.contact-hours-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 8px;
}
.contact-hours-box h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.hours-table--sm { color: var(--mid); }
.hours-table--sm td { padding: 3px 0; font-size: 0.84rem; color: var(--mid); }
.hours-table--sm td:last-child { padding-left: 16px; font-weight: 500; color: var(--dark); }

/* ---- FOOTER ---------------------------------------------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 60px) 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--red); opacity: 1; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  font-size: 0.875rem;
}
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(20px, 5vw, 60px);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ---- RESPONSIVE ------------------------------------------ */

/* Tablet */
@media (max-width: 900px) {
  .card-grid--2 { grid-template-columns: 1fr; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .sfeer__inner  { grid-template-columns: 1fr; }
  .sfeer__image-wrap { aspect-ratio: 16/9; }
  .info-bar__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }
}

/* Mobile */
@media (max-width: 600px) {
  .card-grid--3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .sfeer__image-wrap { aspect-ratio: 4/3; }
}

/* Prevent horizontal scroll */
body, html { max-width: 100%; overflow-x: hidden; }

/* Body scroll lock when menu open */
body.menu-open { overflow: hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

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

/* ---- Hero button explicit override ----------------------- */
.hero .btn--primary {
  background: var(--red) !important;
  color: var(--white) !important;
  border-color: var(--red) !important;
}

/* ---- Icon card mobile improvements ---------------------- */
@media (max-width: 600px) {
  .card--icon { padding: 28px 20px; }
  .card--icon p { font-size: 0.95rem; }
}

/* ---- Menu section: 3-col food cards on desktop ---------- */
.menu-section .card-grid--3 { gap: 20px; }
.menu-section .card--food .card__body { padding: 22px; }

/* ---- Hero CTA: solid red, strong shadow for hero visibility */
.hero__content .btn {
  background: #C8102E !important;
  color: #ffffff !important;
  border: 2px solid #C8102E !important;
  box-shadow: 0 4px 24px rgba(200,16,46,0.55), 0 2px 8px rgba(0,0,0,0.35) !important;
}
.hero__content .btn:hover {
  background: #a50d25 !important;
  border-color: #a50d25 !important;
}

/* ---- Tighten gap between menu section and sfeer section -- */
.menu-section { padding-bottom: clamp(40px, 5vw, 80px); }
.sfeer { padding-top: clamp(40px, 5vw, 80px); }
