@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Great+Vibes&display=swap');

:root {
  /* OPTION A — Weiches Salbei-Teal + Magenta */
  --bg-dark: #192B26;
  --bg-light: #EBF0ED;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-light: #F0F5F2;
  --accent: #C8005A;
  --accent-secondary: #E8D5A3;
  --highlight: #FF007F;
  --text-dark-theme: #E8EDE9;
  --text-light-theme: #152019;
  --green-deep: #3D6155;
  --green-mid: #5D8272;
  --green-light: #8BAD9D;
  --green-pale: #C0D5CB;

  /* Typography */
  --font-headline: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Great Vibes', cursive;
  
  /* Styling */
  --radius-large: 0px; /* Sharp, editorial, architectural edges */
  --shadow-soft: 0 15px 40px rgba(0,0,0,0.06);
  --shadow-dark: 0 30px 60px rgba(0,0,0,0.6);
  --transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1); /* Slower, cinematic ease */
}

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

html {
  overflow-x: hidden;
}

body {
  background: #192B26;
  color: var(--text-dark-theme);
  font-family: var(--font-body);
  line-height: 1.85;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Magenta-Glow oben links — auf allen Seiten */
body::before {
  content: '';
  position: fixed;
  top: -5%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(200, 0, 90, 0.10) 0%, transparent 65%);
  animation: glowDrift1 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* Gold-Glow unten rechts */
body::after {
  content: '';
  position: fixed;
  bottom: -8%;
  right: -10%;
  width: 45%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  animation: glowDrift2 28s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* ===  VIDEO HINTERGRUND === */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #192B26;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

@keyframes glowDrift1 {
  0%   { transform: translate(0,0) scale(1); opacity: 0.8; }
  50%  { transform: translate(8%, 6%) scale(1.08); opacity: 1; }
  100% { transform: translate(-4%, 10%) scale(0.93); opacity: 0.7; }
}

@keyframes glowDrift2 {
  0%   { transform: translate(0,0) scale(1); opacity: 0.6; }
  50%  { transform: translate(-6%,-8%) scale(1.12); opacity: 0.85; }
  100% { transform: translate(4%, -4%) scale(0.9); opacity: 0.65; }
}

/* ===  NATUR-BEWEGUNG im Hintergrund === */

.nature-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Blätterdach-Licht: mehrere organische Lichtflecken, wie Sonnenstrahlen durch Blätter */
.nature-layer::before {
  content: '';
  position: absolute;
  width: 180%;
  height: 180%;
  top: -10%;
  left: -40%;
  background:
    radial-gradient(ellipse 38% 22% at 33% 35%, rgba(61, 97, 85, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 28% 18% at 70% 60%, rgba(139, 173, 157, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 18% 28% at 52% 18%, rgba(93, 130, 114, 0.06) 0%, transparent 55%);
  border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%;
  animation: waterRipple 42s ease-in-out infinite;
}

/* Wasseroberfläche: sanfte horizontale Bewegung */
.nature-layer::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: 25%;
  left: -50%;
  background: radial-gradient(ellipse 68% 18% at 50% 50%,
    rgba(61, 97, 85, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: waterRipple2 52s ease-in-out infinite;
}

@keyframes waterRipple {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.55; }
  25%  { transform: translate(3%, -2%) rotate(1.5deg) scale(1.04); opacity: 0.85; }
  50%  { transform: translate(-2%, 4%) rotate(-1deg) scale(0.97); opacity: 0.65; }
  75%  { transform: translate(4%, 1%) rotate(0.8deg) scale(1.03); opacity: 0.95; }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.55; }
}

@keyframes waterRipple2 {
  0%   { transform: translateX(0) scaleX(1) scaleY(1); opacity: 0.45; }
  20%  { transform: translateX(2%) scaleX(1.04) scaleY(0.96); opacity: 0.65; }
  40%  { transform: translateX(-3%) scaleX(0.97) scaleY(1.06); opacity: 0.55; }
  60%  { transform: translateX(2.5%) scaleX(1.03) scaleY(0.95); opacity: 0.75; }
  80%  { transform: translateX(-1.5%) scaleX(0.98) scaleY(1.04); opacity: 0.5; }
  100% { transform: translateX(0) scaleX(1) scaleY(1); opacity: 0.45; }
}

/* Hero bekommt keinen eigenen Hintergrund mehr — body-Animation reicht */
.hero {
  position: relative;
  overflow: hidden;
}

/* Organische Blatt-/Waldform — dritte Naturebene, oben rechts */
.orb-mid {
  display: block;
  position: fixed;
  width: 55vw;
  height: 55vw;
  top: 5%;
  right: -18%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%,
    rgba(61, 97, 85, 0.07) 0%,
    rgba(93, 130, 114, 0.03) 55%,
    transparent 75%
  );
  border-radius: 68% 32% 45% 55% / 40% 65% 35% 60%;
  animation: leafOrb 60s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes leafOrb {
  0%   { transform: rotate(0deg) scale(1); opacity: 0.65; }
  30%  { transform: rotate(7deg) scale(1.05); opacity: 0.95; }
  60%  { transform: rotate(-4deg) scale(0.95); opacity: 0.55; }
  100% { transform: rotate(0deg) scale(1); opacity: 0.65; }
}

/* Alle Sektions-Inhalte über den body-Overlays */
main, header, footer, section, .container {
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.9rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.1rem;
  line-height: 1.25;
}

p {
  margin-bottom: 1.5rem;
  font-weight: 300;
  opacity: 0.9; /* Slight transparency for elegance */
}

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

/* Layout */
.container {
  max-width: 1400px; /* Wider container for editorial feel */
  margin: 0 auto;
  padding: 0 5rem;
}

.section {
  padding: 10rem 0; /* Huge padding for breathing room */
  position: relative;
}

.section-light {
  background-color: rgba(235, 240, 237, 0.96);
  color: var(--text-light-theme);
  position: relative;
  z-index: 2;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-dark-theme);
}

/* Header & Nav */
header {
  padding: 1.8rem 5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100%;
  background: rgba(25, 43, 38, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(140, 190, 158, 0.20);
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #C8005A;
  text-decoration: none;
  letter-spacing: 1px;
  position: absolute;
  left: clamp(1.5rem, 5vw, 5rem);
  top: 100%;
  transform: translateY(calc(-50% - 5px));
  z-index: 101;
  transition: var(--transition);
  white-space: nowrap;
}

.logo:hover {
  color: var(--accent-secondary);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4rem;
}

nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #e8f5ee;
  opacity: 1;
}

nav a:hover, nav a.highlight {
  color: var(--accent-secondary) !important;
  opacity: 1;
}

nav a.nav-kontakt {
  color: var(--accent);
  opacity: 1;
  border: 1px solid rgba(200, 0, 90, 0.4);
  padding: 0.5rem 1.2rem;
  transition: all 0.5s ease;
}

nav a.nav-kontakt:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: currentColor;
  padding: 1.5rem 3.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--accent-secondary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn:hover {
  color: var(--bg-dark) !important;
  border-color: var(--accent-secondary);
}

.btn:hover::before {
  transform: scaleY(1);
}

.btn:active {
  color: var(--bg-dark) !important;
  border-color: var(--accent-secondary);
  transform: scale(0.97);
}
.btn:active::before {
  transform: scaleY(1);
}

/* specific solid button */
.btn-solid {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text-dark-theme);
  box-shadow: 0 0 25px rgba(200, 0, 90, 0.25);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-solid:hover {
  background-color: var(--highlight) !important;
  border-color: var(--highlight) !important;
  color: var(--text-dark-theme) !important;
  box-shadow: 0 0 45px rgba(255, 0, 127, 0.5);
  transform: translateY(-3px);
}
.btn-solid:active {
  background-color: #a0004a !important;
  border-color: #a0004a !important;
  transform: scale(0.97) !important;
  box-shadow: 0 0 15px rgba(200, 0, 90, 0.3) !important;
}
.btn-solid::before {
  display: none;
}

/* Pink booking button */
.btn-pink {
  background-color: var(--highlight);
  border-color: var(--highlight);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.35);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-pink:hover {
  background-color: #d6006a !important;
  border-color: #d6006a !important;
  color: #fff !important;
  box-shadow: 0 0 50px rgba(255, 0, 127, 0.6);
  transform: translateY(-3px);
}
.btn-pink:active {
  background-color: #b5005a !important;
  border-color: #b5005a !important;
  transform: scale(0.97) !important;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.3) !important;
}
.btn-pink::before {
  display: none;
}

/* Name-Bridge: zentriert auf der Header-Unterkante */
.name-bridge {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 5rem);
  color: #C8005A;
  line-height: 1.1;
  letter-spacing: 1px;
  padding: 0;
  margin: 0;
  text-align: left;
  position: absolute;
  top: 100%;
  left: clamp(1.5rem, 5vw, 5rem);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 6rem;
  margin-top: 0;
  overflow: visible;
  z-index: 1;
}

