:root {
  --gold: #b88a2e;
  --gold-light: #e1bd67;
  --gold-dark: #8f6a1d;
  --cream: #fbf8f3;
  --cream-soft: #f4eee5;
  --text: #2d241c;
  --muted: #6d6256;
  --white-glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 22px 60px rgba(67, 46, 25, 0.12);
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream-soft);
  overflow-x: hidden;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(90deg, var(--cream) 0%, var(--cream) 48%, rgba(251,248,243,.35) 68%, transparent 100%);
}

.hero__bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 56%;
  background-image: url('../images/spa-slider.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(251,248,243,.86) 12%, rgba(251,248,243,.28) 38%, transparent 70%),
    linear-gradient(180deg, rgba(251,248,243,.14), rgba(184,138,46,.08));
}

.navbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(28px, 5vw, 76px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  list-style: none;
}

.nav-links--right {
  justify-content: flex-end;
}

.nav-links a:not(.btn) {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4f463d;
  transition: color .25s ease;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--gold);
  filter: drop-shadow(0 5px 12px rgba(184,138,46,.12));
}

.logo__crown {
  font-size: 20px;
  color: var(--gold-light);
  transform: translateY(2px);
}

.logo__script {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 28px;
  letter-spacing: .03em;
  margin-top: -2px;
}

.logo__main {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-top: -7px;
}

.logo__line {
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light) 48%, var(--gold));
  box-shadow: 0 12px 28px rgba(184, 138, 46, .28);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(184, 138, 46, .38);
  filter: saturate(1.1);
}

.btn--small {
  padding: 13px 21px;
  font-size: 10px;
  border-radius: 8px;
}

.btn--hero {
  align-self: flex-start;
  padding: 18px 34px;
  font-size: 12px;
}

.btn--mobile-top {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(680px, 53vw);
  padding: clamp(54px, 8vh, 90px) clamp(28px, 5vw, 76px) 30px;
}

.hero__eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: .035em;
  text-transform: uppercase;
  color: var(--text);
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(380px, 100%);
  margin: 28px 0 24px;
  color: var(--gold);
}

.divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.divider i {
  font-style: normal;
  font-size: 16px;
}

