:root {
  --ink: #1f2a26;
  --text: #2d3b36;
  --muted: #697973;
  --pine: #1f4d3a;
  --pine-dark: #16382b;
  --moss: #dfe8de;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #d6ddd7;
  --shadow: 0 14px 40px rgba(20, 37, 31, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #f4f8f2, var(--paper) 55%);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.bg-soft {
  background: linear-gradient(180deg, #f2f6f0 0%, #f8faf6 100%);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 26px;
  color: var(--ink);
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 14px;
}

.eyebrow.center,
.section-title,
.center {
  text-align: center;
}

.eyebrow.light {
  color: #cae1d2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 12px 24px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--pine);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(27, 70, 53, 0.28);
}

.btn-primary:hover {
  background: var(--pine-dark);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.utility-bar {
  background: #123224;
  color: #dce8e0;
  font-size: 0.88rem;
}

.utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0.92;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 77, 58, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

/* .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #d6ecd6, #9ec9ad);
  color: #194432;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.18rem;
} */

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.62rem;
  color: #20342b;
}

.brand-copy small {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.64rem;
  color: #5f7369;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  font-weight: 600;
  color: #30453b;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--pine);
}

.btn-nav {
  background: #214f3b;
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #274c3b;
  font-size: 1.55rem;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: url("media/16.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 34, 26, 0.78), rgba(15, 34, 26, 0.28) 58%),
    radial-gradient(
      circle at 80% 30%,
      rgba(205, 226, 213, 0.2),
      transparent 45%
    );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.28fr 0.82fr;
  gap: 30px;
  align-items: end;
  padding: 56px 0;
}

.hero-copy {
  color: var(--white);
  max-width: 680px;
}

.hero-copy .eyebrow {
  color: #d8eadf;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.65rem, 7vw, 5.4rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 58ch;
  font-size: 1.05rem;
  opacity: 0.93;
}

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

.booking-card {
  background: rgba(252, 252, 249, 0.92);
  border: 1px solid rgba(196, 211, 201, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.booking-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #173928;
  margin-bottom: 4px;
}

.booking-card p {
  color: #4f645a;
  margin-bottom: 14px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form label {
  font-size: 0.84rem;
  color: #345244;
  font-weight: 700;
}

.booking-form input {
  height: 42px;
  border: 1px solid #c8d4cc;
  border-radius: 12px;
  padding: 0 12px;
  font-family: inherit;
}

.booking-form .btn {
  margin-top: 8px;
  width: 100%;
}

.trust-strip {
  background: #1a4030;
  color: #e2efe8;
  border-top: 1px solid rgba(239, 250, 243, 0.13);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 0;
}

.trust-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.trust-grid strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.trust-grid span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.about-grid h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.07;
  margin-bottom: 12px;
}

.about-grid p {
  color: #4d6258;
}

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

.amenity {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2b483b;
  font-weight: 600;
}

.amenity i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 77, 58, 0.12);
}

.stays-grid {
  display: grid;
  grid-template-columns: minmax(320px, 860px);
  justify-content: center;
  gap: 22px;
}

.stay-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #dde5df;
  box-shadow: var(--shadow);
}

.stay-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.stay-content {
  padding: 20px;
  text-align: center;
}

.stay-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #1f372d;
  margin-bottom: 8px;
}

.stay-content p {
  color: #50635a;
  margin-bottom: 12px;
}

.stay-content ul {
  margin: 0 0 16px;
  padding-left: 0;
  list-style-position: inside;
  color: #2f4439;
}

.stay-content li {
  text-align: center;
}

.stay-content .btn {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

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

.gallery-img {
  height: 235px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gallery-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.testimonial-grid blockquote {
  background: var(--white);
  border: 1px solid #dce3dd;
  border-radius: 16px;
  padding: 18px;
  color: #345145;
}

.testimonial-grid cite {
  display: block;
  margin-top: 12px;
  color: #50655b;
  font-style: normal;
  font-size: 0.9rem;
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(20, 49, 36, 0.98), rgba(26, 62, 45, 0.96)),
    url("media/1.jpg") center/cover no-repeat;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.contact-grid h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1;
  margin-bottom: 12px;
}

.contact-grid p {
  color: #d4e7db;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn-call {
  background: #f5e6c9;
  color: #20352c;
}

.btn-whatsapp {
  background: #28c36a;
  color: var(--white);
}

.btn-viber {
  background: #5f6fc2;
  color: var(--white);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  color: #25352f;
}

.contact-form-container h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #264034;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #c9d5cd;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
}

.form-group textarea {
  min-height: 92px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  margin-top: 1.25rem;
}

.footer {
  background: #10261b;
  color: #ccddd2;
}

.footer-inner {
  min-height: 70px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 17, 13, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  width: min(90vw, 1080px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.mobile-sticky-call {
  display: none;
}

.reveal {
  animation: fadeUp 0.65s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .stays-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
  }

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

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

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: rgba(251, 250, 247, 0.98);
    border-bottom: 1px solid rgba(24, 59, 44, 0.1);
    padding: 16px 4vw 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .btn-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 64px 0;
  }

  .utility-inner {
    justify-content: center;
    padding: 8px 0;
    font-size: 0.82rem;
  }

  .utility-inner a:last-child {
    display: none;
  }

  .brand-copy strong {
    font-size: 1.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
    line-height: 0.95;
  }

  .hero-copy p {
    font-size: 0.99rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

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

  .gallery-img {
    height: 220px;
  }

  .form-row {
    flex-direction: column;
  }

  .mobile-sticky-call {
    display: block;
    position: fixed;
    bottom: calc(env(safe-area-inset-bottom) + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 360px);
    text-align: center;
    background: #1f4d3a;
    color: var(--white);
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 18px;
    z-index: 130;
    box-shadow: 0 10px 24px rgba(22, 50, 38, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .mobile-sticky-call.show {
    opacity: 1;
    pointer-events: auto;
  }
}
