:root {
  --ink: #171412;
  --paper: #f8f2e8;
  --paper-2: #efe4d4;
  --white: #fffdf9;
  --agave: #145f52;
  --agave-deep: #0b4038;
  --petal: #e33c70;
  --petal-dark: #a91849;
  --maize: #f2c85b;
  --cobalt: #254d86;
  --line: rgba(23, 20, 18, 0.18);
  --muted: #675f58;
  --shadow: 0 24px 70px rgba(43, 27, 17, 0.13);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max: 1180px;
  --radius: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-underline-offset: 0.2em;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--maize);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.narrow {
  width: min(calc(100% - 2rem), 760px);
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--agave);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: var(--maize);
}
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: break-word;
}
.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 62ch;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 2.6rem;
  height: 2px;
  background: currentColor;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.82rem 1.3rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 0 rgba(23, 20, 18, 0.14);
}
.button.alt {
  background: transparent;
  color: var(--ink);
}
.button.alt:hover {
  background: var(--white);
}
.button.light {
  border-color: var(--white);
  background: var(--white);
  color: var(--agave-deep);
}
.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: white;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 242, 232, 0.95);
}
.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  aspect-ratio: 1;
  border-radius: 50% 50% 12% 50%;
  background: var(--petal-dark);
  color: white;
  font: 800 0.74rem/1 var(--sans);
  transform: rotate(-6deg);
}
.brand-mark span {
  transform: rotate(6deg);
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.brand-name small {
  display: block;
  font: 700 0.56rem/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--agave);
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}
.nav a:not(.button):hover,
.nav a[aria-current="page"]:not(.button) {
  color: var(--petal-dark);
}
.lang-link {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.55rem;
  color: var(--ink);
}
.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 5rem));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 17, 15, 0.82) 0%,
    rgba(9, 17, 15, 0.42) 46%,
    rgba(9, 17, 15, 0.05) 74%
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4.4rem;
  max-width: 760px;
}
.hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(3rem, 5vw, 4.75rem);
  max-width: 14ch;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.trust-strip {
  background: var(--agave-deep);
  color: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  padding: 1.2rem 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item b {
  display: block;
  color: var(--maize);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-item span {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}
.section-head {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  max-width: 14ch;
}
.section-head .lead {
  margin-top: 0.4rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.intro-grid h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
}
.color-stack {
  position: relative;
  min-height: 450px;
}
.color-panel {
  position: absolute;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.color-panel.one {
  inset: 0 18% 17% 0;
  background: var(--petal-dark);
  color: white;
}
.color-panel.two {
  inset: 27% 0 0 30%;
  background: var(--maize);
  transform: rotate(2deg);
}
.color-panel h3 {
  margin: 0 0 1rem;
  font: 500 clamp(1.65rem, 2.5vw, 2.1rem) / 1.05 var(--serif);
}
.color-panel p {
  max-width: 31ch;
}
.color-panel .tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 2rem;
  border-right: 1px solid var(--line);
}
.step:last-child {
  border-right: 0;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--agave);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
}
.step h3 {
  font: 600 1.8rem/1.1 var(--serif);
  margin: 1.3rem 0 0.7rem;
}

.intent-section {
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.intent-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3rem;
  align-items: center;
}
.intent-section h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 0.5rem 0 1rem;
}
.intent-section .lead {
  color: rgba(255, 255, 255, 0.72);
}
.intent-cards {
  display: grid;
  gap: 1rem;
}
.intent-card {
  position: relative;
  padding: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}
.intent-card:nth-child(2) {
  margin-left: 2rem;
  border-color: rgba(227, 60, 112, 0.65);
}
.intent-card h3 {
  margin: 0 0 0.4rem;
  font: 600 1.5rem/1.15 var(--serif);
  color: var(--maize);
}

.daddy-feature {
  background: var(--paper-2);
}
.daddy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.daddy-media {
  position: relative;
  min-height: 610px;
}
.daddy-portrait,
.daddy-date {
  position: absolute;
  object-fit: cover;
}
.daddy-portrait {
  inset: 0 24% 8% 0;
  width: 76%;
  height: 92%;
  object-position: 72% center;
}
.daddy-date {
  right: 0;
  bottom: 0;
  width: 58%;
  height: clamp(180px, 18vw, 260px);
  border: 0.65rem solid var(--paper-2);
}
.daddy-copy h2 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}
.daddy-copy p:not(.eyebrow) {
  max-width: 58ch;
}
.daddy-copy .button-row {
  margin-top: 1.8rem;
}