.hero__text {
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.features {
  position: relative;
  z-index: 5;
  width: min(820px, 64vw);
  margin: 28px 0 44px clamp(28px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(184, 138, 46, .14);
  border-radius: 16px;
  background: var(--white-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(184, 138, 46, .16);
}

.feature:last-child {
  border-right: 0;
}

.feature svg {
  width: 38px;
  height: 38px;
  stroke: var(--gold);
  stroke-width: 1.35;
  fill: none;
}

.feature p {
  color: #4f463d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

@media (max-width: 1080px) {
  .navbar {
    padding-inline: 32px;
    gap: 20px;
  }

  .nav-links {
    gap: 18px;
  }

  .logo__script {
    font-size: 23px;
  }

  .logo__main {
    font-size: 34px;
  }

  .hero__content {
    width: 56vw;
    padding-inline: 42px;
  }

  .features {
    width: min(760px, 68vw);
    margin-left: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    background: var(--cream);
  }

  .hero__bg {
    width: 100%;
    height: 100%;
    background-position: 66% center;
    opacity: .98;
  }

  .hero__bg::before {
    background:
      linear-gradient(180deg, rgba(251,248,243,.98) 0%, rgba(251,248,243,.92) 26%, rgba(251,248,243,.58) 58%, rgba(251,248,243,.20) 100%),
      linear-gradient(90deg, rgba(251,248,243,.88) 0%, rgba(251,248,243,.42) 55%, transparent 100%);
  }

  .navbar {
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 30;
  }

  .nav-links {
    display: none;
  }

  .logo {
    justify-self: center;
  }

  .logo__crown {
    font-size: 14px;
  }

  .logo__script {
    font-size: 18px;
  }

  .logo__main {
    font-size: 28px;
  }

  .logo__line {
    width: 58px;
    margin-top: 5px;
  }

  .btn--mobile-top {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: .08em;
    text-align: center;
  }

  .mobile-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    z-index: 25;
    display: grid;
    gap: 2px;
    padding: 16px;
    border: 1px solid rgba(184,138,46,.17);
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu a {
    padding: 14px 12px;
    border-radius: 10px;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
  }

  .mobile-menu a:hover {
    background: rgba(184,138,46,.09);
    color: var(--gold);
  }

  .hero__content {
    width: 100%;
    padding: 58px 24px 26px;
  }

  .hero__eyebrow {
    max-width: 290px;
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: .19em;
  }

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

  .divider {
    width: min(300px, 88%);
    margin: 22px 0 18px;
  }

  .hero__text {
    max-width: 330px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.75;
  }

  .btn--hero {
    width: min(100%, 360px);
    padding: 16px 22px;
    font-size: 11px;
  }

  .features {
    width: auto;
    margin: 18px 20px 24px;
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .feature {
    min-height: auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
    padding: 18px 22px;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid rgba(184,138,46,.14);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .feature svg {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

  .feature p {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .navbar {
    padding-inline: 14px;
  }

  .hero__content {
    padding-inline: 18px;
  }

  .btn--mobile-top {
    padding: 9px 11px;
    font-size: 9px;
  }

  .features {
    margin-inline: 16px;
  }
}



.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}





/* ===============================
   SERVICES / LEISTUNGEN & PREISE
   =============================== */
.services-section {
  position: relative;
  padding: 80px 40px;
  background:
    linear-gradient(rgba(250,246,239,.82), rgba(250,246,239,.94)),
    url("../images/preise-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-overlay {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 36px;
}

.services-crown {
  color: #c9a46c;
  font-size: 28px;
  margin-bottom: 8px;
}

.services-header h2 {
  font-family: var(--font-title);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  color: #2c2418;
  margin: 8px 0 18px;
}

.services-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #c9a46c;
  margin-bottom: 18px;
}

.services-divider span {
  width: 140px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a46c, transparent);
}

.services-header p {
  color: #5f564b;
  font-size: 15px;
  line-height: 1.7;
}

.services-section input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.service-tabs {
  max-width: 1320px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.service-tabs label {
  height: 96px;
  padding: 10px 6px;
  min-width: 0;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(201,164,108,.18);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(44,36,24,.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  cursor: pointer;
  transition: .25s ease;
}

.service-tabs label:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(201,164,108,.45);
}

.service-tabs label img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.service-tabs label span {
  font-family: var(--font-title);
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  color: #4b3928;
}

/* ACTIVE TAB */
#tab-friseur:checked ~ .service-tabs label[for="tab-friseur"],
#tab-naegel:checked ~ .service-tabs label[for="tab-naegel"],
#tab-haarentfernung:checked ~ .service-tabs label[for="tab-haarentfernung"],
#tab-gesicht:checked ~ .service-tabs label[for="tab-gesicht"],
#tab-massage:checked ~ .service-tabs label[for="tab-massage"],
#tab-korper:checked ~ .service-tabs label[for="tab-korper"],
#tab-rf:checked ~ .service-tabs label[for="tab-rf"] {
  border-color: #b98a3d;
  background: #fff;
  box-shadow: 0 14px 30px rgba(185,138,61,.16);
}

.prices-box {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(201,164,108,.18);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(44,36,24,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.price-panel {
  display: none;
  background: #fdfbf8;
  border-radius: 16px;
  padding: 26px;
}

#tab-friseur:checked ~ .prices-box .panel-friseur,
#tab-naegel:checked ~ .prices-box .panel-naegel,
#tab-haarentfernung:checked ~ .prices-box .panel-haarentfernung,
#tab-gesicht:checked ~ .prices-box .panel-gesicht,
#tab-massage:checked ~ .prices-box .panel-massage,
#tab-korper:checked ~ .prices-box .panel-koerper,
#tab-rf:checked ~ .prices-box .panel-rf {
  display: block;
  animation: serviceFade .28s ease;
}

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

.price-panel h3 {
  font-family: var(--font-title);
  color: #b98b2f;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  margin-bottom: 20px;
}

.price-panel details {
  border-bottom: 1px solid rgba(44,36,24,.1);
  padding: 4px 0;
}

.price-panel details details {
  margin-left: 10px;
}

.price-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 8px;
  font-family: var(--font-title);
  font-size: 22px;
  color: #4b3928;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  transition: color .25s ease, background .25s ease;
}

.price-panel summary::-webkit-details-marker {
  display: none;
}

.price-panel summary:hover {
  color: #b98b2f;
  background: rgba(201,164,108,.055);
  border-radius: 10px;
}

.price-panel summary::after {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background-color: #f3ece2;
  background-image: url("../images/drop.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background-color .25s ease;
}

.price-panel summary:hover::after {
  background-color: #efe3d2;
}

.price-panel details[open] > summary::after {
  transform: rotate(180deg);
}

.price-panel summary span {
  font-family: var(--font-body);
  color: #b98b2f;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 8px;
  border-top: 1px solid rgba(44,36,24,.07);
  transition: background .25s ease, padding-left .25s ease;
}

.price-row:hover {
  background: #faf5ee;
  padding-left: 16px;
  border-radius: 10px;
}

.price-row b {
  display: block;
  color: #17120d;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 6px;
}

.price-row small {
  display: block;
  color: #7b6f63;
  font-size: 14px;
  line-height: 1.5;
}

.price-row strong {
  color: #0d2452;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
}

.services-btn {
  width: fit-content;
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 46px;
  border-radius: 7px;
  background: linear-gradient(135deg, #c9a46c, #d9b85f);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: 0 10px 28px rgba(201,164,108,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.services-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(201,164,108,.45);
}

@media (max-width: 1100px) {
  .service-tabs {
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }

  .service-tabs label {
    height: 90px;
    padding: 8px 5px;
  }

  .service-tabs label img {
    width: 30px;
    height: 30px;
  }

  .service-tabs label span {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
	
  .services-section {
    padding: 60px 15px;
  }

  .services-divider span {
    width: 80px;
  }

  .service-tabs {
    grid-template-columns: 1fr;
    max-width: 380px;
    gap: 10px;
  }

  .service-tabs label {
    min-height: 78px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 28px;
    gap: 18px;
  }

  .service-tabs label img {
    width: 38px;
    height: 38px;
  }

  .service-tabs label span {
    font-size: 21px;
  }

  .prices-box {
    padding: 16px;
    border-radius: 16px;
  }

  .price-panel {
    padding: 18px;
  }

  .price-panel summary {
    grid-template-columns: 1fr auto auto;
    font-size: 20px;
    padding: 16px 4px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 4px;
  }

  .price-row strong {
    justify-self: start;
  }

  .services-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
  }
}


.expertise-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 760px;
  background: #faf6ef;
  overflow: hidden;
}

.expertise-image {
  background-image: url("../images/expertise-bg.png");
  background-size: cover;
  background-position: center left;
  min-height: 760px;
}

.expertise-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 246, 239, 0.02) 0%,
    rgba(250, 246, 239, 0.22) 42%,
    rgba(250, 246, 239, 0.95) 58%,
    #faf6ef 100%
  );
  pointer-events: none;
}

.expertise-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 120px 70px 100px 40px;
}

.expertise-kicker {
  display: inline-block;
  color: #c9a46c;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  position: relative;
}

.expertise-kicker::after {
  content: "";
  display: block;
  width: 95px;
  height: 1px;
  background: linear-gradient(to right, #c9a46c, transparent);
  margin-top: 10px;
}

.expertise-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  color: #2c2418;
  margin-bottom: 34px;
}

.expertise-text {
  font-size: 18px;
  line-height: 1.9;
  color: #4d4439;
  margin-bottom: 46px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 42px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(201, 164, 108, 0.22);
}

.expertise-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a46c, #d9b85f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(201, 164, 108, 0.32);
}

.expertise-item p {
  font-size: 17px;
  color: #2c2418;
  margin: 0;
}

.expertise-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 360px;
  padding: 18px 42px;
  background: linear-gradient(135deg, #c9a46c, #d9b85f);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(201, 164, 108, 0.36);
  transition: 0.3s ease;
}

.expertise-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(201, 164, 108, 0.48);
}

/* Tablet */
@media (max-width: 1024px) {
  .expertise-section {
    grid-template-columns: 1fr;
  }

  .expertise-section::after {
    background: linear-gradient(
      to bottom,
      rgba(250, 246, 239, 0.05) 0%,
      rgba(250, 246, 239, 0.4) 42%,
      #faf6ef 64%,
      #faf6ef 100%
    );
  }

  .expertise-image {
    min-height: 520px;
    background-position: center top;
  }

  .expertise-content {
    max-width: 760px;
    padding: 70px 40px 80px;
    margin: 0 auto;
    text-align: center;
  }

  .expertise-kicker::after {
    margin-left: auto;
    margin-right: auto;
  }

  .expertise-item {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .expertise-section {
    display: flex;
    flex-direction: column;
    background: #faf6ef;
  }

  .expertise-image {
    min-height: 420px;
    width: 100%;
    background-image: url("../images/expertise-mobile.png");
    background-size: cover;
    background-position: center top;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }

  .expertise-section::after {
    display: none;
  }

  .expertise-content {
    padding: 48px 22px 64px;
    text-align: center;
  }

  .expertise-kicker {
    font-size: 12px;
  }

  .expertise-content h2 {
    font-size: 38px;
    margin-bottom: 22px;
  }

  .expertise-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 34px;
  }

  .expertise-list {
    margin-bottom: 36px;
  }

  .expertise-item {
    gap: 18px;
    padding: 18px 0;
  }

  .expertise-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .expertise-item p {
    font-size: 16px;
    text-align: left;
  }

  .expertise-btn {
    width: 100%;
    min-width: unset;
    padding: 18px 24px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .expertise-image {
    min-height: 360px;
  }

  .expertise-content h2 {
    font-size: 34px;
  }
}



.offer-section {
  position: relative;
  padding: 120px 20px;
  background:
    linear-gradient(rgba(250,246,239,0.85), rgba(250,246,239,0.92)),
    url("../images/offer-bg.png");
  background-size: cover;
  background-position: center;
}

.offer-overlay {
  max-width: 1100px;
  margin: 0 auto;
}

.offer-box {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,164,108,0.25);
  border-radius: 16px;
  padding: 70px 50px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.offer-kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #c9a46c;
  display: block;
  margin-bottom: 18px;
}

.offer-box h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  color: #2c2418;
  margin-bottom: 40px;
}

