@import url("fonts.css");

:root {
  --bg: #f6f1e9;
  --bg-soft: #fbf8f3;
  --panel: rgba(255, 252, 247, 0.88);
  --panel-strong: #fffdf9;
  --text: #2b221c;
  --muted: #6e6258;
  --line: rgba(114, 92, 74, 0.12);
  --accent: #aa7a44;
  --accent-deep: #7a5430;
  --accent-soft: #e8d6be;
  --shadow: 0 24px 60px rgba(91, 67, 43, 0.12);
  --shadow-soft: 0 16px 34px rgba(91, 67, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 214, 190, 0.75), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.95), transparent 20rem),
    linear-gradient(180deg, #f9f4ec 0%, #f6f1e9 36%, #f7f2ea 100%);
  font-family: "Montserrat", "Open Sans", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

a {
  color: var(--accent-deep);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(114, 92, 74, 0.08);
  background: rgba(248, 243, 234, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.03em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px;
  box-shadow: var(--shadow-soft);
}

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

.site-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(101, 74, 46, 0.08);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(44px, 7vw, 112px) clamp(18px, 5vw, 72px) 58px;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 700;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6.8vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.hero__lead,
.about__text,
.review p,
.contact-card p {
  color: var(--muted);
}

.hero__lead {
  max-width: 590px;
  font-size: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid rgba(122, 84, 48, 0.16);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fffaf4;
  background: linear-gradient(135deg, #8f643a, #bb8a53);
  box-shadow: 0 16px 38px rgba(143, 100, 58, 0.24);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.hero__photo {
  position: relative;
}

.hero__photo::before {
  content: "";
  position: absolute;
  inset: auto 10% -28px -8%;
  height: 76%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(232, 214, 190, 0.95), rgba(255, 255, 255, 0.2));
  z-index: 0;
}

.hero__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(91, 67, 43, 0.18);
}

.section,
.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(50px, 7vw, 92px) 0;
}

.page-hero {
  padding: clamp(48px, 8vw, 110px) 0 24px;
}

.section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.benefits,
.rooms,
.reviews,
.contacts-grid,
.info-grid,
.faq-list,
.price-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-grid--two,
.price-grid--two,
.steps-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit,
.room,
.review,
.contact-card,
.offer-card,
.info-card,
.price-card,
.step-card,
.faq-item,
.cta-panel {
  border: 1px solid rgba(114, 92, 74, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 243, 0.96));
  box-shadow: var(--shadow);
}

.benefit {
  padding: 30px;
}

.benefit img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 10px 20px rgba(170, 122, 68, 0.16));
}

.room {
  overflow: hidden;
}

.room img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room h3 {
  padding: 22px 24px 26px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 48px;
  padding: clamp(34px, 5vw, 48px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(241, 231, 217, 0.75));
  box-shadow: var(--shadow);
}

.about__text {
  font-size: 18px;
}

.review {
  padding: 30px;
}

.review strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--text);
}

.info-card,
.price-card,
.step-card,
.faq-item {
  padding: 28px;
}

.info-card ul,
.price-card ul,
.step-card ul,
.faq-item ul,
.about__text ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.info-card li,
.price-card li,
.step-card li,
.faq-item li,
.about__text li {
  margin-bottom: 10px;
}

.price-card__value {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.price-card__hint,
.muted-note {
  color: var(--muted);
  font-size: 14px;
}

.route-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.route-hero .map-shell {
  min-height: 100%;
}

.faq-item h3,
.info-card h3,
.price-card h3,
.step-card h3 {
  margin-bottom: 12px;
}

.faq-item p,
.info-card p,
.price-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.cta-panel__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 700;
}

.reviews--page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-hero h1 {
  max-width: 900px;
}

.contacts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 30px;
}

.map-shell {
  overflow: hidden;
  border: 1px solid rgba(114, 92, 74, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: sepia(0.12) saturate(0.9) brightness(1.03);
}

.offer-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
}

.offer-card img {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 30px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 54px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(114, 92, 74, 0.08);
  background: rgba(255, 248, 240, 0.58);
}

@media (max-width: 900px) {
  .hero,
  .about,
  .offer-card,
  .route-hero,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .benefits,
  .rooms,
  .reviews,
  .reviews--page,
  .contacts-grid,
  .info-grid,
  .faq-list,
  .price-grid,
  .steps-grid,
  .info-grid--two,
  .price-grid--two,
  .steps-grid--two {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__photo img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .site-nav a {
    padding: 8px 10px;
    font-size: 14px;
  }

  h1 {
    font-size: 40px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .benefit,
  .review,
  .contact-card,
  .about,
  .info-card,
  .price-card,
  .step-card,
  .faq-item,
  .cta-panel {
    border-radius: 24px;
  }
}
