:root {
  --bg-1: #fcf6f4;
  --bg-2: #fffaf6;
  --bg-hero-top: #f2e7e3;
  --bg-hero-bottom: #ead9d1;
  --accent: #c6a77d;
  --accent-dark: #9f7f54;
  --text: #31281e;
  --muted: #5a4d40;
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 20px 50px rgba(83, 66, 44, 0.12);
  --header-height: 78px;
  --section-gap: 34px;
  --section-padding-y: clamp(74px, 10vw, 120px);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

.page {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(245, 214, 221, 0.42) 0%, transparent 42%),
    radial-gradient(circle at 86% 18%, rgba(255, 228, 196, 0.34) 0%, transparent 44%),
    radial-gradient(circle at 76% 84%, rgba(241, 206, 212, 0.24) 0%, transparent 46%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
  padding: calc(var(--header-height) + 18px) 24px 24px;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
}

.main-nav {
  height: var(--header-height);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 251, 246, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(83, 66, 44, 0.12);
  backdrop-filter: blur(10px);
}

.main-nav__brand {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  color: #6b5543;
  text-decoration: none;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  white-space: nowrap;
}

.main-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.main-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(198, 167, 125, 0.35);
  border-radius: 12px;
  background: rgba(255, 251, 246, 0.88);
  color: #5d4c3e;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.main-nav__toggle:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(198, 167, 125, 0.5);
  transform: translateY(-1px);
}

.main-nav__toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav.is-open .main-nav__toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.main-nav.is-open .main-nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.main-nav.is-open .main-nav__toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav__toggle:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.35);
  outline-offset: 3px;
}