.hero .hero-split {
  align-items: flex-start;
  gap: 5rem;
}

.hero .hero-content {
  flex: 1.2;
  padding-top: 0;
}

.hero .hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero .hero-image img {
  max-width: 90%;
  height: auto;
  box-shadow: none;
  transform: translateY(-120px);
}



.hero > .container {
  width: 100%;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 10;
}

.hero-image {
  flex: 1.2;
  min-width: 0;
  position: relative;
  overflow: hidden;
}



.hero-image img {
  width: 100%;
  height: auto;
  max-height: 800px;
  display: block;
  border-radius: 8px;
}

/* Hover-Effekte komplett entfernt, um Flimmern und goldene Ränder zu vermeiden */

/* Offer Cards - Boutique Presentation */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 4rem;
  margin-top: 6rem;
}

.offer-card {
  background-color: rgba(10, 22, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-dark-theme);
  padding: 5rem 4rem;
  box-shadow: var(--shadow-dark);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-large);
  border: 1px solid rgba(93, 130, 114, 0.18);
}

.section-light .offer-card {
  background-color: var(--bg-card-light);
  color: var(--text-light-theme);
  box-shadow: var(--shadow-soft);
  border: none;
}

.offer-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255,255,255,0.15);
}

.section-light .offer-card:hover {
  border-color: transparent;
}