.offer-badge {
  display: inline-block;
  padding: 18px 60px;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: white;
  background: linear-gradient(135deg, #c9a46c, #d9b85f);
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(201,164,108,0.4);
}

.offer-text {
  font-size: 16px;
  color: #4d4439;
  line-height: 1.8;
  margin-bottom: 20px;
}

.offer-subtext {
  font-size: 15px;
  color: #6a6055;
  line-height: 1.7;
  margin-bottom: 40px;
}

.offer-btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #c9a46c, #d9b85f);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(201,164,108,0.4);
  transition: 0.3s;
}

.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(201,164,108,0.5);
}



@media (max-width: 768px) {
  .offer-section {
    padding: 80px 15px;
  }

  .offer-box {
    padding: 40px 20px;
  }

  .offer-badge {
    font-size: 26px;
    padding: 14px 30px;
  }

  .offer-box h2 {
    font-size: 28px;
  }
}



.contact-section {
  background:
    linear-gradient(rgba(250,246,239,0.55), rgba(250,246,239,0.68)),
    url("../images/contact-bg.png");
  background-size: cover;
  background-position: center;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-icon {
  color: #c9a46c;
  font-size: 28px;
  margin-bottom: 14px;
}

.contact-header span,
.contact-row h3,
.direction-item h3 {
  color: #c9a46c;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
}

.contact-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  color: #2c2418;
  margin: 16px 0;
}