.main-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: #5d4c3e;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.main-nav__link:hover {
  color: #4a3729;
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.main-nav__link.active,
.main-nav__link.is-active {
  color: #fff;
  background: linear-gradient(135deg, #b79362, #d3b184 48%, #e2caa8);
  box-shadow:
    0 10px 22px rgba(159, 127, 84, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.main-nav__link:focus-visible,
.main-nav__brand:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.35);
  outline-offset: 3px;
}

.hero,
.about,
.places,
.services,
.gallery,
.testimonials,
.philosophy,
.contact {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1100;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #b79362, #d3b184 48%, #e2caa8);
  box-shadow:
    0 10px 24px rgba(83, 66, 44, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, filter 0.2s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.to-top:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.45);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  min-height: clamp(520px, 82vh, 760px);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(48px, 8vw, 108px) clamp(24px, 6vw, 86px);
  background-image: url("../assets/hero-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 22px 50px rgba(83, 66, 44, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 48%);
}

.hero__inner {
  width: min(760px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: clamp(18px, 2.8vw, 30px);
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 56px rgba(16, 10, 4, 0.2),
    0 8px 20px rgba(16, 10, 4, 0.12);
  backdrop-filter: blur(12px);
  animation: heroReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__inner::before,
.hero__inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner::before {
  width: 230px;
  height: 230px;
  top: -62px;
  right: -76px;
  background: radial-gradient(circle, rgba(255, 225, 174, 0.14) 0%, rgba(255, 225, 174, 0.06) 42%, transparent 72%);
  filter: blur(1px);
}

.hero__inner::after {
  width: 360px;
  height: 360px;
  left: -172px;
  bottom: -192px;
  background: radial-gradient(circle, rgba(255, 247, 231, 0.1) 0%, rgba(255, 247, 231, 0.04) 34%, transparent 70%);
}

.hero__title {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 5.1vw, 4.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #4a392d;
  max-width: 16ch;
  margin-inline: auto;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.36);
  animation: heroReveal 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.08s;
}

.hero__text {
  margin: clamp(40px, 4.8vw, 54px) auto clamp(44px, 5vw, 60px);
  max-width: min(600px, 100%);
  color: #56483d;
  font-size: clamp(1.14rem, 2vw, 1.36rem);
  line-height: 1.7;
  text-shadow: 0 1px 7px rgba(255, 255, 255, 0.25);
  animation: heroReveal 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.16s;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(100%, 640px);
  margin: 0 auto;
  animation: heroReveal 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.24s;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 14px;
  padding: 18px 39px;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #b79362, #d3b184 48%, #e2caa8);
  box-shadow:
    0 10px 22px rgba(159, 127, 84, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 24px rgba(159, 127, 84, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  filter: saturate(1.08);
}

.hero__cta:active {
  transform: translateY(0);
}

.hero__cta:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.45);
  outline-offset: 3px;
}

.hero__cta--secondary {
  color: #756455;
  background: rgba(255, 252, 247, 0.74);
  border: 1px solid rgba(183, 147, 98, 0.3);
  box-shadow:
    0 8px 18px rgba(83, 66, 44, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero__cta--secondary:hover {
  box-shadow:
    0 12px 24px rgba(83, 66, 44, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: #8c7b6b;
  text-align: center;
}

.about {
  margin: var(--section-gap) auto 0;
  padding: var(--section-padding-y) clamp(24px, 6vw, 64px);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f4ee 0%, #f5eee5 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(83, 66, 44, 0.1);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.45) 0%, transparent 44%);
}

.about__inner {
  position: relative;
  z-index: 1;
}

.about__title {
  margin: 0 0 18px;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #4a3729;
}

.about__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(64px, 9vw, 132px);
}

.about__media {
  flex: 0 1 440px;
  max-width: 440px;
}

.about__image {
  width: 100%;
  max-width: 440px;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(83, 66, 44, 0.12);
  transform: scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.about__media:hover .about__image {
  transform: scale(1.02);
  box-shadow: 0 22px 48px rgba(83, 66, 44, 0.18);
}

.about__text {
  margin: 0;
  flex: 1 1 500px;
  max-width: 500px;
  color: #6f6357;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 2.05;
  text-wrap: pretty;
}

.about__text p {
  margin: 0;
}

.about__text p + p {
  margin-top: 1.9em;
}

.about__signature {
  margin-top: clamp(28px, 3vw, 40px);
  color: #9a7456;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  font-style: italic;
  letter-spacing: 0.04em;
}

.places {
  margin: var(--section-gap) auto 0;
  padding: var(--section-padding-y) clamp(22px, 5vw, 56px);
  border-radius: 28px;
  background: linear-gradient(180deg, #fbf6ef 0%, #f6ece0 100%);
}

.places__inner {
  width: 100%;
}

.places__title {
  margin: 0;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #4a3729;
}

.places__subtitle {
  margin: 12px 0 clamp(34px, 4vw, 52px);
  text-align: center;
  color: #736456;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  letter-spacing: 0.02em;
}

.places__grid,
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

@media (max-width: 1024px) {
  .places__grid,
  .places-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .places__grid,
  .places-grid {
    grid-template-columns: 1fr;
  }
}

.places__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  cursor: pointer;
  outline-offset: 4px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.places__card-link:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.45);
}

.places__card {
  position: relative;
  height: 100%;
  padding: 16px 16px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff7ef 100%);
  border: 1px solid rgba(226, 198, 167, 0.22);
  box-shadow:
    0 20px 44px rgba(83, 66, 44, 0.12),
    0 6px 16px rgba(83, 66, 44, 0.05);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.places__card-link:hover .places__card {
  transform: translateY(-5px);
  box-shadow:
    0 28px 56px rgba(83, 66, 44, 0.18),
    0 10px 24px rgba(83, 66, 44, 0.08);
}

.places__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px;
  display: block;
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.places__media {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.places__image-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 24, 17, 0.44);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
}

.places__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(21, 15, 10, 0.02) 45%, rgba(21, 15, 10, 0.32) 100%);
}

.places__card-link:hover .places__image {
  transform: scale(1.02);
}

.places__card-link--disabled {
  cursor: default;
}

.places__card--coming-soon {
  opacity: 0.85;
  filter: saturate(0.9);
}

.places__card-link--disabled:hover .places__card {
  transform: none;
  box-shadow:
    0 20px 44px rgba(83, 66, 44, 0.12),
    0 6px 16px rgba(83, 66, 44, 0.05);
}

.places__card-link--disabled:hover .places__image {
  transform: none;
}

.places__card-link--disabled:focus-visible {
  outline: none;
}

.places__coming-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(244, 232, 214, 0.9);
  color: #6e5a43;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(198, 167, 125, 0.28);
}

.places__card-title {
  margin: 18px 2px 14px;
  color: #8d7254;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.places__card-text {
  margin: 0 2px;
  color: #6e6155;
  font-size: 0.98rem;
  line-height: 1.7;
}

.place-detail {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 20px);
}

