@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("assets/fonts/Cinzel-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("assets/fonts/Cinzel-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f2f0eb;
  --bg-soft: #e8e3da;
  --text: #181818;
  --text-soft: rgba(24, 24, 24, 0.72);
  --white: #ffffff;
  --dark: #111111;
  --gold: #b98a2a;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  --container: 1240px;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --header-height: 92px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Cinzel", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: var(--transition);
}

.site-header.scrolled {
  backdrop-filter: blur(16px);
  background: rgba(17, 17, 17, 0.42);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: clamp(96px, 11vw, 148px);
  height: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 50%),
    url("https://images.unsplash.com/photo-1516684732162-798a0062be99?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  transform: scale(1.02);
}

.hero-vimeo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.02);
  border: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-logo {
  width: min(380px, 70vw);
  height: auto;
  margin-bottom: 18px;
}

.hero-subtitle {
  position: absolute;
  bottom: 72px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.75;
  opacity: 0.92;
}

.hero-subtitle strong {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
}

.btn-primary {
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* SECTION SHARED */
.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.92;
  font-weight: 500;
  color: var(--dark);
}

.section-title span {
  color: var(--dark);
}

.section-title em {
  font-style: italic;
  font-weight: 600;
}

.section-title.alt {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.section-text {
  margin-top: 18px;
  max-width: 620px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* CERT */
.cert-section {
  position: relative;
  background:
    url("assets/img/BG-Calidad.png") center top / contain no-repeat,
    var(--bg-soft);
  aspect-ratio: 1921 / 1420;
  min-height: 720px;
  padding: clamp(16px, 1.5vw, 30px) 0 clamp(30px, 3.5vw, 56px);
  overflow: hidden;
}

.section-overlap {
  margin-top: -50px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.cert-curve-top {
  display: none;
  pointer-events: none;
}

.cert-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100%;
  padding-top: clamp(56px, 5vw, 199px);
}

.cert-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.cert-assets {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
  width: min(100%, 736px);
}

.cert-quality-image,
.cert-seal-image {
  display: block;
  height: auto;
  object-fit: contain;
}

.cert-quality-image {
  width: min(100%, 656px);
}

.cert-seal-image {
  width: min(72%, 420px);
}

/* PRODUCTOS */
.products-section {
  position: relative;
  overflow: visible;
  margin-top: 0;
  padding: 40px 0 110px;
  background: #f3efe7;
  z-index: 3;
}

.products-bg {
  position: absolute;
  inset: 0;
  background:
    url("assets/img/BG-Productos.png") center top / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

.products-inner {
  position: relative;
  z-index: 2;
  padding-top: 360px;
}

.products-tagline {
  position: absolute;
  top: 18%;
  width: min(22vw, 300px);
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a;
  z-index: 4;
}

.products-tagline em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
}

.products-tagline strong {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 800;
  display: block;
}

.products-tagline-left {
  left: 3vw;
  text-align: right;
}

.products-tagline-right {
  right: 3vw;
  text-align: left;
}

.products-montage {
  display: block;
  position: absolute;
  z-index: 3;
  top: -460px;
  left: 50%;
  transform: translateX(-50%);
  width: min(85vw, 1360px);
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.14));
}

.products-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 110px;
}

.product-card {
  background: transparent;
  padding: 0 12px;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.product-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: #111111;
  display: block;
  padding-bottom: 6px;
  background-image: radial-gradient(ellipse at center, #ebd09e 0%, #bd822e 100%);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.product-card p {
  color: rgba(24, 24, 24, 0.78);
  line-height: 1.75;
  font-size: 0.95rem;
}

.product-card p:first-of-type {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(24, 24, 24, 0.92);
}

.product-card p:last-of-type {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
}

.products-nosotros {
  display: block;
  position: relative;
  z-index: 5;
  width: min(92vw, 1500px);
  margin: 0 auto -12vw;
  pointer-events: none;
}

/* STORY */
.story-section {
  position: relative;
  overflow: visible;
  padding: 0 0 110px;
  background: url("assets/img/BG-Video.png") center top / cover no-repeat, #111;
  z-index: 10;
}

.story-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}

.story-copy {
  max-width: 760px;
}

.story-copy .section-tag,
.story-copy .section-title,
.story-copy .section-text {
  color: var(--white);
}