.hero-quote {
  margin: 4rem 0 2rem;
  opacity: 1;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.65;
  font-weight: 600;
  color: var(--highlight);
}

.hero-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.75;
  letter-spacing: 0.04em;
  color: var(--highlight);
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.9;
}

.hero-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}

.hero-services li a {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: var(--transition);
}

.hero-services li a:hover {
  opacity: 1;
}

.hero-credentials {
  font-size: 0.85rem;
  opacity: 0.5;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-name-brand {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(232, 237, 233, 0.92);
  margin-bottom: 2rem;
  opacity: 1;
}

.offer-card h3 {
  color: var(--accent-secondary);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.offer-format {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 2.5rem;
  display: block;
  font-weight: 500;
  color: var(--highlight);
  opacity: 1;
}

/* Animations & Cinematic */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* Kinetic Typography Utility */
.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Gatsby / Leben Sektion */
.gatsby-section {
  position: relative;
  overflow: hidden;
}

.gatsby-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(200, 0, 90, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Footer */
footer {
  padding: 6rem 0 3rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
  letter-spacing: 1px;
}

/* Utility */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 5rem; }
.highlight { color: var(--accent) !important; }

.script-text {
  font-family: var(--font-script);
  font-size: 2.2em;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent-secondary);
}

.editorial-overlap {
  margin-left: -8rem;
  margin-top: 0;
  position: relative;
  z-index: 10;
  background: rgba(15, 28, 22, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(93, 130, 114, 0.15);
  padding: 4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.section-light .editorial-overlap {
  background: rgba(235, 242, 238, 0.9);
  border: 1px solid rgba(61, 97, 85, 0.06);
  box-shadow: var(--shadow-soft);
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
  .hero-split {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  .editorial-overlap {
    margin-left: 0;
    margin-top: -4rem;
    padding: 3rem;
  }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .name-bridge {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero .hero-content {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  p { line-height: 1.65; }

  /* Header */
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }
  .logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    font-size: 1.5rem;
  }

  /* Hamburger button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 102;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8f5ee;
    transition: all 0.3s ease;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Nav dropdown */
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(25, 43, 38, 0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2rem;
    border-bottom: 1px solid rgba(140, 190, 158, 0.20);
    z-index: 99;
  }
  nav.open { display: block; }
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  /* Hero */
  .hero {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .hero .hero-split {
    flex-direction: column;
    gap: 2rem;
  }
  .hero .hero-image {
    display: none;
  }

  /* Sections */
  .section { padding: 4rem 0; }
  .hero-split { flex-direction: column; gap: 3rem; }
  .editorial-overlap {
    margin-left: 0;
    margin-top: 0;
    padding: 2rem;
  }
  .offer-card { padding: 2.5rem 2rem; }

  /* Utilities */
  .mt-6 { margin-top: 2rem; }
  .hero-quote { font-size: 1rem; margin: 2rem 0 1rem; }

  /* Contact form */
  .contact-form { padding: 2rem 1.5rem; }
}

/* Contact Form */
.contact-form {
  background-color: rgba(29, 55, 45, 0.88);
  border: 1px solid rgba(139, 173, 157, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(139, 173, 157, 0.3);
  color: var(--text-dark-theme);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 0, 127, 0.5);
}

.form-group select option {
  background-color: #1a3a2a;
  color: #fff;
}

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

.form-section-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.radio-label input[type="radio"] {
  accent-color: var(--highlight);
  width: 1rem;
  height: 1rem;
}
