@import url("fonts.css");

/* Design tokens – Schriften nach Live-„Rendered Fonts“ (was Besucher sehen), nicht nach fehlgeschlagenem CSS. */
:root {
  --color-white: #ffffff;
  --color-light: #ebebeb;
  --color-gold: #d5ac6a;
  --color-gold-light: #dfc489;
  --color-gold-table: #dfc489;
  --color-muted: #6e6e6e;
  --color-nav: #494949;
  --color-heading: #494949;
  --color-dark: #000000;
  --color-separator: #a09b85;
  --color-button: #f1345d;
  --color-button-hover: #d92d52;
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: "Trebuchet MS", Helvetica, sans-serif;
  --font-nav: Arial, Helvetica, sans-serif;
  --font-ui: Poppins, Arial, Helvetica, sans-serif;
  --font-nav-size: 20px;
  --font-nav-weight: 400;
  --font-nav-lh: 30px;
  --font-nav-ls: 0.3px;
  --header-height: 80px;
  --header-padding: 30px;
  --scroll-offset: calc(var(--header-padding) * 2 + var(--header-height) + 1px);
  --header-border: #ededed;
  --content-max: 1100px;
  --footer-max: 1144px;
  --nav-break: 800px;
  --section-pad-top: 70px;
  --section-pad-x: 8vw;
  --section-pad-bottom: 60px;
  --section-pad-x-mobile: 30px;
  --section-heading-lead-gap: 24px;
  --section-title-rule-gap: 48.6px; /* Titel → Linie: 54px × 90% */
  --section-rule-content-gap: 95px; /* Linie → Content: 45px × 210% */
  --section-heading-content-gap: 63px; /* Anteil am rule-content-Gap (2:1) */
  --section-after-rule-gap: 32px; /* Anteil am rule-content-Gap (2:1) */
  --price-row-gap: 15px;
  --prices-pre-curve-gap: 17%;
  --booking-pre-curve-gap: 12%;
  --box-content-pad-bottom: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 500;
  line-height: 31.5px;
  color: var(--color-muted);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

p {
  margin: 0 0 20px;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--color-dark);
  color: var(--color-white);
}

.skip-link:focus {
  left: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 152;
  box-sizing: border-box;
  background: var(--color-white);
  padding: var(--header-padding);
  border: 1px solid var(--header-border);
  transition:
    background 0.3s ease,
    border 0.3s ease,
    border-radius 0.3s ease,
    box-shadow 0.3s ease,
    min-height 0.1s ease-in-out;
}

.site-header__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0;
  min-height: var(--header-height);
}

.site-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.site-logo img {
  width: 159px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: stretch;
  flex: 1 1 0;
}

.site-nav--left {
  justify-content: flex-end;
}

.site-nav--right {
  justify-content: flex-start;
}

.site-nav__list {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list > li {
  display: flex;
  align-items: stretch;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  padding: 0 15px;
  font-family: var(--font-nav);
  font-size: var(--font-nav-size);
  font-weight: var(--font-nav-weight);
  letter-spacing: var(--font-nav-ls);
  line-height: var(--font-nav-lh);
  text-transform: uppercase;
  color: var(--color-dark);
  white-space: nowrap;
  z-index: 10;
  transition:
    color 0.3s cubic-bezier(0.42, 0.01, 0.58, 1),
    background-color 0.3s cubic-bezier(0.42, 0.01, 0.58, 1);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--color-dark);
  background: var(--color-gold);
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-nav);
  transition: transform 0.25s, opacity 0.25s;
}

.site-nav--mobile {
  display: none;
}

.site-header.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 800px) {
  .site-header {
    padding: 12px 16px;
  }

  .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 56px 12px 16px;
    min-height: 70px;
  }

  .site-nav--left,
  .site-nav--right {
    display: none;
  }

  .site-nav--mobile {
    display: none;
    flex: 1 1 100%;
    order: 3;
    justify-content: center;
    padding: 0 0 20px;
  }

  .site-header.is-open .site-nav--mobile {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .site-nav__link {
    height: auto;
    padding: 8px 15px;
  }

  .nav-toggle {
    display: block;
  }
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: var(--scroll-offset);
}

/* Layout */
.section {
  width: 100%;
}