.place-detail__breadcrumb {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: #736456;
  letter-spacing: 0.02em;
}

.place-detail__breadcrumb a {
  color: #8d7254;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.place-detail__breadcrumb a:hover {
  color: #6b5543;
  text-decoration: underline;
}

.place-detail__breadcrumb span:last-child {
  color: #4a3729;
  font-weight: 600;
}

.place-detail__back {
  display: inline-flex;
  margin-bottom: clamp(22px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 600;
  color: #8d7254;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.place-detail__back:hover {
  color: #6b5543;
  transform: translateX(-2px);
}

.place-detail__back:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.45);
  outline-offset: 3px;
  border-radius: 4px;
}

.place-detail__hero {
  margin-bottom: clamp(40px, 5vw, 56px);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf6ef 0%, #f6ece0 100%);
  border: 1px solid rgba(226, 198, 167, 0.22);
  box-shadow: 0 20px 44px rgba(83, 66, 44, 0.12);
}

.place-detail__hero-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.place-detail__hero-content {
  padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 40px) clamp(32px, 4.5vw, 52px);
  text-align: center;
  background: linear-gradient(180deg, #fffdf9 0%, #fff7ef 100%);
}

.place-detail__hero-title {
  margin: 0 0 16px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #4a3729;
}

.place-detail__hero-lead {
  margin: 0 auto;
  max-width: 640px;
  color: #6e6155;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.75;
}

.place-detail__hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px) clamp(20px, 3vw, 36px);
  margin: clamp(22px, 3.5vw, 32px) auto 0;
  padding: 0;
  max-width: 900px;
  list-style: none;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  font-weight: 600;
  color: #5c4d3f;
  letter-spacing: 0.02em;
}

.place-detail__hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.place-detail__hero-benefits li::before {
  content: "✓";
  flex-shrink: 0;
  color: #8d7254;
  font-size: 1.05em;
  line-height: 1;
}

.place-detail__reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
  margin: 0 auto;
  max-width: 920px;
}

.place-detail__reasons-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1000px;
}

.place-detail__reason-card {
  margin: 0;
  padding: clamp(20px, 2.8vw, 28px) clamp(18px, 2.5vw, 26px);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefc 0%, #fff9f2 100%);
  border: 1px solid rgba(226, 198, 167, 0.28);
  box-shadow: 0 10px 26px rgba(83, 66, 44, 0.08);
  color: #5c4d3f;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.65;
}

.place-detail__reason-card::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b79362, #e2caa8);
}

.place-detail__info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
  margin: 0 auto;
  max-width: 720px;
}

.place-detail__info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.2vw, 20px);
  border-radius: 16px;
  background: rgba(255, 254, 252, 0.75);
  border: 1px solid rgba(226, 198, 167, 0.35);
  color: #5c4d3f;
  font-size: clamp(0.95rem, 1.6vw, 1.04rem);
  line-height: 1.55;
}

.place-detail__info-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: #8d7254;
}

.place-detail__info-label {
  flex-shrink: 0;
  min-width: clamp(108px, 22vw, 140px);
  font-weight: 700;
  color: #4a3729;
}

.place-detail__info-value {
  margin: 0;
  flex: 1;
  text-align: right;
  color: #6e6155;
}

.place-detail__info-row--wide {
  grid-column: 1 / -1;
}

.place-detail__section {
  margin-bottom: clamp(40px, 5vw, 56px);
  padding: clamp(36px, 5vw, 56px) clamp(22px, 4vw, 40px);
  border-radius: 28px;
  background: linear-gradient(180deg, #fbf6ef 0%, #f6ece0 100%);
  border: 1px solid rgba(226, 198, 167, 0.18);
}

.place-detail__section-title {
  margin: 0 0 clamp(18px, 2.5vw, 26px);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  font-weight: 500;
  color: #4a3729;
  text-align: center;
}

.place-detail__body {
  margin: 0 auto;
  max-width: 720px;
  color: #6e6155;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.8;
  text-align: center;
}

.place-detail__gallery-intro {
  margin-top: 0;
  margin-bottom: clamp(22px, 3vw, 34px);
  max-width: 640px;
}

.place-detail__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 30px);
}

