:root {
  --bg: #f6f0e7;
  --surface: #fffaf4;
  --surface-strong: #f0e6da;
  --text: #463325;
  --muted: #8b725f;
  --accent: #c97534;
  --accent-dark: #a85e25;
  --line: rgba(105, 74, 51, 0.12);
  --shadow: 0 20px 50px rgba(60, 37, 20, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1100px;
  --narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(233, 196, 157, 0.3), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(201, 117, 52, 0.09), transparent 18%),
    radial-gradient(circle at 20% 75%, rgba(177, 130, 95, 0.12), transparent 22%),
    linear-gradient(180deg, #f8f2ea 0%, #f3ece4 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.narrow {
  width: min(calc(100% - 32px), var(--narrow));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(251, 246, 240, 0.94);
  border-bottom: 1px solid rgba(85, 60, 38, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  gap: 20px;
}

.brand,
.nav a,
.eyebrow,
.kicker,
.contact-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  font-size: 0.64rem;
  font-weight: 700;
}

.brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(60, 37, 20, 0.14);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.nav a {
  font-size: 0.62rem;
  color: var(--muted);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-link {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(113, 76, 48, 0.14);
  background: rgba(255, 250, 244, 0.8);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.lang-link.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(45, 26, 16, 0.82) 0%, rgba(45, 26, 16, 0.3) 42%, rgba(45, 26, 16, 0.6) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 0 72px;
  color: #fff7ef;
}

.hero-content h1,
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.hero-content h1 {
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  margin-bottom: 12px;
}

.hero-content p {
  max-width: 460px;
  margin: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 248, 240, 0.88);
}

.eyebrow,
.kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-actions,
.center-action {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover,
.floating-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary,
.button-outline {
  border: 1px solid rgba(255, 247, 239, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.button-outline {
  border-color: rgba(113, 76, 48, 0.18);
  color: var(--accent-dark);
  background: transparent;
}

.contact-outline {
  border-color: rgba(113, 76, 48, 0.2);
  color: var(--accent-dark);
  background: rgba(255, 250, 244, 0.82);
}

.listing-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0 0 12px;
}

.listing-card {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(60, 37, 20, 0.08);
}

.priority-strip {
  padding: 8px 0 18px;
}

.priority-card {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(201, 117, 52, 0.12), rgba(255, 250, 244, 0.98));
  border: 1px solid rgba(113, 76, 48, 0.12);
  box-shadow: 0 18px 40px rgba(60, 37, 20, 0.08);
}

.priority-intro span,
.priority-intro h2,
.priority-points p {
  margin: 0;
}

.priority-intro span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.priority-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.priority-points {
  display: grid;
  gap: 12px;
}

.priority-points p {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(113, 76, 48, 0.08);
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.6;
}

.listing-title h2,
.listing-title p {
  margin: 0;
}

.listing-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  margin-bottom: 6px;
}

.listing-title p {
  font-size: 0.82rem;
  color: var(--muted);
}

.listing-title p strong {
  color: var(--accent-dark);
}

.listing-title p span {
  margin: 0 6px;
}

.listing-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.listing-meta div {
  padding: 10px 12px;
  border-radius: 10px;
  background: #fcf7f1;
  text-align: center;
}

.listing-meta strong,
.listing-meta span {
  display: block;
}

.listing-meta strong {
  margin-bottom: 5px;
  font-size: 0.78rem;
}

.listing-meta span {
  font-size: 0.69rem;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 68px 0;
}

.soft-section {
  background: rgba(255, 250, 244, 0.68);
}

.amenities-section,
.room-section,
.area-section {
  position: relative;
}

.amenities-section::before,
.room-section::before,
.area-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(315deg, rgba(201, 117, 52, 0.05), transparent 30%);
  pointer-events: none;
}

.section-heading {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.86rem;
}

.features-grid,
.contact-grid,
.reviews-list,
.amenities-grid,
.rules-grid,
.area-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.contact-card,
.review-card,
.pricing-card,
.review-summary,
.amenity-group,
.story-card,
.room-card,
.rule-card,
.area-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 18px 16px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(60, 37, 20, 0.06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(201, 117, 52, 0.12);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.72rem;
}

.feature-card h3,
.contact-card p,
.review-card p {
  margin: 0;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.76rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-auto-rows: 110px;
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 10px 22px rgba(60, 37, 20, 0.08);
  cursor: zoom-in;
}

.gallery-grid img:hover,
.feature-card:hover,
.amenity-group:hover,
.story-card:hover,
.rule-card:hover,
.area-card:hover,
.room-card:hover,
.contact-card:hover,
.review-card:hover {
  transform: translateY(-3px);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 22px 38px rgba(60, 37, 20, 0.12);
}