.section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.section--wide {
  padding-left: 8vw;
  padding-right: 8vw;
}

.section--light {
  background: var(--color-light);
}

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

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

.section--dark p {
  color: rgba(255, 255, 255, 0.85);
}

.section--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Section headings – einheitlicher Rhythmus in allen Bereichen */
.section-heading {
  text-align: center;
  margin-bottom: var(--section-heading-content-gap);
}

.section-heading + * {
  padding-top: var(--section-after-rule-gap);
}

.section-heading__lead {
  margin: 0 0 var(--section-heading-lead-gap);
  font-family: var(--font-body);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: normal;
  text-align: center;
  color: var(--color-gold);
}

.section-heading__title {
  margin: 0 0 var(--section-title-rule-gap);
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 72px;
  text-transform: none;
  color: var(--color-heading);
}

.section-heading__rule {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid var(--color-heading);
}

@media (max-width: 800px) {
  .section-heading__title {
    font-size: clamp(36px, 10vw, 60px);
    line-height: 1.2;
    letter-spacing: -1px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 23px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-button);
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--color-button-hover);
  color: var(--color-white);
}

.btn--large {
  padding: 16px 36px;
  font-size: 15px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 30px;
}

.hero__title {
  margin: 0 0 var(--section-title-rule-gap);
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 72px;
  text-transform: uppercase;
  color: var(--color-heading);
}

.hero__title span {
  display: block;
}

.hero__rule {
  width: 100%;
  max-width: 400px;
  margin: 0 auto var(--section-rule-content-gap);
  border: 0;
  border-top: 1px solid var(--color-separator);
}

.hero__text {
  max-width: 520px;
  margin: 0;
  text-align: center;
}

.hero__cta {
  margin-top: 80px;
  margin-bottom: 40px;
}

.hero__image {
  min-height: 100%;
  padding: 100px;
  background-image: url("/assets/img/back.jpg");
  background-size: cover;
  background-position: center;
  background-origin: content-box;
  background-repeat: no-repeat;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__image {
    min-height: 320px;
    padding: 0;
    background-origin: border-box;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .hero__content {
    padding: 40px 24px 60px;
  }

  .hero__rule {
    margin-bottom: var(--section-rule-content-gap);
  }

  .hero__cta {
    margin-top: 40px;
  }

  .hero__title {
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.2;
  }
}

/* About Nora – full-width 50/50 wie Hero, Spalten bündig darunter */
.about-nora {
  padding: 0;
}

.about-nora__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  width: 100%;
}

.about-nora__image {
  margin: 0 3.84%;
}

.about-nora__image img {
  display: block;
  width: 70%;
  max-width: 100%;
  margin: 15% auto;
}

.about-nora__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 3.84% 0;
  padding: 0 30px var(--section-pad-bottom);
  text-align: center;
}

.about-nora__text p {
  width: 100%;
  margin: 0 0 10px;
  padding: 0 12%;
  text-align: center;
}

.about-nora__text p:last-child {
  margin-bottom: 0;
}

.about-nora__name {
  width: 100%;
  margin: 0 0 var(--section-title-rule-gap);
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 72px;
  text-transform: none;
  text-align: center;
  color: var(--color-heading);
}

.about-nora__rule {
  width: 100%;
  max-width: 400px;
  margin: 0 auto var(--section-rule-content-gap);
  border: 0;
  border-top: 1px solid var(--color-separator);
}

@media (max-width: 800px) {
  .about-nora__grid {
    grid-template-columns: 1fr;
  }

  .about-nora__name {
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.2;
  }
}

/* Team / Stylistinnen */
.team {
  margin: 0 -20px;
  padding: var(--section-pad-top) var(--section-pad-x) var(--section-pad-bottom);
  background-color: var(--color-light);
  background-image: url("/assets/img/stylist-bg.jpg");
  background-position: center bottom;
  background-repeat: repeat-x;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 500;
  line-height: 31.5px;
}

.team__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.team__profiles {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding-top: var(--section-after-rule-gap);
  width: 100%;
}

.team-profile {
  padding: 0 0 70px;
}

.team-profile:last-child {
  padding-bottom: 0;
}

.team-profile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
}

.team-profile--reverse .team-profile__image {
  grid-column: 2;
  grid-row: 1;
}

