:root {
  --sand-50: #f8f2e7;
  --sand-100: #efe1cc;
  --sand-200: #e2c7a1;
  --earth-400: #b96b2f;
  --earth-500: #9d5620;
  --forest-700: #1b4533;
  --forest-800: #143627;
  --forest-900: #0c2018;
  --olive-500: #58673b;
  --ink-900: #142018;
  --cream: #fffaf3;
  --white: #ffffff;
  --line: rgba(20, 54, 39, 0.12);
  --shadow: 0 24px 64px rgba(12, 32, 24, 0.14);
  --shadow-strong: 0 36px 88px rgba(12, 32, 24, 0.2);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 10% 0%, rgba(239, 225, 204, 0.9), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(27, 69, 51, 0.08), transparent 24%),
    linear-gradient(180deg, #fcf7ef 0%, #f6eddc 46%, #fffdf8 100%);
}

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

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  background: var(--forest-900);
  color: var(--white);
  z-index: 1000;
}

.site-shell {
  min-height: 100vh;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 10px 30px rgba(12, 32, 24, 0.08);
}

.brand-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(20, 54, 39, 0.08);
  border-bottom: 1px solid rgba(20, 54, 39, 0.12);
  background:
    radial-gradient(circle at 18% 50%, rgba(88, 103, 59, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(226, 199, 161, 0.52), rgba(248, 242, 231, 0.82), rgba(88, 103, 59, 0.14));
}

.brand-ticker__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 64px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--forest-700);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  max-height: 52px;
  width: auto;
}

.site-branding__mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.site-branding__text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.site-branding__text strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-branding__text small {
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(20, 32, 24, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__menu,
.site-nav__menu ul,
.footer-menu,
.menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__menu a,
.menu a,
.footer-menu a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: rgba(20, 32, 24, 0.82);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest-900);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button--accent {
  background: linear-gradient(135deg, #d27536 0%, var(--earth-400) 42%, var(--earth-500) 100%);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(157, 86, 32, 0.32);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.78);
  color: var(--forest-900);
  border: 1px solid rgba(20, 54, 39, 0.12);
}

.button--soft {
  background: rgba(27, 69, 51, 0.08);
  color: var(--forest-800);
}

.button--dark {
  background: var(--forest-900);
  color: var(--white);
}

.button--full {
  width: 100%;
}

.text-link {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--forest-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18rem;
}

.text-link--light {
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth-500);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0 2.5rem;
}

.hero h1,
.inner-hero h1,
.section-heading h2,
.lead-section h2,
.site-footer__brand h2 {
  margin: 0;
  line-height: 1.03;
  color: var(--forest-900);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  max-width: 12ch;
}

.hero__description {
  max-width: 60ch;
  margin: 1.2rem 0 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(20, 32, 24, 0.8);
}

.hero__actions,
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero__badges,
.lead-benefits,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__badges li,
.lead-benefits li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.hero__badges li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 54, 39, 0.08);
}

.hero__panel {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(27, 69, 51, 0.96), rgba(12, 32, 24, 0.98)),
    url("../images/brand/offbeat-trip-logo.png") center/cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
}

.hero-card__eyebrow,
.hero-card__meta {
  font-family: Arial, Helvetica, sans-serif;
}

.hero-card__eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.hero-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.hero-card__line {
  width: 92px;
  height: 2px;
  margin: 1.6rem 0;
  background: rgba(255, 255, 255, 0.34);
}

.hero-card__meta {
  font-size: 0.92rem;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.stat-card,
.pillar-card,
.process-card,
.trip-card,
.testimonial-card,
.content-card,
.post-card,
.form-card,
.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 244, 0.74));
  border: 1px solid rgba(20, 54, 39, 0.08);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--forest-900);
}

.stat-card span {
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(20, 32, 24, 0.7);
}

.section-block {
  padding: 4.75rem 0;
}

