:root {
  --ink: #14201d;
  --muted: #5f6c68;
  --paper: #f7f6f0;
  --soft: #eaf0eb;
  --mist: #edf5f4;
  --forest: #0c4a3f;
  --forest-2: #163832;
  --brass: #b78035;
  --gold: #d6a650;
  --coral: #d96b4c;
  --charcoal: #0d1715;
  --white: #ffffff;
  --line: rgba(19, 34, 31, 0.14);
  --shadow: 0 18px 46px rgba(19, 34, 31, 0.12);
  --shadow-soft: 0 12px 30px rgba(19, 34, 31, 0.08);
  --font-sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfaf5 0%, var(--paper) 42%, #eff4f1 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.container,
.site-header,
.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(15, 30, 27, 0.14);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

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

.site-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(12, 74, 63, 0.18);
  background: var(--white);
}

.site-brand strong,
.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.site-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 11px 13px;
  color: #31433f;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--forest);
  background: rgba(12, 74, 63, 0.08);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), #0a6758);
  box-shadow: 0 16px 34px rgba(12, 74, 63, 0.22);
}

.btn.light {
  color: var(--forest-2);
  background: var(--white);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.11);
}

.btn.subtle {
  color: var(--forest);
  background: rgba(12, 74, 63, 0.08);
}

.btn.full {
  width: 100%;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(12, 74, 63, 0.26);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(12, 74, 63, 0.16);
  background: var(--forest);
  border-radius: 8px;
}

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

.hero {
  position: relative;
  min-height: clamp(600px, 78svh, 780px);
  margin-top: -108px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 19, 0.86) 0%, rgba(8, 22, 19, 0.68) 44%, rgba(8, 22, 19, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 22, 19, 0.42), rgba(8, 22, 19, 0));
  z-index: -1;
}

.hero-content {
  padding: 196px 0 70px;
  color: var(--white);
}

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

.hero h1,
.page-hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(3.25rem, 7vw, 6.6rem);
}

.hero-lede {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 500;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-signature {
  max-width: 620px;
  margin-top: 18px;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.74);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
  font-weight: 650;
}

.stats-band {
  background: #123b35;
  color: var(--white);
}

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

.stats-grid div {
  padding: 30px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.premium-strip {
  color: #e9efe9;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.strip-grid span {
  padding: 18px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.course-offer-section {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, #10241f 0%, #0e5146 48%, #926b2f 100%);
}

.course-offer-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.course-offer-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.course-offer-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.course-offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 23, 21, 0), rgba(13, 23, 21, 0.48));
}

.media-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 18px;
  background: rgba(13, 23, 21, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.media-badge strong,
.media-badge span {
  display: block;
}

.media-badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.course-offer-copy {
  display: grid;
  justify-items: start;
}

.course-offer-copy h2 {
  max-width: 860px;
  margin: 26px 0 18px;
  font-size: clamp(2.4rem, 3vw, 5.2rem);
  line-height: 0.98;
}

.course-offer-copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  font-weight: 600;
}

.offer-pill {
  display: inline-flex;
  padding: 10px 18px;
  color: #fff5df;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 36px 0 18px;
}

.price-row strong {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
}

.price-row del {
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.45rem;
}

.wide-btn {
  width: min(520px, 100%);
}

.offer-benefits {
  width: min(620px, 100%);
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.offer-benefits span {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-weight: 850;
}

.section {
  padding: 92px 0;
}

.section.tinted,
.split-section.tinted {
  background: linear-gradient(180deg, var(--soft), var(--mist));
}

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

.section-header.compact {
  max-width: 620px;
}

.wide-header {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: end;
}

.center-header {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header h2,
.section h2,
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 2rem);
}

.section-header p,
.lead-text {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
}

.section-header .eyebrow {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
}

.mentor-story {
  background: #fbfaf5;
}

.mentor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  gap: 56px;
  align-items: center;
}

.mentor-grid > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 500;
}

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.mentor-stats span {
  padding: 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  font-weight: 750;
}

.mentor-stats strong {
  display: block;
  color: var(--forest);
  font-size: 1.9rem;
  line-height: 1;
}

.mentor-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mentor-card > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.mentor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 23, 21, 0.08), rgba(13, 23, 21, 0.58));
}

.mentor-profile {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--white);
  background: rgba(13, 23, 21, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.mentor-profile img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
}