.team-profile--reverse .team-profile__text {
  grid-column: 1;
  grid-row: 1;
}

.team-profile__image {
  margin: 0 3.84%;
  text-align: center;
}

.team-profile__photo-wrap {
  width: 70%;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  overflow: hidden;
}

.team-profile__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.team-profile__lead {
  margin: 10px auto 32px;
  width: 70%;
  font-family: var(--font-body);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: normal;
  text-align: center;
  color: var(--color-gold);
}

.team-profile__title {
  width: 70%;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 72px;
  text-transform: none;
  text-align: center;
  color: var(--color-heading);
}

.team-profile__role {
  margin: 28px auto 0;
  width: 70%;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 200;
  line-height: 1.25;
  text-align: center;
  color: var(--color-heading);
}

.team-profile__spec {
  margin: 10px auto 0;
  width: 70%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 200;
  line-height: 1.35;
  text-align: center;
  color: var(--color-gold);
}

.team-profile__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 3.84%;
  padding: 0 30px;
  text-align: center;
}

.team-profile__bio {
  width: 100%;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 500;
  line-height: 31.5px;
}

.team-profile__bio p {
  margin: 0 0 10px;
  padding: 0 12%;
  text-align: center;
}

.team-profile__bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .team {
    margin: 0;
    padding: var(--section-pad-top) var(--section-pad-x-mobile) var(--section-pad-bottom);
  }

  .services {
    margin: 0;
    padding: var(--section-pad-top) var(--section-pad-x-mobile) var(--section-pad-bottom);
  }

  .prices,
  .gallery,
  .vacations,
  .booking,
  .contact {
    padding-left: var(--section-pad-x-mobile);
    padding-right: var(--section-pad-x-mobile);
  }

  .section--wide {
    padding-left: var(--section-pad-x-mobile);
    padding-right: var(--section-pad-x-mobile);
  }

  .team-profile__grid {
    grid-template-columns: 1fr;
  }

  .team-profile--reverse .team-profile__image,
  .team-profile--reverse .team-profile__text {
    grid-column: auto;
    grid-row: auto;
  }

  .team-profile__photo-wrap {
    margin-top: 16px;
  }

  .team-profile__title {
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .team-profile__text {
    justify-content: flex-start;
    margin-top: 24px;
    padding: 0 16px;
  }

  .team-profile--reverse .team-profile__image {
    order: 1;
  }

  .team-profile--reverse .team-profile__text {
    order: 2;
  }
}

/* Services – Section-Rahmen wie Stylistinnen */
.services {
  margin: 0 -20px;
  padding: var(--section-pad-top) var(--section-pad-x) var(--section-pad-bottom);
  background-color: var(--color-light);
  background-image: url("/assets/img/services-bg3_26-e1518615760726.jpg");
  background-position: center bottom;
  background-repeat: repeat-x;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 500;
  line-height: 31.5px;
}

.services__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0 auto;
}

.service-card {
  margin: 0 15px;
  padding: 20px 50px var(--box-content-pad-bottom);
}

.service-card__title {
  margin: 20px 0 30px;
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-heading);
}

.service-card p {
  margin: 15px 0 0;
  text-align: center;
  color: var(--color-muted);
}

@media (max-width: 800px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    margin: 0;
    padding: 20px 0 var(--box-content-pad-bottom);
  }
}

/* Prices – gold section, 3 Spalten mit separaten Boxen (Live: row-7) */
.prices {
  padding: var(--section-pad-top) var(--section-pad-x) 0;
  background-color: var(--color-gold);
  background-position: center bottom;
  background-repeat: repeat-x;
}

.prices .section-heading__title {
  color: var(--color-white);
  text-transform: none;
}

.prices .section-heading__rule {
  border-top-color: var(--color-muted);
}

.prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5%;
  row-gap: 0;
  align-items: start;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-bottom: 0;
}

.prices__column {
  align-self: start;
  min-width: 0;
  margin-top: 0;
  margin-bottom: 10px;
}

.prices__column--diverses {
  grid-column: 2;
  margin-top: var(--price-row-gap);
  margin-bottom: 10px;
}