.section-block--compact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-block--warm {
  padding: 4.5rem 2rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    radial-gradient(circle at top right, rgba(239, 225, 204, 0.62), transparent 28%),
    radial-gradient(circle at bottom left, rgba(27, 69, 51, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 246, 231, 0.92), rgba(247, 236, 214, 0.9));
}

.section-heading {
  max-width: 60rem;
  margin-bottom: 1.8rem;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.section-heading h2,
.lead-section h2,
.inner-hero h1,
.site-footer__brand h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.section-heading p:last-child,
.lead-section__content > p,
.site-footer__brand p {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(20, 32, 24, 0.78);
}

.pillar-grid,
.trip-grid,
.process-grid,
.testimonial-grid,
.post-grid {
  display: grid;
  gap: 1.25rem;
}

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

.pillar-card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
}

.pillar-card__label {
  margin: 0 0 0.5rem;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--earth-500);
}

.pillar-card h3,
.process-card h3,
.trip-card h3,
.testimonial-card__author,
.post-card h2 {
  margin: 0 0 0.8rem;
}

.pillar-card p,
.process-card p,
.trip-card p,
.testimonial-card p,
.post-card p,
.lead-form__note,
.faq-item p,
.content-card {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: rgba(20, 32, 24, 0.78);
}

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

.trip-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.trip-card__media {
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(239, 225, 204, 0.88), rgba(255, 255, 255, 0.5)),
    linear-gradient(135deg, rgba(27, 69, 51, 0.06), rgba(157, 86, 32, 0.08));
}

.trip-card__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: calc(var(--radius-md) - 4px);
  transition: transform 0.3s ease, filter 0.3s ease;
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.16),
    0 22px 48px rgba(12, 32, 24, 0.14);
}

.trip-card:hover .trip-card__media img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.03);
}

.trip-card__body {
  padding: 1.45rem 1.45rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trip-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: rgba(20, 32, 24, 0.68);
}

.trip-card__highlight {
  margin-top: 0.8rem;
  color: var(--forest-700);
}

.trip-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.95rem;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(27, 69, 51, 0.1);
  color: var(--forest-800);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.trip-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.45rem 1.45rem;
  margin-top: auto;
}

.trip-card__footer strong {
  color: var(--forest-900);
}

.trip-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.trip-card__actions .button {
  box-shadow: 0 10px 22px rgba(12, 32, 24, 0.08);
}

.trip-card:hover .trip-card__actions .button {
  box-shadow: 0 14px 28px rgba(12, 32, 24, 0.14);
}

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

.process-card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
}

.process-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: var(--forest-900);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

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

.testimonial-card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto -32px -52px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 199, 161, 0.24), transparent 68%);
}

.testimonial-card__quote {
  margin-top: 0;
  font-size: 1.08rem;
  color: var(--forest-900);
}

.testimonial-card__author {
  font-size: 1.05rem;
  color: var(--forest-900);
}

.testimonial-card__role {
  margin-bottom: 0;
}

.faq-block {
  padding-top: 0.5rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-md);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  color: var(--forest-900);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  margin-bottom: 0.9rem;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 30%),
    linear-gradient(135deg, var(--forest-800), var(--forest-900));
  color: var(--white);
}

.lead-section h2,
.lead-section .eyebrow {
  color: var(--white);
}

.lead-section__content > p,
.lead-benefits li {
  color: rgba(255, 255, 255, 0.84);
}

.lead-benefits li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
}

.lead-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sand-200);
}

