:root {
  --bg: #f8f4ed;
  --surface: #efe5d5;
  --surface-strong: #e6d8c1;
  --text: #1f2a24;
  --muted: #5b635d;
  --green: #285943;
  --green-deep: #1f4534;
  --terracotta: #c46d4b;
  --border: #d9ccb8;
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(40, 89, 67, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 109, 75, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(40, 89, 67, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Source Sans 3", sans-serif;
  padding-bottom: 92px;
}

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

/* Layout */

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(217, 204, 184, 0.7);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.nav-logo {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover {
  color: var(--green);
  background: rgba(40, 89, 67, 0.06);
}

.nav-link-active {
  color: var(--green);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Language switcher */

.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid rgba(217, 204, 184, 0.7);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  transition: border-color 160ms ease;
}

.lang-current:hover {
  border-color: var(--green);
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-code {
  letter-spacing: 0.04em;
}

.lang-arrow {
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 160ms ease;
}

.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(217, 204, 184, 0.8);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(40, 89, 67, 0.12);
  z-index: 30;
  min-width: 140px;
}

.lang-switcher.open .lang-menu {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: background 120ms ease;
}

.lang-option:hover {
  background: rgba(40, 89, 67, 0.06);
}

.lang-active {
  font-weight: 700;
  color: var(--green);
}

.nav-phone {
  display: none;
}

.site-footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 32px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

/* Sections */

.section {
  margin-top: 20px;
  padding: 28px;
  border-radius: 28px;
}

.section-soft {
  background: rgba(239, 229, 213, 0.64);
  border: 1px solid rgba(217, 204, 184, 0.7);
  box-shadow: var(--shadow);
}

/* Hero */

.hero {
  display: grid;
  gap: 20px;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(239, 229, 213, 0.88));
  border: 1px solid rgba(217, 204, 184, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy,
.portrait-card,
.contact-card {
  animation: rise 700ms ease both;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.eyebrow,
.label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.eyebrow {
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(196, 109, 75, 0.24);
  border-radius: 999px;
  background: rgba(196, 109, 75, 0.08);
}

h1,
h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.5rem, 9vw, 4.8rem);
  letter-spacing: -0.04em;
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.lead,
.trust-line,
.prose p,
.contact-copy,
.contact-location {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--muted);
}

.trust-line {
  color: var(--text);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(40, 89, 67, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-deep);
}

.button-secondary {
  color: var(--green);
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid rgba(40, 89, 67, 0.2);
}

/* Portrait */

.portrait-card {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(217, 204, 184, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.35), rgba(255, 253, 249, 0.02)),
    radial-gradient(circle at 30% 20%, rgba(196, 109, 75, 0.25), transparent 25%),
    linear-gradient(145deg, var(--surface-strong), rgba(239, 229, 213, 0.4));
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(180deg, rgba(248, 244, 237, 0), rgba(248, 244, 237, 0.96));
}

.portrait-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.portrait-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(217, 204, 184, 0.9);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Section headings & prose */

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.prose {
  display: grid;
  gap: 16px;
  max-width: 68ch;
}

.section-intro,
.page-intro {
  margin: 0 0 18px;
  max-width: 64ch;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Trust list (in About section) */

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

.trust-list li {
  padding-left: 24px;
  position: relative;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Reviews */

.review-grid {
  display: grid;
  gap: 14px;
}

.review-card {
  margin: 0;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(217, 204, 184, 0.7);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
}

.review-stars {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--terracotta);
  letter-spacing: 2px;
}

.review-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}

.review-author {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: normal;
}

.review-lang-note {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
}

.review-cta {
  margin: 18px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.review-cta a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* Trip cards (image + body) */

.trip-grid {
  display: grid;
  gap: 16px;
}

.trip-card {
  border-radius: 20px;
  border: 1px solid rgba(217, 204, 184, 0.7);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trip-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.trip-body {
  padding: 18px;
}

.trip-body h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.trip-body p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.trip-price {
  margin: 10px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
}

.trip-price-note {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

.trip-includes {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
}

.trip-meta {
  margin: 10px 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

/* Section link */

.section-link {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.section-link a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Page title (sub-pages) */

.page-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: -0.03em;
  max-width: 20ch;
  font-family: "Outfit", sans-serif;
  margin: 0;
  line-height: 1.02;
}

.page-hero {
  display: grid;
  gap: 28px;
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(239, 229, 213, 0.9));
  border: 1px solid rgba(217, 204, 184, 0.82);
  box-shadow: var(--shadow);
}

.page-hero-copy,
.page-hero-photo {
  animation: rise 700ms ease both;
}

.page-hero-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.page-hero-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(217, 204, 184, 0.82);
  min-height: 280px;
  margin-top: 10px;
  background: linear-gradient(140deg, rgba(40, 89, 67, 0.12), rgba(196, 109, 75, 0.12));
}

.page-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2px 0 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(40, 89, 67, 0.12);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 10px 24px rgba(40, 89, 67, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
}

.page-hero .cta-row {
  padding-top: 0;
}

/* Destination grid */

.dest-grid {
  display: grid;
  gap: 20px;
}

.dest-group h3 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
}

.dest-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dest-group li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(217, 204, 184, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Service cards */

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

.service-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(217, 204, 184, 0.7);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
  font-size: 1.02rem;
  line-height: 1.35;
}

.service-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.service-card p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 400;
}

.mini-grid {
  display: grid;
  gap: 14px;
}

.mini-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(217, 204, 184, 0.7);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow);
}

.mini-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
}

.mini-card p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Contact */

.contact-section {
  padding: 0;
  background: none;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 30px 28px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 24px 48px rgba(31, 69, 52, 0.22);
}

.label-light {
  color: rgba(255, 253, 249, 0.72);
}

.contact-card h2,
.contact-card .contact-copy,
.contact-card .contact-location,
.contact-card .contact-phone {
  max-width: 28ch;
}

.contact-copy,
.contact-location {
  color: rgba(255, 253, 249, 0.82);
}

.maps-link {
  color: rgba(255, 253, 249, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-phone {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.button-light {
  background: var(--white);
  color: var(--green);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  background: #f0ece4;
}

.button-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 253, 249, 0.32);
  background: rgba(255, 253, 249, 0.08);
}

/* Mobile sticky CTA */

.mobile-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(217, 204, 184, 0.88);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 20px 40px rgba(31, 69, 52, 0.12);
  backdrop-filter: blur(10px);
}

.mobile-bar-button {
  min-width: 0;
}

/* Animation */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy,
  .portrait-card,
  .contact-card,
  .page-hero-copy,
  .page-hero-photo,
  .button {
    animation: none;
    transition: none;
  }
}

/* Tablet+ */

@media (min-width: 720px) {
  .site-shell {
    width: min(1120px, calc(100% - 48px));
    padding-top: 28px;
  }

  .site-header {
    width: min(1120px, calc(100% - 48px));
  }

  .nav-phone {
    display: inline-flex;
  }

  body {
    padding-bottom: 0;
  }

  .section {
    margin-top: 24px;
    padding: 34px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.85fr);
    align-items: stretch;
  }

  .page-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 24px;
  }

  .page-hero-photo {
    margin-top: 0;
  }

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

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

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

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

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

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

  .contact-card {
    padding: 36px;
  }

  .mobile-cta-bar {
    display: none;
  }
}

/* Desktop */

@media (min-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