.city-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.city-image-wrap {
  position: relative;
}
.city-image-wrap::before {
  content: "";
  position: absolute;
  inset: -1.25rem 13% 1.25rem -1.25rem;
  background: var(--cobalt);
}
.city-image {
  position: relative;
  width: 100%;
  height: clamp(590px, 52vw, 720px);
  object-fit: cover;
  object-position: center 43%;
}
.city-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 0.3rem 0 1rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--agave-deep);
  font-weight: 850;
  text-decoration-thickness: 2px;
}
.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.text-link:hover::after {
  transform: translateX(0.25rem);
}

.safety-band {
  background: var(--petal-dark);
  color: white;
}
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.safety-band h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 0;
}
.safety-list {
  display: grid;
  gap: 0.9rem;
}
.safety-list div {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.8rem;
  align-items: start;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.safety-list b {
  color: var(--maize);
}

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-heading {
  margin: 0.4rem 0 2rem;
  font-size: clamp(2.35rem, 4vw, 3.5rem);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: 600 clamp(1.25rem, 2.5vw, 1.7rem) / 1.25 var(--serif);
  cursor: pointer;
}
.faq-question::after {
  content: "+";
  font-family: var(--sans);
  color: var(--petal-dark);
}
.faq-question[aria-expanded="true"]::after {
  content: "−";
}
.faq-answer {
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
  max-width: 72ch;
}
.faq-answer p {
  margin: 0 0 0.75rem;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.js .faq-answer[hidden] {
  display: none;
}

.cta-section {
  background: var(--agave);
  color: white;
  text-align: center;
}
.cta-section h2 {
  max-width: 16ch;
  margin: 0 auto 1rem;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}
.cta-section p {
  max-width: 58ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
}
.cta-section .button-row {
  justify-content: center;
}

.page-hero {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 19rem;
  aspect-ratio: 1;
  border: 4rem solid var(--maize);
  border-radius: 50%;
  right: -6rem;
  top: -7rem;
  opacity: 0.72;
}
.page-hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(3rem, 5.2vw, 4.5rem);
  max-width: 14ch;
}
.visual-page-hero {
  padding: 0;
}
.visual-page-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
}
.visual-page-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem clamp(2rem, 5vw, 5rem) 4.5rem 0;
}
.visual-page-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--agave-deep);
}
.visual-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-visual-hero .visual-page-media img {
  object-position: 61% center;
}
.visual-page-media figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(23, 20, 18, 0.88);
  color: white;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}
.safety-hero {
  color: white;
}
.safety-hero::after {
  display: none;
}
.safety-hero .lead,
.safety-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.78);
}
.safety-hero .eyebrow {
  color: var(--maize);
}
.safety-hero .breadcrumbs a {
  color: white;
}
.safety-hero .button.alt {
  border-color: rgba(255, 255, 255, 0.62);
  color: white;
}
.safety-hero .button.alt:hover {
  background: rgba(255, 255, 255, 0.1);
}
.safety-media img {
  object-position: center 42%;
}
.content-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(2.5rem, 6vw, 6rem);
  justify-content: center;
  align-items: start;
}
.toc {
  position: sticky;
  top: 1.5rem;
  padding: 1.35rem;
  border-top: 5px solid var(--petal);
  background: var(--white);
}
.toc strong {
  display: block;
  margin-bottom: 0.8rem;
  font: 600 1.2rem/1.1 var(--serif);
}
.toc a {
  display: block;
  padding: 0.38rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
}
.toc a:hover {
  color: var(--petal-dark);
}
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--agave-deep);
  font-weight: 700;
}
.prose {
  font-size: 1.05rem;
}
.prose h2 {
  margin: 3.2rem 0 1rem;
  font: 600 clamp(2rem, 3vw, 3rem) / 1.08 var(--serif);
  letter-spacing: -0.025em;
}
.prose h3 {
  margin: 2.2rem 0 0.7rem;
  font: 600 1.65rem/1.15 var(--serif);
}
.prose p,
.prose ul,
.prose ol {
  max-width: 70ch;
}
.prose li {
  margin: 0.5rem 0;
}
.prose a {
  color: var(--agave-deep);
  font-weight: 750;
}
.callout {
  margin: 2.3rem 0;
  padding: 1.5rem;
  border-left: 0.45rem solid var(--petal);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(43, 27, 17, 0.08);
}
.callout.maize {
  border-left-color: var(--maize);
}
.callout strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.topic-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}
.topic-card h3 {
  margin-top: 0;
}
.source-note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.source-note a {
  overflow-wrap: anywhere;
}