.form-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.notice {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.notice p {
  margin: 0;
}

.notice__action {
  margin-top: 0.8rem !important;
}

.notice--success {
  background: rgba(85, 188, 126, 0.14);
  border: 1px solid rgba(85, 188, 126, 0.24);
}

.notice--error {
  background: rgba(210, 86, 65, 0.14);
  border: 1px solid rgba(210, 86, 65, 0.24);
}

.lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lead-form__grid--freedom {
  margin-top: 0.4rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(20, 54, 39, 0.14);
  border-radius: 16px;
  font: inherit;
  color: var(--ink-900);
  background: var(--white);
}

.field textarea {
  resize: vertical;
}

.field--checkbox-group {
  margin: 0 0 1.25rem;
  border: 0;
  padding: 0;
}

.field--checkbox-group legend {
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest-900);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.choice-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(20, 54, 39, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(20, 32, 24, 0.82);
  font-family: Arial, Helvetica, sans-serif;
}

.choice-chip input {
  width: auto;
  margin: 0;
}

.field--hidden {
  position: absolute;
  left: -9999px;
}

.lead-form__note {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}

.note-band--theme {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.note-band--theme p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.inner-hero {
  padding: 3.25rem 0 1rem;
}

.inner-hero--with-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.inner-hero__summary {
  max-width: 58rem;
  margin-top: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.75;
  color: rgba(20, 32, 24, 0.78);
}

.content-card,
.post-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.content-card--prose {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
}

.content-card--prose > :first-child {
  margin-top: 0;
}

.content-card--prose > :last-child {
  margin-bottom: 0;
}

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

.post-card__meta {
  margin-top: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(20, 32, 24, 0.66);
}

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

.site-footer {
  padding: 4rem 0 5rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 1.4rem;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 54, 39, 0.08);
  box-shadow: var(--shadow);
}

.site-footer__brand,
.site-footer__links,
.site-footer__contact {
  min-width: 0;
}

.site-footer__eyebrow {
  margin: 0 0 0.8rem;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--earth-500);
}

.site-footer__links h3,
.site-footer__contact h3 {
  margin-top: 0;
}

.footer-contact li {
  margin-bottom: 0.75rem;
  font-family: Arial, Helvetica, sans-serif;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: #1fa463;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(31, 164, 99, 0.34);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.trip-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.75rem;
}

.trip-detail__hero,
.trip-story-layout,
.detail-grid,
.cta-strip {
  display: grid;
  gap: 1.4rem;
}

.trip-detail__hero,
.trip-story-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  padding-top: 3rem;
}

.trip-detail__intro {
  display: grid;
  gap: 0.85rem;
}

.trip-detail__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.trip-detail__media {
  position: relative;
}

.trip-detail__media::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
  transform: rotate(10deg);
  pointer-events: none;
}

.trip-detail__price-card,
.trip-fact,
.detail-card,
.cta-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 242, 0.76));
  border: 1px solid rgba(20, 54, 39, 0.08);
  box-shadow: var(--shadow);
}

.trip-detail__price-card {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
}

.trip-detail__price-card span,
.trip-fact span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(20, 32, 24, 0.66);
}

.trip-detail__price-card strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.65rem;
  color: var(--forest-900);
}

.trip-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trip-fact {
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.trip-fact strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--forest-900);
}

.trip-story-layout__side .form-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

.detail-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.detail-card h2 {
  margin-top: 0;
}

.detail-grid--compact .detail-card h2 {
  display: none;
}

.detail-list {
  margin: 0;
  padding-left: 1.15rem;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
  color: rgba(20, 32, 24, 0.8);
}

.cta-strip {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(239, 225, 204, 0.4), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 241, 227, 0.84));
}

.cta-strip h2 {
  margin: 0.35rem 0 0;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: end;
}

.lead-section--page {
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .hero,
  .lead-section,
  .site-footer__inner,
  .trip-detail__hero,
  .trip-story-layout {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .process-grid,
  .testimonial-grid,
  .trip-grid,
  .post-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading--split {
    align-items: start;
    flex-direction: column;
  }

  .inner-hero--with-actions,
  .cta-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 250, 243, 0.98);
    border: 1px solid rgba(20, 54, 39, 0.08);
    box-shadow: var(--shadow);
  }

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

  .site-nav__menu,
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__cta {
    width: 100%;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2rem;
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .section-block,
  .site-footer {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    max-width: none;
  }

  .site-footer__inner,
  .lead-section,
  .section-block--warm {
    padding: 1.35rem;
  }

  .site-footer__inner {
    gap: 1.6rem;
    overflow-wrap: anywhere;
  }

  .footer-menu {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .footer-contact {
    overflow-wrap: anywhere;
  }

  .trip-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .trip-card__actions,
  .cta-strip__actions {
    justify-content: stretch;
  }

  .trip-detail__media img {
    height: 280px;
  }
}

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

.site-branding__link .custom-logo {
  margin-right: 0.85rem;
}

.site-nav {
  gap: 1.25rem;
}

.site-nav__menu {
  position: relative;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  padding: 0;
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: rgba(20, 32, 24, 0.82);
  cursor: pointer;
}

.site-nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  z-index: 25;
  display: none;
  min-width: 320px;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid rgba(20, 54, 39, 0.08);
  box-shadow: var(--shadow);
}

