.info-page {
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 123, 92, 0.08), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(14, 165, 183, 0.13), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #eef9fb 100%);
}

.info-hero {
  min-height: auto;
  padding-top: 168px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.info-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.98;
}

.info-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.info-hero-media {
  overflow: hidden;
  border-radius: 28px;
  min-height: 430px;
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 28px 78px rgba(18, 27, 51, 0.13);
}

.info-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.info-actions,
.info-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.info-actions a,
.info-form button,
.info-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  background: var(--rivtara-blue);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.info-actions a.secondary,
.info-card a {
  background: #ffffff;
  color: var(--rivtara-blue);
  border: 1px solid rgba(11, 110, 142, 0.16);
}

.info-band {
  padding-top: 30px;
}

.info-panel {
  padding: clamp(26px, 4vw, 48px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.08);
}

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

.info-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.info-section-head h2 {
  max-width: 760px;
  margin-top: 8px;
  color: var(--rivtara-mountain);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1;
}

.info-section-head > a {
  color: var(--rivtara-blue);
  font-weight: 900;
  white-space: nowrap;
}

.info-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
}

.info-card h3,
.info-panel h2 {
  margin: 8px 0 12px;
  color: var(--rivtara-mountain);
}

.info-card p,
.info-panel p,
.info-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.info-pill-row span {
  padding: 9px 13px;
  border-radius: 999px;
  background: #eaf8f5;
  color: var(--rivtara-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.info-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

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

.info-form label,
.info-form .full-row {
  display: grid;
  gap: 8px;
}

.info-form .full-row {
  grid-column: 1 / -1;
}

.info-form span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-form input,
.info-form select,
.info-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 110, 142, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--rivtara-mountain);
  font: inherit;
  font-weight: 700;
}

.info-form textarea {
  min-height: 130px;
  resize: vertical;
}

.info-output {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #eef9fb;
  color: var(--rivtara-mountain);
  line-height: 1.7;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 18px;
  border-radius: 18px;
  background: #f7fbfa;
  border: 1px solid rgba(18, 27, 51, 0.07);
}

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

.experience-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.08);
}

.experience-card-media {
  height: 250px;
  overflow: hidden;
  background: #eef9fb;
}

.experience-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.experience-card-body h3 {
  margin: 8px 0 12px;
  color: var(--rivtara-mountain);
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 1.08;
}

.experience-card-body p {
  color: var(--muted);
  line-height: 1.65;
}

.experience-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.experience-points span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #eaf8f5;
  color: var(--rivtara-blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.experience-card-footer {
  display: grid;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
}

.experience-card-footer strong {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.experience-card-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--rivtara-blue);
  color: #ffffff;
  font-weight: 900;
}

.experience-flow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: start;
}

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

.experience-flow article {
  padding: 20px;
  border-radius: 20px;
  background: #f7fbfa;
  border: 1px solid rgba(18, 27, 51, 0.07);
}

.experience-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--rivtara-blue);
  color: #ffffff;
  font-weight: 900;
}

.experience-flow h3 {
  margin: 16px 0 8px;
  color: var(--rivtara-mountain);
}

.experience-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.experience-help h2 {
  max-width: 760px;
  margin: 8px 0 12px;
  color: var(--rivtara-mountain);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1;
}

.experience-help p {
  max-width: 820px;
}

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

.guide-group-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.06);
}

.guide-group-card h3 {
  margin: 8px 0 14px;
  color: var(--rivtara-mountain);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.guide-group-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-group-card li {
  padding: 14px;
  border-radius: 16px;
  background: #f7fbfa;
  color: var(--muted);
  line-height: 1.55;
}

.route-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.route-guide-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
}

.route-guide-card span {
  color: var(--rivtara-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-guide-card h3 {
  margin: 10px 0 12px;
  color: var(--rivtara-mountain);
  font-size: 1.55rem;
  line-height: 1.1;
}

.route-guide-card p {
  color: var(--muted);
  line-height: 1.6;
}

.route-guide-card a {
  margin-top: auto;
  color: var(--rivtara-blue);
  font-weight: 900;
}

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

.community-topic-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.06);
}

.community-topic-card h3 {
  margin: 8px 0 12px;
  color: var(--rivtara-mountain);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.community-topic-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.community-board {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.08);
}

.community-board h2 {
  margin: 8px 0 12px;
  color: var(--rivtara-mountain);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
}