.city-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.city-aside {
  position: sticky;
  top: 1.5rem;
  padding: 1rem;
  background: var(--cobalt);
  color: white;
  transform: rotate(1deg);
}
.city-aside img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.city-aside p {
  padding: 0.3rem 0.5rem 0;
  font-size: 0.88rem;
}
.place-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  padding: 0;
  list-style: none;
}
.place-list li {
  padding: 1rem;
  background: var(--white);
  border-top: 4px solid var(--agave);
}
.place-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
}

/* Editorial guides: each pillar gets a distinct visual thesis while sharing one reading system. */
.guide-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: white;
  background: var(--agave-deep);
}
.guide-hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: stretch;
}
.guide-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem clamp(2rem, 5vw, 5rem) 5rem 0;
}
.guide-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}
.guide-hero .breadcrumbs a {
  color: white;
}
.guide-hero h1 {
  margin: 0.6rem 0 1.2rem;
  font-size: clamp(3rem, 5vw, 4.5rem);
  max-width: 14ch;
}
.guide-hero .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}
.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.7rem;
}
.guide-meta span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.guide-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
}
.process-hero {
  background: var(--agave-deep);
}
.process-hero::before {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  min-width: 440px;
  min-height: 440px;
  right: -8vw;
  top: -12vw;
  border: 5rem solid var(--maize);
  border-radius: 50%;
  opacity: 0.95;
}
.process-stack {
  position: relative;
  width: min(88%, 480px);
  min-height: 470px;
}
.process-card {
  position: absolute;
  width: 78%;
  padding: 1.7rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}
.process-card:nth-child(1) {
  top: 7%;
  left: 0;
  transform: rotate(-4deg);
}
.process-card:nth-child(2) {
  top: 32%;
  right: 0;
  background: var(--petal-dark);
  color: white;
  transform: rotate(3deg);
}
.process-card:nth-child(3) {
  bottom: 4%;
  left: 8%;
  background: var(--maize);
  transform: rotate(-1deg);
}
.process-card b {
  display: block;
  margin-bottom: 0.65rem;
  font: 600 1.65rem/1.05 var(--serif);
}
.process-card small {
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.safety-hero {
  background: var(--ink);
}
.safety-hero .guide-hero-copy {
  padding-right: clamp(2rem, 6vw, 6rem);
}
.safety-shield {
  position: relative;
  width: min(80%, 430px);
  aspect-ratio: 0.85;
  display: grid;
  place-items: center;
  border-radius: 48% 48% 52% 52% / 38% 38% 62% 62%;
  background: var(--petal);
  box-shadow: 1.5rem 1.5rem 0 var(--maize);
}
.safety-shield::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
}
.safety-shield strong {
  position: relative;
  max-width: 7ch;
  text-align: center;
  font: 500 clamp(2.4rem, 5vw, 4.5rem) / 0.95 var(--serif);
}
.safety-orbit {
  position: absolute;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.safety-orbit.one {
  top: 14%;
  left: 0;
  transform: rotate(-4deg);
}
.safety-orbit.two {
  right: -2%;
  top: 42%;
  transform: rotate(3deg);
}
.safety-orbit.three {
  bottom: 10%;
  left: 8%;
  transform: rotate(-2deg);
}
.city-guide-hero {
  min-height: 720px;
  background: var(--cobalt);
}
.city-guide-hero .guide-hero-grid {
  min-height: 720px;
}
.city-guide-hero .guide-visual {
  overflow: hidden;
}
.city-guide-hero .guide-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.city-guide-hero .guide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 30px 0 55px rgba(23, 20, 18, 0.18);
}
.decision-card h3 {
  margin: 0 0 0.4rem;
  font: 600 1.25rem/1.12 var(--serif);
}

