:root {
  --bg: #f7f4f2;
  --surface: #ffffff;
  --accent: #c49b7a;
  --accent-dark: #a27852;
  --text: #232220;
  --muted: #66625d;
  --line: rgba(36, 35, 33, 0.12);
  --shadow: 0 20px 45px rgba(35, 34, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.logo span {
  color: var(--accent);
}

.hero {
  background: linear-gradient(135deg, #fdfaf6 0%, #f4ece5 48%, #f1e5dc 100%);
  padding-bottom: 5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  width: min(1100px, 92vw);
  margin: 0 auto 3rem;
  padding-top: 2rem;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 30px rgba(196, 155, 122, 0.25);
}

.btn.primary:hover {
  transform: translateY(-3px);
  background: var(--accent-dark);
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.ghost:hover {
  background: rgba(196, 155, 122, 0.16);
}

.hero-card {
  align-self: center;
  padding: 2.25rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.hero-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.hero-card li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.hero-card li::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

section {
  padding: 5rem 0;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.about .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--muted);
}

.facts {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.fact {
  background: var(--surface);
  padding: 1.3rem 1.8rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.fact strong {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
}

.fact span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.about-image {
  position: relative;
  min-height: 360px;
}

.about-image .frame {
  position: absolute;
  inset: 10%;
  border: 1px solid var(--accent);
  border-radius: 32px;
}

.about-image .photo {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(162, 120, 82, 0.8), rgba(244, 236, 229, 0.9));
  box-shadow: var(--shadow);
  background-image: linear-gradient(135deg, rgba(32, 24, 19, 0.65), rgba(162, 120, 82, 0.5)), url('https://anystyle.cz/image/IMG_8084.JPG');
  background-size: cover;
  background-position: center;
}

.services {
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.service {
  background: var(--bg);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(35, 34, 32, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(35, 34, 32, 0.12);
}

.service h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.service p {
  color: var(--muted);
  margin-bottom: 0;
}

.process {
  background: linear-gradient(135deg, #fefaf7 0%, #f4ece5 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--surface);
  border-radius: 26px;
  padding: 2rem;
  border: 1px solid rgba(35, 34, 32, 0.06);
  box-shadow: var(--shadow);
}

.step .number {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.step h3 {
  margin: 0 0 0.85rem;
}

.step p {
  color: var(--muted);
}

.gallery .subtitle {
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: var(--surface);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
}

.placeholder.gradient {
  background: linear-gradient(135deg, rgba(35, 34, 32, 0.2) 0%, rgba(196, 155, 122, 0.7) 100%);
}

.gallery-item figcaption {
  padding: 1.4rem;
  font-weight: 500;
}

.testimonials {
  background: var(--surface);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg);
  border-radius: 24px;
  padding: 2rem;
  font-style: italic;
  border: 1px solid rgba(35, 34, 32, 0.06);
  box-shadow: var(--shadow);
}

.testimonial h3 {
  margin-top: 1.4rem;
  font-style: normal;
  font-size: 1rem;
  color: var(--muted);
}

.contact {
  background: linear-gradient(120deg, #f7f1ea 0%, #fdfcfa 100%);
}

.contact-card {
  background: var(--surface);
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 25px 55px rgba(35, 34, 32, 0.12);
  border: 1px solid rgba(35, 34, 32, 0.06);
}

.contact-card p {
  color: var(--muted);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
}

.contact-info .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.contact-info a:hover {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
}

input,
textarea {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(35, 34, 32, 0.15);
  background: #fdfbf8;
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(196, 155, 122, 0.2);
}

.footer {
  background: #1f1e1c;
  color: rgba(255, 255, 255, 0.75);
  padding: 1.8rem 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.back-to-top {
  color: #fff;
  font-weight: 500;
}

.back-to-top:hover {
  color: var(--accent);
}

@media (max-width: 960px) {
  .hero-content,
  .about .container {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .facts {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    padding: 1rem 0;
  }

  section {
    padding: 3.5rem 0;
  }

  .contact-card {
    padding: 2rem;
  }
}

.gallery-slider {
  position: relative;
  margin-top: 2rem;
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(35, 34, 32, 0.08);
  padding: clamp(1.5rem, 2vw, 2rem);
}

.slider-window {
  overflow: hidden;
  border-radius: 22px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  cursor: grab;
}


.gallery-slider figure {
  flex: 0 0 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2vw, 1.6rem);
}


.slide-media {
  position: relative;
  width: clamp(140px, 22vw, 220px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(35, 34, 32, 0.16), rgba(196, 155, 122, 0.4));
  box-shadow: 0 18px 26px rgba(35, 34, 32, 0.16);
}


.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-slider figcaption {
  max-width: 420px;
  text-align: center;
}

.gallery-slider figcaption h3 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

.gallery-slider figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(35, 34, 32, 0.15);
  background: #fff;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(35, 34, 32, 0.2);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dots button[aria-selected="true"] {
  background: var(--accent);
  transform: scale(1.1);
}

@media (max-width: 720px) {
  .gallery-slider figure {
    text-align: center;
  }

  .gallery-slider figcaption {
    max-width: 100%;
  }

  .slider-controls {
    justify-content: space-between;
  }
}


  .slider-controls {
    justify-content: space-between;
  }
}

.slider-empty {
  padding: 2.5rem;
  text-align: center;
  color: var(--muted);
}

.slider-track.is-dragging {
  cursor: grabbing;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(35, 34, 32, 0.06);
}

.lang-switcher button {
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switcher button:hover {
  color: var(--text);
}

.lang-switcher button[aria-pressed="true"] {
  background: #fff;
  color: var(--text);
  box-shadow: 0 6px 16px rgba(35, 34, 32, 0.12);
}

.lang-switcher button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn.download {
  border: 1px solid rgba(196, 155, 122, 0.6);
  background: rgba(196, 155, 122, 0.12);
  color: var(--accent-dark);
}

.btn.download:hover,
.btn.download:focus-visible {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 960px) {
  .nav-actions {
    margin-left: auto;
  }

  .lang-switcher {
    background: rgba(35, 34, 32, 0.1);
  }
}

@media (max-width: 640px) {
  .nav-actions {
    gap: 0.75rem;
  }

  .lang-switcher button {
    font-size: 0.8rem;
    padding: 0.3rem 0.55rem;
  }
}