.story-copy .section-text {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
}

.story-copy .section-text strong {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
}

.video-frame {
  position: relative;
  z-index: 10;
  width: min(92vw, 1500px);
  margin-top: clamp(-48px, -4vw, 0px);
  border-radius: 30px;
  padding: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 0;
  object-fit: cover;
  background: #000;
}

/* SOCIAL */
.social-section {
  position: relative;
  overflow: visible;
  padding: 120px 0;
  background: url("assets/img/BG-Social.png") center center / cover no-repeat;
  z-index: 11;
}

.social-inner {
  display: grid;
  grid-template-columns: 70fr 30fr;
  gap: 56px;
  align-items: center;
  max-width: 1600px;
  width: min(100% - 32px, 1600px);
  margin-inline: auto;
}

.social-cards {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  margin-top: -7vw;
}

.social-posoteos {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  position: relative;
  z-index: 3;
}

@media (min-width: 993px) {
  .social-cards {
    justify-content: flex-end;
  }
  .social-posoteos {
    width: 140%;
  }
}

.social-post {
  position: absolute;
  width: min(48%, 280px);
  aspect-ratio: 0.78 / 1;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 10px solid var(--white);
  background-size: cover;
  background-position: center;
}

.post-left {
  left: 0;
  bottom: 0;
  transform: rotate(-10deg);
  background-image:
    url("https://images.unsplash.com/photo-1515543904379-3d757afe72e2?auto=format&fit=crop&w=900&q=80");
}

.post-right {
  left: 180px;
  top: 0;
  transform: rotate(8deg);
  background-image:
    url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=900&q=80");
}

.social-copy strong {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
}

.social-links {
  margin-top: 14px;
  display: flex;
}

.social-links a {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAA;
  font-size: 3.2rem;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.social-links a:hover {
  opacity: 0.5;
}

/* FOOTER */
.site-footer {
  padding: 90px 0 50px;
  background: url("assets/img/BG-Formulario.png") center center / cover no-repeat, #121212;
  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.footer-row {
  width: 100%;
}

/* Row 1: headline + form */
.footer-row-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.footer-headline h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: #fff;
  margin: 0;
}

.footer-headline h2 .fh-normal {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400;
  display: block;
}

.footer-headline h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  display: block;
}

.footer-headline h2 strong {
  font-family: "Cinzel", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.35em;
  letter-spacing: 0.18em;
  display: block;
  margin-top: 15px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: "Cinzel", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #fff;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  background: #fff;
  border: 0;
  border-radius: 50px;
  color: #121212;
  font-family: "Cinzel", sans-serif;
  font-size: 0.95rem;
  padding: 12px 20px;
  outline: none;
  resize: none;
  width: 100%;
}

.form-field textarea {
  border-radius: 20px;
}

.form-field input:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}