/* Mexico City conversion page */
.cdmx-landing-hero {
  min-height: min(680px, calc(100svh - 5rem));
  background: var(--cobalt);
  color: white;
  overflow: hidden;
}
.cdmx-landing-hero .guide-hero-grid {
  min-height: inherit;
}
.cdmx-landing-hero .guide-hero-copy {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.cdmx-landing-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.2rem;
}
.cdmx-landing-hero .breadcrumbs a {
  color: white;
}
.cdmx-landing-hero h1 {
  margin: 0.5rem 0 1rem;
  max-width: 12ch;
  font-size: clamp(3rem, 4.7vw, 4.25rem);
}
.cdmx-landing-hero .lead {
  color: rgba(255, 255, 255, 0.84);
  max-width: 52ch;
}
.cdmx-landing-hero .guide-visual {
  min-height: inherit;
  overflow: hidden;
}
.cdmx-landing-hero .guide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
}
.cdmx-landing-hero .button-row {
  margin-top: 1.8rem;
}
.lp-proof {
  background: var(--agave-deep);
  color: white;
}
.lp-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.lp-proof-item {
  padding: 1.3rem 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.lp-proof-item:last-child {
  border-right: 0;
}
.lp-proof-item h2,
.lp-proof-item h3 {
  margin: 0 0 0.25rem;
  color: var(--maize);
  font: 600 1.25rem/1.1 var(--serif);
}
.lp-proof-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}
.lp-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.lp-intro h2,
.lp-heading h2 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.25rem, 3.8vw, 3.5rem);
}
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.lp-benefit {
  padding: 1.6rem;
  border-top: 5px solid var(--petal);
  background: var(--white);
}
.lp-benefit:nth-child(2) {
  border-color: var(--maize);
}
.lp-benefit:nth-child(3) {
  border-color: var(--cobalt);
}
.lp-benefit h3 {
  margin: 0 0 0.55rem;
  font: 600 1.45rem/1.1 var(--serif);
}
.lp-roles {
  background: var(--ink);
  color: white;
}
.lp-heading {
  max-width: 820px;
  margin-bottom: 2.5rem;
}
.lp-heading .lead {
  color: inherit;
  opacity: 0.75;
}
.lp-role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.lp-role-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.lp-role-card:first-child {
  background: var(--petal-dark);
}
.lp-role-card:last-child {
  background: var(--agave-deep);
}
.lp-role-card h3 {
  margin: 0 0 1rem;
  color: var(--maize);
  font: 600 clamp(1.9rem, 3vw, 2.6rem) / 1.05 var(--serif);
}
.lp-role-image {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: center 35%;
}
.lp-role-card > div {
  padding: clamp(1.7rem, 4vw, 2.8rem) clamp(2rem, 4vw, 3rem) 1rem;
}
.lp-role-card > .text-link {
  margin: 0 clamp(2rem, 4vw, 3rem);
}
.lp-role-card ul {
  padding-left: 1.15rem;
}
.lp-role-card .text-link {
  color: white;
}
.lp-process {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.lp-process h2 {
  position: sticky;
  top: 1.5rem;
  margin: 0.35rem 0 0;
  font-size: clamp(2.35rem, 4vw, 3.6rem);
}
.lp-steps {
  border-top: 1px solid var(--line);
}
.lp-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.lp-step span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--petal-dark);
  color: white;
  font-weight: 900;
}
.lp-step h3 {
  margin: 0 0 0.4rem;
  font: 600 1.65rem/1.1 var(--serif);
}
.lp-step p {
  margin: 0;
  color: var(--muted);
}
.lp-neighborhoods {
  background: var(--paper-2);
}
.lp-neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.lp-neighborhood {
  min-height: 250px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 6px solid var(--agave);
}
.lp-neighborhood:nth-child(2) {
  border-color: var(--petal);
}
.lp-neighborhood:nth-child(3) {
  border-color: var(--maize);
}
.lp-neighborhood:nth-child(4) {
  border-color: var(--cobalt);
}
.lp-neighborhood h3 {
  margin: 0;
  font: 600 1.65rem/1.1 var(--serif);
}
.lp-neighborhood p {
  margin-bottom: 0;
  color: var(--muted);
}
.lp-safety {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.lp-safety-panel {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--petal-dark);
  color: white;
}
.lp-safety-panel h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 3.8vw, 3.4rem);
}
.lp-safety-list {
  display: grid;
  gap: 0.8rem;
}
.lp-safety-list div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.lp-safety-list h3 {
  margin: 0 0 0.3rem;
  font: 600 1.35rem/1.1 var(--serif);
}
.lp-safety-list p {
  margin: 0;
  color: var(--muted);
}