.place-detail__gallery-cell {
  border-radius: 18px;
  overflow: hidden;
  background: #fffaf4;
  box-shadow: 0 14px 30px rgba(83, 66, 44, 0.1);
  cursor: zoom-in;
}

.place-detail__gallery-cell .glightbox {
  display: block;
  color: inherit;
  text-decoration: none;
}

.place-detail__gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease;
  will-change: transform;
}

.place-detail__gallery-cell:hover .place-detail__gallery-image {
  transform: scale(1.045);
}

.place-detail__gallery-cell .glightbox:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.55);
  outline-offset: 2px;
  border-radius: 18px;
}

.place-detail__cta {
  margin-bottom: clamp(28px, 4vw, 40px);
  padding: clamp(36px, 5vw, 52px) clamp(22px, 4vw, 40px);
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, #f8f2ea 0%, #f3e6d7 100%);
  border: 1px solid rgba(226, 198, 167, 0.2);
}

.place-detail__cta .gallery__cta {
  margin-top: 0;
}

.place-detail__cta-title {
  margin: 0 0 12px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
  color: #4a3729;
  letter-spacing: 0.01em;
}

.place-detail__cta-text {
  margin: 0 auto 26px;
  max-width: 520px;
  color: #6e6155;
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  line-height: 1.75;
}

.place-detail__pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: clamp(48px, 8vw, 80px);
  padding: clamp(22px, 3vw, 28px) clamp(18px, 3vw, 28px);
  border-radius: 20px;
  background: linear-gradient(180deg, #fbf6ef 0%, #f6ece0 100%);
  border: 1px solid rgba(226, 198, 167, 0.18);
}

.place-detail__pager a,
.place-detail__pager-link {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 700;
  color: #8d7254;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.place-detail__pager-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em 0.5em;
  max-width: min(100%, 420px);
  text-align: center;
}

.place-detail__pager-name {
  font-weight: 600;
  color: #6b5543;
}

.place-detail__pager a:hover,
.place-detail__pager-link:hover {
  color: #6b5543;
}

.place-detail__pager-link:hover .place-detail__pager-name {
  color: #554433;
}

.place-detail__pager a:focus-visible,
.place-detail__pager-link:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.45);
  outline-offset: 3px;
  border-radius: 4px;
}

.place-detail__pager-sep {
  color: rgba(116, 100, 86, 0.45);
  font-weight: 400;
  user-select: none;
}

.gallery {
  margin: var(--section-gap) auto 0;
  padding: var(--section-padding-y) clamp(22px, 5vw, 56px);
  border-radius: 28px;
  background: linear-gradient(180deg, #f8f2ea 0%, #f3e6d7 100%);
}

.gallery__inner {
  width: 100%;
}

.gallery__title {
  margin: 0;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #4a3729;
}

.gallery__subtitle {
  margin: 12px 0 clamp(34px, 4vw, 52px);
  text-align: center;
  color: #736456;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  letter-spacing: 0.01em;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 30px);
}

.gallery__card {
  border-radius: 18px;
  overflow: hidden;
  background: #fffaf4;
  box-shadow: 0 14px 30px rgba(83, 66, 44, 0.1);
}

.gallery__card > .glightbox {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gallery__card > .glightbox:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.45);
  outline-offset: 3px;
  border-radius: 18px;
}

.gallery__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  cursor: zoom-in;
  transform: scale(1);
  transition: transform 0.35s ease;
  will-change: transform;
}

.gallery__card:hover .gallery__image {
  transform: scale(1.04);
}

.gallery__actions {
  margin-top: clamp(24px, 3vw, 36px);
  display: flex;
  justify-content: center;
}

button.gallery__cta {
  cursor: pointer;
  font-family: inherit;
}

.gallery__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(220px, 38vw, 280px);
  border: 0;
  border-radius: 14px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #b79362, #d3b184 48%, #e2caa8);
  box-shadow:
    0 12px 26px rgba(159, 127, 84, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.gallery__cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 16px 30px rgba(159, 127, 84, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  filter: saturate(1.08);
}

.gallery__cta:active {
  transform: translateY(-1px);
}

.gallery__cta:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.45);
  outline-offset: 3px;
}