.community-board > div:first-child p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}

.community-prompt-list {
  display: grid;
  gap: 12px;
}

.community-prompt-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: #f7fbfa;
  border: 1px solid rgba(18, 27, 51, 0.07);
}

.community-prompt-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--rivtara-blue);
  color: #ffffff;
  font-weight: 900;
}

.community-prompt-list p {
  color: var(--rivtara-mountain);
  font-weight: 800;
  line-height: 1.55;
}

.community-trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
}

.community-trust-panel h2 {
  margin: 8px 0 0;
  color: var(--rivtara-mountain);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1;
}

.community-trust-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-trust-panel li {
  padding: 16px;
  border-radius: 18px;
  background: #eaf8f5;
  color: var(--rivtara-mountain);
  font-weight: 800;
  line-height: 1.55;
}

.about-rivtara {
  overflow: hidden;
}

.about-rivtara .eyebrow,
.about-hero-copy h1,
.about-hero-lead,
.about-proof-strip article,
.about-founder,
.about-belief-band,
.about-belief-card,
.about-journey-intro,
.about-journey-steps article,
.about-difference-card {
  animation: aboutFadeLift 0.9s ease both;
}

.about-hero-copy h1 {
  animation-delay: 0.08s;
}

.about-hero-lead {
  animation-delay: 0.18s;
}

.about-proof-strip article:nth-child(1) {
  animation-delay: 0.28s;
}

.about-proof-strip article:nth-child(2) {
  animation-delay: 0.38s;
}

.about-proof-strip article:nth-child(3) {
  animation-delay: 0.48s;
}

.about-founder {
  animation-delay: 0.12s;
}

.about-belief-card:nth-child(1),
.about-journey-steps article:nth-child(1) {
  animation-delay: 0.08s;
}

.about-belief-card:nth-child(2),
.about-journey-steps article:nth-child(2) {
  animation-delay: 0.18s;
}

.about-belief-card:nth-child(3),
.about-journey-steps article:nth-child(3) {
  animation-delay: 0.28s;
}

.about-route-collage {
  animation: aboutCollageIn 1s ease both;
  animation-delay: 0.2s;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 760px;
  padding-top: 170px;
}

.about-hero-copy h1 {
  max-width: 980px;
  margin: 0;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7vw, 8.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.about-hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.75;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
}

.about-proof-strip article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 18px 50px rgba(18, 27, 51, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-proof-strip article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(18, 27, 51, 0.11);
}

.about-proof-strip strong {
  display: block;
  color: var(--rivtara-blue);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.about-proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.4;
}

.about-route-collage {
  position: relative;
  min-height: 620px;
}

.about-route-collage figure {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 12px solid #ffffff;
  box-shadow: 0 30px 90px rgba(18, 27, 51, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-route-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.55s ease;
}

.about-route-collage figure:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 100px rgba(18, 27, 51, 0.24);
}

.about-route-collage figure:hover img {
  transform: scale(1);
}

.about-collage-main {
  position: absolute;
  inset: 48px 38px 66px 0;
  border-radius: 34px;
  animation: aboutFloatMain 7s ease-in-out infinite;
}

.about-collage-small {
  position: absolute;
  width: 48%;
  aspect-ratio: 1.15;
  border-radius: 26px;
}

.about-collage-top {
  top: 0;
  right: 0;
  animation: aboutFloatTop 6.5s ease-in-out infinite;
}

.about-collage-bottom {
  right: 28px;
  bottom: 0;
  animation: aboutFloatBottom 7.5s ease-in-out infinite;
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.about-founder h2 {
  margin: 8px 0 0;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.98;
}

.about-founder-text {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 30px 90px rgba(18, 27, 51, 0.08);
}

.about-founder-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-founder-text p + p {
  margin-top: 18px;
}

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

.about-belief-card {
  min-height: 330px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-belief-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 82px rgba(18, 27, 51, 0.11);
}

.about-belief-card h3 {
  margin: 0 0 18px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.about-belief-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-journey {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.about-journey-intro {
  position: sticky;
  top: 140px;
}

.about-journey-intro h2 {
  margin: 8px 0 0;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.98;
}

.about-journey-steps {
  display: grid;
  gap: 18px;
}

.about-journey-steps article {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.about-journey-steps article:hover {
  transform: translateX(8px);
  border-color: rgba(31, 142, 166, 0.28);
  box-shadow: 0 30px 82px rgba(18, 27, 51, 0.1);
}

.about-journey-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--rivtara-blue);
  color: #ffffff;
  font-weight: 900;
}

.about-journey-steps h3 {
  margin: 8px 0 12px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
}

.about-journey-steps p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.about-difference-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(34px, 5vw, 70px);
  border-radius: 34px;
  background: #0d3444;
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(13, 52, 68, 0.28);
}

.about-difference-card h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.9rem);
  line-height: 0.98;
}