.price-table {
  display: table;
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 500;
  line-height: 31.5px;
  background: var(--color-gold-table);
  color: var(--color-white);
  border-top: 20px solid var(--color-gold-table);
  border-bottom: 24px solid var(--color-gold-table);
}

.price-table--diverses {
  margin-top: 0;
}

.price-table caption {
  caption-side: top;
  padding: 20px 8px 30px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 200;
  letter-spacing: -1px;
  line-height: 1.2;
  text-transform: none;
  text-align: center;
  color: var(--color-white);
  background: transparent;
}

.price-table tr {
  border-bottom: 0;
}

.price-table td {
  padding: 4px 0 4px 20px;
  vertical-align: top;
  text-align: left;
  color: var(--color-muted);
}

.price-table td:last-child {
  padding: 4px 20px 4px 0;
  text-align: right;
  white-space: nowrap;
  color: var(--color-white);
}

.price-table__note {
  display: inline;
  font-size: 12.6px;
  font-weight: 500;
  line-height: 18.9px;
  color: var(--color-muted);
}

@media (max-width: 1000px) {
  .prices__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2%;
  }

  .prices__column:nth-child(3) {
    grid-column: 1 / -1;
  }

  .prices__column--diverses {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .prices__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .prices__column--diverses {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

/* Übergang Preise → Galerie (Live: column-31 padding-top 17% + rounded-split 71px) */
.prices__separator-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: var(--prices-pre-curve-gap);
}

.prices__separator {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}

.prices__separator-curve {
  position: relative;
  height: 71px;
  background: transparent;
}

.prices__separator-curve::before,
.prices__separator-curve::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 10;
  width: 50%;
  height: 71px;
  background: var(--color-light);
  pointer-events: none;
}

.prices__separator-curve::before {
  left: 0;
  border-radius: 0 80px 0 0;
}

.prices__separator-curve::after {
  left: 50%;
  border-radius: 80px 0 0 0;
}

.prices__separator-spacer {
  display: block;
  width: 100%;
  height: 71px;
  background: var(--color-light);
}

/* Gallery – seitenbreites Band, 5-Spalten-Masonry */
.gallery {
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
  background-color: var(--color-light);
  background-image: url("/assets/img/stylist-bg.jpg");
  background-position: center bottom;
  background-repeat: repeat-x;
}

.gallery .section-heading {
  padding: 0 var(--section-pad-x);
}

.gallery__band {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: visible;
}

.gallery__grid {
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.gallery__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: visible;
  container-type: inline-size;
}

.gallery__item {
  margin: 0;
  overflow: hidden;
}