.gallery__cta.gallery__cta--secondary {
  min-width: clamp(200px, 34vw, 260px);
  border: 2px solid rgba(183, 147, 98, 0.85);
  color: #6b5543;
  background: rgba(255, 254, 252, 0.6);
  box-shadow:
    0 6px 18px rgba(83, 66, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.gallery__cta.gallery__cta--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 252, 248, 0.95);
  border-color: #a68458;
  box-shadow: 0 10px 22px rgba(83, 66, 44, 0.14);
  filter: none;
}

.gallery__cta.gallery__cta--secondary:active {
  transform: translateY(0);
}

.testimonials {
  margin: var(--section-gap) auto 0;
  padding: var(--section-padding-y) clamp(22px, 5vw, 56px);
  border-radius: 28px;
  background: linear-gradient(180deg, #faf7f2 0%, #f5ebe2 100%);
}

.testimonials__inner {
  width: 100%;
}

.testimonials__title {
  margin: 0;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #4a3729;
}

.testimonials__subtitle {
  margin: 12px 0 clamp(34px, 4vw, 52px);
  text-align: center;
  color: #736456;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  letter-spacing: 0.01em;
  max-width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 30px);
}

.testimonials__trust {
  margin: clamp(40px, 5vw, 56px) auto 0;
  padding-bottom: clamp(8px, 1.5vw, 16px);
  max-width: min(640px, 100%);
  text-align: center;
}

.testimonials__trust-lead {
  margin: 0;
  color: #7a6d60;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(20px, 2.5vw, 28px);
  padding: clamp(24px, 3vw, 34px);
  border-radius: 20px;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 32px rgba(83, 66, 44, 0.1);
}

.testimonial-text {
  margin: 0;
  color: #4f4236;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid rgba(198, 167, 125, 0.28);
}

.testimonial-meta strong {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 600;
  color: #4a3729;
  letter-spacing: 0.01em;
}

