/* ==========================================================================
   Dr. Sommer-Stern — Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --font-heading: 'Knif Mono', 'Cutive Mono', monospace;
  --font-body: 'Karla', sans-serif;

  --color-female-pink: #d4908e;
  --color-female-pink-light: #e8b4b2;
  --color-male-blue: #7a9bb5;
  --color-male-blue-light: #a3bdd0;
  --color-creme: #f5efe6;
  --color-black-matte: #3a3a3a;
  --color-red-highlight: #c75c6a;
  --color-muted: #ede7dc;
  --color-border: rgba(58, 58, 58, 0.15);
  --color-input-bg: #ede7dc;

  --radius: 0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-black-matte);
  background-color: var(--color-creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border-radius: var(--radius);
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* Selection */
::selection {
  background: var(--color-female-pink);
  color: var(--color-creme);
}

body.gender-male ::selection {
  background: var(--color-male-blue);
  color: var(--color-creme);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 200;
  color: var(--color-black-matte);
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  text-transform: uppercase;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-black-matte);
}

h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-black-matte);
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-black-matte);
}

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 72rem; /* 6xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  transition: background-color 300ms;
}

@media (min-width: 768px) {
  .site-header {
    padding: 1.5rem 3rem;
  }
}

.site-header__mixturen {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: opacity 300ms;
}

.site-header__mixturen:hover {
  opacity: 0.7;
}

.site-header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
  cursor: pointer;
}

/* Mobile: logo centered + smaller, always visible */
@media (max-width: 767px) {
  .header-left {
    display: none !important;
  }

  .site-header__logo {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-header__logo svg {
    height: 26px !important;
  }

  .menu-label {
    display: none !important;
  }

  .site-header__menu-btn {
    margin-left: auto;
  }
}

.site-header__menu-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 300ms;
}

.site-header__menu-btn:hover {
  opacity: 0.7;
}

/* Animated Hamburger Icon */
.hamburger-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  position: relative;
}

.hamburger-icon__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: currentColor;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms ease;
  transform-origin: center;
}

.hamburger-icon__line--top {
  position: absolute;
  top: 0;
}

.hamburger-icon__line--middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-icon__line--bottom {
  position: absolute;
  bottom: 0;
}

/* Open state: hamburger → X */
body.menu-open .hamburger-icon__line--top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.menu-open .hamburger-icon__line--middle {
  opacity: 0;
}

body.menu-open .hamburger-icon__line--bottom {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lang-switcher__link {
  color: inherit;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 300ms;
}

.lang-switcher__link.is-active {
  opacity: 1;
  font-weight: 700;
}

.lang-switcher__link:hover {
  opacity: 0.8;
}

.lang-switcher__sep {
  opacity: 0.3;
  font-size: 0.65rem;
}

/* --------------------------------------------------------------------------
   Full Page Menu
   -------------------------------------------------------------------------- */
body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  color: var(--color-creme) !important;
}

body.menu-open .site-header a {
  color: var(--color-creme) !important;
}

body.menu-open .site-header svg g,
body.menu-open .site-header svg path {
  fill: var(--color-creme) !important;
}

body.menu-open .site-header__menu-btn {
  color: var(--color-creme);
}

body.menu-open #header-mixturen {
  opacity: 0;
  pointer-events: none;
}

body.menu-open .booking-sidebar {
  display: none;
}

.full-page-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms, visibility 400ms;
  overflow-y: auto;
  padding: 4rem 0 2rem;
}

@media (max-width: 767px) {
  .full-page-menu {
    padding-top: 5rem;
  }
}

.full-page-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.full-page-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 0 3rem;
  margin: auto;
}

@media (min-width: 768px) {
  .full-page-menu__nav {
    gap: 0.5rem;
  }
}

.full-page-menu__link,
.full-page-menu__item {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  padding: 0.25rem 0;
  line-height: 1.3;
  transition: opacity 300ms;
  color: var(--color-creme);
  text-decoration: none;
  text-align: center;
  width: 100%;
}

.full-page-menu__link:hover,
.full-page-menu__item:hover {
  opacity: 1;
}

.full-page-menu__footer {
  display: flex;
  gap: 2rem;
  padding-bottom: 1.5rem;
  flex-shrink: 0;
  justify-content: center;
  text-align: center;
}

.full-page-menu__footer a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.8;
  transition: opacity 300ms;
}

.full-page-menu__footer-sep {
  color: #fff;
  opacity: 0.5;
}

