﻿:root {
  --brown-950: #2f1b15;
  --brown-900: #4a2d24;
  --brown-700: #6b4336;
  --brown-500: #8f6252;
  --brown-300: #c59c88;

  --white-100: #fffdf9;
  --white-200: #f6eee8;

  --sky-400: #7ec6dd;
  --sky-300: #b9e1ef;

  --purple-500: #7f5bb2;
  --purple-300: #b49ed5;

  --text: #2e1d17;
  --muted: #6e5348;
  --line: rgba(74, 45, 36, 0.18);
  --focus-ring: rgba(127, 91, 178, 0.32);

  --shadow-soft: 0 16px 38px rgba(47, 27, 21, 0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 700px at 12% 6%, rgba(126, 198, 221, 0.18), transparent 62%),
    radial-gradient(800px 620px at 88% 8%, rgba(180, 158, 213, 0.15), transparent 60%),
    linear-gradient(180deg, #6b4336 0%, #5e3930 36%, #4a2d24 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 76px 0; }

.section--light {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(248, 241, 235, 0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--cream {
  background: linear-gradient(180deg, rgba(246, 238, 232, 0.98), rgba(255, 253, 249, 0.95));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--dark {
  background:
    radial-gradient(700px 320px at 12% 10%, rgba(126, 198, 221, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(107, 67, 54, 0.96), rgba(74, 45, 36, 0.98));
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  border-bottom: 1px solid rgba(255, 253, 249, 0.12);
}

.section__head {
  text-align: center;
  margin-bottom: 28px;
}

.section__head--left { text-align: left; }

.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 1.15rem + 1.1vw, 2.35rem);
  letter-spacing: 0.2px;
}

.section--light,
.section--light .section__head h2,
.section--light .muted,
.section--cream,
.section--cream .section__head h2,
.section--cream .muted {
  color: #1f1511;
}

.section--dark,
.section--dark .section__head h2,
.section--dark .muted,
.section--dark p,
.section--dark li,
.section--dark a {
  color: #fff;
}

.section--dark .section__head h2,
.section--dark h3 {
  font-weight: 800;
}

.muted { color: var(--muted); }
.small { font-size: 0.92rem; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(120deg, rgba(74, 45, 36, 0.92), rgba(58, 34, 27, 0.9));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(185, 225, 239, 0.24);
  box-shadow: 0 8px 20px rgba(47, 27, 21, 0.28);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  color: var(--white-100);
  letter-spacing: 0.3px;
}

.brand__text { font-size: 1.03rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: rgba(255, 241, 233, 0.9);
  font-weight: 650;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(126, 198, 221, 0.22), rgba(127, 91, 178, 0.2));
}

.nav a.btn--sm {
  color: #fff;
  border: 1px solid rgba(185, 225, 239, 0.45);
  background: linear-gradient(135deg, #8f6252, #7f5bb2);
  box-shadow: 0 8px 18px rgba(47, 27, 21, 0.3);
}

.nav a.btn--sm:hover {
  color: #fff;
  background: linear-gradient(135deg, #7a5244, #67479a);
}

.nav a.btn--sm:active {
  color: #fff;
  background: linear-gradient(135deg, #684336, #553a81);
}

.language-select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(185, 225, 239, 0.45);
  background: linear-gradient(135deg, #8f6252, #7f5bb2);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(47, 27, 21, 0.3);
}

.language-select:hover {
  background: linear-gradient(135deg, #7a5244, #67479a);
}

.language-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 225, 239, 0.32);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  position: relative;
  padding: 72px 0 24px;
}

.hero--gallery .section__head { margin-bottom: 14px; }

.pill {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(185, 225, 239, 0.45);
  background: rgba(185, 225, 239, 0.15);
  color: #fdf6f2;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(2.1rem, 1.3rem + 2vw, 3.2rem);
  color: #fff7f2;
  text-shadow: 0 10px 22px rgba(47, 27, 21, 0.42);
}

.intro__content {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.lead {
  margin: 0;
  max-width: 68ch;
  color: var(--text);
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat__num {
  display: block;
  font-weight: 800;
  color: var(--brown-900);
}

.stat__label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(180, 158, 213, 0.45);
  background: linear-gradient(135deg, var(--brown-900), var(--brown-700) 62%, var(--purple-500));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(63, 43, 35, 0.2);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); filter: brightness(0.98); }

.btn--ghost {
  color: #f9ece5;
  background: rgba(126, 198, 221, 0.18);
  border-color: rgba(185, 225, 239, 0.5);
}

.btn--sm { padding: 10px 12px; }

.card {
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.96), rgba(246, 238, 232, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 247, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(63, 43, 35, 0.18);
}

.service-card__media {
  min-height: 145px;
  border-radius: 14px;
  border: 1px dashed rgba(127, 91, 178, 0.42);
  background-color: rgba(185, 225, 239, 0.36);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  text-align: center;
}

.service-card__media span {
  background: rgba(255, 255, 255, 0.78);
  color: var(--brown-700);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0;
  color: var(--brown-900);
  font-size: 1.03rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.highlights {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.highlight {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.9);
}

.section--dark .highlight {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(255, 253, 249, 0.18);
}

.section--dark .highlight p,
.section--dark .highlight a,
.section--dark .hours__list li,
.section--dark .small {
  color: rgba(255, 253, 249, 0.88);
}

.hours {
  padding: 18px;
  margin-top: 12px;
}

.hours__list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.hours__list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
}

.hours__list li:last-child { border-bottom: none; }

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact__card { padding: 18px; }
.contact__line { margin: 8px 0; }

.section--dark .contact__card,
.section--dark .hours {
  background: rgba(255, 253, 249, 0.1);
  border-color: rgba(255, 253, 249, 0.18);
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246, 238, 232, 0.96), rgba(255, 251, 247, 0.96));
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 14px;
  color: var(--muted);
}

.footer__links a:hover { color: var(--brown-900); }

.carousel {
  position: relative;
  width: 200%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.carousel__track {
  display: flex;
  transition: transform 0.55s ease-in-out;
}

.carousel__slide { min-width: 100%; }

.carousel__slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.carousel--hero {
  width: min(100%, 1024px);
  aspect-ratio: 1024 / 1536;
}

.carousel--hero .carousel__track,
.carousel--hero .carousel__slide {
  height: 100%;
}

.carousel--hero .carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(47, 27, 21, 0.1);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(47, 27, 21, 0.68);
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel__btn:hover { background: rgba(127, 91, 178, 0.84); }
.carousel__btn.prev { left: 12px; }
.carousel__btn.next { right: 12px; }

.carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel__dots .dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.carousel__dots .dot.active { background: var(--purple-500); }

.carousel--reviews {
  max-width: 920px;
  background: rgba(255, 255, 255, 0.95);
}

.carousel--reviews .carousel__slide {
  min-height: 260px;
  padding: 36px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-slide p {
  margin: 0;
  font-size: 1.06rem;
  color: var(--text);
}

.review-slide h3 {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about { grid-template-columns: 1fr; }
  .carousel__slide img { height: 420px; }
  .carousel--hero .carousel__slide img { height: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .container { width: min(var(--max), calc(100% - 26px)); }
  .services-grid { grid-template-columns: 1fr; }
  .carousel__slide img { height: 300px; }
  .carousel--hero .carousel__slide img { height: 100%; }
  .carousel--reviews .carousel__slide {
    min-height: 220px;
    padding: 28px 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal,
  .service-card,
  .btn,
  .carousel__track { transition: none !important; }
}