.gallery-grid img:nth-child(1) {
  grid-row: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-row: span 1;
}

.gallery-grid img:nth-child(3) {
  grid-row: span 1;
}

.pricing-card {
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(60, 37, 20, 0.06);
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

thead th {
  background: #f7ede1;
  font-size: 0.72rem;
}

th,
td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

tbody td {
  font-size: 0.76rem;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.pricing-notes div {
  padding: 12px;
  border-radius: 10px;
  background: #fcf7f1;
}

.pricing-notes strong,
.pricing-notes span {
  display: block;
}

.pricing-notes strong {
  margin-bottom: 6px;
  font-size: 0.76rem;
}

.pricing-notes span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.74rem;
}

.amenities-highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.amenity-pill {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(113, 76, 48, 0.12);
  box-shadow: 0 10px 24px rgba(60, 37, 20, 0.05);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
}

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

.amenity-group {
  padding: 20px 18px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 247, 241, 0.96) 100%);
}

.amenity-group h3,
.story-card h3,
.room-specs h3,
.rule-card h3,
.area-card h3 {
  margin: 0 0 12px;
  font-size: 0.96rem;
}

.amenity-group ul,
.room-specs ul,
.area-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.amenity-group li,
.room-specs li,
.area-card li {
  margin-bottom: 8px;
  line-height: 1.55;
  font-size: 0.77rem;
}

.story-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  padding: 24px 22px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(247, 237, 225, 0.98));
}

.story-card p,
.rule-card p,
.room-specs p,
.room-pricing p,
.room-pricing span {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.8rem;
}

.room-card {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(246, 236, 225, 0.98));
}

.room-specs,
.room-pricing {
  padding: 10px;
}

.room-pricing {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(113, 76, 48, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 117, 52, 0.14);
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 800;
}

.room-pricing strong {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--accent-dark);
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

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

.rule-card,
.area-card {
  padding: 22px 20px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(250, 243, 235, 0.98));
}

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

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.contact-card {
  padding: 18px 14px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(60, 37, 20, 0.06);
}

.contact-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.64rem;
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-card p,
.contact-card a {
  line-height: 1.65;
  font-size: 0.8rem;
}

.center-action {
  justify-content: center;
}

.review-summary {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 12px 28px rgba(60, 37, 20, 0.06);
}

.summary-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
}

.summary-score strong {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent-dark);
}

.summary-score span {
  color: var(--muted);
  font-size: 0.78rem;
}

.summary-bars {
  display: grid;
  gap: 16px;
}

.summary-bars div {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 10px;
}

.summary-bars span {
  font-size: 0.75rem;
  color: var(--muted);
}

.summary-bars b {
  display: block;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent) 0%, #d98745 50%, #ebb077 100%);
}

.reviews-list {
  grid-template-columns: 1fr;
}

.review-card {
  position: relative;
  padding: 16px 52px 16px 18px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(60, 37, 20, 0.06);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.review-meta strong {
  font-size: 0.86rem;
}

.review-meta span {
  font-size: 0.7rem;
  color: var(--accent-dark);
}

.review-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.77rem;
}

.review-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  background: #d47d3f;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
}

.footer {
  padding: 24px 0 96px;
  background: #2e1f16;
  color: rgba(255, 245, 236, 0.88);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.68rem;
}

.footer-inner div {
  display: grid;
  gap: 8px;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-button {
  min-width: 110px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 20px 35px rgba(32, 21, 14, 0.22);
}

.floating-button.viber {
  background: #7360f2;
}

.floating-button.call {
  background: var(--accent);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 16, 11, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@media (max-width: 960px) {
  .nav,
  .features-grid,
  .contact-grid,
  .pricing-notes,
  .review-summary,
  .listing-card,
  .listing-meta,
  .priority-card,
  .amenities-grid,
  .story-layout,
  .room-card,
  .rules-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lang-switch {
    align-self: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .gallery-grid img:nth-child(1) {
    grid-column: span 2;
  }

  .review-summary {
    display: grid;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 460px;
  }

  .hero-content {
    padding: 100px 0 80px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .amenities-highlight,
  .room-actions,
  .hero-actions,
  .center-action {
    justify-content: center;
  }

  .gallery-grid img:nth-child(1) {
    grid-column: auto;
    grid-row: span 1;
  }

  th,
  td {
    padding: 14px 12px;
    font-size: 0.88rem;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .floating-button {
    min-width: 118px;
    min-height: 48px;
  }
}