.gallery__item a {
  display: block;
  height: 100%;
  line-height: 0;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery__item--portrait {
  /* Höhe = zwei Grid-Kacheln + Gutter (wie Spalte mit 2× gallery__item--grid) */
  aspect-ratio: unset;
  width: 100%;
  height: calc(160cqw + 5px);
}

.gallery__item--grid {
  aspect-ratio: 1 / 0.8;
}

/* 2 Spalten breit, Höhe = 1 Grid-Quadrat (doppelte Höhe von 2/0.4 → füllt 2 Quadrate nebeneinander) */
.gallery__item--landscape {
  width: calc(200% + 5px);
  max-width: calc(200% + 5px);
  aspect-ratio: 2 / 0.8;
  position: relative;
  z-index: 1;
}

.gallery__item a:hover img {
  transform: scale(1.08);
}

@media (max-width: 800px) {
  .gallery__grid {
    flex-wrap: wrap;
  }

  .gallery__col {
    flex: 0 0 calc(50% - 2.5px);
  }

  .gallery__item--landscape {
    width: calc(200% + 5px);
    max-width: calc(200% + 5px);
  }
}

@media (max-width: 480px) {
  .gallery__col {
    flex: 0 0 100%;
  }

  .gallery__item--landscape {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 0.8;
  }
}

/* Opening hours – vertikal wie Live (Tag | Zeiten, goldene Linie unter Tag) */
.hours {
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
  background-image: url("/assets/img/times-bg_03.jpg");
  background-size: cover;
  background-position: center;
}

.hours__list {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.hours-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 5px;
}

.hours-row:last-child {
  margin-bottom: 0;
}

.hours-row__day {
  flex: 0 0 33.333%;
  text-align: center;
}

.hours-row__name,
.hours-row__slot {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 31.5px;
  letter-spacing: normal;
  text-align: center;
  color: var(--color-dark);
}

.hours-row__name {
  margin: 15px 0 10px;
}

.hours-row__closed {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 31.5px;
  letter-spacing: normal;
  text-align: center;
  margin: 0;
  color: var(--color-gold);
  white-space: nowrap;
}

.hours-row__rule {
  width: 100%;
  max-width: 100px;
  margin: 5px auto;
  border: 0;
  border-top: 1px solid var(--color-gold);
}

.hours-row__slots {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-top: 15px;
  text-align: center;
}

.hours-row__slot {
  flex: 1;
  margin: 0;
}

.hours-row--closed .hours-row__slots {
  padding-top: 15px;
  padding-bottom: 20px;
}

@media (max-width: 640px) {
  .hours__list {
    max-width: 100%;
    padding-inline: var(--section-pad-x-mobile);
  }

  .hours-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .hours-row__day {
    flex: none;
    width: 100%;
  }

  .hours-row__slots {
    width: 100%;
    padding-top: 0;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .hours-row__slot {
    flex: 0 1 auto;
  }

  .hours-row__closed {
    white-space: normal;
  }
}

/* Vacations */
.vacations {
  padding: var(--section-pad-top) var(--section-pad-x) var(--section-pad-bottom);
  background: var(--color-light);
}

.vacations__list {
  max-width: 700px;
  margin: 0 auto;
}

.vacation-item {
  display: grid;
  grid-template-columns: 5fr 2fr 5fr;
  align-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--color-dark);
}

.vacation-item__start,
.vacation-item__end {
  text-align: center;
}

.vacation-item__dash {
  text-align: center;
}

/* Booking */
.booking {
  padding: var(--section-pad-top) var(--section-pad-x) 0;
  text-align: center;
  background-image: url("/assets/img/booking-bg.png");
  background-size: cover;
  background-position: center;
}

.booking__text {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 10%;
}

.booking__cta {
  margin-top: 80px;
  margin-bottom: 40px;
}

/* Übergang Termin → Kontakt (Live: rounded-split bottom + 71px, gold) */
.booking__separator-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: var(--booking-pre-curve-gap);
}

.booking__separator {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}

.booking__separator-curve {
  position: relative;
  height: 71px;
  background: transparent;
}

.booking__separator-curve::before,
.booking__separator-curve::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 10;
  width: 50%;
  height: 71px;
  background: var(--color-gold);
  pointer-events: none;
}

.booking__separator-curve::before {
  left: 0;
  border-radius: 0 80px 0 0;
}

.booking__separator-curve::after {
  left: 50%;
  border-radius: 80px 0 0 0;
}

.booking__separator-spacer {
  display: block;
  width: 100%;
  height: 71px;
  background: var(--color-gold);
}

/* Contact – goldener Bereich */
.contact {
  padding: 0 var(--section-pad-x) var(--section-pad-bottom);
  text-align: center;
  background-color: var(--color-gold);
  background-position: center top;
  background-repeat: repeat-x;
}

.contact .section-heading {
  padding-top: 25px;
}

.contact .section-heading__title {
  color: var(--color-dark);
}

.contact .section-heading__rule {
  border-top-color: var(--color-dark);
}

.contact__name,
.contact__address,
.contact__phone,
.contact__phone a {
  color: var(--color-dark);
}

.contact__phone a:hover {
  opacity: 0.7;
}

.contact__name {
  margin: 0 0 31.5px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 200;
  text-transform: uppercase;
}

.contact__address,
.contact__phone {
  margin: 0 0 8px;
  font-size: 21px;
}

.contact__social {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-white);
  transition: opacity 0.2s, transform 0.2s;
}

.contact__social a:hover {
  opacity: 0.75;
  transform: scale(1.05);
}

.contact__social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Footer */
.site-footer {
  padding: 30px 24px;
  text-align: center;
  background: var(--color-light);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.site-footer p {
  margin: 0;
  font-size: 17px;
  color: var(--color-muted);
}

/* Scroll animations – content visible by default (live site parity) */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .js-reveal .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .js-reveal .reveal--left {
    transform: translateX(-32px);
  }

  .js-reveal .reveal--left.is-visible {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(95vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}