.mentor-profile strong,
.mentor-profile small {
  display: block;
}

.mentor-profile small {
  color: rgba(255, 255, 255, 0.76);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.services-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(234, 240, 235, 0.86));
}

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

.service-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(19, 34, 31, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--coral));
}

.service-card h3 {
  margin: 18px 0 12px;
  font-size: 1.45rem;
  line-height: 1.16;
}

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

.service-card a {
  margin-top: auto;
  color: var(--forest);
  font-weight: 900;
}

.featured-service {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(13, 23, 21, 0.95), rgba(12, 74, 63, 0.94)),
    url("../images/roam-hero.png") center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 58px rgba(12, 74, 63, 0.2);
}

.featured-service p,
.featured-service a {
  color: rgba(255, 255, 255, 0.82);
}

.service-tag {
  width: fit-content;
  padding: 7px 10px;
  color: var(--forest);
  background: rgba(12, 74, 63, 0.08);
  border: 1px solid rgba(12, 74, 63, 0.1);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-service .service-tag {
  color: #fff3d4;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
}

.offer-showcase {
  padding: 96px 0;
  color: var(--white);
  background: #4c3e25;
}

.offer-showcase .section-header h2 {
  color: var(--white);
}

.offer-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.offer-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 620px;
  overflow: hidden;
  color: var(--ink);
  background: #fff8ec;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.offer-card-media {
  position: relative;
  min-height: 270px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.offer-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.58));
}

.offer-card-media div {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: var(--white);
}

.offer-card-media h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.offer-card-media span {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
  font-weight: 650;
}

.offer-card ul {
  margin: 0;
  padding: 28px 32px;
  color: #141f1d;
  font-size: 1.04rem;
  font-weight: 650;
}

.offer-card li {
  margin: 9px 0;
}

.offer-card .btn {
  margin: 0 24px 24px;
}

.concierge-section {
  background: #fff8ec;
}

.concierge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 56px;
  max-width: 1040px;
  margin: 42px auto 0;
}

.concierge-grid article {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.concierge-grid img {
  width: 142px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.concierge-grid h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.concierge-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.feature-card,
.quote-panel,
.enroll-panel,
.summary-panel,
.login-panel,
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 230px;
  padding: 30px;
}

.feature-card h3,
.feature-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
}

.feature-card p,
.quote-panel p,
.enroll-panel p,
.summary-panel p,
.policy-content p {
  color: var(--muted);
}

.card-mark {
  display: block;
  margin-bottom: 24px;
  color: var(--coral);
  font-weight: 900;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.destination-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(232, 241, 236, 0.9));
}

.destination-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 34px;
  padding: 7px 10px;
  color: var(--forest);
  background: rgba(12, 74, 63, 0.08);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-card {
  background: var(--white);
  box-shadow: 0 14px 38px rgba(19, 34, 31, 0.09);
}

.large-card {
  min-height: 310px;
}

.split,
.contact-grid,
.checkout-grid,
.course-layout,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.image-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.mini-stat {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  color: var(--white);
  background: rgba(19, 34, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.mini-stat strong,
.mini-stat span {
  display: block;
}

.mini-stat span {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.check-list,
.clean-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.clean-list li {
  position: relative;
  padding-left: 26px;
  margin: 12px 0;
  color: #334743;
}

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

.course-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.course-proof span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.course-proof strong {
  display: block;
  color: var(--forest);
  font-size: 1.45rem;
  line-height: 1;
}

.clean-list {
  counter-reset: item;
}

.clean-list li {
  counter-increment: item;
}

.clean-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brass);
  font-weight: 900;
}

.page-hero {
  position: relative;
  margin-top: -108px;
  padding: 196px 0 92px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 23, 20, 0.86), rgba(9, 23, 20, 0.56)),
    url("../images/roam-hero.png") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.quote-panel,
.enroll-panel,
.summary-panel,
.login-panel {
  padding: 30px;
}

.quote-panel p {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 1.28;
  font-size: 1.55rem;
  color: var(--ink);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

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

.quote-band {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 23, 21, 0.96), rgba(20, 48, 43, 0.92)),
    url("../images/roam-hero.png") center / cover no-repeat;
}

.quote-content {
  max-width: 940px;
}

.quote-content p {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

.quote-content span {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 900;
}

.traveler-stories {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(13, 23, 21, 0.42), rgba(13, 23, 21, 0.62)),
    url("../images/roam-hero.png") center / cover no-repeat;
}