.full-page-menu__footer a:hover {
  opacity: 1;
}

/* Mobile-only: MIXTUREN + lang switcher inside burger menu (below nav) */
.full-page-menu__mobile-header {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2rem 1.5rem;
}

@media (max-width: 767px) {
  .full-page-menu__mobile-header {
    display: flex;
  }
}

.full-page-menu__mixturen {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-creme);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 300ms;
}

.full-page-menu__mixturen:hover {
  opacity: 1;
}

.full-page-menu__lang-switcher .lang-switcher__link {
  color: var(--color-creme);
}

.full-page-menu__lang-switcher .lang-switcher__sep {
  color: var(--color-creme);
  opacity: 0.4;
}

.full-page-menu__signet {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  opacity: 0.4;
  pointer-events: none;
}

.full-page-menu__signet img {
  width: 180px;
  height: auto;
}

@media (max-width: 767px) {
  .full-page-menu__signet {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 4rem 2rem;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 4rem;
  }
}

.site-footer.gender-female {
  background-color: var(--color-female-pink);
}

.site-footer.gender-male {
  background-color: var(--color-male-blue);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-creme);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.site-footer__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-creme);
}

.site-footer__text a {
  transition: opacity 300ms;
}

.site-footer__text a:hover {
  opacity: 0.7;
}

.site-footer__nav a {
  display: block;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-creme);
  transition: opacity 300ms;
}

.site-footer__nav a:hover {
  opacity: 0.7;
}

.site-footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0.6;
}

.site-footer__logo {
  display: block;
  margin: 0 auto 1.5rem;
}

.site-footer__logo svg {
  height: 28px;
  width: auto;
}

/* Footer logo above columns (centered) */
.site-footer__logo--top {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.site-footer__logo--top svg {
  height: 28px;
  width: auto;
}

/* --------------------------------------------------------------------------
   Landing Page
   -------------------------------------------------------------------------- */
.landing-page {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .landing-page {
    flex-direction: row;
  }
}

.landing-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.landing-overlay {
  position: absolute;
  inset: 0;
  transition: background-color 300ms;
}

.landing-side:hover .landing-overlay {
  background-color: rgba(0, 0, 0, 0.05);
}

.landing-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--color-creme);
  color: var(--color-black-matte);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 300ms, color 300ms;
}

.landing-btn:hover {
  background-color: #2a2a2a;
  color: var(--color-creme);
}

.landing-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  padding-top: clamp(2rem, 6vw, 5rem);
  pointer-events: none;
}

.landing-logo img {
  height: clamp(50px, 8vw, 80px);
  width: auto;
}

.landing-side img.landing-signet {
  width: clamp(120px, 30vh, 280px);
  max-width: 60%;
  max-height: 30vh;
  height: auto;
  object-fit: contain;
}

.landing-side .landing-btn {
  margin-top: clamp(0.5rem, 2vh, 2rem);
}

@media (min-width: 768px) {
  .landing-side img.landing-signet {
    max-height: 50vh;
    width: clamp(180px, 18vw, 280px);
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .landing-side img.landing-signet {
    width: clamp(80px, 20vh, 160px);
    max-height: 25vh;
  }
}

body.is-landing-page .site-footer {
  display: none;
}
body.is-landing-page .cookie-banner {
  z-index: 100;
}

/* --------------------------------------------------------------------------
   Gender Landing (Main Page after gender select)
   -------------------------------------------------------------------------- */

/* Hero */
.gender-landing__hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gender-landing__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gender-landing__hero-overlay {
  position: absolute;
  inset: 0;
}

.gender-female .gender-landing__hero-overlay {
  background: linear-gradient(to bottom, rgba(212, 144, 142, 0.7), rgba(212, 144, 142, 0.4));
}

.gender-male .gender-landing__hero-overlay {
  background: linear-gradient(to bottom, rgba(122, 155, 181, 0.7), rgba(122, 155, 181, 0.4));
}

.gender-landing__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-creme);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gender-landing__hero-signet {
  display: block;
  margin-bottom: 2rem;
}

.gender-landing__hero-content h1 {
  color: var(--color-creme);
}

.gender-landing__hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-creme);
  margin-bottom: 1rem;
}

.gender-landing__hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-creme);
}

/* Intro Section */
.gender-landing__intro {
  padding: 6rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .gender-landing__intro {
    padding: 6rem 4rem;
  }
}