.testimonial-meta span {
  color: #8a7a6b;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.services {
  margin: var(--section-gap) auto 0;
  padding: var(--section-padding-y) clamp(22px, 5vw, 56px);
  border-radius: 28px;
  background: linear-gradient(180deg, #f9f2e8 0%, #f3e7d8 100%);
}

.services__inner {
  width: 100%;
}

.services__title {
  margin: 0;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #4a3729;
}

.services__subtitle {
  margin: 12px 0 clamp(34px, 4vw, 52px);
  text-align: center;
  color: #736456;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  letter-spacing: 0.01em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 4.4vw, 62px);
}

.services__card {
  position: relative;
  padding: clamp(30px, 3.5vw, 42px);
  border-radius: 20px;
  background: linear-gradient(180deg, #fffefc 0%, #fff9f2 100%);
  border: 1px solid rgba(226, 198, 167, 0.28);
  box-shadow:
    0 24px 52px rgba(83, 66, 44, 0.15),
    0 8px 20px rgba(83, 66, 44, 0.07);
  transform-origin: center;
  transition: all 0.3s ease;
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 58px rgba(83, 66, 44, 0.18),
    0 10px 24px rgba(83, 66, 44, 0.1);
}

.services__card--featured {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  opacity: 0;
  transform: scale(1.05);
  background: linear-gradient(165deg, #f5efe6 0%, #efe6d8 100%);
  border: 1px solid rgba(214, 183, 132, 0.48);
  box-shadow:
    0 30px 62px rgba(83, 66, 44, 0.2),
    0 12px 28px rgba(83, 66, 44, 0.1),
    0 0 0 1px rgba(255, 244, 225, 0.52),
    0 0 30px rgba(214, 183, 132, 0.2);
  animation: featuredCardReveal 0.6s ease both;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services__card--featured:hover {
  transform: translateY(-8px) scale(1.03);
  background: linear-gradient(165deg, #f8f3eb 0%, #f2ebdf 100%);
  border-color: rgba(214, 183, 132, 0.56);
  box-shadow:
    0 26px 44px rgba(83, 66, 44, 0.16),
    0 10px 20px rgba(83, 66, 44, 0.1),
    0 0 0 1px rgba(214, 183, 132, 0.32);
}

.services__card--featured:focus-visible {
  transform: translateY(-8px) scale(1.03);
  background: linear-gradient(165deg, #f8f3eb 0%, #f2ebdf 100%);
  border-color: rgba(214, 183, 132, 0.56);
  box-shadow:
    0 26px 44px rgba(83, 66, 44, 0.16),
    0 10px 20px rgba(83, 66, 44, 0.1),
    0 0 0 1px rgba(214, 183, 132, 0.32);
  outline: 3px solid rgba(160, 124, 78, 0.35);
  outline-offset: 3px;
}

.services__card--featured:active {
  transform: scale(0.98);
}

.services__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0.9;
  background: linear-gradient(135deg, #b79362, #d3b184 48%, #e2caa8);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    0 8px 16px rgba(159, 127, 84, 0.24),
    0 0 14px rgba(211, 177, 132, 0.28);
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: featuredBadgePulse 3.6s ease-in-out infinite;
}

.services__card-number {
  margin: 0 2px 16px;
  color: rgba(141, 114, 84, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.services__card-title {
  margin: 0 2px 20px;
  color: #7f6649;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0.01em;
}

.services__card-text {
  margin: 0 2px;
  color: #6b5e51;
  font-size: 1.02rem;
  line-height: 1.78;
}

.services__card-link {
  display: inline-flex;
  align-items: center;
  margin: 18px 2px 0;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(183, 147, 98, 0.45);
  color: #8d7254;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 252, 247, 0.72);
  pointer-events: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.services__card-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: rgba(141, 114, 84, 0.58);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.services__card:hover .services__card-link {
  transform: translateY(-2px);
}

.services__card--featured:hover .services__card-link,
.services__card--featured:focus-visible .services__card-link {
  color: #7a6045;
  background: rgba(228, 216, 200, 0.98);
  border-color: rgba(183, 147, 98, 0.68);
  border-width: 2px;
  box-shadow: 0 8px 18px rgba(83, 66, 44, 0.12);
  filter: brightness(0.94);
}

.services__card:hover .services__card-link::after {
  transform: scaleX(1);
}

.services__card--featured:hover .services__card-link::after,
.services__card--featured:focus-visible .services__card-link::after {
  background: rgba(255, 255, 255, 0.82);
  transform: scaleX(1);
}

.services__grid:has(.services__card--featured:hover) .services__card:not(.services__card--featured) {
  opacity: 0.95;
  transform: translateY(0) scale(1);
}

@keyframes featuredCardReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(1.05);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1.05);
  }
}

@keyframes featuredBadgePulse {
  0% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.9;
  }
}

.services__inner > .philosophy__inner {
  margin-top: calc(clamp(52px, 6vw, 88px) + clamp(24px, 2.8vw, 36px));
}

.services__inner .philosophy__cta {
  min-width: min(100%, clamp(260px, 88vw, 400px));
  text-align: center;
  line-height: 1.35;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.philosophy {
  margin: var(--section-gap) auto 0;
  padding: var(--section-padding-y) clamp(22px, 5vw, 56px);
  border-radius: 28px;
  background: linear-gradient(180deg, #fcf7f0 0%, #f6ecdf 100%);
}

.philosophy__inner {
  text-align: center;
}

.philosophy__title {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #4a3729;
}

.philosophy__text {
  margin: clamp(18px, 2.2vw, 28px) auto 0;
  max-width: min(760px, 100%);
  color: #6f6357;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.95;
  text-wrap: pretty;
}

.philosophy__actions {
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
  justify-content: center;
}

.philosophy__cta {
  min-width: clamp(220px, 38vw, 280px);
}

.contact {
  margin: var(--section-gap) auto 0;
  padding: var(--section-padding-y) clamp(22px, 5vw, 56px);
  border-radius: 28px;
  background: linear-gradient(180deg, #fdf9f3 0%, #f7eee3 100%);
}

.contact__inner {
  width: 100%;
}

.contact__title {
  margin: 0;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #4a3729;
}

.contact__subtitle {
  margin: 12px auto clamp(30px, 3.6vw, 46px);
  max-width: 62ch;
  text-align: center;
  color: #6f6153;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.8;
}

.contact__form {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__field--full {
  grid-column: 1 / -1;
}

.contact__label {
  color: #664f3a;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact__input {
  width: 100%;
  border: 1px solid rgba(168, 137, 100, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
  min-height: 50px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact__input--textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__input:focus-visible {
  outline: none;
  border-color: rgba(160, 124, 78, 0.72);
  box-shadow: 0 0 0 3px rgba(160, 124, 78, 0.18);
  background: #fff;
}

.contact__feedback {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.4em;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact__feedback--success {
  color: #3d6b4a;
}

.contact__feedback--success.contact__feedback--fade-in {
  animation: contact-feedback-success-fade 0.45s ease-out both;
}

@keyframes contact-feedback-success-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact__feedback--error {
  color: #a94442;
}

.contact__submit {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(220px, 38vw, 280px);
  border: 0;
  border-radius: 14px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #b79362, #d3b184 48%, #e2caa8);
  box-shadow:
    0 12px 26px rgba(159, 127, 84, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.contact__submit:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 16px 30px rgba(159, 127, 84, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  filter: saturate(1.08);
}

.contact__submit:active {
  transform: translateY(-1px);
}

.contact__submit:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.45);
  outline-offset: 3px;
}

.contact__submit:disabled {
  cursor: not-allowed;
  transform: none;
  filter: none;
  opacity: 0.85;
}

.site-footer {
  margin: clamp(42px, 7vw, 84px) auto 0;
  padding: clamp(34px, 5vw, 54px) clamp(20px, 4vw, 36px);
  max-width: 760px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(226, 198, 167, 0.36);
  box-shadow: 0 12px 28px rgba(83, 66, 44, 0.08);
}

.site-footer__title {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  color: #4a3729;
}

.site-footer__text {
  margin: 14px auto 0;
  max-width: 48ch;
  color: #6e6155;
  font-size: clamp(0.94rem, 1.8vw, 1rem);
  line-height: 1.7;
}

.site-footer__contacts {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: clamp(0.9rem, 1.8vw, 0.97rem);
  color: #5f5144;
}

.site-footer__contacts p {
  margin: 0;
}

.site-footer__link {
  color: #8d7254;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: #6b5543;
  text-decoration: underline;
}

.site-footer__link:focus-visible {
  outline: 3px solid rgba(160, 124, 78, 0.4);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-footer__note {
  margin: 14px 0 0;
  font-size: 0.84rem;
  color: #8a7a69;
}

@media (max-width: 980px) {
  .place-detail__gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-detail__reasons-grid {
    grid-template-columns: 1fr;
  }

  .place-detail__reasons-grid--three {
    grid-template-columns: 1fr;
  }

  .place-detail__info-grid {
    grid-template-columns: 1fr;
  }

  .place-detail__info-row--wide {
    grid-column: auto;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    top: 10px;
    padding-inline: 12px;
  }

  .main-nav {
    border-radius: 14px;
    padding: 10px 12px;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    gap: 10px;
  }

  .main-nav__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav__list {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 4px;
  }

  .main-nav.is-open .main-nav__list {
    display: flex;
  }

  .main-nav__link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero {
    border-radius: 22px;
    padding-inline: 18px;
  }

  .hero__text {
    line-height: 1.65;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__cta {
    padding-inline: 28px;
  }

  .about__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about__media {
    max-width: 440px;
  }

  .about__text {
    max-width: 100%;
  }

}

@media (min-width: 861px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero__cta {
    width: auto;
    min-width: clamp(240px, 22vw, 320px);
  }
}

@media (max-width: 640px) {
  .page {
    padding: calc(var(--header-height) + 48px) 14px 16px;
  }

  .site-header {
    top: 8px;
    padding-inline: 8px;
  }

  .main-nav__brand {
    font-size: 1rem;
    max-width: calc(100% - 56px);
  }

  .main-nav__toggle {
    width: 40px;
    height: 40px;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .places {
    padding-block: clamp(58px, 12vw, 78px);
  }

  .place-detail__gallery-grid {
    grid-template-columns: 1fr;
  }

  .place-detail__hero-image {
    aspect-ratio: 16 / 11;
  }

  .services {
    padding-block: clamp(68px, 14vw, 94px);
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding-block: clamp(58px, 12vw, 78px);
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding-block: clamp(58px, 12vw, 78px);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .philosophy {
    padding-block: clamp(58px, 12vw, 78px);
  }

  .contact {
    padding-block: clamp(58px, 12vw, 78px);
  }

  .contact__form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    border-radius: 18px;
  }

  .site-footer__contacts {
    flex-direction: column;
    gap: 10px;
  }
}
