:root {
  --ink: #132a19;
  --muted: #66715f;
  --line: #ccd2bf;
  --paper: #e5e6d6;
  --panel: #ffffff;
  --accent: #1f492a;
  --accent-dark: #132a19;
  --accent-soft: #d6dcc8;
  --leaf: #7b8f49;
  --soft: #eef0e4;
  --max: 1180px;
}

@font-face {
  font-family: "SF UI Text Light";
  src: url("./assets/fonts/sf-pro-display/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: Ubuntu, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 56px);
  color: #fff;
  background: transparent;
  border-bottom: 0;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(19, 42, 25, 0.62);
  border-bottom: 1px solid rgba(220, 228, 207, 0.16);
  box-shadow: 0 12px 34px rgba(5, 12, 8, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(50px, 5.4vw, 62px);
  max-width: min(190px, 34vw);
  object-fit: contain;
}

.brand-text {
  display: grid;
  color: #fff;
  font-family: "Fira Sans", Ubuntu, sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-text span:last-child {
  color: #dce4cf;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.68);
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.82rem, 1.02vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-bottom: 10px;
  transition: color 180ms ease;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.language-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.64;
  transition:
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.language-button .tour-flag {
  width: 30px;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.language-button:focus-visible {
  outline: 2px solid #d8c8b9;
  outline-offset: 3px;
}

.language-button:hover {
  transform: translateY(-1px);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #d8c8b9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #d8c8b9;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.contact-link {
  display: grid;
  gap: 2px;
  min-height: 48px;
  padding: 8px 18px 7px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  line-height: 1.05;
  backdrop-filter: blur(10px);
}

.contact-link small {
  color: #dce4cf;
  font-size: 0.62em;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.main-nav .contact-link {
  padding-bottom: 7px;
}

.main-nav .contact-link::after {
  display: none;
}

.main-nav .contact-link:hover,
.main-nav .contact-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(118px, 13vw, 170px) clamp(20px, 4vw, 56px) clamp(44px, 6vw, 86px);
  color: #fff;
  background: var(--accent-dark);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(19, 42, 25, 0.82) 0%, rgba(19, 42, 25, 0.58) 46%, rgba(19, 42, 25, 0.18) 100%),
    linear-gradient(0deg, rgba(19, 42, 25, 0.18), rgba(19, 42, 25, 0.18));
}

.hero-video {
  position: absolute;
  inset: -8%;
  z-index: -2;
  width: 116%;
  height: 116%;
  object-fit: cover;
  background: var(--accent-dark);
}

.hero-copy {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(280px, 380px);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - clamp(162px, 19vw, 256px));
  min-height: calc(100dvh - clamp(162px, 19vw, 256px));
}

.hero-main {
  padding-left: clamp(24px, 4.5vw, 72px);
}

.hero .eyebrow {
  color: #dce4cf;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 4.25vw, 4.55rem);
}

.hero-highlight {
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
  background: rgba(19, 42, 25, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-side {
  display: grid;
  justify-items: stretch;
  gap: 18px;
  width: min(420px, 100%);
  justify-self: end;
}

.hero-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero-highlight strong {
  display: inline;
  margin-top: 0;
  color: #fff;
  font: inherit;
  font-weight: 700;
  line-height: inherit;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(2.85rem, 4.8vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
  font-family: "Fira Sans", Ubuntu, sans-serif;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.hero-actions .button {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
}

.button-with-note {
  display: inline-grid;
  gap: 4px;
  align-content: center;
  place-items: center;
  line-height: 1.05;
  padding-top: 12px;
  padding-bottom: 11px;
}

.button-with-note small {
  color: currentColor;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.56em;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0.72;
  text-transform: uppercase;
}

.button.primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero-actions .button.primary {
  background: rgba(19, 42, 25, 0.68);
  border-color: rgba(19, 42, 25, 0.76);
  backdrop-filter: blur(8px);
}

.hero-actions .button.primary:hover {
  background: rgba(19, 42, 25, 0.82);
  border-color: rgba(19, 42, 25, 0.9);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.intro,
.tour-lines,
.experiences,
.method,
.proof,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 112px) clamp(20px, 4vw, 56px);
}

.tour-lines {
  max-width: none;
  padding-top: clamp(22px, 3vw, 36px);
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  color: #fff;
  background: var(--accent-dark);
}

.tour-lines .section-heading {
  width: min(100%, 1440px);
  max-width: none;
  margin-right: auto;
  margin-bottom: clamp(18px, 2.6vw, 30px);
  margin-left: auto;
  padding-right: clamp(20px, 4vw, 56px);
  padding-left: clamp(20px, 4vw, 56px);
  text-align: center;
}

.tour-lines .section-kicker {
  color: #dce4cf;
  font-size: clamp(1rem, 1.18vw, 1.28rem);
  letter-spacing: 0.09em;
}

.tour-lines h2 {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.55vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.16;
  text-transform: uppercase;
  white-space: nowrap;
}

.tour-info-bar {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(2, minmax(190px, 0.8fr));
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(18px, 2vw, 24px) clamp(20px, 4vw, 56px);
  color: #fff;
  background: var(--accent-dark);
  border-top: 1px solid rgba(220, 228, 207, 0.18);
  border-bottom: 1px solid rgba(220, 228, 207, 0.18);
}

.tour-info-item {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 98px;
  padding: 0 clamp(16px, 2vw, 30px);
  text-align: center;
}

.tour-info-item + .tour-info-item {
  border-left: 1px solid rgba(220, 228, 207, 0.2);
}

.tour-info-title,
.tour-info-sub {
  color: #dce4cf;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.78rem, 0.92vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tour-info-title {
  margin-bottom: 12px;
}

.tour-info-language-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px clamp(18px, 2.2vw, 30px);
}

.tour-info-language-list span,
.tour-info-main {
  color: #fff;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 1.45vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.tour-info-language-list > span {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.tour-flag {
  position: relative;
  display: block;
  width: clamp(48px, 5vw, 62px);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 8px 22px rgba(0, 0, 0, 0.2);
}

.tour-flag-es {
  background: linear-gradient(
    180deg,
    #aa151b 0 25%,
    #f1bf00 25% 75%,
    #aa151b 75% 100%
  );
}

.tour-flag-us {
  background: repeating-linear-gradient(
    180deg,
    #b22234 0 7.69%,
    #fff 7.69% 15.38%
  );
}

.tour-flag-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 54%;
  background: #3c3b6e;
}

.tour-info-main {
  margin-bottom: 10px;
  font-size: clamp(2.25rem, 3.4vw, 4rem);
  letter-spacing: 0.08em;
}

.tour-theme-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  background: var(--accent-dark);
}

.tour-theme-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  min-height: clamp(135px, 12vw, 180px);
  padding: clamp(24px, 3vw, 44px);
  color: #fff;
  border: 0;
  border-radius: 0;
  transition: min-height 320ms ease;
}

.tour-theme-card + .tour-theme-card {
  border-top: 1px solid rgba(220, 228, 207, 0.22);
}

.tour-theme-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(19, 42, 25, 0.2) 0%, rgba(19, 42, 25, 0.82) 100%),
    rgba(19, 42, 25, 0.22);
  pointer-events: none;
}

