:root {
  --ink: #17211f;
  --muted: #66706c;
  --soft: #f3efe7;
  --soft-2: #e8f0ec;
  --paper: #fffdf8;
  --line: rgba(23, 33, 31, 0.13);
  --green: #1f4d3b;
  --green-dark: #153629;
  --clay: #b7794a;
  --sand: #d9bf8f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 33, 31, 0.13);
  --radius: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 191, 143, 0.2), transparent 35%),
    linear-gradient(180deg, #fffdf8 0%, #f7f2e9 100%);
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.04em;
  font-size: 22px;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-mark {
  width: 47px;
  height: 47px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, var(--green), var(--green-dark)),
    var(--green);
  color: var(--paper);
  font-size: 15px;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 34px rgba(31, 77, 59, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #31403b;
  font-weight: 700;
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 92px 0 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 28, 24, 0.76), rgba(16, 28, 24, 0.26), rgba(16, 28, 24, 0.08)),
    url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1800&q=80") center/cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--paper));
  z-index: -1;
}

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

.hero-copy {
  color: var(--white);
  padding-top: 20px;
}

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

.eyebrow.dark {
  color: var(--clay);
}

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(183, 121, 74, 0.32);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: #a66539;
}

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

.btn.dark {
  background: var(--green);
  color: var(--white);
}

.btn.light {
  background: var(--paper);
  color: var(--green-dark);
}

.btn.full {
  width: 100%;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
}

.booking-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.booking-label {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.booking-form,
.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #43514c;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 14px;
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(31, 77, 59, 0.5);
  box-shadow: 0 0 0 4px rgba(31, 77, 59, 0.09);
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 12px;
}

.micro-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: 94px 0;
}

.no-top {
  padding-top: 0;
}

.soft {
  background:
    linear-gradient(180deg, rgba(232, 240, 236, 0.7), rgba(243, 239, 231, 0.75));
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 46px;
  align-items: end;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.feature-card.large {
  grid-row: span 2;
  min-height: 742px;
}

.feature-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: 0.45s ease;
}

.feature-card:hover img {
  transform: scale(1.04);
  opacity: 0.6;
}

.feature-card div {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(15, 29, 24, 0.72);
  backdrop-filter: blur(16px);
}

.feature-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sand);
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

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

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.cards-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stay-card,
.offer-card,
.contact-panel,
.contact-form,
.check-grid div,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 15px 50px rgba(25, 33, 31, 0.06);
}

.stay-card {
  padding: 30px;
}

.stay-card p,
.room-copy p,
.destination-card p,
.offer-card p,
.contact-panel p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.stay-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
}

.room-showcase {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.room-image img {
  height: 620px;
  border-radius: 38px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  color: #34423d;
  line-height: 1.5;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
}

.journal-grid article {
  padding: 26px;
  border-left: 1px solid var(--line);
}

.journal-grid span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journal-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.cta-band {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(21, 54, 41, 0.96), rgba(31, 77, 59, 0.92)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-inner h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.page-hero {
  padding: 125px 0;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(120deg, rgba(18, 35, 29, 0.78), rgba(18, 35, 29, 0.28)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.rooms-hero {
  background:
    linear-gradient(120deg, rgba(18, 35, 29, 0.78), rgba(18, 35, 29, 0.28)),
    url("https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.destinations-hero {
  background:
    linear-gradient(120deg, rgba(18, 35, 29, 0.78), rgba(18, 35, 29, 0.24)),
    url("https://images.unsplash.com/photo-1486299267070-83823f5448dd?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.offers-hero {
  background:
    linear-gradient(120deg, rgba(18, 35, 29, 0.78), rgba(18, 35, 29, 0.28)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-hero {
  background:
    linear-gradient(120deg, rgba(18, 35, 29, 0.78), rgba(18, 35, 29, 0.28)),
    url("https://images.unsplash.com/photo-1525186402429-b4ff38bedec6?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.page-hero h1 {
  margin-inline: auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.room-list {
  display: grid;
  gap: 58px;
}

.room-item {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 42px;
  align-items: center;
}

.room-item.reverse {
  grid-template-columns: 1fr 0.95fr;
}

.room-item.reverse img {
  order: 2;
}

.room-item img {
  height: 470px;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.check-grid div {
  padding: 24px;
}

.check-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.check-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.destination-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 15px 50px rgba(25, 33, 31, 0.06);
}

.destination-card img {
  height: 260px;
  object-fit: cover;
}

.destination-card div {
  padding: 24px;
}

.destination-card span {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.route-box {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.route-box p {
  color: var(--muted);
  line-height: 1.7;
}

.route-list {
  margin: 0;
  padding: 28px 28px 28px 48px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.route-list li {
  margin: 13px 0;
  line-height: 1.5;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.offer-card {
  padding: 32px;
}

.offer-card.highlight {
  background: var(--green);
  color: var(--white);
}

.offer-card.highlight p,
.offer-card.highlight li {
  color: rgba(255, 255, 255, 0.8);
}

.offer-card span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.offer-card.highlight span {
  color: var(--sand);
}

.offer-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.offer-card li {
  margin: 9px 0;
  color: var(--muted);
  line-height: 1.5;
}

.faq {
  max-width: 880px;
}

.faq details {
  padding: 22px 24px;
  margin-top: 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.faq p {
  margin: 14px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 32px;
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-info div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
}

.contact-info strong {
  color: var(--green);
}

.contact-info span {
  color: var(--muted);
}

.site-footer {
  padding: 64px 0 26px;
  background: #101b17;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.7fr;
  gap: 46px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 460px;
  line-height: 1.65;
}

.site-footer h4 {
  margin: 0 0 16px;
  color: var(--white);
}

.site-footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: var(--sand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  max-width: 330px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  font-weight: 750;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}


.site-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

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

  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    border-radius: 14px;
  }

  .hero-grid,
  .split,
  .room-showcase,
  .room-item,
  .room-item.reverse,
  .route-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .room-item.reverse img {
    order: 0;
  }

  .feature-grid,
  .cards-three,
  .journal-grid,
  .destination-grid,
  .offer-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journal-grid .section-head {
    grid-column: 1 / -1;
  }

  .hero {
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(44px, 10vw, 70px);
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--max));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .main-nav {
    top: 74px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 64px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-copy p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .booking-card,
  .contact-form,
  .contact-panel {
    padding: 22px;
  }

  .form-two,
  .feature-grid,
  .cards-three,
  .journal-grid,
  .destination-grid,
  .offer-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.large,
  .feature-card {
    min-height: 410px;
  }

  .room-image img,
  .room-item img {
    height: 350px;
    border-radius: 26px;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 92px 0;
  }

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