:root {
  --ink: #182521;
  --muted: #5e6b66;
  --line: #e7dccb;
  --paper: #fffaf2;
  --mist: #f6efe2;
  --green: #6fa874;
  --green-dark: #3f7655;
  --blue: #225c8b;
  --pomegranate: #b93c4a;
  --saffron: #d99a2b;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(24, 37, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 34px;
  background: rgba(255, 254, 250, 0.92);
  border-bottom: 1px solid rgba(220, 229, 222, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.brand-wordmark {
  color: var(--pomegranate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-wordmark strong {
  color: var(--green);
  font-family: inherit;
  font-weight: 900;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 650;
}

.site-nav a:hover,
.language-switcher a:hover,
.text-link:hover {
  color: var(--pomegranate);
}

.nav-cta,
.button,
.sticky-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.nav-cta,
.button.primary,
.sticky-whatsapp {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover,
.nav-cta:hover,
.sticky-whatsapp:hover {
  color: var(--white);
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language-switcher a {
  min-width: 36px;
  padding: 7px 8px;
  border-radius: 6px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.language-switcher a.active {
  color: var(--white);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  color: var(--white);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 29, 24, 0.82), rgba(13, 29, 24, 0.42) 52%, rgba(13, 29, 24, 0.08)),
    linear-gradient(0deg, rgba(13, 29, 24, 0.62), rgba(13, 29, 24, 0.04) 52%);
}

.hero-photo picture,
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
  padding: 92px 34px 150px;
}

.kicker,
.eyebrow,
.footer-kicker {
  margin: 0 0 12px;
  color: var(--saffron);
  font-size: 14px;
  font-weight: 900;
}

.hero h1,
.page-hero h1,
.article-header h1 {
  margin: 0;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.05;
}

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

.hero-intro,
.hero-copy > p,
.page-hero > p,
.article-header > p {
  max-width: 720px;
  font-size: 20px;
}

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

.booking-bar {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 254, 250, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-bar span {
  padding: 18px 22px;
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.booking-bar span:last-child {
  border-right: 0;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 34px;
}

.intro-band,
.faq-section {
  max-width: none;
  background: var(--mist);
}

.intro-band > *,
.faq-section > * {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

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

.section-head h2,
.split-section h2,
.soft-panel h2,
.article-aside h2,
.footer h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.item-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 37, 33, 0.06);
}

.item-media img {
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.item-body {
  padding: 20px;
}

.item-body h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.22;
}

.item-body p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 34px;
  align-items: start;
}

.soft-panel,
.booking-form-panel,
.article-aside {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(24, 37, 33, 0.08);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--saffron);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 850;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 10px;
  padding: 10px;
  background: var(--green-dark);
}

.gallery-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-band img:first-child {
  height: 420px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.page-hero {
  display: grid;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 34px 60px;
}

.compact-hero {
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
}

.compact-hero img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.text-hero {
  max-width: 900px;
}

.page-hero h1,
.article-header h1 {
  color: var(--green-dark);
  font-size: 48px;
}

.page-hero p {
  color: var(--muted);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.detail-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.detail-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.detail-box strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.booking-hero {
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
}

.article {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 34px 30px;
}

.article-header {
  max-width: 900px;
}

.article-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.article-cover {
  width: 100%;
  height: 460px;
  margin: 34px 0;
  object-fit: cover;
  border-radius: 8px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 42px;
  align-items: start;
}

.article-body {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.72;
}

.article-body h2 {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.2;
}

.article-body p {
  color: #33433d;
}

.article-faq {
  margin-top: 42px;
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-faq h2 {
  margin-top: 0;
}

.article-faq details {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.article-faq summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 850;
}

.article-faq p {
  margin-bottom: 0;
}

.legacy-body p,
.legacy-body li {
  color: #33433d;
}

.legacy-body a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legacy-body table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 15px;
}

.legacy-body th,
.legacy-body td {
  padding: 12px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.legacy-body th {
  color: var(--green-dark);
  background: var(--mist);
  text-align: left;
}

.product-subtitle {
  color: var(--pomegranate) !important;
  font-weight: 850;
}

.article-aside {
  position: sticky;
  top: 96px;
}

.article-aside p {
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 54px 34px;
  color: var(--white);
  background: var(--green-dark);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--saffron);
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    padding: 10px 18px;
  }

  .menu-toggle {
    display: block;
    justify-self: start;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .language-switcher {
    justify-self: end;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-copy {
    padding: 82px 22px 180px;
  }

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

  .hero-intro,
  .hero-copy > p,
  .page-hero > p,
  .article-header > p {
    font-size: 18px;
  }

  .booking-bar {
    grid-template-columns: 1fr;
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .booking-bar span {
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-bar span:last-child {
    border-bottom: 0;
  }

  .experience-grid,
  .blog-grid,
  .details-grid,
  .split-section,
  .compact-hero,
  .booking-hero,
  .article-layout,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .gallery-band img,
  .gallery-band img:first-child,
  .article-cover,
  .compact-hero img {
    height: 340px;
  }

  .article-aside {
    position: static;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand-wordmark {
    font-size: 18px;
  }

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

  .language-switcher a {
    min-width: 32px;
    padding: 6px;
  }

  .hero h1,
  .page-hero h1,
  .article-header h1 {
    font-size: 34px;
  }

  .section,
  .page-hero,
  .article {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-head h2,
  .split-section h2,
  .soft-panel h2,
  .article-aside h2,
  .footer h2 {
    font-size: 29px;
  }

  .hero-actions,
  .button,
  .nav-cta {
    width: 100%;
  }

  .item-media img {
    height: 200px;
  }

  .gallery-band img,
  .gallery-band img:first-child,
  .article-cover,
  .compact-hero img {
    height: 260px;
  }

  .soft-panel,
  .booking-form-panel,
  .article-aside {
    padding: 22px;
  }

  .sticky-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 42px;
    padding: 10px 14px;
  }
}