.tour-theme-card:hover,
.tour-theme-card:focus-within {
  min-height: clamp(305px, 28vw, 420px);
}

.tour-theme-video {
  position: absolute;
  inset: -12%;
  z-index: -2;
  width: 124%;
  height: 124%;
  object-fit: cover;
  object-position: center;
  background: var(--accent-dark);
  transition: transform 420ms ease;
}

.tour-theme-card:hover .tour-theme-video,
.tour-theme-card:focus-within .tour-theme-video {
  transform: scale(1.06);
}

.tour-theme-card h3 {
  position: absolute;
  top: clamp(67.5px, 6vw, 90px);
  left: 50%;
  z-index: 1;
  max-width: min(100%, 1440px);
  width: 100%;
  transform: translate(-50%, -50%);
  margin-right: 0;
  margin-left: 0;
  padding-right: clamp(20px, 4vw, 56px);
  padding-left: clamp(20px, 4vw, 56px);
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.85rem, 3vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-align: left;
  text-transform: uppercase;
}

.tour-theme-reveal {
  position: absolute;
  top: calc(clamp(67.5px, 6vw, 90px) + clamp(44px, 5vw, 76px));
  left: 50%;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 1440px);
  transform: translateX(-50%) translateY(10px);
  padding-right: clamp(20px, 4vw, 56px);
  padding-left: clamp(20px, 4vw, 56px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.tour-theme-card:hover .tour-theme-reveal,
.tour-theme-card:focus-within .tour-theme-reveal {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.tour-theme-reveal p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
}

.tour-theme-reveal p:first-child {
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
}

.tour-theme-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.tour-theme-actions .tour-line-button,
.tour-theme-actions .dossier-pill {
  width: auto;
  margin-top: 0;
  white-space: nowrap;
}

.tour-theme-actions .tour-line-button {
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  font-size: 1.12rem;
}

.tour-theme-actions .dossier-pill {
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  font-size: 1.1rem;
}

.tour-line-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 0;
}