.about-difference-card .eyebrow {
  color: #9fe6f4;
}

.about-difference-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-difference-card li {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  line-height: 1.55;
  transition: transform 0.24s ease, background 0.24s ease;
}

.about-difference-card li:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.16);
}

.contact-page {
  overflow: hidden;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.65fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: 720px;
  padding-top: 168px;
}

.contact-hero-copy h1 {
  max-width: 920px;
  margin: 8px 0 18px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 8.2rem);
  line-height: 0.92;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-actions {
  margin-top: 28px;
}

.contact-desk-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 34px;
  background:
    linear-gradient(140deg, rgba(13, 52, 68, 0.94), rgba(31, 142, 166, 0.88)),
    url('../images/destinations/kochi-chinese-fishing-nets.jpg') center/cover;
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(13, 52, 68, 0.24);
}

.contact-desk-card .eyebrow {
  color: #9fe6f4;
}

.contact-desk-card h2 {
  margin: 8px 0 24px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 0.98;
}

.contact-desk-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-desk-card li {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  line-height: 1.45;
}

.contact-channels {
  padding-top: 20px;
}

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

.contact-channel {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(18, 27, 51, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.06);
}

.contact-channel span {
  color: var(--rivtara-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channel h3 {
  margin: 16px 0 12px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.contact-channel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-channel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--rivtara-blue);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.contact-form-band {
  padding-top: 40px;
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(18, 27, 51, 0.08);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 30px 88px rgba(18, 27, 51, 0.08);
}

.contact-form-intro h2 {
  margin: 8px 0 16px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.contact-form-intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-form-actions p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.policy-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(240, 228, 214, 0.55), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(191, 230, 232, 0.62), transparent 38%),
    linear-gradient(180deg, #fffaf3 0%, #eefafa 48%, #fffaf5 100%);
}

.policy-hero {
  padding-top: clamp(150px, 17vw, 220px);
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.policy-hero-copy h1,
.policy-section-heading h2,
.policy-contact-strip h2 {
  margin: 10px 0 18px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  line-height: 0.96;
}

.policy-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(4rem, 8vw, 8.4rem);
}

.policy-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.policy-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.policy-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(0, 105, 136, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--rivtara-mountain);
  font-weight: 900;
}

.policy-summary-panel,
.policy-card,
.policy-article,
.policy-index,
.policy-contact-strip {
  border: 1px solid rgba(18, 27, 51, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.07);
}

.policy-summary-panel {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px;
}

.policy-summary-panel h2 {
  margin: 10px 0 22px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.policy-summary-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-summary-list li {
  padding-left: 18px;
  border-left: 4px solid var(--rivtara-blue);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.policy-snapshot {
  padding-top: 22px;
}

.policy-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.policy-section-heading h2,
.policy-contact-strip h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

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

.policy-card {
  min-height: 235px;
  padding: 26px;
  border-radius: 24px;
}

.policy-card h3 {
  margin: 10px 0 12px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.05;
}

.policy-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.policy-index {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
}

.policy-index a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 900;
  text-decoration: none;
}

.policy-index a:hover,
.policy-index a:focus {
  background: rgba(0, 105, 136, 0.08);
  color: var(--rivtara-blue);
}

.policy-stack {
  display: grid;
  gap: 18px;
}

.policy-article {
  scroll-margin-top: 150px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 28px;
}

.policy-article h2 {
  margin: 10px 0 18px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
}

.policy-article ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.policy-article li::marker {
  color: var(--rivtara-blue);
}

.policy-contact {
  padding-top: 18px;
}

.policy-contact-strip {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 30px;
}

.policy-contact-strip p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@keyframes aboutFadeLift {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

@keyframes aboutCollageIn {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes aboutFloatMain {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes aboutFloatTop {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(9px) rotate(1.2deg);
  }
}

@keyframes aboutFloatBottom {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-rivtara *,
  .about-rivtara *::before,
  .about-rivtara *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .info-hero,
  .info-card-grid,
  .info-split,
  .contact-hero,
  .contact-channel-grid,
  .contact-form-shell,
  .experience-grid,
  .experience-flow-panel,
  .guide-group-grid,
  .route-guide-grid,
  .community-topic-grid,
  .community-board,
  .community-trust-panel,
  .about-hero,
  .about-proof-strip,
  .about-founder,
  .about-belief-grid,
  .about-journey,
  .about-difference-card,
  .policy-hero-grid,
  .policy-card-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .info-section-head,
  .experience-help,
  .policy-contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .experience-flow {
    grid-template-columns: 1fr;
  }

  .info-hero {
    padding-top: 140px;
  }

  .info-hero-media,
  .info-hero-media img {
    min-height: 320px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 140px;
  }

  .about-route-collage {
    min-height: 520px;
  }

  .about-journey-intro {
    position: static;
  }

  .policy-index {
    position: static;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  .route-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .info-form {
    grid-template-columns: 1fr;
  }

  .experience-card-media {
    height: 210px;
  }

  .about-proof-strip {
    grid-template-columns: 1fr;
  }

  .about-route-collage {
    min-height: 430px;
  }

  .about-collage-main {
    inset: 30px 0 80px 0;
  }

  .about-collage-small {
    width: 58%;
  }
}

.faq-page {
  min-height: 100vh;
}

.faq-hero {
  padding-top: 168px;
  padding-bottom: 20px;
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
}

.faq-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.92;
}

.faq-lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.faq-support-panel,
.faq-note,
.faq-group,
.faq-contact-strip {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 24px 70px rgba(18, 27, 51, 0.08);
}

.faq-support-panel {
  padding: 28px;
  border-radius: 28px;
}

.faq-support-panel h2 {
  margin: 8px 0 0;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.faq-support-panel ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.6;
  list-style: none;
}

.faq-support-panel li {
  position: relative;
  padding-left: 18px;
}

.faq-support-panel li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--rivtara-blue);
  border-radius: 50%;
  content: '';
}

.faq-topics {
  padding-top: 10px;
}

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

.faq-note {
  padding: 24px;
  border-radius: 24px;
}

.faq-note h3 {
  margin: 8px 0 10px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.05;
}

.faq-note p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-content {
  padding-top: 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.faq-index {
  position: sticky;
  top: 120px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 27, 51, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(18, 27, 51, 0.07);
}

.faq-index nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.faq-index a {
  padding: 11px 12px;
  color: var(--rivtara-mountain);
  font-weight: 900;
  border-radius: 14px;
}

.faq-index a:hover,
.faq-index a:focus {
  color: var(--rivtara-blue);
  background: rgba(0, 105, 136, 0.08);
}

.faq-stack {
  display: grid;
  gap: 20px;
}

.faq-group {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
  scroll-margin-top: 140px;
}

.faq-group-head {
  margin-bottom: 22px;
}

.faq-group-head h2 {
  margin: 8px 0 12px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.faq-group-head p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item {
  overflow: hidden;
  background: #f7fbfa;
  border: 1px solid rgba(10, 107, 130, 0.14);
  border-radius: 18px;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  color: var(--rivtara-mountain);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: var(--rivtara-blue);
  font-size: 1.1rem;
  background: #fff;
  border: 1px solid rgba(10, 107, 130, 0.12);
  border-radius: 50%;
  place-items: center;
  content: '+';
}

.faq-item[open] summary::after {
  color: #fff;
  background: var(--rivtara-blue);
  content: '-';
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-contact {
  padding-top: 10px;
}

.faq-contact-strip {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 28px;
}

.faq-contact-strip h2 {
  margin: 8px 0 12px;
  color: var(--rivtara-mountain);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.faq-contact-strip p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-contact-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  background: var(--rivtara-blue);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(10, 107, 130, 0.18);
}

@media (max-width: 980px) {
  .faq-hero-grid,
  .faq-note-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-index {
    position: static;
  }

  .faq-contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .faq-hero {
    padding-top: 140px;
  }

  .faq-support-panel,
  .faq-note,
  .faq-group,
  .faq-contact-strip {
    border-radius: 22px;
  }

  .faq-item summary {
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }
}