.answer-strip {
  background: var(--maize);
  border-bottom: 1px solid rgba(23, 20, 18, 0.15);
}
.answer-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 1.6rem 0;
  align-items: start;
}
.answer-grid b {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.answer-grid p {
  margin: 0;
  max-width: 76ch;
  font: 600 1.18rem/1.45 var(--serif);
}
.article-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: clamp(2.5rem, 6vw, 6rem);
  justify-content: center;
  align-items: start;
}
.article-toc {
  position: sticky;
  top: 1.5rem;
  padding: 1.4rem;
  border-top: 5px solid var(--petal);
  background: var(--white);
  box-shadow: 0 15px 45px rgba(43, 27, 17, 0.08);
}
.article-toc strong {
  display: block;
  margin-bottom: 0.9rem;
  font: 600 1.25rem/1.1 var(--serif);
}
.article-toc a {
  display: block;
  padding: 0.42rem 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 720;
  text-decoration: none;
}
.article-toc a:hover {
  color: var(--petal-dark);
}
.article-body {
  min-width: 0;
  font-size: 1.05rem;
}
.article-body > p:first-child {
  font-size: 1.22rem;
  color: var(--muted);
}
.content-chapter {
  padding: 3.5rem 0 0;
  scroll-margin-top: 1rem;
}
.content-chapter:first-of-type {
  padding-top: 0.5rem;
}
.chapter-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--petal-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.chapter-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.article-body h2 {
  margin: 0.7rem 0 1.1rem;
  font: 600 clamp(2rem, 3.2vw, 3rem) / 1.08 var(--serif);
  letter-spacing: -0.03em;
}
.article-body h3 {
  margin: 2rem 0 0.6rem;
  font: 600 1.55rem/1.15 var(--serif);
}
.article-body a {
  color: var(--agave-deep);
  font-weight: 780;
}
.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin: 1.6rem 0;
}
.decision-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}
.decision-card b {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.role-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.role-overview-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.role-overview-card.baby {
  background: var(--petal-dark);
}
.role-overview-card.daddy {
  background: var(--agave-deep);
}
.role-overview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.role-overview-card.baby img {
  object-position: 46% center;
}
.role-overview-card > div {
  align-self: end;
  padding: clamp(1.6rem, 3vw, 2.5rem);
}
.role-overview h3 {
  margin: 0 0 0.7rem;
  font: 600 clamp(1.65rem, 2.4vw, 2.25rem) / 1.05 var(--serif);
}
.role-overview-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}
.role-overview-note,
.role-overview-action {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}
.role-overview-note {
  background: var(--maize);
}
.role-overview-action {
  background: var(--white);
}
.role-overview-action .button {
  margin-top: 0.7rem;
}
.dialogue {
  margin: 1.8rem 0;
  padding: 1.6rem;
  color: white;
  background: var(--agave-deep);
  box-shadow: var(--shadow);
}
.dialogue p {
  margin: 0.55rem 0;
}
.dialogue span {
  display: inline-block;
  min-width: 4.2rem;
  color: var(--maize);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.protocol {
  margin: 1.7rem 0;
  border-top: 1px solid var(--line);
}
.protocol-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.protocol-row b {
  color: var(--petal-dark);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.protocol-row p {
  margin: 0;
}
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.7rem 0;
}
.risk-card {
  position: relative;
  padding: 1.45rem;
  color: white;
  background: var(--ink);
}
.risk-card:nth-child(2n) {
  background: var(--petal-dark);
}
.risk-card h3 {
  margin-top: 0;
  color: var(--maize);
}
.source-panel {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-left: 0.45rem solid var(--cobalt);
  background: var(--white);
  font-size: 0.9rem;
}
.source-panel p:last-child {
  margin-bottom: 0;
}

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.guide-hero .editorial-meta,
.cdmx-landing-hero .editorial-meta,
.safety-hero .editorial-meta,
.hero .editorial-meta {
  color: rgba(255, 255, 255, 0.78);
}
.editorial-meta a {
  color: inherit;
  font-weight: 780;
}
.editorial-meta span + span::before {
  content: "·";
  margin-right: 1rem;
  opacity: 0.65;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.7rem 0;
}
.principle-card {
  padding: 1.45rem;
  border-top: 5px solid var(--agave);
  background: var(--white);
}
.principle-card:nth-child(2n) {
  border-color: var(--petal-dark);
}
.principle-card h3 {
  margin-top: 0;
}
.profile-preview {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-left: 0.45rem solid var(--agave);
  background: #eef7f4;
}
.profile-preview p:last-child {
  margin-bottom: 0;
}
.field textarea {
  width: 100%;
  min-height: 7rem;
  resize: vertical;
  padding: 0.75rem 0.85rem;
  border: 1px solid #aaa099;
  border-radius: 0.35rem;
  background: white;
  font: inherit;
}
.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.7rem 0;
}
.route-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--white);
  border-top: 6px solid var(--agave);
}
.route-card:nth-child(2) {
  border-color: var(--petal);
}
.route-card:nth-child(3) {
  border-color: var(--maize);
}
.route-card:nth-child(4) {
  border-color: var(--cobalt);
}
.route-card h3 {
  margin: 0;
}
.route-card small {
  color: var(--muted);
  font-weight: 750;
}
.editorial-faq {
  margin-top: 2rem;
}
.editorial-faq section {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.editorial-faq h3 {
  margin: 0 0 0.45rem;
}
.editorial-faq p {
  margin: 0;
}

.join-panel {
  width: min(calc(100% - 2rem), 980px);
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  background: var(--white);
  box-shadow: var(--shadow);
}
.join-art {
  display: flex;
  flex-direction: column;
  padding: 2.2rem;
  background: var(--agave-deep);
  color: white;
}
.join-art-photo {
  height: 280px;
  margin: -2.2rem -2.2rem 2rem;
  overflow: hidden;
}
.join-art-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.join-art h1 {
  font-size: clamp(2.6rem, 4vw, 3.25rem);
  margin: 0.5rem 0 1rem;
}
.join-form {
  padding: clamp(2rem, 5vw, 4rem);
}
.join-form-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.choice-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.choice {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  cursor: pointer;
}
.choice:has(input:checked) {
  border-color: var(--petal);
  box-shadow: inset 0 0 0 1px var(--petal);
  background: #fff7fa;
}
.field {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0;
}
.field label {
  font-weight: 800;
}
.field input,
.field select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #aaa099;
  border-radius: 0.35rem;
  background: white;
}
.prelaunch-note {
  margin-top: 1.2rem;
  padding: 1rem;
  background: #fff4cc;
  font-size: 0.9rem;
}