.site-nav__dropdown.is-open .site-nav__dropdown-panel {
  display: grid;
  gap: 0.55rem;
}

.site-nav__dropdown-link {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(20, 54, 39, 0.04);
}

.site-nav__dropdown-link strong,
.site-nav__dropdown-link small {
  display: block;
}

.site-nav__dropdown-link small {
  margin-top: 0.25rem;
  line-height: 1.45;
  color: rgba(20, 32, 24, 0.62);
}

.site-nav__cta--browse {
  white-space: nowrap;
}

.funnel-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  padding: 3.75rem 0 2.35rem;
}

.funnel-hero__visual,
.community-page__hero {
  position: relative;
}

.funnel-hero__panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(226, 199, 161, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(27, 69, 51, 0.97), rgba(12, 32, 24, 0.99)),
    url("../images/brand/offbeat-trip-logo.png") center/cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.funnel-hero__panel h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.funnel-hero__panel p {
  color: rgba(255, 255, 255, 0.84);
}

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

.process-card--story {
  position: relative;
  padding-top: 4.5rem;
}

.process-card--story .process-card__number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.trip-card--funnel .trip-card__date {
  margin: 0.7rem 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  color: rgba(20, 32, 24, 0.64);
}

.gallery-teaser,
.trip-gallery-grid,
.gallery-page-grid,
.community-grid {
  display: grid;
  gap: 1rem;
}

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

.gallery-teaser__item,
.trip-gallery-grid__item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 54, 39, 0.08);
  box-shadow: var(--shadow);
  position: relative;
}

.gallery-teaser__item img,
.trip-gallery-grid__item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.gallery-teaser__item::after,
.trip-gallery-grid__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 26%, rgba(12, 32, 24, 0.62) 100%);
  pointer-events: none;
}

.gallery-teaser__item:hover img,
.trip-gallery-grid__item:hover img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.03);
}

.trip-gallery-grid__label {
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.95rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 1.9rem);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.gallery-page-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(239, 225, 204, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 242, 230, 0.82));
  border: 1px solid rgba(20, 54, 39, 0.08);
  box-shadow: var(--shadow);
}

.gallery-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.6rem;
  align-items: stretch;
  padding-top: 3rem;
}

.gallery-hero__copy {
  display: grid;
  align-content: center;
}

.gallery-hero__visual {
  position: relative;
  min-height: 420px;
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 32, 24, 0.1), rgba(12, 32, 24, 0.8)),
    url("https://images.unsplash.com/photo-1501555088652-021faa106b9b?auto=format&fit=crop&w=1600&q=80") center 44%/cover;
  box-shadow: var(--shadow-strong);
}