.gender-landing__intro-inner {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.gender-landing__services {
  padding: 4rem 2rem;
  background-color: rgba(237, 231, 220, 0.3);
}

@media (min-width: 768px) {
  .gender-landing__services {
    padding: 4rem 4rem;
  }
}

/* Service Card */
.service-card {
  padding: 2rem;
  background-color: var(--color-creme);
  cursor: pointer;
  border-radius: var(--radius);
  transition: box-shadow 300ms;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.service-card__accent {
  width: 3rem;
  height: 2px;
  margin-bottom: 1.5rem;
}

.gender-female .service-card__accent {
  background-color: var(--color-female-pink);
}

.gender-male .service-card__accent {
  background-color: var(--color-male-blue);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 200;
  color: var(--color-black-matte);
  margin-bottom: 1rem;
  transition: color 300ms;
}

.gender-female .service-card:hover .service-card__title {
  color: var(--color-female-pink);
}

.gender-male .service-card:hover .service-card__title {
  color: var(--color-male-blue);
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(58, 58, 58, 0.7);
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 300ms;
}

.gender-female .service-card__link {
  color: var(--color-female-pink);
}

.gender-male .service-card__link {
  color: var(--color-male-blue);
}

.service-card__link:hover {
  opacity: 0.7;
}

/* CTA Section (Gender Landing) */
.gender-landing__cta {
  padding: 5rem 2rem;
  text-align: center;
}

.gender-landing__cta h2 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.gender-landing__cta p {
  font-family: var(--font-body);
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.gender-landing__cta-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #fff;
  color: var(--color-black-matte);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.gender-landing__cta-btn:hover {
  background-color: var(--color-creme);
  color: var(--color-black-matte);
}

/* --------------------------------------------------------------------------
   Content Page
   -------------------------------------------------------------------------- */
.content-page__hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem;
  padding-top: 8rem;
}

@media (min-width: 768px) {
  .content-page__hero {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.content-page__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.content-page__hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-creme);
}

.content-page__hero-content h1 {
  color: var(--color-creme);
}

.content-page__hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-creme);
  margin-bottom: 1rem;
}

/* Content Sections */
.content-section {
  padding: 4rem 2rem;
}

@media (min-width: 768px) {
  .content-section {
    padding: 6rem 4rem;
  }
}

.content-section__inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.content-section:nth-child(even) {
  background-color: rgba(237, 231, 220, 0.4);
}

/* Image + Text Grid */
.content-image-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .content-image-text {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .content-image-text.reversed .content-image-text__image {
    order: 1;
  }
}

.content-image-text__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 5rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 6rem 4rem;
  }
}

.cta-section.gender-female {
  background-color: var(--color-female-pink);
}

.cta-section.gender-male {
  background-color: var(--color-male-blue);
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 200;
  color: var(--color-creme);
  margin-bottom: 2rem;
}

.cta-section__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-creme);
  color: var(--color-black-matte);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 300ms;
}