.contact-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #c9a46c;
  margin-bottom: 20px;
}

.contact-divider i {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a46c, transparent);
}

.contact-header p {
  color: #6a6055;
  font-size: 17px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
}

.contact-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,164,108,0.18);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(44,36,24,0.08);
}

.contact-info-card {
  padding: 34px;
}

.contact-row {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,164,108,0.2);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: rgba(201,164,108,0.16);
  color: #2c2418;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-row p,
.direction-item p {
  color: #2c2418;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
}

.contact-buttons {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 17px 26px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s ease;
}

.contact-btn-gold {
  background: linear-gradient(135deg, #c9a46c, #d9b85f);
  color: white;
  box-shadow: 0 12px 28px rgba(201,164,108,0.35);
}

.contact-btn-outline {
  border: 1px solid #c9a46c;
  color: #b98b2f;
  background: transparent;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

.contact-map {
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,164,108,0.18);
  box-shadow: 0 18px 45px rgba(44,36,24,0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(10%) saturate(85%);
}

.contact-directions {
  margin-top: 24px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.direction-item {
  display: flex;
  gap: 18px;
  padding: 0 22px;
  border-right: 1px solid rgba(201,164,108,0.22);
}

.direction-item:last-child {
  border-right: none;
}

.direction-item span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: rgba(201,164,108,0.14);
  color: #c9a46c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-section {
    padding: 70px 18px;
  }

  .contact-header {
    margin-bottom: 34px;
  }

  .contact-header h2 {
    font-size: 42px;
  }

  .contact-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .contact-divider i {
    width: 72px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 26px 22px;
  }

  .contact-row {
    gap: 18px;
    padding: 22px 0;
  }

  .contact-row-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .contact-map {
    height: 300px;
  }

  .contact-directions {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .direction-item {
    border-right: none;
    border-bottom: 1px solid rgba(201,164,108,0.18);
    padding: 20px 0;
  }

  .direction-item:first-child {
    padding-top: 0;
  }

  .direction-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}




.footer {
  position: relative;
  padding: 90px 20px 34px;
  background:
    linear-gradient(rgba(250,246,239,0.72), rgba(250,246,239,0.86)),
    url("../images/footer-bg.png");
  background-size: cover;
  background-position: center;
  color: #2c2418;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 70px;
}

.footer-logo {
  width: 145px;
  margin-bottom: 26px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  color: #3f382f;
  max-width: 310px;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border: 1px solid #c9a46c;
  border-radius: 50%;
  color: #2c2418;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #c9a46c;
  color: white;
  transform: translateY(-3px);
}

.footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  color: #b98b2f;
  margin-bottom: 28px;
  position: relative;
}

.footer h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: #c9a46c;
  margin-top: 12px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col a {
  color: #2c2418;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 18px;
  transition: 0.25s ease;
}

.footer-col a::before {
  content: "❧";
  color: #c9a46c;
  margin-right: 10px;
}

.footer-col a:hover {
  color: #b98b2f;
  transform: translateX(4px);
}

.footer-contact p {
  display: flex;
  gap: 18px;
  color: #2c2418;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-contact span {
  color: #c9a46c;
  font-size: 20px;
  min-width: 24px;
}

.footer-bottom {
  max-width: 1240px;
  margin: 70px auto 0;
}

.footer-line {
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a46c, transparent);
  margin-bottom: 28px;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: #5f564b;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2c2418;
  text-decoration: none;
  font-weight: 600;
}

