@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Quicksand:wght@300;400;500;600&display=swap");

:root {
  --rose: #f2d7dc;
  --rose-deep: #e9c3cb;
  --ivory: #fefcfb;
  --gold: #c9a24b;
  --olive: #6f7f6a;
  --ink: #3c2f2a;
  --shadow: rgba(60, 47, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Quicksand", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f8ecef 0%, #fefcfb 48%, #f7f2f0 100%);
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  padding: 32px 24px 80px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.35), rgba(201, 162, 75, 0));
  filter: blur(10px);
  z-index: 0;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto 48px;
}

.brand {
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__actions {
  display: flex;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(60, 47, 42, 0.2);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 24px rgba(60, 47, 42, 0.08);
}

.lang-button {
  border: none;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.08em;
}

.lang-button.is-active {
  background: var(--ink);
  color: #fff;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--olive);
}

h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(32px, 5vw, 54px);
  margin: 16px 0;
  line-height: 1.1;
}

.lead {
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__card {
  padding: 32px;
  border-radius: 24px;
  background: var(--ivory);
  box-shadow: 0 24px 60px var(--shadow);
  border: 1px solid rgba(201, 162, 75, 0.2);
}

.logo {
  text-align: center;
  padding: 16px 8px 24px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.3);
}

.logo__title {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo__subtitle {
  display: block;
  margin-top: 8px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--olive);
}

.card__text {
  margin-top: 20px;
  line-height: 1.6;
}

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.section h2 {
  font-family: "Cinzel", serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.section__panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(201, 162, 75, 0.2);
  box-shadow: 0 18px 40px var(--shadow);
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

.about-photo figcaption {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(60, 47, 42, 0.7);
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  font-weight: 500;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.contact__link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}

.contact__link:hover {
  text-decoration: underline;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.panel__note h3 {
  font-family: "Cinzel", serif;
  margin-top: 0;
}

.footer {
  text-align: center;
  padding: 32px 16px 48px;
  color: rgba(60, 47, 42, 0.7);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #d6b066, #c1943d);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(201, 162, 75, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(201, 162, 75, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 75, 0.6);
  box-shadow: none;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(60, 47, 42, 0.2);
  box-shadow: none;
}

.section--categories {
  padding-top: 16px;
  grid-template-columns: 1fr;
}

.section--categories .section__content {
  text-align: center;
}

.section--services {
  grid-template-columns: 1fr;
}

.section--services .section__content {
  text-align: center;
}

.categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.category-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(242, 215, 220, 0.35);
  border: 1px solid rgba(201, 162, 75, 0.2);
  justify-items: center;
}

.category-card > div {
  display: contents;
}

.category-photo {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 75, 0.2);
  box-shadow: 0 10px 24px var(--shadow);
  background: #fff;
}

.category-photo--mika {
  object-position: center 90%;
}

.category-photo--mirian {
  object-position: center 20%;
}

.category-title {
  grid-column: 2;
  align-self: center;
  font-size: 1.05rem;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.category-desc {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  line-height: 1.85;
}

.services {
  padding: 24px;
}

.services__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}

.services__track::-webkit-scrollbar {
  height: 8px;
}

.services__track::-webkit-scrollbar-thumb {
  background: rgba(201, 162, 75, 0.35);
  border-radius: 999px;
}

.service-card {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(201, 162, 75, 0.2);
  box-shadow: 0 12px 28px var(--shadow);
  display: grid;
  gap: 12px;
  text-align: left;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
}

.service-card h3 {
  margin: 0;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  line-height: 1.65;
}

.section--reviews .section__panel {
  display: grid;
  gap: 12px;
}

.reviews {
  display: grid;
  gap: 12px;
}

.review-card {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(242, 215, 220, 0.25);
  border: 1px solid rgba(201, 162, 75, 0.2);
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero__card {
    order: -1;
  }

}