.cta-section__btn:hover {
  background-color: #ffffff;
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.contact-page {
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .contact-page {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.contact-page__inner {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact-page__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Info */
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.gender-female .contact-info__icon {
  color: var(--color-female-pink);
}

.gender-male .contact-info__icon {
  color: var(--color-male-blue);
}

.contact-info__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form__group {
  margin-bottom: 1.5rem;
}

.contact-form__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(58, 58, 58, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-black-matte);
  transition: border-color 300ms;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: rgba(58, 58, 58, 0.5);
}

.contact-form__textarea {
  resize: none;
  min-height: 150px;
}

.contact-form__submit {
  width: 100%;
  padding: 1rem;
  color: var(--color-creme);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 300ms;
}

.gender-female .contact-form__submit {
  background-color: var(--color-female-pink);
}

.gender-male .contact-form__submit {
  background-color: var(--color-male-blue);
}

.contact-form__submit:hover {
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Legal Pages (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */
.legal-page {
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .legal-page {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.legal-page__inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-page__sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-page__section h4 {
  margin-bottom: 0.75rem;
}

.legal-page__section p {
  line-height: 1.8;
  color: rgba(58, 58, 58, 0.8);
}

/* --------------------------------------------------------------------------
   Gender Switcher
   -------------------------------------------------------------------------- */
.gender-switcher {
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile: collapsed by default, toggle-able */
@media (max-width: 767px) {
  .gender-switcher {
    left: 6px;
    top: auto;
    bottom: 70px; /* above mobile Termin button */
    transform: none;
  }

  .gender-switcher__label {
    display: none;
  }

  .gender-switcher__btn {
    display: none;
  }

  .gender-switcher.is-expanded .gender-switcher__btn {
    display: flex;
  }

  .gender-switcher__toggle {
    display: flex;
  }
}

.gender-switcher__toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-black-matte);
  color: var(--color-creme);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 300ms;
}

.gender-switcher.is-expanded .gender-switcher__toggle {
  transform: rotate(45deg);
}

.gender-switcher__label {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--color-black-matte);
}

.gender-switcher__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-creme);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 300ms, box-shadow 300ms;
}

.gender-switcher__btn--female {
  background-color: var(--color-female-pink);
}

.gender-switcher__btn--male {
  background-color: var(--color-male-blue);
}

.gender-switcher__btn.is-active {
  border-color: #2a2a2a;
  box-shadow: 0 0 0 1px rgba(42, 42, 42, 0.3);
}

/* Hide on landing */
.landing-page ~ .gender-switcher,
body.is-landing .gender-switcher {
  display: none;
}

/* --------------------------------------------------------------------------
   Booking Sidebar (Termin)
   -------------------------------------------------------------------------- */
.booking-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background-color: var(--color-creme);
  color: var(--color-black-matte);
  padding: 22px 14px;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 300ms, color 300ms;
}

.booking-sidebar:hover {
  background-color: var(--color-female-pink);
  color: var(--color-creme);
}

@media (max-width: 767px) {
  .booking-sidebar {
    /* Mobile: horizontal fixed button at bottom */
    position: fixed;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    transform: none;
    writing-mode: horizontal-tb;
    text-align: center;
    padding: 14px 20px;
    border: none;
    border-top: 1px solid #2a2a2a;
    z-index: 90;
  }
}

/* --------------------------------------------------------------------------
   Cookie Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 1rem 1.5rem;
}

.cookie-banner__inner {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--color-creme);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
  }
}

.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.7;
}

.cookie-banner__text a {
  text-decoration: underline;
  transition: opacity 300ms;
}

.cookie-banner__text a:hover {
  opacity: 0.7;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 300ms, color 300ms;
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--color-black-matte);
  border: 1px solid #2a2a2a;
}

.cookie-banner__btn--decline:hover {
  background-color: #2a2a2a;
  color: var(--color-creme);
}

.cookie-banner__btn--accept {
  background-color: var(--color-black-matte);
  color: var(--color-creme);
  border: 1px solid var(--color-black-matte);
}

.cookie-banner__btn--accept:hover {
  background-color: #000000;
  border-color: #000000;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 600ms ease-out forwards;
}

.animate-fade-up {
  animation: fadeUp 600ms ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 600ms ease-out forwards;
}

.animate-slide-left {
  animation: slideLeft 600ms ease-out forwards;
}

.animate-slide-right {
  animation: slideRight 600ms ease-out forwards;
}

/* Scroll-triggered animations */
[data-animate] {
  opacity: 0;
}

[data-animate].is-visible {
  opacity: 1;
}

[data-animate="fade-in"].is-visible {
  animation: fadeIn 600ms ease-out forwards;
}

[data-animate="fade-up"].is-visible {
  animation: fadeUp 600ms ease-out forwards;
}

[data-animate="scale-in"].is-visible {
  animation: scaleIn 600ms ease-out forwards;
}

[data-animate="slide-left"].is-visible {
  animation: slideLeft 600ms ease-out forwards;
}

[data-animate="slide-right"].is-visible {
  animation: slideRight 600ms ease-out forwards;
}

/* Stagger delays */
[data-animate-delay="1"] { animation-delay: 100ms; }
[data-animate-delay="2"] { animation-delay: 200ms; }
[data-animate-delay="3"] { animation-delay: 300ms; }
[data-animate-delay="4"] { animation-delay: 400ms; }
[data-animate-delay="5"] { animation-delay: 500ms; }
[data-animate-delay="6"] { animation-delay: 600ms; }
[data-animate-delay="7"] { animation-delay: 700ms; }
[data-animate-delay="8"] { animation-delay: 800ms; }

/* --------------------------------------------------------------------------
   Utility: Transitions
   -------------------------------------------------------------------------- */
.transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

.transition-opacity {
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: ease;
}

/* --------------------------------------------------------------------------
   Responsive breakpoints reference:
   sm:  640px
   md:  768px
   lg:  1024px
   xl:  1280px
   -------------------------------------------------------------------------- */