.footer-legal a:hover {
  color: #b98b2f;
}

@media (max-width: 900px) {
  .footer {
    padding: 70px 22px 34px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer h3::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}




.about-section {
  padding: 100px 20px;
  background: #faf6ef;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* CONTENT */
.about-content {
  max-width: 520px;
}

.about-kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #c9a46c;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
}

.about-kicker::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, #c9a46c, transparent);
  margin-top: 10px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  color: #2c2418;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #5f564b;
  margin-bottom: 18px;
}

/* BUTTON */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 20px;
  padding: 16px 34px;

  background: linear-gradient(135deg, #c9a46c, #d9b85f);
  color: white;
  text-decoration: none;
  font-weight: 600;

  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(201,164,108,0.35);

  transition: 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(201,164,108,0.5);
}


@media (max-width: 768px) {
  .about-section {
    padding: 70px 18px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    text-align: center;
    margin: 0 auto;
  }

  .about-kicker::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-btn {
    justify-content: center;
  }
}


/* Drop icon uses assets/images/drop.png. Remove old arrow text spans like <span>⌄</span> from summaries; keep price spans like <span>ab 70 €</span>. */
@media (max-width: 768px) {
  .price-panel summary::after {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    background-size: 14px 14px;
  }

  .price-panel summary span {
    font-size: 16px;
  }
}



.feature-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 18px;
}





.expertise-icon-img{
  width:32px;
  height:32px;
  object-fit:contain;
  flex-shrink:0;
}

.expertise-item{
  display:flex;
  align-items:center;
  gap:14px;
}




.footer-contact p{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
  color:#4b433c;
  font-size:18px;
  line-height:1.5;
}

.footer-contact .contact-icon{
  width:48px;
  height:48px;
  min-width:48px;
  border-radius:50%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.footer-contact .contact-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}





.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:68px;
  height:68px;
  border-radius:50%;
  z-index:9999;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#25D366;
  box-shadow:0 10px 30px rgba(0,0,0,.18);

  transition:0.3s;
  animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
  transform:translateY(-4px) scale(1.05);
}

.whatsapp-float img{
  width:34px;
  height:34px;
  object-fit:contain;
}

@keyframes whatsappPulse{
  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.5);
  }

  70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }
}

@media(max-width:768px){

  .whatsapp-float{
    width:60px;
    height:60px;
    right:16px;
    bottom:16px;
  }

  .whatsapp-float img{
    width:30px;
    height:30px;
  }

}



#tab-rf:checked ~ .prices-box .panel-rf{
  display:block;
}


.service-tabs label {
  min-width: 0;
}

.service-tabs label span {
  font-size: 16px;
  text-align: center;
}


.rf-package-box{
  margin-top: 28px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(201,164,108,.08);
  border: 1px solid rgba(201,164,108,.25);
}

.rf-package-title{
  font-family: var(--font-title);
  font-size: 24px;
  color: #b8893f;
  margin-bottom: 18px;
}

.rf-package-item{
  font-size: 17px;
  color: #4b3928;
  margin-bottom: 10px;
  line-height: 1.6;
}

.rf-benefits{
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.rf-benefits span{
  font-size: 16px;
  color: #5a4734;
  line-height: 1.5;
}



.footer-socials a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:64px;
  height:64px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  transition:.3s ease;
}

.footer-socials a:hover{
  transform:translateY(-4px) scale(1.05);
  background:#c9a46c;
}

.footer-socials img{
  width:34px;
  height:34px;
  object-fit:contain;
}