.tour-line-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(760px, 86vh);
  padding: clamp(24px, 3.2vw, 44px);
  border: 0;
  border-radius: 0;
}

.tour-line-card::before {
  display: none;
}

.tour-line-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.tour-line-video {
  position: absolute;
  inset: -22%;
  z-index: 0;
  width: 144%;
  height: 144%;
  object-fit: cover;
  object-position: center center;
  background: var(--accent-dark);
}

.tour-line-dynamic {
  color: #fff;
  background: var(--leaf);
}

.tour-line-dynamic::after {
  background:
    linear-gradient(180deg, rgba(19, 42, 25, 0.38) 0%, rgba(19, 42, 25, 0.36) 38%, rgba(123, 143, 73, 0.86) 100%),
    rgba(123, 143, 73, 0.28);
}

.tour-line-premium {
  color: #fff;
  background: linear-gradient(135deg, #17271c, #2f3a24);
}

.tour-line-premium::after {
  background:
    linear-gradient(180deg, rgba(5, 12, 8, 0.42) 0%, rgba(19, 42, 25, 0.42) 38%, rgba(19, 42, 25, 0.92) 100%),
    rgba(19, 42, 25, 0.34);
}

.tour-line-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.tour-line-label {
  margin: 0;
  padding: 11px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  font-size: clamp(1rem, 1.18vw, 1.24rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.tour-line-top span {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.tour-line-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.tour-line-card h3 {
  margin-bottom: 18px;
  font-family: "Fira Sans", Ubuntu, sans-serif;
  font-size: clamp(2.15rem, 4vw, 4.8rem);
  line-height: 1;
}

.tour-line-card p:not(.tour-line-label) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.72;
}

.tour-line-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.tour-line-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.tour-line-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d8c8b9;
}

.tour-line-dynamic li::before {
  background: #e7ecd7;
}

.tour-line-button {
  width: min(100%, 470px);
  min-height: 66px;
  padding-right: 22px;
  padding-left: 22px;
  font-size: 1.16rem;
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.tour-line-button:hover {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
}

.dossier-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 470px);
  margin-top: 10px;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: rgba(19, 42, 25, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  backdrop-filter: blur(10px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.dossier-pill:hover,
.dossier-pill:focus-visible {
  color: #fff;
  background: rgba(19, 42, 25, 0.76);
  border-color: rgba(255, 255, 255, 0.62);
}

.tour-line-badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  width: fit-content;
  max-width: min(100%, 320px);
  margin: clamp(22px, 3vw, 36px) auto 0 0;
  padding: 16px 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

@media (min-width: 881px) {
  .tour-line-badge {
    transform: none;
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.intro-grid p,
.proof-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.experience-list {
  display: grid;
  gap: 18px;
}

.experience-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.experience-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.experience-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.experience-card p {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-card span {
  color: var(--muted);
  line-height: 1.6;
}

.method {
  display: block;
  max-width: none;
  padding: clamp(26px, 4vw, 46px) 0 0;
  color: #fff;
  background: var(--accent-dark);
  border-top: 1px solid rgba(220, 228, 207, 0.18);
  border-bottom: 1px solid rgba(220, 228, 207, 0.18);
}

.method > div {
  width: min(100%, 1440px);
  margin: 0 auto clamp(20px, 2.6vw, 34px);
  padding-right: clamp(20px, 4vw, 56px);
  padding-left: clamp(20px, 4vw, 56px);
  text-align: center;
}

.method .section-kicker {
  color: #dce4cf;
  font-size: clamp(1rem, 1.18vw, 1.28rem);
  letter-spacing: 0.09em;
}

.method h2 {
  max-width: none;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: #fff;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.55vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.16;
  text-transform: uppercase;
}

.method ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1440px);
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  padding: 0 clamp(20px, 4vw, 56px);
  list-style: none;
  counter-reset: step;
  border-top: 1px solid rgba(220, 228, 207, 0.18);
}

.method li {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  min-height: 178px;
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  border-bottom: 0;
  counter-increment: step;
}

.method li:last-child {
  border-bottom: 0;
}

.method li + li {
  border-left: 1px solid rgba(220, 228, 207, 0.2);
}

.method li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: #dce4cf;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.method strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.28vw, 1.28rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.method span {
  max-width: 330px;
  color: #dce4cf;
  font-size: 0.98rem;
  line-height: 1.55;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
}

.stats {
  display: grid;
  gap: 12px;
}

.stats p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.stats strong {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.stats span {
  color: var(--muted);
  text-align: right;
}

.contact {
  max-width: none;
  margin: 0;
  padding: clamp(54px, 7vw, 92px) 0;
  color: #fff;
  background:
    linear-gradient(115deg, #183b22 0%, #245331 48%, #3f6c3c 100%);
  border-top: 1px solid rgba(220, 228, 207, 0.18);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-right: clamp(20px, 4vw, 56px);
  padding-left: clamp(20px, 4vw, 56px);
}

.contact .section-kicker,
.contact p {
  color: #dce4cf;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.contact-direct svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
  color: #e7ecd7;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label,
.contact-field {
  display: grid;
  gap: 8px;
  color: #e8e0d8;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  font: inherit;
  color-scheme: dark;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #d8c8b9;
  outline-offset: 2px;
}

.contact-form select {
  appearance: auto;
}

.contact-form select option {
  color: var(--ink);
  background: #fff;
}

.date-picker {
  position: relative;
}

.date-picker-control {
  position: relative;
}

.date-picker-control input {
  padding-right: 58px;
  cursor: pointer;
}

.date-picker-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  transform: translateY(-50%);
  cursor: pointer;
}

.date-picker-toggle span {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-top-width: 5px;
  border-radius: 3px;
}

.date-picker-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  width: min(100%, 420px);
  padding: 18px;
  color: #fff;
  background: #132a19;
  border: 1px solid rgba(220, 228, 207, 0.32);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.date-picker-month {
  margin: 0;
  color: #fff;
  font-family: Lato, "SF UI Text Light", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-picker-nav {
  display: flex;
  gap: 8px;
}

.date-picker-nav button,
.date-picker-day {
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 228, 207, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.date-picker-nav button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
}

.date-picker-weekdays,
.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.date-picker-weekdays {
  margin-bottom: 8px;
  color: #dce4cf;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.date-picker-day {
  min-height: 42px;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.date-picker-day:hover,
.date-picker-day:focus-visible,
.date-picker-day.is-selected {
  color: var(--ink);
  background: #dce4cf;
  border-color: #dce4cf;
}

.date-picker-day.is-muted {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form textarea {
  resize: vertical;
}

.form-honeypot {
  display: none !important;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: #e8e0d8;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #dce4cf;
}

.form-status[data-state="error"] {
  color: #ffd8cc;
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form .button:hover {
  color: #fff;
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 880px) {
  .site-header {
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(19, 42, 25, 0.88);
    border-bottom: 1px solid rgba(220, 228, 207, 0.16);
    box-shadow: 0 12px 34px rgba(5, 12, 8, 0.18);
    backdrop-filter: blur(16px);
  }

  .main-nav {
    min-width: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
  }

  .brand img {
    height: 44px;
    max-width: 44px;
  }

  .brand-text {
    font-size: 0.86rem;
  }

  .language-switcher {
    order: 3;
    padding: 4px;
  }

  .language-button {
    width: 36px;
    height: 30px;
  }

  .language-button .tour-flag {
    width: 25px;
  }

  .contact-link {
    min-height: 42px;
    padding: 7px 14px 6px;
  }

  .hero,
  .intro-grid,
  .method,
  .proof,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 136px;
    padding-bottom: 64px;
  }

  .hero-copy {
    margin: 0;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-main {
    padding-left: 0;
  }

  .hero-side,
  .hero-highlight {
    justify-self: start;
    max-width: 560px;
  }

  .tour-line-grid {
    grid-template-columns: 1fr;
  }

  .tour-lines h2 {
    white-space: normal;
  }

  .tour-info-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 20px;
    padding-left: 20px;
  }

  .tour-info-languages {
    grid-column: 1 / -1;
  }

  .tour-info-item + .tour-info-item {
    border-left: 0;
  }

  .tour-info-item:nth-child(3) {
    border-left: 1px solid rgba(220, 228, 207, 0.2);
  }

  .tour-theme-card {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .tour-theme-card h3 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding-right: 0;
    padding-left: 0;
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .tour-theme-reveal {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    padding-right: 0;
    padding-left: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .tour-theme-actions .tour-line-button,
  .tour-theme-actions .dossier-pill {
    white-space: normal;
  }

  .tour-theme-card:hover,
  .tour-theme-card:focus-within {
    min-height: auto;
  }

  .tour-theme-card:hover .tour-theme-reveal,
  .tour-theme-card:focus-within .tour-theme-reveal {
    transform: none;
  }

  .tour-theme-card:hover .tour-theme-video,
  .tour-theme-card:focus-within .tour-theme-video {
    transform: none;
  }

  .tour-theme-card + .tour-theme-card {
    border-top: 1px solid rgba(220, 228, 207, 0.22);
  }

  .method ol {
    grid-template-columns: 1fr;
  }

  .method li {
    min-height: 160px;
  }

  .method li + li {
    border-top: 1px solid rgba(220, 228, 207, 0.2);
    border-left: 0;
  }

  .experience-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .site-header {
    position: fixed;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 7px 10px;
  }

  .site-header .brand {
    justify-self: start;
    width: auto;
  }

  .main-nav {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: clamp(4px, 1.6vw, 8px);
    width: auto;
    min-width: 0;
    max-width: none;
    font-size: clamp(0.52rem, 2.35vw, 0.62rem);
    line-height: 1.1;
    letter-spacing: 0.035em;
  }

  .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding-bottom: 2px;
    text-align: center;
    white-space: nowrap;
  }

  .language-switcher {
    order: 0;
    flex: 0 0 auto;
    gap: 2px;
    padding: 2px;
  }

  .brand {
    gap: 0;
  }

  .brand img {
    width: 34px;
    height: 34px;
    max-width: 34px;
  }

  .brand-text {
    display: none;
  }

  .contact-link {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 5px 7px 4px;
  }

  .contact-link small {
    display: none;
  }

  .hero {
    padding: 84px 30px 16px;
  }

  .language-button {
    width: 24px;
    height: 24px;
  }

  .language-button .tour-flag {
    width: 19px;
  }

  .hero-copy {
    gap: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.55rem);
  }

  .hero-main,
  .hero-text {
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .hero-text {
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .hero-highlight {
    padding: 20px;
  }

  .tour-lines .section-heading,
  .method > div {
    padding-right: 30px;
    padding-left: 30px;
  }

  .tour-lines {
    padding-top: 16px;
  }

  .tour-lines h2,
  .method h2 {
    font-size: clamp(1.38rem, 7vw, 2.1rem);
    line-height: 1.18;
  }

  .tour-line-card {
    min-height: auto;
    padding: 36px 30px 42px;
  }

  .tour-line-top {
    display: grid;
    justify-items: start;
    gap: 12px;
  }

  .tour-line-top span {
    max-width: none;
    text-align: left;
  }

  .tour-line-card h3 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .tour-line-card p:not(.tour-line-label) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .tour-theme-card {
    width: 100%;
    min-width: 0;
    padding: 28px 30px 24px;
    overflow: hidden;
  }

  .tour-theme-card h3,
  .tour-theme-reveal,
  .tour-theme-actions {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .tour-theme-actions {
    margin-top: 18px;
  }

  .tour-theme-actions .tour-line-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 58px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 1rem;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .button,
  .contact-form .button {
    width: 100%;
  }

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

  .tour-info-item {
    min-height: 88px;
    padding: 16px 0;
  }

  .tour-info-item:nth-child(3) {
    border-left: 0;
  }

  .tour-info-item + .tour-info-item {
    border-top: 1px solid rgba(220, 228, 207, 0.2);
  }

  .stats p {
    display: grid;
    gap: 8px;
  }

  .stats span {
    text-align: left;
  }
}