.traveler-stories .section-header h2 {
  color: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.review-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.review-card p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 550;
}

.review-card div {
  display: grid;
  gap: 4px;
  margin-top: 30px;
}

.review-card strong {
  font-size: 1.08rem;
}

.review-card span {
  color: #ff8a00;
  font-weight: 900;
  letter-spacing: 0;
}

.module-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.module-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.module-list span {
  color: var(--brass);
  font-weight: 900;
}

.module-list h3,
.module-list p {
  margin: 0;
}

.module-list p {
  color: var(--muted);
  margin-top: 4px;
}

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

.contact-form label,
.login-panel label {
  display: grid;
  gap: 7px;
  color: #293d39;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.login-panel input {
  width: 100%;
  border: 1px solid rgba(19, 34, 31, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-lines a {
  color: var(--forest);
  font-weight: 800;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
  box-shadow: 0 12px 34px rgba(19, 34, 31, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.policy-content {
  max-width: 850px;
}

.policy-content section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  font-size: 1.55rem;
}

.login-wrap {
  display: grid;
  place-items: center;
}

.login-panel {
  width: min(460px, 100%);
}

.secure-note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(12, 74, 63, 0.08);
  border-radius: 8px;
  color: var(--forest);
  font-weight: 800;
}

.cta-band {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 56, 50, 0.97), rgba(13, 95, 81, 0.97) 58%, rgba(29, 111, 133, 0.96)),
    url("../images/roam-hero.png") center / cover no-repeat;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.cta-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  font-weight: 600;
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  background: #101c1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 0.9fr;
  gap: 36px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand {
  color: var(--white);
  font-size: 1.35rem;
}

.footer-login {
  color: var(--brass) !important;
  font-weight: 800;
}

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

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

  .nav-toggle {
    display: flex;
    justify-self: end;
    flex: 0 0 auto;
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 80;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
    padding-top: 10px;
  }

  .site-nav.open a {
    padding: 12px;
  }

  .stats-grid,
  .strip-grid,
  .course-offer-grid,
  .mentor-grid,
  .service-grid,
  .offer-card-grid,
  .concierge-grid,
  .review-grid,
  .card-grid.three,
  .card-grid.four,
  .wide-header,
  .split,
  .contact-grid,
  .checkout-grid,
  .course-layout,
  .process-grid,
  .cta-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .service-card {
    min-height: 260px;
  }

  .course-offer-media,
  .mentor-card {
    min-height: 420px;
  }

  .course-offer-media img,
  .mentor-card > img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .container,
  .site-header,
  .footer-grid,
  .footer-bottom {
    width: calc(100vw - 22px);
    max-width: 1160px;
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
    padding: 10px;
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .nav-toggle {
    display: flex !important;
    top: 20px;
    right: 18px;
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand span {
    min-width: 0;
  }

  .site-brand img {
    width: 42px;
    height: 42px;
  }

  .site-brand strong {
    font-size: 1rem;
  }

  .site-brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 74svh;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.3vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-lede {
    max-width: min(100%, 340px);
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    font-size: 0.82rem;
    padding: 7px 10px;
  }

  .hero-signature {
    font-size: 0.86rem;
  }

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

  .strip-grid,
  .mentor-stats,
  .course-proof {
    grid-template-columns: 1fr;
  }

  .strip-grid span {
    padding: 14px 10px;
    text-align: left;
  }

  .hero-content,
  .page-hero {
    padding-top: 170px;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .section {
    padding: 60px 0;
  }

  .course-offer-section,
  .offer-showcase,
  .traveler-stories {
    padding: 64px 0;
  }

  .course-offer-grid {
    gap: 28px;
  }

  .course-offer-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .course-offer-copy p {
    font-size: 1rem;
  }

  .course-offer-media,
  .course-offer-media img,
  .mentor-card,
  .mentor-card > img {
    min-height: 340px;
  }

  .price-row {
    margin-top: 26px;
  }

  .offer-benefits span {
    padding: 14px;
  }

  .feature-card {
    min-height: auto;
    padding: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

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

  .offer-card-media {
    min-height: 220px;
  }

  .offer-card ul {
    padding: 24px 26px;
  }

  .concierge-grid article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .concierge-grid img {
    width: 100%;
    height: 160px;
  }

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

  .quote-band {
    padding: 56px 0;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .module-list article {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
