* {
  box-sizing: border-box;
}

:root {
  --bg: #fbf6ee;
  --bg-soft: #efe3d3;
  --green: #163f1c;
  --green-soft: #5f765f;
  --red: #8e0f29;
  --white: #ffffff;
  --text: #172617;
  --muted: #6e7d69;
  --line: rgba(22, 63, 28, .14);
  --shadow: 0 22px 60px rgba(33, 28, 20, .12);
  --radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(142, 15, 41, .08), transparent 32rem),
    radial-gradient(circle at top right, rgba(22, 63, 28, .08), transparent 34rem);
  z-index: -1;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 246, 238, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--red);
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--green);
}

.nav a {
  text-decoration: none;
  opacity: .78;
}

.nav a:hover {
  opacity: 1;
}

.header-booking,
.btn,
.wide-booking,
.floating-booking a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.header-booking,
.btn-primary,
.wide-booking,
.floating-booking a {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #bd2446);
  box-shadow: 0 14px 30px rgba(142, 15, 41, .2);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #39c764, #63d778);
  box-shadow: 0 14px 30px rgba(57, 199, 100, .22);
}

.btn-outline {
  color: var(--green);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}

.header-booking:hover,
.btn:hover,
.wide-booking:hover,
.floating-booking a:hover {
  transform: translateY(-2px);
  opacity: .95;
}

.hero {
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-head span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.04em;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #374936;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 36px;
}

.hero-info div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.54);
}

.hero-info strong {
  display: block;
  color: var(--green);
  font-size: 18px;
}

.hero-info span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-card,
.hotel-slider {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}

.hero-card img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  background: #e7ded1;
}

.hero-card-note {
  padding: 24px;
}

.hero-card-note strong {
  display: block;
  margin: 0 0 8px;
  color: var(--green);
  font-size: 21px;
  font-family: Georgia, "Times New Roman", serif;
}

.hero-card-note span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 84px 0;
}

.section-muted {
  background: var(--bg-soft);
}

.section-head {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.booking .section-head {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
}

.section-head p {
  margin: 18px auto 0;
  color: #314730;
  font-size: 19px;
  line-height: 1.7;
}

.hotel-slider {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 32px;
}

.hotel-slider img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  background: #e7ded1;
}

.swiper-button-prev,
.swiper-button-next {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: .2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255,255,255,.3);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,.45);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.slider-description {
  max-width: 920px;
  margin: 26px auto 0;
  padding: 34px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(0,0,0,.06);
  text-align: center;
}

.slider-description h3 {
  margin: 0 0 16px;
  font-size: 30px;
}

.slider-description p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.cards,
.amenities-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-grid img {
  transition: transform .45s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.28),
    transparent 50%);
  opacity: 0;
  transition: .3s;
}

.gallery-grid a:hover::after {
  opacity: 1;
}

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

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

.amenity,
.service-card,
.advantage-card {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 12px 34px rgba(33, 28, 20, .08);
}

.amenity span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(22, 63, 28, .08);
  font-size: 25px;
}

.amenity strong {
  display: block;
  color: var(--green);
  font-size: 20px;
}

.amenity p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(33, 28, 20, .08);
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  background: #e7ded1;
  transition: transform .3s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.service-card,
.advantage-card {
  min-height: 260px;
}

.service-card h3,
.advantage-card h3 {
  margin: 0 0 20px;
  color: var(--green-soft);
  font-size: 31px;
  line-height: 1.2;
}

.service-card p,
.advantage-card p {
  margin: 0;
  color: #667660;
  font-size: 17px;
  line-height: 1.65;
}

.icon {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(142, 15, 41, .08);
  font-size: 30px;
}

.wide-booking {
  width: 100%;
  margin-top: 22px;
  min-height: 64px;
  border-radius: 20px;
  font-size: 18px;
}

.cta-box {
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 28, 20, .08);
}

.cta-box p {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 21px;
  line-height: 1.5;
  margin: 0 auto;
}

.faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(33, 28, 20, .05);
}

.faq summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  cursor: pointer;
  color: var(--green);
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0;
  padding: 0 24px 22px;
  color: #53634f;
  line-height: 1.7;
}

.contacts {
  padding: 78px 0;
  background: linear-gradient(135deg, #4f6d52, #6a8169);
  color: #fff;
}

.section-head-light h2,
.section-head-light span {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-tile {
  padding: 22px;
  min-height: 132px;
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  color: var(--green);
  text-align: center;
  text-decoration: none;
}

.contact-tile span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
}

.contact-tile strong {
  font-size: 17px;
}

.route-box {
  margin-top: 28px;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
  text-align: center;
}

.route-box h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 32px;
}

.route-box p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.route-actions,
.social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.route-actions a,
.social-row a {
  padding: 13px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.social-row {
  margin-top: 28px;
}

.footer {
  padding: 26px 0 96px;
  background: #122916;
  color: rgba(255,255,255,.85);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #fff;
}

.floating-booking {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 50;
  width: min(460px, calc(100% - 28px));
}

.floating-booking a {
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  font-size: 17px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 460px;
  }

  .hotel-slider img {
    height: 500px;
  }

  .cards-3,
  .amenities-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand span {
    display: none;
  }

  .header-booking {
    min-height: 42px;
    padding: 11px 15px;
    font-size: 13px;
  }

  .hero {
    padding: 44px 0 46px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card img,
  .hotel-slider img {
    height: 340px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 42px;
    height: 42px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head h1,
  .section-head h2 {
    font-size: 34px;
  }

  .section-head p {
    font-size: 17px;
  }

  .cards-3,
  .amenities-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 230px;
  }

  .amenity,
  .service-card,
  .advantage-card {
    min-height: auto;
    padding: 26px;
  }

  .service-card h3,
  .advantage-card h3 {
    font-size: 27px;
  }

  .slider-description {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .slider-description h3 {
    font-size: 24px;
  }

  .slider-description p {
    font-size: 16px;
  }

  .faq summary {
    padding: 20px 52px 20px 18px;
  }

  .faq p {
    padding: 0 18px 20px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}