.gallery-hero__panel {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.gallery-hero__panel h2 {
  margin: 0.35rem 0 0.85rem;
  color: var(--white);
}

.gallery-hero__panel p,
.gallery-hero__panel .hero-card__eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-intro-strip {
  margin-bottom: 1.2rem;
}

.gallery-page-card__header {
  margin-bottom: 1.15rem;
}

.gallery-page-card__copy {
  margin: 0.85rem 0 0;
  max-width: 52ch;
}

.trip-gallery-grid--luxury {
  gap: 1.1rem;
}

.trip-gallery-grid--luxury .trip-gallery-grid__item:first-child {
  grid-column: span 2;
}

.community-page__hero--luxury {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: stretch;
}

.community-page__hero-copy {
  display: grid;
  align-content: center;
}

.community-page__hero-panel {
  padding: 1.9rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    radial-gradient(circle at top right, rgba(226, 199, 161, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(27, 69, 51, 0.97), rgba(12, 32, 24, 0.99));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.community-page__hero-panel h2 {
  margin: 0.35rem 0 0.85rem;
  color: var(--white);
}

.community-page__hero-panel p,
.community-page__hero-panel .hero-card__eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.lead-section--refined {
  align-items: start;
}

.lead-section--refined .form-card h3 {
  margin-top: 0;
}

.freedom-card {
  min-height: 100%;
}

.freedom-disclaimer {
  margin: 1.2rem 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(20, 32, 24, 0.7);
}

.freedom-strip h2,
.freedom-options h2 {
  margin-bottom: 0.9rem;
}

.freedom-options .hero__actions {
  margin-top: 1.35rem;
}

.inner-hero--elevated {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  padding-top: 3rem;
}

.inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trip-detail--elevated .trip-story-layout {
  align-items: start;
}

.community-page {
  padding-top: 3rem;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.community-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.community-card {
  min-height: 100%;
}

.community-card--primary,
.community-card--signals {
  background:
    radial-gradient(circle at top right, rgba(239, 225, 204, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 241, 227, 0.82));
}

.community-card--vibe {
  grid-column: span 2;
}

.community-grid__meta {
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(20, 32, 24, 0.68);
}

.community-page__sticky {
  position: sticky;
  bottom: 1rem;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid rgba(20, 54, 39, 0.08);
  box-shadow: var(--shadow-strong);
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at top, rgba(248, 242, 231, 0.14), transparent 34%),
    rgba(12, 32, 24, 0.72);
  backdrop-filter: blur(18px);
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal__dialog {
  position: relative;
  width: min(100%, 540px);
  max-height: min(calc(100dvh - 2rem), 760px);
  overflow: hidden auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(248, 242, 231, 0.98) 100%);
  border: 1px solid rgba(20, 54, 39, 0.08);
  box-shadow: 0 32px 90px rgba(12, 32, 24, 0.28);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  isolation: isolate;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 54, 39, 0.18) transparent;
}

.auth-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 132px;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(210, 117, 54, 0.18), transparent 48%),
    radial-gradient(circle at top right, rgba(27, 69, 51, 0.16), transparent 42%);
  pointer-events: none;
  z-index: -1;
}

.auth-modal__dialog > * {
  margin-top: 0;
  margin-bottom: 0;
}

.auth-modal__dialog .eyebrow {
  margin-bottom: -0.2rem;
}

.auth-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest-900);
  box-shadow: 0 10px 24px rgba(12, 32, 24, 0.12);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-modal__close:hover,
.auth-modal__close:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(12, 32, 24, 0.18);
}

.auth-modal h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.02;
}

.auth-modal__copy,
.auth-modal__note {
  color: rgba(20, 32, 24, 0.74);
  max-width: 42ch;
  font-size: 0.98rem;
  line-height: 1.65;
}

.auth-modal__copy {
  margin-bottom: 0.15rem;
}

.auth-modal__selected {
  position: relative;
  margin: 0.2rem 0 0.35rem;
  padding: 1rem 1.1rem 1rem 1.3rem;
  border-radius: calc(var(--radius-sm) + 2px);
  background:
    linear-gradient(135deg, rgba(20, 54, 39, 0.08), rgba(255, 255, 255, 0.6)),
    rgba(20, 54, 39, 0.05);
  border: 1px solid rgba(20, 54, 39, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.auth-modal__selected::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--earth-400) 0%, var(--forest-700) 100%);
}

.auth-modal__selected strong,
.auth-modal__selected small {
  display: block;
}

.auth-modal__selected small {
  margin-top: 0.2rem;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(20, 32, 24, 0.62);
}

