/* Tourism Rio editorial refresh V2 */
:root {
  --rio-v2-bg: #ffffff;
  --rio-v2-surface: #f7f1e7;
  --rio-v2-ink: #173044;
  --rio-v2-navy: #0d2f4f;
  --rio-v2-blue: #17578a;
  --rio-v2-teal: #128a8c;
  --rio-v2-sky: #eaf5f7;
  --rio-v2-sun: #f4b928;
  --rio-v2-muted: #607080;
  --rio-v2-border: rgba(13, 47, 79, .14);
  --rio-v2-shadow: 0 24px 70px rgba(13, 47, 79, .14);
}

/* Brand header */
header.sticky .container-wide {
  min-height: 6.25rem !important;
}
.rio-brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.rio-brand-logo-header {
  width: clamp(13.5rem, 17vw, 15.5rem);
  height: 4.25rem;
}
.rio-brand-logo-header img {
  display: block;
  width: 100%;
  max-height: 4.25rem;
  object-fit: contain;
  object-position: left center;
}
header.sticky nav[aria-label="Primary"] {
  gap: 1rem !important;
}

/* Guides archive */
.rio-guides-page,
.rio-story-page,
.rio-policy-page {
  color: var(--rio-v2-ink);
  background: var(--rio-v2-bg);
}
.rio-guides-hero {
  padding: clamp(5rem, 9vw, 8.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  color: #fff;
  background:
    radial-gradient(circle at 83% 18%, rgba(244, 185, 40, .25), transparent 24rem),
    linear-gradient(145deg, #0d2f4f, #164f76);
}
.rio-guides-hero-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}
.rio-guides-hero .rio-kicker { color: var(--rio-v2-sun); }
.rio-guides-hero h1 {
  max-width: 800px;
  margin: .75rem 0 0;
  color: #fff;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.rio-guides-hero p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.12rem;
  line-height: 1.7;
}
.rio-guide-topics {
  border-bottom: 1px solid var(--rio-v2-border);
  background: var(--rio-v2-surface);
}
.rio-guide-topics-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  gap: .65rem;
  align-items: center;
  padding: 1rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.rio-guide-topics-inner > span {
  flex: 0 0 auto;
  color: var(--rio-v2-muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.rio-guide-topics a {
  flex: 0 0 auto;
  padding: .52rem .8rem;
  border: 1px solid var(--rio-v2-border);
  border-radius: 999px;
  background: #fff;
  color: var(--rio-v2-navy);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.rio-guide-topics a:hover { border-color: var(--rio-v2-blue); color: var(--rio-v2-blue); }
.rio-guides-listing {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}
.rio-guides-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}
.rio-guide-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--rio-v2-border);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 15px 45px rgba(13, 47, 79, .08);
}
.rio-guide-card.is-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.22fr) minmax(20rem, .78fr);
  grid-template-rows: none;
}
.rio-guide-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--rio-v2-sky);
}
.rio-guide-card.is-featured .rio-guide-card-image { aspect-ratio: auto; min-height: 25rem; }
.rio-guide-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.rio-guide-card:hover .rio-guide-card-image img { transform: scale(1.025); }
.rio-guide-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
}
.rio-guide-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  color: var(--rio-v2-muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.rio-guide-card-meta a { color: var(--rio-v2-blue); text-decoration: none; }
.rio-guide-card h2 {
  margin: .8rem 0 .75rem;
  color: var(--rio-v2-navy);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.rio-guide-card.is-featured h2 { font-size: clamp(2rem, 4vw, 3rem); }
.rio-guide-card h2 a { color: inherit; text-decoration: none; }
.rio-guide-card p { margin: 0 0 1.35rem; color: var(--rio-v2-muted); line-height: 1.68; }
.rio-guide-card .rio-read-more { margin-top: auto; }

/* Rich guide and landing introductions */
.rio-guides-intro,
.rio-category-primer,
.rio-category-method,
.rio-landing-guide,
.rio-about-coverage,
.rio-contact-notes,
.rio-contact-followup {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}
.rio-guides-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  padding: clamp(4rem, 7vw, 6rem) 0 0;
}
.rio-guides-intro h2,
.rio-category-primer h2,
.rio-category-method h2,
.rio-landing-guide h2,
.rio-about-coverage h2,
.rio-contact-notes h2,
.rio-contact-followup h2 {
  margin: .65rem 0 0;
  color: var(--rio-v2-navy);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.rio-guides-intro-copy,
.rio-category-primer-copy,
.rio-landing-guide-heading {
  color: var(--rio-v2-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.rio-guides-intro-copy p,
.rio-category-primer-copy p,
.rio-landing-guide-heading p { margin: 0 0 1.1rem; }
.rio-guides-start-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.4rem;
}
.rio-guides-start-links a,
.rio-landing-guide-links a {
  display: inline-flex;
  padding: .68rem .9rem;
  border: 1px solid var(--rio-v2-border);
  border-radius: 999px;
  color: var(--rio-v2-blue);
  background: #fff;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}
.rio-category-primer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  padding: clamp(4rem, 7vw, 6rem) 0 0;
  align-items: start;
}
.rio-category-primer-tips {
  padding: 1.45rem;
  border: 1px solid var(--rio-v2-border);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, var(--rio-v2-sky), #fff);
  box-shadow: 0 16px 45px rgba(13, 47, 79, .08);
}
.rio-category-primer-tips ul {
  display: grid;
  gap: .8rem;
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}
.rio-category-primer-tips li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--rio-v2-ink);
  line-height: 1.55;
}
.rio-category-primer-tips li::before {
  content: "";
  position: absolute;
  left: .1rem;
  top: .58em;
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--rio-v2-teal);
}
.rio-category-primer-tips a {
  color: var(--rio-v2-blue);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}
