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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: #4a403c;
  background: linear-gradient(180deg, #f9f4f1 0%, #fdfaf8 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #6d5855;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.98rem;
}

.menu a {
  color: #6b5a56;
  transition: 0.25s;
  position: relative;
}

.menu a:not(.menu-button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: #b68f8b;
  transition: width 0.25s ease;
}

.menu a:not(.menu-button):hover::after {
  width: 100%;
}

.menu a:hover {
  opacity: 0.7;
}

.menu-button {
  padding: 12px 18px;
  border: 1px solid rgba(137, 109, 105, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.hero {
  padding-top: 120px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("images/bg-ruzova.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 245, 242, 0.92) 0%,
    rgba(250, 245, 242, 0.72) 45%,
    rgba(250, 245, 242, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 90px;
}

.eyebrow,
.section-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #aa8b86;
  margin-bottom: 14px;
}

.hero h1,
section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  color: #5e4d49;
}

.hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  margin-bottom: 24px;
}

.hero-text {
  max-width: 610px;
  font-size: 1.08rem;
  color: #6d615d;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: #b68f8b;
  color: white;
  box-shadow: 0 12px 30px rgba(182, 143, 139, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(122, 97, 93, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #6a5754;
}

.btn-secondary:hover {
  box-shadow: 0 12px 30px rgba(119, 92, 88, 0.08);
}

.intro,
.services,
.about,
.process,
.contact {
  padding: 110px 0;
}

.intro-grid,
.services-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

.intro-grid {
  grid-template-columns: repeat(3, 1fr);
}

.intro-card,
.service-box,
.step,
.contact-box {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(191, 164, 160, 0.14);
  border-radius: 28px;
  box-shadow: 0 16px 50px rgba(119, 92, 88, 0.08);
  backdrop-filter: blur(10px);
}

.intro-card,
.service-box,
.step {
  padding: 30px;
}

.intro-card h3,
.service-box h3,
.step h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #5e4d49;
  margin-bottom: 10px;
}

.services h2,
.about h2,
.process h2,
.contact h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 28px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(246, 238, 235, 0.65) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(191, 164, 160, 0.14);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 16px 50px rgba(119, 92, 88, 0.06);
  backdrop-filter: blur(8px);
}

.about p {
  margin-bottom: 18px;
  color: #6c605d;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step span {
  display: inline-block;
  margin-bottom: 14px;
  color: #b08a85;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.contact {
  background-image: url("images/bg-bezova.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-box {
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(191, 164, 160, 0.14);
  border-radius: 32px;
  box-shadow: 0 16px 50px rgba(119, 92, 88, 0.08);
  backdrop-filter: blur(10px);
}

.contact-details {
  display: grid;
  gap: 14px;
  align-content: center;
  font-size: 1.05rem;
  color: #655754;
}

.contact-details a {
  color: #b68f8b !important;
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* seznamy */
ul {
  margin-top: 15px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.about ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.about li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b68f8b;
  font-weight: bold;
}

/* animace */
.intro-card,
.service-box,
.step,
.about-grid,
.contact-box {
  animation: fadeUp 0.8s ease both;
}

.intro-card:nth-child(2),
.service-box:nth-child(2),
.step:nth-child(2) {
  animation-delay: 0.15s;
}

.intro-card:nth-child(3),
.service-box:nth-child(3),
.step:nth-child(3) {
  animation-delay: 0.3s;
}

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

/* tlačítko objednání - funguje na všech zařízeních */
.booking-link {
  display: inline-block;
  margin: 8px 0;
  padding: 10px 18px;
  background: #b68f8b;
  color: #ffffff !important;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 10px 25px rgba(182, 143, 139, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.booking-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(182, 143, 139, 0.3);
  opacity: 1;
}

@media (max-width: 980px) {
  .intro-grid,
  .services-grid,
  .process-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .menu {
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 100px;
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    line-height: 1;
  }

  .intro,
  .services,
  .about,
  .process,
  .contact {
    padding: 80px 0;
  }

  .contact-box {
    padding: 28px;
  }
}