:root {
  color-scheme: light;
  --ink: #101513;
  --muted: #62706a;
  --paper: #f6f7f2;
  --white: #ffffff;
  --moss: #4f7d61;
  --moss-dark: #173326;
  --forest: #0c1c16;
  --rust: #ff7448;
  --gold: #b9d77a;
  --sage: #e4efe7;
  --glacier: #dff1f2;
  --line: rgba(16, 23, 19, 0.12);
  --line-invert: rgba(255, 253, 248, 0.18);
  --shadow: 0 22px 70px rgba(16, 23, 19, 0.13);
  --shadow-strong: 0 34px 110px rgba(15, 29, 23, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f7faf5 0%, var(--paper) 34%, #eef4ef 100%);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  width: min(1180px, calc(100% - 28px));
  padding: 10px 12px;
  color: var(--white);
  background: rgba(12, 28, 22, 0.72);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 222px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, #b9d77a, #4f7d61),
    var(--moss-dark);
  font-weight: 800;
  font-size: 0.88rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.12);
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.main-nav a:hover,
.contact-links a:hover {
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.nav-cta {
  color: var(--forest);
  background: var(--white);
}

.button.primary {
  color: #111813;
  background: linear-gradient(135deg, #c9e884, #7db46d);
  box-shadow: 0 16px 34px rgba(79, 125, 97, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #263f32;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28svh;
  background: linear-gradient(180deg, transparent, rgba(15, 29, 23, 0.78));
  pointer-events: none;
}

.hero-media,
.impression,
.tour-image,
.portrait-photo {
  background-size: cover;
  background-position: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 19, 14, 0.82) 0%, rgba(8, 19, 14, 0.54) 44%, rgba(8, 19, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(35, 80, 78, 0.08), rgba(8, 19, 14, 0.42)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2400&q=88");
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  margin: 0 0 clamp(82px, 13vw, 150px) clamp(18px, 8vw, 110px);
  color: var(--white);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(82px, 9vw, 128px);
  z-index: 1;
  width: min(320px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(24, 34, 29, 0.44);
  backdrop-filter: blur(16px);
}

.hero-card span,
.offer-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--moss);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.95rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 7.6vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-content p {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 253, 248, 0.8);
}

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

.intro-band {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(1180px, calc(100% - 28px));
  margin: -54px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.intro-item {
  padding: clamp(22px, 4vw, 36px) clamp(18px, 4vw, 56px);
  background: transparent;
  border-right: 1px solid var(--line);
}

.intro-item:first-child {
  background: var(--glacier);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item strong,
.intro-item span {
  display: block;
}

.intro-item strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.intro-item span {
  color: var(--muted);
}

.section {
  padding: clamp(88px, 12vw, 156px) clamp(18px, 5vw, 72px);
}

.two-column,
.prices-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.two-column {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.04rem;
}

.portrait-visual {
  display: grid;
  gap: 16px;
}

.portrait-photo {
  min-height: 640px;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  background:
    linear-gradient(180deg, rgba(24, 34, 29, 0), rgba(24, 34, 29, 0.22)),
    url("https://images.unsplash.com/photo-1522163182402-834f871fd851?auto=format&fit=crop&w=1100&q=82");
}

.cert-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -70px;
  padding: 0 18px 18px;
  position: relative;
  z-index: 1;
}

.cert-box span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 29, 23, 0.7);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 700;
}

.values-section,
.tours-section {
  background: var(--forest);
  color: var(--white);
}

.values-section .section-heading p,
.tours-section .section-heading p {
  color: rgba(255, 253, 248, 0.68);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.value-grid,
.offer-grid,
.tour-grid {
  display: grid;
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

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

.value-card,
.offer-card,
.tour-card,
.price-list,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-card {
  color: var(--white);
  background: rgba(255, 253, 248, 0.06);
  border-color: var(--line-invert);
}

.value-card,
.offer-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.value-card:hover,
.offer-card:hover,
.tour-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 125, 97, 0.34);
  box-shadow: var(--shadow);
}

.value-card .icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.value-card p,
.offer-card p,
.price-list p,
.form-note {
  color: var(--muted);
}

.value-card p {
  color: rgba(255, 253, 248, 0.66);
}

.impressions {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  grid-template-rows: clamp(230px, 24vw, 340px) clamp(230px, 24vw, 340px);
  gap: 14px;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.impression {
  min-height: 230px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.impression.large {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(24, 34, 29, 0.02), rgba(24, 34, 29, 0.18)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1200&q=82");
}

.impression.ridge {
  background:
    linear-gradient(180deg, rgba(24, 34, 29, 0.02), rgba(24, 34, 29, 0.18)),
    url("https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?auto=format&fit=crop&w=900&q=82");
  background-position: center 78%;
}

.impression.winter {
  background:
    linear-gradient(180deg, rgba(24, 34, 29, 0.02), rgba(24, 34, 29, 0.18)),
    url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=900&q=82");
  background-position: center 62%;
}

.impression.forest {
  grid-column: span 2;
  background:
    linear-gradient(180deg, rgba(24, 34, 29, 0.04), rgba(24, 34, 29, 0.24)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1400&q=82");
  background-position: center 56%;
}

.impression.large,
.impression.ridge,
.impression.winter,
.impression.forest {
  background-size: cover;
}

.offer-grid {
  grid-template-columns: repeat(12, 1fr);
}

.offer-card {
  grid-column: span 4;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 245, 0.94));
}

.offer-card:nth-child(2),
.offer-card:nth-child(5) {
  background: linear-gradient(180deg, #eef8f1, #ffffff);
}

.offer-card:nth-child(3) {
  background: linear-gradient(180deg, #eef8fa, #ffffff);
}

.offer-card:nth-child(1),
.offer-card:nth-child(4) {
  grid-column: span 6;
}

.offer-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.tour-grid {
  grid-template-columns: repeat(12, 1fr);
}

.tour-card {
  grid-column: span 4;
  overflow: hidden;
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tour-card:first-child {
  grid-column: span 6;
}

.tour-card:nth-child(2) {
  grid-column: span 6;
}

.tour-image {
  position: relative;
  display: flex;
  align-items: end;
  padding: 16px;
  min-height: 300px;
}

.tour-card:first-child .tour-image,
.tour-card:nth-child(2) .tour-image {
  min-height: 380px;
}

.tour-image span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(24, 34, 29, 0.68);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
}

.tour-image.lake {
  background:
    linear-gradient(180deg, rgba(24, 34, 29, 0), rgba(24, 34, 29, 0.35)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=900&q=82");
}

.tour-image.alp {
  background:
    linear-gradient(180deg, rgba(24, 34, 29, 0), rgba(24, 34, 29, 0.35)),
    url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=900&q=82");
}

.tour-image.snow {
  background:
    linear-gradient(180deg, rgba(24, 34, 29, 0), rgba(24, 34, 29, 0.35)),
    url("https://images.unsplash.com/photo-1483664852095-d6cc6870702d?auto=format&fit=crop&w=900&q=82");
}

.tour-body {
  padding: 28px;
}

.tour-body p {
  color: var(--muted);
}

.tour-body dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0 0;
}

.tour-body dl div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 800;
}

.prices-section {
  background: linear-gradient(180deg, var(--glacier), var(--sage));
}

.planning-section {
  background:
    linear-gradient(90deg, rgba(246, 247, 242, 0.98), rgba(223, 241, 242, 0.74)),
    url("https://images.unsplash.com/photo-1454496522488-7a8e488e8606?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.step {
  padding: 34px;
  border: 1px solid rgba(24, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  backdrop-filter: blur(14px);
}

.step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 999px;
  color: var(--white);
  background: var(--moss-dark);
  font-weight: 800;
}

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

.price-list {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-of-type {
  border-bottom: 0;
}

.price-list p {
  margin: 12px 20px 16px;
  font-size: 0.88rem;
}

.contact-section {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(24, 34, 29, 0.95), rgba(24, 34, 29, 0.84)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-copy p {
  color: rgba(255, 253, 248, 0.74);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-links a {
  width: fit-content;
  color: var(--white);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(18px, 4vw, 32px);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

label {
  display: grid;
  gap: 7px;
  color: var(--moss-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input,
select {
  min-height: 48px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(79, 125, 97, 0.22);
  border-color: var(--moss);
}

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

.form-note {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 253, 248, 0.72);
  background: #18221d;
  font-size: 0.88rem;
}

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

  .main-nav {
    position: fixed;
    inset: 73px 14px auto;
    display: none;
    grid-column: auto;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 13px 12px;
    border-radius: 6px;
    color: var(--ink);
  }

  .main-nav a:hover {
    color: var(--moss-dark);
    background: #eef8f1;
  }

  .menu-toggle {
    display: block;
  }

  .two-column,
  .prices-section,
  .contact-section,
  .value-grid,
  .offer-grid,
  .tour-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .offer-card,
  .offer-card:nth-child(1),
  .offer-card:nth-child(4),
  .tour-card,
  .tour-card:first-child,
  .tour-card:nth-child(2) {
    grid-column: 1 / -1;
  }

  .portrait-photo {
    min-height: 420px;
  }

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

  .impression.large,
  .impression.forest {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    gap: 8px;
    padding: 8px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 118px;
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 68px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.15rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 10.5vw, 3.2rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .intro-band,
  .contact-form,
  .tour-body dl {
    grid-template-columns: 1fr;
  }

  .intro-band {
    width: calc(100% - 20px);
    margin-top: -34px;
    box-shadow: 0 16px 44px rgba(16, 23, 19, 0.13);
  }

  .intro-item {
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 16px;
  }

  .portrait-photo {
    min-height: 420px;
  }

  .cert-box {
    margin-top: -56px;
    padding: 0 12px 12px;
  }

  .offer-card {
    min-height: auto;
  }

  .tour-image,
  .tour-card:first-child .tour-image,
  .tour-card:nth-child(2) .tour-image {
    min-height: 245px;
  }

  .impressions {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 210px);
  }

  .value-card,
  .offer-card,
  .tour-body,
  .step {
    padding: 20px;
  }

  .price-row {
    display: grid;
  }

  .contact-section {
    background:
      linear-gradient(180deg, rgba(12, 28, 22, 0.94), rgba(12, 28, 22, 0.82)),
      url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=82");
    background-size: cover;
    background-position: center;
  }
}