.rio-category-method {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.rio-category-method > div:first-child {
  display: grid;
  grid-template-columns: minmax(18rem, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}
.rio-category-method > div:first-child p {
  grid-column: 2;
  margin: 0 0 1rem;
  color: var(--rio-v2-muted);
  line-height: 1.72;
}
.rio-category-method > div:first-child .rio-kicker,
.rio-category-method > div:first-child h2 { grid-column: 1; }
.rio-category-method > div:first-child h2 { grid-row: 2 / span 2; }
.rio-category-method-grid,
.rio-contact-followup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.rio-category-method-grid article,
.rio-contact-followup-grid article {
  padding: 1.35rem;
  border-top: 3px solid var(--rio-v2-teal);
  border-radius: 0 0 1rem 1rem;
  background: var(--rio-v2-surface);
}
.rio-category-method-grid article > span,
.rio-contact-followup-grid article > span {
  color: var(--rio-v2-teal);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
}
.rio-category-method-grid h3,
.rio-contact-followup-grid h3,
.rio-landing-guide-note h3 {
  margin: .55rem 0 .5rem;
  color: var(--rio-v2-navy);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.3rem;
}
.rio-category-method-grid p,
.rio-contact-followup-grid p {
  margin: 0;
  color: var(--rio-v2-muted);
  font-size: .92rem;
  line-height: 1.62;
}
.rio-landing-guide {
  margin-top: clamp(4rem, 7vw, 6.5rem);
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--rio-v2-border);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 92% 0, rgba(18, 138, 140, .13), transparent 24rem),
    linear-gradient(145deg, #fff, var(--rio-v2-sky));
  box-shadow: var(--rio-v2-shadow);
}
.rio-landing-guide-heading { max-width: 850px; }
.rio-landing-guide-heading h2 { margin-bottom: 1.4rem; }
.rio-landing-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.rio-landing-guide-grid article {
  padding: 1.35rem;
  border: 1px solid var(--rio-v2-border);
  border-radius: 1rem;
  background: rgba(255,255,255,.8);
}
.rio-landing-guide-grid h3 {
  margin: 0 0 .6rem;
  color: var(--rio-v2-navy);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.35rem;
}
.rio-landing-guide-grid p {
  margin: 0;
  color: var(--rio-v2-muted);
  font-size: .93rem;
  line-height: 1.65;
}
.rio-landing-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.5rem;
}
.rio-landing-guide-note {
  display: grid;
  grid-template-columns: minmax(16rem, .75fr) minmax(0, 1.25fr);
  gap: 1.5rem 2.5rem;
  margin-top: 1rem;
  padding: 1.4rem;
  border-radius: 1rem;
  background: var(--rio-v2-navy);
}
.rio-landing-guide-note .rio-kicker { color: var(--rio-v2-sun); }
.rio-landing-guide-note h3 { color: #fff; }
.rio-landing-guide-note p {
  margin: 0 0 .75rem;
  color: rgba(255,255,255,.76);
  font-size: .9rem;
  line-height: 1.65;
}
.rio-landing-guide-note p:last-child { margin-bottom: 0; }
.rio-legacy-article-title {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(244,185,40,.26), transparent 22rem),
    linear-gradient(145deg, var(--rio-v2-navy), #164f76);
}
.rio-legacy-article-title > div { width: min(860px, calc(100% - 2rem)); margin: 0 auto; }
.rio-legacy-article-title .rio-kicker { color: var(--rio-v2-sun); }
.rio-legacy-article-title h1 {
  margin: .7rem 0 1.1rem;
  color: #fff;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  line-height: 1;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.rio-legacy-article-title p { max-width: 680px; margin: 0; color: rgba(255,255,255,.8); font-size: 1.08rem; line-height: 1.7; }

/* Article lists, tables and affiliate sidebar */
.rio-article-content ul,
.rio-article-content ol {
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}
.rio-article-content li {
  position: relative;
  margin: 0 0 .8rem;
  padding-left: 2rem;
}
.rio-article-content ul > li::before {
  content: "";
  position: absolute;
  left: .25rem;
  top: .72em;
  width: .55rem;
  height: .55rem;
  border: 2px solid var(--rio-v2-teal);
  border-radius: 50%;
  background: rgba(18, 138, 140, .11);
}
.rio-article-content ol { counter-reset: rio-list; }
.rio-article-content ol > li { counter-increment: rio-list; padding-left: 2.7rem; }
.rio-article-content ol > li::before {
  content: counter(rio-list);
  position: absolute;
  left: 0;
  top: .12rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rio-v2-navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}
.rio-article-content li > ul,
.rio-article-content li > ol { margin: .8rem 0 0; }
.rio-article-content .wp-block-table,
.rio-article-content .table-responsive,
.rio-article-content .rio-table-scroll {
  width: 100%;
  margin: 2.25rem 0;
  overflow-x: auto;
  border: 1px solid var(--rio-v2-border);
  border-radius: 1rem;
  box-shadow: 0 12px 35px rgba(13, 47, 79, .07);
}
.rio-article-content table {
  width: 100%;
  min-width: 38rem;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: .96rem;
  line-height: 1.55;
}
.rio-article-content thead th {
  padding: 1rem 1.1rem;
  border: 0;
  background: var(--rio-v2-navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-align: left;
  text-transform: uppercase;
}
.rio-article-content tbody th,
.rio-article-content tbody td {
  padding: .95rem 1.1rem;
  border: 0;
  border-bottom: 1px solid var(--rio-v2-border);
  text-align: left;
  vertical-align: top;
}
.rio-article-content tbody tr:nth-child(even) { background: var(--rio-v2-sky); }
.rio-article-content tbody tr:last-child > * { border-bottom: 0; }
.rio-article-sidebar { position: static; }
.rio-affiliate-sidebar {
  overflow: hidden;
  border: 1px solid rgba(23, 87, 138, .22);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, var(--rio-v2-sky), #fff 15rem);
  box-shadow: 0 18px 55px rgba(13, 47, 79, .11);
}
.rio-affiliate-sidebar-intro { padding: 1.35rem 1.35rem .4rem; }
.rio-affiliate-sidebar-intro p { margin: .55rem 0 0; color: var(--rio-v2-muted); font-size: .9rem; line-height: 1.55; }
.rio-affiliate-sidebar .travelspark-widget {
  margin: 0 !important;
  padding: .85rem !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.rio-affiliate-sidebar .travelspark-widget__title {
  margin: 0 0 .8rem !important;
  color: var(--rio-v2-navy) !important;
  font-family: Georgia, Cambria, "Times New Roman", serif !important;
  font-size: 1.35rem !important;
}
.rio-affiliate-sidebar .travelspark-card {
  overflow: hidden;
  margin: 0 0 .85rem !important;
  border: 1px solid var(--rio-v2-border) !important;
  border-radius: .9rem !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(13, 47, 79, .08) !important;
}
.rio-affiliate-sidebar .travelspark-card__image { aspect-ratio: 16 / 9; object-fit: cover; }
.rio-affiliate-sidebar .travelspark-card__content { padding: .85rem !important; }
.rio-affiliate-sidebar .travelspark-card__title { font-size: 1rem !important; line-height: 1.25 !important; }
.rio-affiliate-sidebar .travelspark-card__description {
  display: -webkit-box !important;
  margin: .55rem 0 !important;
  overflow: hidden;
  color: var(--rio-v2-muted) !important;
  font-size: .82rem !important;
  line-height: 1.45 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.rio-affiliate-sidebar .travelspark-card__footer { gap: .6rem !important; }
.rio-affiliate-sidebar .travelspark-card__button { white-space: nowrap; }
.rio-affiliate-disclosure {
  margin: 0;
  padding: .2rem 1.35rem 1.3rem;
  color: var(--rio-v2-muted);
  font-size: .7rem;
  line-height: 1.5;
}
.rio-sidebar-highlight { position: sticky; top: 6.5rem; }

/* About */
.rio-story-hero {
  overflow: hidden;
  color: #fff;
  background: var(--rio-v2-navy);
}
.rio-story-hero-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(24rem, 1.1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}
.rio-story-hero .rio-kicker { color: var(--rio-v2-sun); }
.rio-story-hero h1,
.rio-contact-hero h1 {
  margin: .8rem 0 1.3rem;
  color: #fff;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.rio-story-hero-copy > p { max-width: 580px; margin: 0 0 1.8rem; color: rgba(255,255,255,.82); font-size: 1.12rem; line-height: 1.7; }
.rio-story-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.15rem;
  border-radius: 999px;
  background: var(--rio-v2-sun);
  color: var(--rio-v2-navy);
  font-weight: 800;
  text-decoration: none;
}
.rio-story-hero-image { position: relative; margin: 0; }
.rio-story-hero-image::before {
  content: "";
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  border: 1px solid rgba(244,185,40,.45);
  border-radius: 1.4rem;
}
.rio-story-hero-image img { position: relative; width: 100%; min-height: 34rem; object-fit: cover; border-radius: 1.4rem; }
.rio-about-intro {
  width: min(1050px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.rio-about-intro h2,
.rio-about-values h2,
.rio-about-process h2,
.rio-about-cta h2,
.rio-contact-shell h2 {
  margin: .65rem 0 0;
  color: var(--rio-v2-navy);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.rio-about-intro-copy { color: var(--rio-v2-muted); font-size: 1.08rem; line-height: 1.8; }
.rio-about-intro-copy p { margin: 0 0 1.3rem; }
.rio-about-values {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(26rem, .9fr);
  align-items: stretch;
  background: var(--rio-v2-surface);
}
.rio-about-values-image img { width: 100%; height: 100%; min-height: 42rem; display: block; object-fit: cover; }
.rio-about-values-copy { padding: clamp(3rem, 7vw, 6.5rem); }
.rio-about-value-list { margin-top: 2.4rem; border-top: 1px solid var(--rio-v2-border); }
.rio-about-value-list article { padding: 1.45rem 0; border-bottom: 1px solid var(--rio-v2-border); }
.rio-about-value-list h3 { margin: 0 0 .45rem; color: var(--rio-v2-navy); font-size: 1.15rem; }
.rio-about-value-list p { margin: 0; color: var(--rio-v2-muted); line-height: 1.65; }
.rio-about-process {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.rio-about-process-list { margin-top: 2rem; border-top: 1px solid var(--rio-v2-border); }
.rio-about-process-list article {
  display: grid;
  grid-template-columns: minmax(16rem, .75fr) minmax(0, 1.25fr);
  gap: 2rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--rio-v2-border);
}
.rio-about-process-list h3 { margin: 0; color: var(--rio-v2-navy); font-family: Georgia, Cambria, "Times New Roman", serif; font-size: 1.55rem; }
.rio-about-process-list p { max-width: 650px; margin: 0; color: var(--rio-v2-muted); line-height: 1.7; }
.rio-about-cta {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(5rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.4rem;
  background: var(--rio-v2-sky);
}
.rio-about-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.rio-story-text-link { color: var(--rio-v2-blue); font-weight: 750; text-underline-offset: .18em; }
.rio-about-coverage { padding: clamp(5rem, 9vw, 8rem) 0 0; }
.rio-about-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}
.rio-about-coverage-grid article,
.rio-contact-expectations article {
  padding: 1.5rem;
  border: 1px solid var(--rio-v2-border);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 14px 40px rgba(13,47,79,.07);
}
.rio-about-coverage-grid h3,
.rio-about-corrections h3,
.rio-contact-expectations h3 {
  margin: 0 0 .65rem;
  color: var(--rio-v2-navy);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.4rem;
}
.rio-about-coverage-grid p,
.rio-about-corrections p,
.rio-contact-notes > div > p,
.rio-contact-expectations p { color: var(--rio-v2-muted); line-height: 1.7; }
.rio-about-coverage-grid p,
.rio-contact-expectations p { margin: 0 0 .8rem; }
.rio-about-coverage-grid p:last-child,
.rio-contact-expectations p:last-child { margin-bottom: 0; }
.rio-about-corrections {
  display: grid;
  grid-template-columns: minmax(16rem, .75fr) minmax(0, 1.25fr);
  gap: 2rem;
  margin-top: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.1rem;
  background: var(--rio-v2-sky);
}
.rio-about-corrections p { margin: 0; }

/* Contact */
.rio-contact-hero { color: #fff; background: var(--rio-v2-navy); }
.rio-contact-hero-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(24rem, 1.1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.rio-contact-hero .rio-kicker { color: var(--rio-v2-sun); }
.rio-contact-hero p { max-width: 580px; color: rgba(255,255,255,.82); font-size: 1.12rem; line-height: 1.7; }
.rio-contact-hero figure { margin: 0; }
.rio-contact-hero img { width: 100%; height: clamp(24rem, 46vw, 38rem); display: block; object-fit: cover; border-radius: 50% 50% 1.4rem 1.4rem; }
.rio-contact-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  padding: clamp(5rem, 9vw, 8rem) 0;
  align-items: start;
}
.rio-contact-aside h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.rio-contact-paths { margin-top: 2rem; border-top: 1px solid var(--rio-v2-border); }
.rio-contact-paths article { padding: 1.25rem 0; border-bottom: 1px solid var(--rio-v2-border); }
.rio-contact-paths h3 { margin: 0 0 .35rem; color: var(--rio-v2-navy); font-size: 1.05rem; }
.rio-contact-paths p { margin: 0; color: var(--rio-v2-muted); font-size: .94rem; line-height: 1.6; }
.rio-contact-direct { margin-top: 1.5rem; color: var(--rio-v2-muted); }
.rio-contact-direct a { color: var(--rio-v2-blue); }
.rio-contact-form-card {
  padding: clamp(1.7rem, 4vw, 3.2rem);
  border: 1px solid var(--rio-v2-border);
  border-radius: 1.4rem;
  background: linear-gradient(145deg, #fff, var(--rio-v2-sky));
  box-shadow: var(--rio-v2-shadow);
}
.rio-contact-form-card h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.rio-contact-form-card > p { color: var(--rio-v2-muted); }
.rio-contact-form { display: grid; gap: 1.1rem; margin-top: 2rem; }
.rio-contact-field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.rio-contact-form label { display: grid; gap: .45rem; color: var(--rio-v2-navy); font-size: .82rem; font-weight: 800; }
.rio-contact-form input,
.rio-contact-form select,
.rio-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(13,47,79,.22);
  border-radius: .7rem;
  background: #fff;
  color: var(--rio-v2-ink);
  padding: .82rem .9rem;
  font: inherit;
  font-weight: 400;
}
.rio-contact-form input:focus,
.rio-contact-form select:focus,
.rio-contact-form textarea:focus { outline: 3px solid rgba(23,87,138,.18); border-color: var(--rio-v2-blue); }
.rio-contact-honeypot { position: absolute !important; left: -9999px !important; }
.rio-contact-submit-row { display: flex; gap: 1rem; align-items: center; }
.rio-contact-submit-row button {
  flex: 0 0 auto;
  padding: .8rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--rio-v2-navy);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.rio-contact-submit-row button:disabled { opacity: .65; cursor: wait; }
.rio-contact-submit-row p { margin: 0; color: var(--rio-v2-muted); font-size: .74rem; line-height: 1.5; }
.rio-contact-submit-row a { color: var(--rio-v2-blue); }
.rio-contact-status { min-height: 1.5em; margin: 0; font-size: .88rem; font-weight: 700; }
.rio-contact-status.is-success { color: #176b46; }
.rio-contact-status.is-error { color: #9f2f2f; }
.rio-contact-notes {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(22rem, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  padding: 0 0 clamp(5rem, 9vw, 8rem);
}
.rio-contact-notes > div > p { margin: 1.1rem 0 0; }
.rio-contact-expectations { display: grid; gap: .9rem; }
.rio-contact-followup {
  padding: 0 0 clamp(5rem, 9vw, 8rem);
}
.rio-contact-followup > div:first-child {
  max-width: 850px;
}
.rio-contact-followup > div:first-child > p {
  color: var(--rio-v2-muted);
  line-height: 1.72;
}

/* Privacy and Terms */
.rio-policy-hero {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(18,138,140,.18), transparent 25rem),
    var(--rio-v2-surface);
}
.rio-policy-hero > div { width: min(980px, calc(100% - 2rem)); margin: 0 auto; }
.rio-policy-hero h1 {
  max-width: 860px;
  margin: .7rem 0 1.2rem;
  color: var(--rio-v2-navy);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.rio-policy-hero p { max-width: 690px; margin: 0; color: var(--rio-v2-muted); font-size: 1.08rem; line-height: 1.7; }
.rio-terms-hero { background: linear-gradient(145deg, var(--rio-v2-navy), #164f76); }
.rio-terms-hero h1 { color: #fff; }
.rio-terms-hero p { color: rgba(255,255,255,.78); }
.rio-terms-hero .rio-kicker { color: var(--rio-v2-sun); }
.rio-policy-layout {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(2.5rem, 8vw, 7rem);
  justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  align-items: start;
}
.rio-policy-nav {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: .55rem;
  padding: 1.25rem;
  border: 1px solid var(--rio-v2-border);
  border-radius: 1rem;
  background: var(--rio-v2-sky);
}
.rio-policy-nav strong { margin-bottom: .3rem; color: var(--rio-v2-navy); }
.rio-policy-nav a { color: var(--rio-v2-muted); font-size: .82rem; text-decoration: none; }
.rio-policy-nav a:hover { color: var(--rio-v2-blue); }
.rio-policy-content { min-width: 0; color: #31475a; font-size: 1.02rem; line-height: 1.78; }
.rio-policy-content section { scroll-margin-top: 6rem; padding: 0 0 2.5rem; margin: 0 0 2.5rem; border-bottom: 1px solid var(--rio-v2-border); }
.rio-policy-content section:last-child { border-bottom: 0; }
.rio-policy-content h2 {
  margin: 0 0 1rem;
  color: var(--rio-v2-navy);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.12;
}
.rio-policy-content p { margin: 0 0 1rem; }
.rio-policy-content ul { margin: 1rem 0 1.25rem; padding-left: 1.35rem; }
.rio-policy-content li { margin-bottom: .55rem; }
.rio-policy-content a { color: var(--rio-v2-blue); text-underline-offset: .18em; }

/* Footer */
.rio-site-footer { margin-top: 0; color: #fff; background: var(--rio-v2-navy); }
.rio-footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(28rem, 2fr) repeat(3, minmax(8rem, .75fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.rio-brand-logo-footer { width: min(calc(100% - 1rem), 30rem); height: 9rem; margin-left: 1rem; }
.rio-brand-logo-footer img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.rio-footer-motto {
  max-width: 420px;
  margin: 1.25rem 0 0 !important;
  padding-left: 1rem;
  border-left: 3px solid var(--rio-v2-sun);
  color: var(--rio-v2-sun);
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.28;
}
.rio-footer-summary { max-width: 460px; margin: 1rem 0 0; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.65; }
.rio-footer-group { display: flex; flex-direction: column; gap: .7rem; }
.rio-footer-group h2 { margin: .35rem 0 .45rem; color: var(--rio-v2-sun); font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.rio-footer-group a { color: rgba(255,255,255,.76); font-size: .88rem; text-decoration: none; }
.rio-footer-group a:hover { color: var(--rio-v2-sun); }
.rio-footer-bottom { border-top: 1px solid rgba(255,255,255,.11); }
.rio-footer-bottom-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem 2rem;
  padding: 1.25rem 0 1.5rem;
  color: rgba(255,255,255,.58);
  font-size: .72rem;
  line-height: 1.5;
}
.rio-footer-bottom-inner p { margin: 0; }
.rio-site-footer .rio-recaptcha-note { flex: 0 0 100%; width: 100%; text-align: center; }
.rio-site-footer .rio-recaptcha-note a {
  color: rgba(255,255,255,.7);
  font-weight: inherit !important;
  text-decoration: none !important;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .rio-brand-logo-header { width: 14.5rem; }
  header.sticky nav[aria-label="Primary"] { gap: .875rem !important; }
  header.sticky nav[aria-label="Primary"] #wpconvert-flat-nav > a,
  header.sticky nav[aria-label="Primary"] .wpconvert-flat-nav-items > a {
    padding: .45rem .4rem !important;
  }
  header.sticky .container-wide > div.hidden a {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
@media (max-width: 1199px) {
  .rio-brand-logo-header { width: 14rem; }
  .rio-footer-inner { grid-template-columns: 2fr repeat(3, .8fr); gap: 2rem; }
}
@media (max-width: 1023px) {
  .rio-brand-logo-header { width: 13.5rem; }
  .rio-guides-hero-inner,
  .rio-guides-intro,
  .rio-category-primer,
  .rio-story-hero-inner,
  .rio-contact-hero-inner,
  .rio-about-intro,
  .rio-about-values,
  .rio-contact-shell,
  .rio-contact-notes { grid-template-columns: 1fr; }
  .rio-guides-hero-inner { align-items: start; }
  .rio-guide-card.is-featured { grid-template-columns: 1fr; }
  .rio-guide-card.is-featured .rio-guide-card-image { min-height: 22rem; }
  .rio-story-hero-image img { min-height: 26rem; }
  .rio-about-values-image img { min-height: 28rem; max-height: 40rem; }
  .rio-about-coverage-grid { grid-template-columns: 1fr; }
  .rio-about-corrections { grid-template-columns: 1fr; gap: .7rem; }
  .rio-contact-hero figure { max-width: 38rem; }
  .rio-contact-shell { max-width: 760px; }
  .rio-policy-layout { grid-template-columns: 1fr; max-width: 780px; }
  .rio-policy-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rio-policy-nav strong { grid-column: 1 / -1; }
  .rio-footer-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rio-footer-brand { grid-column: 1 / -1; }
  .rio-brand-logo-footer { width: min(calc(100% - 1rem), 30rem); height: 9rem; }
  .rio-sidebar-highlight { position: static; }
}
@media (max-width: 700px) {
  header.sticky .container-wide { min-height: 5.25rem !important; }
  .rio-brand-logo-header { width: 12.75rem; height: 3.8rem; }
  .rio-brand-logo-header img { max-height: 3.8rem; }
  .rio-guides-hero-inner,
  .rio-guides-intro,
  .rio-guides-listing,
  .rio-guide-topics-inner,
  .rio-story-hero-inner,
  .rio-about-intro,
  .rio-about-process,
  .rio-about-cta,
  .rio-contact-hero-inner,
  .rio-contact-shell,
  .rio-policy-hero > div,
  .rio-policy-layout,
  .rio-category-primer,
  .rio-category-method,
  .rio-landing-guide,
  .rio-about-coverage,
  .rio-contact-notes,
  .rio-contact-followup,
  .rio-footer-inner,
  .rio-footer-bottom-inner { width: min(100% - 1.25rem, 1180px); }
  .rio-guides-hero h1,
  .rio-story-hero h1,
  .rio-contact-hero h1,
  .rio-policy-hero h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .rio-guides-grid { grid-template-columns: 1fr; }
  .rio-landing-guide { border-radius: 1.1rem; }
  .rio-landing-guide-grid { grid-template-columns: 1fr; }
  .rio-landing-guide-note,
  .rio-category-method > div:first-child { grid-template-columns: 1fr; }
  .rio-category-method > div:first-child .rio-kicker,
  .rio-category-method > div:first-child h2,
  .rio-category-method > div:first-child p { grid-column: 1; grid-row: auto; }
  .rio-category-method-grid,
  .rio-contact-followup-grid { grid-template-columns: 1fr; }
  .rio-guide-card.is-featured { grid-column: auto; }
  .rio-guide-card.is-featured .rio-guide-card-image { min-height: 0; aspect-ratio: 16 / 9; }
  .rio-guide-card.is-featured h2 { font-size: 2rem; }
  .rio-about-process-list article { grid-template-columns: 1fr; gap: .55rem; }
  .rio-about-cta { grid-template-columns: 1fr; align-items: start; }
  .rio-contact-hero img { height: 24rem; }
  .rio-contact-field-row { grid-template-columns: 1fr; }
  .rio-contact-submit-row { align-items: flex-start; flex-direction: column; }
  .rio-policy-nav { grid-template-columns: 1fr; }
  .rio-policy-content { font-size: .98rem; }
  .rio-footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rio-footer-brand,
  .rio-footer-group:last-child { grid-column: 1 / -1; }
  .rio-brand-logo-footer { width: 21rem; height: 6.5rem; }
  .rio-footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .rio-brand-logo-header { width: 11.75rem; }
  .rio-brand-logo-footer { width: calc(100% - 1rem); }
}
@media (prefers-reduced-motion: reduce) {
  .rio-guide-card-image img { transition: none; }
}