.form-submit {
  align-self: flex-start;
  margin-top: 6px;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: "Cinzel", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover:not(:disabled) {
  background: #fff;
  color: #121212;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Validación */
.form-field.error input,
.form-field.error textarea {
  box-shadow: 0 0 0 2px #e05252;
}

.field-error {
  display: none;
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #f08080;
  padding-left: 4px;
}

.form-field.error .field-error {
  display: block;
}

/* Aviso éxito / error */
.form-notice {
  display: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.form-notice.success {
  display: block;
  background: rgba(100, 200, 120, 0.15);
  border: 1px solid rgba(100, 200, 120, 0.5);
  color: #a0e0a8;
}

.form-notice.error {
  display: block;
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.4);
  color: #f08080;
}

/* Row 2: logo + direccion */
.footer-row-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
}

.footer-logo {
  width: clamp(110px, 12vw, 160px);
  height: auto;
}

.footer-address p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.footer-address strong {
  font-family: "Cinzel", sans-serif;
  font-weight: 700;
  margin-right: 6px;
}

/* Row 3: nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.footer-nav a {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

/* Row 4: credits */
.footer-credits {
  text-align: center;
}

.footer-credits p {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
}

/* ACCESIBILIDAD */
.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;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(82vw, 320px);
    padding: 22px;
    background: rgba(17,17,17,0.95);
    transform: translateX(100%);
    transition: var(--transition);
    overflow-x: hidden;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    justify-content: flex-end;
  }

  .social-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-contact,
  .footer-nav {
    text-align: center;
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }

  .social-cards {
    min-height: 360px;
    margin-top: 0;
    justify-content: center;
  }

  .social-posoteos {
    width: 100%;
    transform: none;
  }

  .social-copy {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .post-right {
    left: 140px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 88svh;
  }

  .hero-vimeo {
    width: 220vh;
    height: 56.25vw;
  }

  .header-inner {
    min-height: 76px;
  }

  .main-nav {
    top: 76px;
  }

  .section-overlap {
    margin-top: -28px;
    border-top-left-radius: 38px;
    border-top-right-radius: 38px;
  }

  .cert-section,
  .products-section,
  .story-section,
  .social-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }



  .cert-section {
    min-height: 500px;
    background-position: center top;
    padding-top: 16px;
    padding-bottom: 30px;
  }

  .cert-inner {
    padding-top: clamp(34px, 4vw, 56px);
  }

  .cert-badge-wrap {
    display: block;
    text-align: center;
  }

  .cert-assets {
    width: min(100%, 496px);
    gap: 18px;
  }

  .cert-quality-image {
    width: min(100%, 448px);
  }

  .cert-seal-image {
    width: min(62%, 200px);
  }

  .social-cards {
    min-height: 300px;
    margin-top: 0;
    justify-content: center;
  }

  .social-posoteos {
    width: 100%;
    transform: none;
  }

  .post-right {
    left: 110px;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .cert-section {
    min-height: 420px;
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .cert-inner {
    padding-top: 24px;
  }

  .cert-assets {
    width: min(100%, 92vw);
    gap: 14px;
  }

  .cert-quality-image {
    width: min(100%, 74vw);
  }

  .cert-seal-image {
    width: min(60%, 176px);
  }

  .brand-logo {
    width: 86px;
  }

  .hero-logo {
    width: min(320px, 82vw);
  }

  .hero-subtitle {
    font-size: 0.94rem;
  }

  .product-card {
    padding: 22px 18px;
  }

  .social-cards {
    min-height: 240px;
    margin-top: 0;
    justify-content: center;
  }

  .social-posoteos {
    width: 100%;
    transform: none;
  }

  .social-post {
    border-width: 6px;
    border-radius: 18px;
  }

  .post-right {
    left: 84px;
  }

}

@media (max-width: 992px) {
  .products-section {
    margin-top: 0;
    padding: 108px 0 80px;
  }

  .products-inner {
    min-height: 700px;
    padding-top: 280px;
  }

  .products-montage {
    top: -340px;
    width: min(85vw, 1020px);
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-top: 90px;
  }
}

@media (max-width: 768px) {
  .products-section {
    margin-top: 0;
    padding: 88px 0 70px;
  }

  .products-inner {
    min-height: 560px;
    padding-top: 200px;
  }

  .products-montage {
    top: -230px;
    width: 85vw;
  }

  .products-grid {
    margin-top: 70px;
  }

  .product-card {
    padding: 22px 18px;
  }
}

@media (max-width: 576px) {
  .products-section {
    margin-top: 0;
    padding: 70px 0 56px;
  }

  .products-inner {
    min-height: 440px;
    padding-top: 140px;
  }

  .products-montage {
    top: -150px;
    width: 85vw;
  }

  .products-grid {
    margin-top: 50px;
  }

  .product-card h3 {
    font-size: 1.7rem;
  }

  .product-card p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

/* ── RESPONSIVE: nuevas secciones ── */
@media (max-width: 992px) {
  .products-tagline {
    display: none;
  }

  .products-nosotros {
    margin-bottom: 0;
  }

  .video-frame {
    width: 90vw;
    margin-top: 0;
  }

  .story-section {
    margin-top: 0;
    padding-top: 60px;
  }

  .social-inner {
    grid-template-columns: 1fr;
  }

  .social-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .social-cards {
    justify-content: center;
    margin-top: 0;
  }

  .social-posoteos {
    width: 100%;
    transform: none;
  }

  .social-copy {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-row-form,
  .footer-row-info {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-headline h2 {
    font-size: clamp(2rem, 7vw, 3rem);
    text-align: center;
  }

  .footer-address {
    text-align: center;
  }
}