@font-face {
  font-family: "Amarillo";
  src: url("Amarillo.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-main: #e2d6c1;
  --bg-soft: #efe6db;
  --bg-deep: #1f3b34;
  --accent: #c6a36b;
  --accent-dark: #8c6a3e;
  --text-dark: #1e2a26;
  --text-soft: #5a6b64;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(18, 28, 25, 0.15);
  --shadow-soft: 0 10px 30px rgba(18, 28, 25, 0.08);
}

@keyframes slideInUp {
  from {
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.scroll-reveal.visible {
  animation: slideInUp 0.6s ease-out forwards;
}

.scroll-reveal-item {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-reveal-item.visible {
  animation: slideInUp 0.6s ease-out forwards;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background: radial-gradient(circle at top, #ffffff, var(--bg-main));
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 90px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(31, 59, 52, 0.95);
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 163, 107, 0.2);
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

nav a {
  text-decoration: none;
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.2px;
}

nav a:hover {
  color: var(--accent);
}

nav a.nav-back {
  color: var(--accent);
  font-size: 16px;
}

nav a.nav-back:hover {
  color: var(--white);
}

.nav-hamburger {
  display: none;
}

.hamburger {
  width: 28px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 60px;
  right: 15px;
  background: linear-gradient(135deg, var(--bg-deep), rgba(31, 59, 52, 0.95));
  border: 1px solid rgba(198, 163, 107, 0.3);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 10px 0;
  min-width: 210px;
  z-index: 10000;
  background-image: var(--menu-bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nav-links.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links li {
  list-style: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.nav-links.open li {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  display: block;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.nav-back {
  color: var(--accent);
  font-size: 0.95rem;
}

.nav-links a.nav-back:hover {
  color: var(--white);
}

.nav-divider {
  height: 1px;
  background: rgba(198, 163, 107, 0.3);
  margin: 6px 0;
}

.nav-links li:nth-child(2).nav-divider {
  margin: 2px 0 6px 0;
}

.nav-brand {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  text-transform: uppercase;
}

.nav-links.open li:nth-child(1) {
  transition-delay: 0.05s;
}
.nav-links.open li:nth-child(2) {
  transition-delay: 0.1s;
}
.nav-links.open li:nth-child(3) {
  transition-delay: 0.15s;
}
.nav-links.open li:nth-child(4) {
  transition-delay: 0.2s;
}
.nav-links.open li:nth-child(5) {
  transition-delay: 0.25s;
}
.nav-links.open li:nth-child(6) {
  transition-delay: 0.3s;
}
.nav-links.open li:nth-child(7) {
  transition-delay: 0.35s;
}
.nav-links.open li:nth-child(8) {
  transition-delay: 0.4s;
}
.nav-links.open li:nth-child(9) {
  transition-delay: 0.45s;
}
.nav-links.open li:nth-child(10) {
  transition-delay: 0.5s;
}
.nav-links.open li:nth-child(11) {
  transition-delay: 0.55s;
}
.nav-links.open li:nth-child(12) {
  transition-delay: 0.6s;
}
.nav-links.open li:nth-child(13) {
  transition-delay: 0.65s;
}

.hero {
  width: min(1200px, 92%);
  margin: -12px auto 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  position: relative;
}

.hero > * {
  min-width: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px -20px auto -20px;
  height: 300px;
  background: linear-gradient(120deg, #ffffff, #f0e5d6);
  border-radius: 28px;
  z-index: -1;
  box-shadow: var(--shadow-soft);
}

.hero-content h1 {
  font-family: "Amarillo", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--bg-deep);
  margin-bottom: 6px;
  white-space: nowrap;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(198, 163, 107, 0.15);
  color: var(--accent-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.hero-lead {
  color: var(--text-soft);
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  margin-top: 25px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  min-height: 44px;
}

.btn-primary {
  background: var(--bg-deep);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  border: 1px solid rgba(31, 59, 52, 0.2);
  color: var(--bg-deep);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-meta div {
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hero-meta span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-deep);
}

.hero-meta small {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.hero-panel {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 10px;
  color: var(--bg-deep);
}

.hero-panel p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.hero-slider {
  position: relative;
  height: clamp(320px, 60vh, 520px);
  overflow: hidden;
  margin: 20px auto 100px;
  width: min(1200px, 92%);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent);
}

.slide.active {
  opacity: 1;
}

.slide-text {
  position: absolute;
  bottom: 18%;
  left: 10%;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s;
  z-index: 1;
}

.slide-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.slide-text.active {
  opacity: 1;
  transform: translateY(0);
}

#offers {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 100px 0 100px;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

#offers h2 {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--bg-deep);
}

.card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h2 {
  padding: 16px 16px 6px;
  font-size: 1.1rem;
  color: var(--bg-deep);
}

.card .price {
  padding: 0 16px 6px;
  font-weight: 700;
  color: var(--accent-dark);
}

.card p {
  padding: 0 16px 20px;
  color: var(--text-soft);
  flex-grow: 1;
}

#offers .scroll-reveal-item:nth-child(2) {
  animation-delay: 0.1s;
}

#offers .scroll-reveal-item:nth-child(3) {
  animation-delay: 0.2s;
}

#offers .scroll-reveal-item:nth-child(4) {
  animation-delay: 0.3s;
}

#offers .scroll-reveal-item:nth-child(5) {
  animation-delay: 0.4s;
}

.benefits,
.process,
.faq {
  width: min(1200px, 92%);
  margin: 0 auto 100px;
  text-align: center;
}

.audience,
.equipment,
.service-area {
  width: min(1200px, 92%);
  margin: 0 auto 100px;
  text-align: center;
}

.benefits h2,
.process h2,
.faq h2,
#testimonials h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--bg-deep);
  margin-bottom: 24px;
}

.audience h2,
.equipment h2,
.service-area h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--bg-deep);
  margin-bottom: 24px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.audience-grid article {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.audience-grid h3 {
  margin-bottom: 8px;
  color: var(--bg-deep);
}

.audience-grid p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.audience-grid .scroll-reveal-item:nth-child(1) {
  animation-delay: 0.1s;
}

.audience-grid .scroll-reveal-item:nth-child(2) {
  animation-delay: 0.2s;
}

.audience-grid .scroll-reveal-item:nth-child(3) {
  animation-delay: 0.3s;
}

.audience-grid .scroll-reveal-item:nth-child(4) {
  animation-delay: 0.4s;
}

.equipment-card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: left;
}

.equipment-card p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  background: rgba(198, 163, 107, 0.2);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.equipment-note {
  background: linear-gradient(120deg, #1f3b34, #2d5a4f);
  color: var(--white);
  border-radius: 20px;
  padding: 20px;
}

.equipment-note h3 {
  margin-bottom: 8px;
}

.equipment-note p {
  color: rgba(255, 255, 255, 0.85);
}

.service-area p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.area-list span {
  background: var(--white);
  border: 1px solid rgba(31, 59, 52, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--bg-deep);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.benefit-grid article {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.benefit-grid i {
  font-size: 1.5rem;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.benefit-grid h3 {
  margin-bottom: 8px;
  color: var(--bg-deep);
}

.benefit-grid p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.benefit-grid .scroll-reveal-item:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-grid .scroll-reveal-item:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-grid .scroll-reveal-item:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-grid .scroll-reveal-item:nth-child(4) {
  animation-delay: 0.4s;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.process-grid div {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.process-grid span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 163, 107, 0.2);
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.process-grid h3 {
  margin-bottom: 8px;
  color: var(--bg-deep);
}

.process-grid p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.process-grid .scroll-reveal-item:nth-child(1) {
  animation-delay: 0.1s;
}

.process-grid .scroll-reveal-item:nth-child(2) {
  animation-delay: 0.2s;
}

.process-grid .scroll-reveal-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  text-align: left;
}

.faq-grid details {
  background: var(--white);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--bg-deep);
  margin-bottom: 8px;
}

.faq-grid p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.detail {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.detail.open {
  display: flex;
}

.panel {
  width: 95%;
  max-width: 1100px;
  max-height: 95vh;
  overflow-y: auto;
  background: linear-gradient(to bottom, #fff, #f5ede3);
  border-radius: 24px;
  padding: 30px;
}

.detail-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 25px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}

.chip {
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cta {
  width: min(1000px, 92%);
  margin: 0 auto 100px;
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(120deg, #1f3b34, #2d5a4f);
  color: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

#cta p {
  font-style: normal;
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
}

#booking {
  width: min(700px, 92%);
  margin: 0 auto 100px;
  padding: 30px 25px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

#booking h2 {
  font-family: "Playfair Display", serif;
  color: var(--bg-deep);
  margin-bottom: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

input,
select,
button {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(30, 42, 38, 0.2);
  width: 100%;
  font-family: inherit;
}

button {
  background: var(--bg-deep);
  color: white;
  border: none;
  cursor: pointer;
  min-height: 44px;
  font-weight: 600;
}

.social-buttons {
  width: min(1200px, 92%);
  margin: 60px auto 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 1000;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.2rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.instagram {
  background: #e1306c;
}
.whatsapp {
  background: #25d366;
}
.facebook {
  background: #1877f2;
}

.hidden {
  display: none;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin: 50px 0 20px;
}

.footer-logo img {
  max-width: 180px;
}

footer {
  text-align: center;
  padding: 24px 0 30px;
  font-size: 14px;
  color: var(--text-soft);
}

footer .footer-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: bold;
}

.footer-legal {
  display: inline-block;
  margin-top: 6px;
}

.legal {
  width: min(1000px, 92%);
  margin: 40px auto 60px;
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.legal h1 {
  font-family: "Playfair Display", serif;
  color: var(--bg-deep);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  line-height: 1.3;
}

.legal h2 {
  font-family: "Playfair Display", serif;
  color: var(--bg-deep);
  margin: 24px 0 12px;
  font-size: 1.3rem;
  font-weight: 600;
}

.legal p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 1rem;
}

.legal ul,
.legal ol {
  margin-left: 24px;
  margin-bottom: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

.legal li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
}

.legal a:hover {
  color: var(--bg-deep);
  text-decoration: underline;
}

.legal small {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.legal-page nav {
  position: sticky;
  top: 0;
  background: rgba(31, 59, 52, 0.95);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(198, 163, 107, 0.2);
}

.legal-page nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}

.legal-page nav li:first-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.legal-page nav li:first-child a {
  color: var(--accent);
  font-size: 16px;
}

.legal-page nav li:nth-child(2) {
  display: none;
  padding-left: 0;
}

@media (max-width: 768px) {
  .legal-page .nav-hamburger {
    display: flex;
  }

  .legal-page .hamburger {
    display: none;
  }

  .legal-page .nav-links {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 14px 18px;
    min-width: auto;
    flex-grow: 1;
  }

  .legal-page .nav-links li {
    opacity: 1;
    transform: none;
    padding: 0;
    margin: 0;
  }

  .legal-page .nav-links li a {
    color: var(--accent);
    font-size: 16px;
  }

  .legal-page nav ul {
    gap: 0;
  }

  .legal-page nav li:first-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }

  .legal-page .nav-hamburger {
    display: flex;
    justify-content: flex-start;
  }

  .legal {
    padding: 28px 24px;
    margin: 30px auto 50px;
  }

  .legal h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .legal h2 {
    font-size: 1.1rem;
    margin: 18px 0 10px;
  }

  .legal p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .legal ul,
  .legal ol {
    margin-left: 20px;
    font-size: 0.95rem;
  }

  .legal li {
    margin-bottom: 8px;
  }

  .legal a {
    color: var(--accent-dark);
    font-weight: 500;
  }
}

footer .footer-link:hover {
  color: var(--bg-deep);
}

.legal-links {
  background-color: var(--bg-soft);
  border-left: 4px solid var(--accent);
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

.legal-links h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.legal-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links li {
  margin-bottom: 10px;
}

.legal-links a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.kontakt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.kontakt i {
  margin-right: 8px;
  color: var(--accent-dark);
}

.stars {
  color: #f2c94c;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

#testimonials {
  width: min(1200px, 92%);
  margin: 0 auto 100px;
  padding-top: 40px;
  overflow: hidden;
}

.testimonials-slider {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial {
  flex: 0 0 100%;
  padding: 50px 20px;
  box-sizing: border-box;
  background-color: var(--bg-deep);
  color: var(--white);
  text-align: center;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.testimonial cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-arrows {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonial-arrows button {
  background: var(--bg-deep);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.testimonial-arrows button:hover {
  transform: scale(1.1);
}

.contact-section {
  width: min(1100px, 92%);
  margin: 100px auto 100px;
  padding: 50px 30px;
  background: rgb(255, 241, 220);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.contact-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--bg-deep);
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}

.contact-info {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-info a,
.kontakt a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info a:visited,
.kontakt a:visited {
  color: var(--text-dark);
}

.contact-info a:hover,
.contact-info a:focus,
.kontakt a:hover,
.kontakt a:focus {
  color: var(--accent-dark);
  text-decoration: underline;
}

.opening-hours {
  font-size: 1rem;
  color: var(--accent-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.map-wrapper {
  position: relative;
  width: min(680px, 92%);
  height: 380px;
  margin: 0 auto 30px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.full-line {
  width: min(1200px, 92%);
  height: 2px;
  margin: 80px auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(31, 59, 52, 0.4),
    transparent
  );
}

@media (max-width: 1024px) {
  nav {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 18px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(31, 59, 52, 0.63);
    z-index: 1000;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(198, 163, 107, 0.2);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    margin: 0;
    min-width: 100%;
    width: 100vw;
    height: 100vh;
    padding: 120px 28px 40px;
    border: none;
    border-radius: 0;
    background-image: var(--menu-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
  }

  .nav-links li {
    text-align: center;
    padding: 0;
    position: relative;
    z-index: 2;
    transform: translateY(18px);
    opacity: 0;
    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
  }

  .nav-links.open li {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding: 6px 0;
    transition: opacity 0.2s ease;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    opacity: 0.85;
  }

  .nav-links a:hover::after,
  .nav-links a:focus::after {
    transform: scaleX(1);
  }

  .nav-divider {
    width: min(320px, 70%);
    margin: 10px auto;
  }

  .nav-brand {
    margin-top: 14px;
  }

  .testimonial-arrows {
    display: flex;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  .hero::before {
    height: 240px;
  }

  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slider {
    border-radius: 20px;
  }

  .social-buttons {
    margin: 50px auto 40px;
    gap: 18px;
  }

  .social-btn {
    width: 54px;
    height: 54px;
    font-size: 1.15rem;
  }
}

.legal h2 {
  font-size: 1rem;
  margin: 16px 0 10px;
}

.legal p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.legal small {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.legal ul,
.legal ol {
  margin-left: 18px;
  font-size: 0.9rem;
}

.legal li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.legal br {
  line-height: 1.4;
}

@media (max-width: 480px) {
  body {
    padding-top: 72px;
  }

  .hero-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero::before {
    inset: -20px -10px auto -10px;
    height: 210px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-family: "Amarillo", sans-serif !important;
    font-size: 1.65rem;
    text-align: center;
  }

  .map-wrapper {
    height: 300px;
  }

  .legal {
    padding: 20px 16px;
    margin: 20px auto 40px;
    border-radius: 16px;
  }

  .legal h1 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .legal h2 {
    font-size: 0.95rem;
    margin: 14px 0 8px;
    font-weight: 600;
  }

  .legal p {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .legal small {
    font-size: 0.7rem;
  }

  .legal ul,
  .legal ol {
    margin-left: 16px;
    font-size: 0.85rem;
  }

  .legal li {
    margin-bottom: 5px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .nav-links {
    left: 12px;
    right: 12px;
    min-width: unset;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .hero-panel .btn {
    width: 100%;
  }

  .hero-slider {
    height: 280px;
  }

  .card img {
    height: 180px;
  }

  .testimonial {
    padding: 36px 16px;
  }

  #cta {
    padding: 28px 20px;
  }

  #booking {
    padding: 24px 18px;
  }

  .contact-section {
    padding: 32px 18px;
  }

  .map-wrapper {
    height: 260px;
  }

  .social-buttons {
    width: min(1200px, 92%);
    margin: 40px auto 30px;
    gap: 16px;
  }

  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .equipment-card {
    padding: 20px;
  }

  .service-area .btn {
    width: 100%;
  }

  .legal {
    padding: 18px 14px;
    margin: 18px auto 35px;
    border-radius: 14px;
    width: min(100%, calc(100% - 16px));
  }

  .legal h1 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    line-height: 1.2;
    word-wrap: break-word;
  }

  .legal h2 {
    font-size: 0.9rem;
    margin: 12px 0 6px;
    font-weight: 600;
  }

  .legal p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .legal small {
    font-size: 0.65rem;
  }

  .legal ul,
  .legal ol {
    margin-left: 14px;
    padding-left: 0;
    font-size: 0.8rem;
  }

  .legal li {
    margin-bottom: 4px;
    line-height: 1.4;
    word-break: break-word;
  }

  .legal a {
    word-break: break-word;
  }

  .legal br {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero::before {
    height: 200px;
  }

  .hero-content h1 {
    font-family: "Amarillo", sans-serif !important;
    font-size: 1.55rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .legal {
    padding: 16px 12px;
    margin: 16px auto 32px;
  }

  .legal h1 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .legal h2 {
    font-size: 0.85rem;
    margin: 10px 0 5px;
  }

  .legal p {
    font-size: 0.75rem;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .legal ul,
  .legal ol {
    margin-left: 12px;
    font-size: 0.75rem;
  }

  .legal li {
    margin-bottom: 3px;
    line-height: 1.35;
  }
}

@media (max-width: 360px) {
  body {
    padding-top: 68px;
  }

  .hero::before {
    height: 190px;
  }

  .hero-content h1 {
    font-family: "Amarillo", sans-serif !important;
    font-size: 1.45rem;
  }

  .hero-panel {
    padding: 18px;
  }

  .legal {
    padding: 14px 10px;
    margin: 14px auto 28px;
    border-radius: 12px;
  }

  .legal h1 {
    font-size: 1rem;
    margin-bottom: 4px;
    word-break: break-word;
  }

  .legal h2 {
    font-size: 0.8rem;
    margin: 8px 0 4px;
    font-weight: 600;
  }

  .legal p {
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .legal small {
    font-size: 0.6rem;
  }

  .legal ul,
  .legal ol {
    margin-left: 10px;
    font-size: 0.7rem;
  }

  .legal li {
    margin-bottom: 2px;
    line-height: 1.3;
  }
}

img,
video {
  max-width: 100%;
  height: auto;
}

a,
button {
  min-height: 44px;
}

.hero-slider.scroll-reveal {
  animation-delay: 0.1s;
}

.faq-grid .scroll-reveal-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-grid .scroll-reveal-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-grid .scroll-reveal-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-grid .scroll-reveal-item:nth-child(4) {
  animation-delay: 0.4s;
}

.equipment-card.scroll-reveal-item {
  animation-delay: 0.1s;
}

.service-area .scroll-reveal-item:nth-child(1) {
  animation-delay: 0.1s;
}

.service-area .scroll-reveal-item:nth-child(2) {
  animation-delay: 0.2s;
}

#cta.scroll-reveal {
  animation-delay: 0.1s;
}

#booking.scroll-reveal {
  animation-delay: 0.1s;
}

#testimonials.scroll-reveal {
  animation-delay: 0.1s;
}

@media (hover: none) {
  .btn:hover,
  .card:hover,
  .testimonial-arrows button:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    inset: 0;
    width: 100vw;
    height: 100vh;
    padding: 120px 28px 40px;
    border-radius: 0;
    background-image: url("m1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  .nav-links::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    transform: translateY(18px);
    opacity: 0;
    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
    z-index: 2;
    position: relative;
  }

  .nav-links.open li {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding: 6px 0;
    transition: opacity 0.2s ease;
    z-index: 2;
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
  }
}

@media (max-width: 1024px) {
  .legal-page .nav-hamburger {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .legal-page .hamburger {
    display: none;
  }

  .legal-page .nav-links {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    min-width: auto;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    background-image: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .legal-page .nav-links::before {
    content: none;
  }

  .legal-page .nav-links li,
  .legal-page .nav-links.open li {
    opacity: 1;
    transform: none;
    padding: 0;
    margin: 0;
  }

  .legal-page .nav-links a {
    color: var(--accent);
    font-size: 16px;
    padding: 0;
  }
}