.legal h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
}
.legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--ink);
  color: white;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.65fr);
  gap: 2rem;
}
.footer-brand p {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col h2,
.footer-col-title {
  display: block;
  margin: 0 0 1rem;
  font: 600 1.2rem/1 var(--serif);
  color: var(--maize);
}
.footer-col a {
  display: block;
  margin: 0.55rem 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.2rem 1rem 1.5rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav[data-open="true"] {
    display: grid;
  }
  .lang-link {
    border: 0;
    padding-left: 0;
  }
  .nav .button {
    width: 100%;
  }
  .hero {
    min-height: 680px;
  }
  .section-head,
  .intro-grid,
  .intent-grid,
  .city-feature,
  .safety-grid,
  .daddy-grid,
  .join-panel,
  .visual-page-grid,
  .content-layout,
  .guide-hero-grid,
  .article-shell,
  .lp-intro,
  .lp-process,
  .lp-safety {
    grid-template-columns: 1fr;
  }
  .visual-page-copy {
    padding: 4rem 0 2.5rem;
  }
  .visual-page-media {
    min-height: 480px;
  }
  .toc {
    position: relative;
    top: 0;
    columns: 2;
  }
  .toc strong {
    column-span: all;
  }
  .role-overview-card {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .section-head {
    gap: 1rem;
  }
  .section-head h2 {
    max-width: 14ch;
  }
  .city-feature {
    gap: 4rem;
  }
  .city-image-wrap {
    width: 100%;
    margin-left: 0;
  }
  .city-image {
    height: 560px;
  }
  .city-page-layout {
    grid-template-columns: 1fr;
  }
  .city-aside {
    position: relative;
    width: min(80%, 420px);
  }
  .guide-hero-copy {
    padding: 4rem 0 2rem;
  }
  .guide-visual {
    min-height: 520px;
  }
  .article-toc {
    position: relative;
    top: 0;
    columns: 2;
  }
  .article-toc strong {
    column-span: all;
  }
  .lp-benefits {
    grid-template-columns: 1fr;
  }
  .lp-process h2 {
    position: static;
  }
  .lp-neighborhood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.4rem), var(--max));
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .hero {
    min-height: min(660px, calc(100svh - 5rem));
    align-items: end;
  }
  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(9, 17, 15, 0.82),
      rgba(9, 17, 15, 0.2) 80%
    );
  }
  .hero-media {
    object-position: 67% center;
  }
  .hero-copy {
    padding: 2.3rem 0 1.8rem;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 9.8vw, 2.55rem);
    max-width: 100%;
  }
  .hero .lead {
    font-size: 1rem;
    line-height: 1.52;
    max-width: 34ch;
  }
  .hero .button-row {
    margin-top: 1.15rem;
    gap: 0.55rem;
  }
  .hero .button {
    min-height: 2.9rem;
    padding: 0.7rem 1rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
  .color-stack {
    min-height: 500px;
  }
  .color-panel.one {
    right: 8%;
  }
  .color-panel.two {
    left: 12%;
  }
  .steps,
  .topic-grid,
  .place-list,
  .answer-grid,
  .decision-grid,
  .risk-grid,
  .route-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .role-overview {
    grid-template-columns: 1fr;
  }
  .role-overview-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .role-overview-card img {
    height: 330px;
  }
  .visual-page-copy {
    padding-top: 3rem;
  }
  .visual-page-media {
    min-height: 390px;
  }
  .toc {
    columns: 1;
  }
  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .step:last-child {
    border-bottom: 0;
  }
  .intent-card:nth-child(2) {
    margin-left: 0;
  }
  .step h3,
  .color-panel h3,
  .article-body h3,
  .lp-step h3,
  .lp-neighborhood h3 {
    font-size: 1.45rem;
  }
  .lp-role-card h3 {
    font-size: 1.75rem;
  }
  .section {
    padding: 4rem 0;
  }
  .section-head h2,
  .intro-grid h2,
  .daddy-copy h2,
  .lp-intro h2,
  .lp-heading h2,
  .lp-safety-panel h2 {
    font-size: 2.2rem;
  }
  .intent-section h2,
  .city-copy h2,
  .safety-band h2,
  .lp-process h2,
  .article-body h2 {
    font-size: 2.3rem;
  }
  .cta-section h2 {
    font-size: 2.45rem;
  }
  .faq-heading {
    font-size: 2.2rem;
  }
  .page-hero h1,
  .legal h1,
  .join-art h1 {
    font-size: 2.55rem;
  }
  .join-form-title {
    font-size: 2rem;
  }
  .daddy-media {
    min-height: 470px;
  }
  .daddy-portrait {
    inset: 0 18% 11% 0;
    width: 82%;
    height: 89%;
  }
  .daddy-date {
    width: 62%;
    height: 150px;
    border-width: 0.45rem;
  }
  .city-image-wrap,
  .city-aside {
    width: calc(100% - 1rem);
  }
  .city-image {
    height: min(132vw, 610px);
  }
  .guide-hero,
  .guide-hero-grid {
    min-height: auto;
  }
  .guide-hero h1 {
    font-size: clamp(2.4rem, 10vw, 2.55rem);
  }
  .guide-visual {
    min-height: 440px;
  }
  .process-stack {
    min-height: 410px;
    width: 100%;
  }
  .process-hero::before {
    right: -18rem;
    top: -7rem;
    border-width: 4rem;
  }
  .process-card {
    width: 82%;
    padding: 1.25rem;
  }
  .safety-shield {
    width: 72%;
  }
  .city-guide-hero .guide-visual {
    min-height: 560px;
  }
  .answer-grid {
    gap: 0.55rem;
  }
  .article-toc {
    columns: 1;
  }
  .protocol-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .cdmx-landing-hero,
  .cdmx-landing-hero .guide-hero-grid {
    min-height: auto;
  }
  .cdmx-landing-hero h1 {
    font-size: clamp(2.4rem, 10vw, 2.55rem);
  }
  .cdmx-landing-hero .guide-visual {
    min-height: 540px;
  }
  .lp-proof-grid,
  .lp-role-grid,
  .lp-neighborhood-grid {
    grid-template-columns: 1fr;
  }
  .lp-proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .lp-role-card {
    min-height: 360px;
  }
  .lp-role-image {
    height: 260px;
  }
  .join-art-photo {
    height: 330px;
  }
  .page-hero::after {
    width: 11rem;
    border-width: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: grid;
  }
  .editorial-meta {
    display: grid;
    gap: 0.35rem;
  }
  .editorial-meta span + span::before {
    content: none;
  }
}

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