.auth-modal .field {
  margin-bottom: 0;
}

.auth-modal .field span {
  letter-spacing: 0.01em;
}

.auth-modal .field input,
.auth-modal .field select,
.auth-modal .field textarea {
  border-color: rgba(20, 54, 39, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.auth-modal .field input::placeholder,
.auth-modal .field textarea::placeholder {
  color: rgba(20, 32, 24, 0.44);
}

.auth-modal .field input:focus,
.auth-modal .field select:focus,
.auth-modal .field textarea:focus {
  outline: none;
  border-color: rgba(157, 86, 32, 0.38);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 4px rgba(210, 117, 54, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.auth-modal .field input[aria-invalid="true"],
.auth-modal .field select[aria-invalid="true"],
.auth-modal .field textarea[aria-invalid="true"],
.auth-modal .field.has-error input,
.auth-modal .field.has-error select,
.auth-modal .field.has-error textarea,
.auth-modal .field--error input,
.auth-modal .field--error select,
.auth-modal .field--error textarea {
  border-color: rgba(184, 59, 36, 0.48);
  background: rgba(255, 244, 241, 0.94);
  box-shadow: 0 0 0 4px rgba(210, 86, 65, 0.1);
}

.auth-modal .field__hint,
.auth-modal .field__error,
.auth-modal__error,
.auth-modal__feedback {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  line-height: 1.45;
}

.auth-modal .field__hint {
  color: rgba(20, 32, 24, 0.6);
}

.auth-modal .field__error,
.auth-modal__error {
  color: #a33f28;
}

.auth-modal__status,
.auth-modal__feedback {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(20, 54, 39, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.auth-modal__status[data-status="error"],
.auth-modal__feedback--error {
  border-color: rgba(184, 59, 36, 0.18);
  background: rgba(255, 243, 239, 0.96);
  color: #7e3424;
}

.auth-modal__status[data-status="success"],
.auth-modal__feedback--success {
  border-color: rgba(27, 69, 51, 0.16);
  background: rgba(240, 248, 242, 0.98);
  color: var(--forest-800);
}

.auth-modal__meta,
.auth-modal__progress,
.auth-modal__stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.auth-modal__meta {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20, 32, 24, 0.52);
}

.auth-modal__progress::before {
  content: "";
  flex: 1 1 auto;
  min-width: 72px;
  height: 1px;
  background: rgba(20, 54, 39, 0.1);
}

.auth-modal__progress-chip,
.auth-modal__step-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 54, 39, 0.06);
  color: rgba(20, 32, 24, 0.62);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-modal__progress-chip.is-active,
.auth-modal__step-chip.is-active,
.auth-modal__progress-chip[aria-current="step"],
.auth-modal__step-chip[aria-current="step"] {
  background: rgba(157, 86, 32, 0.12);
  color: var(--earth-500);
  box-shadow: inset 0 0 0 1px rgba(157, 86, 32, 0.12);
}

.auth-modal__body,
.auth-modal__step,
[data-auth-step] {
  display: grid;
  gap: 0.95rem;
}

.auth-modal__step,
[data-auth-step] {
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.auth-modal__step[hidden],
[data-auth-step][hidden],
.auth-modal__step.is-hidden,
[data-auth-google][hidden],
[data-auth-email-link][hidden],
.auth-modal__actions[hidden],
.auth-modal__actions.is-hidden,
.auth-modal__social[hidden],
.auth-modal__social.is-hidden {
  display: none !important;
}

.auth-modal__step.is-leaving,
[data-auth-step].is-leaving {
  opacity: 0;
  transform: translateY(8px);
}

.auth-modal__step.is-active,
[data-auth-step].is-active {
  opacity: 1;
  transform: translateY(0);
}

.auth-modal__actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.auth-modal__actions .button {
  min-height: 54px;
  box-shadow: 0 14px 30px rgba(12, 32, 24, 0.08);
}

.auth-modal__actions .button--ghost {
  background: rgba(255, 255, 255, 0.9);
}

.auth-modal__actions .button--ghost:hover,
.auth-modal__actions .button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.98);
}

.auth-modal__actions .button--accent {
  box-shadow: 0 18px 34px rgba(157, 86, 32, 0.26);
}

.auth-modal__footer,
.auth-modal__note {
  padding-top: 0.35rem;
}

.auth-modal__footer {
  display: grid;
  gap: 0.6rem;
}

.auth-modal__split-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.auth-modal__supporting-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: var(--forest-700);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.auth-modal__supporting-link:hover,
.auth-modal__supporting-link:focus-visible {
  color: var(--earth-500);
}

body.has-auth-modal {
  overflow: hidden;
}

.section-block,
.trip-card,
.pillar-card,
.testimonial-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-block.is-visible,
.trip-card.is-visible,
.pillar-card.is-visible,
.testimonial-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.circle-pass-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0.9rem 1rem 0.9rem 1.2rem;
  border: 1px solid rgba(157, 86, 32, 0.16);
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 18px 48px rgba(12, 32, 24, 0.2);
  backdrop-filter: blur(18px);
}

.circle-pass-bar__story {
  display: grid;
  gap: 0.2rem;
}

.circle-pass-bar__story strong {
  color: var(--forest-900);
  font-size: 1.02rem;
}

.circle-pass-bar__story small {
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(20, 32, 24, 0.72);
  font-size: 0.8rem;
}

.circle-pass-bar .button {
  flex: 0 0 auto;
  min-width: 210px;
}

.site-footer {
  padding-bottom: 7rem;
}

@media (max-width: 960px) {
  .funnel-hero,
  .inner-hero--elevated,
  .community-grid,
  .gallery-hero,
  .community-page__hero--luxury {
    grid-template-columns: 1fr;
  }

  .process-grid--story,
  .gallery-teaser,
  .community-stats {
    grid-template-columns: 1fr;
  }

  .site-nav__dropdown-panel {
    position: static;
    min-width: 100%;
    margin-top: 0.75rem;
  }

  .site-nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .community-page__sticky {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-ticker__track {
    min-height: 94px;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    padding: 0.75rem 0;
    font-size: 0.67rem;
  }

  .circle-pass-bar {
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    display: grid;
    width: auto;
    padding: 0.85rem;
    border-radius: 22px;
    text-align: center;
  }

  .circle-pass-bar__story {
    gap: 0.1rem;
  }

  .circle-pass-bar .button {
    min-width: 0;
    width: 100%;
  }

  .auth-modal {
    align-items: flex-end;
    padding: 0.5rem 0.5rem max(0.75rem, env(safe-area-inset-bottom));
  }

  .auth-modal__dialog {
    width: 100%;
    max-height: min(calc(100dvh - 0.5rem), 100dvh);
    padding: 1.2rem 1rem 1rem;
    border-radius: 26px 26px 20px 20px;
    gap: 0.85rem;
  }

  .auth-modal__dialog::after {
    content: "";
    width: 64px;
    height: 4px;
    margin: 0 auto 0.15rem;
    border-radius: 999px;
    background: rgba(20, 54, 39, 0.16);
    order: -2;
  }

  .auth-modal__close {
    top: 0.85rem;
    right: 0.85rem;
    width: 38px;
    height: 38px;
  }

  .auth-modal h2 {
    max-width: 11ch;
    font-size: 1.8rem;
  }

  .auth-modal__copy,
  .auth-modal__note {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .auth-modal__selected {
    padding: 0.9rem 0.95rem 0.9rem 1.15rem;
  }

  .auth-modal__split-actions {
    grid-template-columns: 1fr;
  }

  .auth-modal__actions .button {
    min-height: 52px;
  }

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

  .trip-gallery-grid--luxury .trip-gallery-grid__item:first-child,
  .community-card--vibe {
    grid-column: auto;
  }

  .gallery-teaser__item img,
  .trip-gallery-grid__item img {
    min-height: 180px;
  }
}
