:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #596864;
  --paper: #f7f6f1;
  --panel: #ffffff;
  --line: rgba(23, 33, 31, 0.14);
  --green: #173d35;
  --green-soft: #e8f0ec;
  --blue: #173b4f;
  --blue-soft: #e6eef2;
  --accent: #9f6a3a;
  --gold: #b88a42;
  --shadow: 0 18px 46px rgba(22, 35, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  box-shadow: 0 16px 38px rgba(28, 40, 36, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.74;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0.88;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible {
  background: var(--green-soft);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
}

.header-action {
  color: var(--ink);
  background: #ffffff;
}

.site-header.is-scrolled .header-action {
  color: #ffffff;
  background: var(--green);
}

.button svg,
.header-action svg,
.service-card svg,
.citizenship-grid svg,
.site-footer svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button.primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(23, 59, 79, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.7);
}

.request-form .button.secondary {
  background: var(--green-soft);
  border-color: transparent;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  min-height: 92svh;
  padding: 120px clamp(18px, 4vw, 56px) 42px;
  color: #ffffff;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    image-set(
      url("https://commons.wikimedia.org/wiki/Special:FilePath/Asunci%C3%B3n%20the%20capital%20city%20of%20Paraguay.jpg") 1x
    )
    center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 32, 28, 0.9), rgba(12, 32, 28, 0.54) 48%, rgba(12, 32, 28, 0.28)),
    linear-gradient(0deg, rgba(12, 32, 28, 0.88), rgba(12, 32, 28, 0) 44%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 880px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 98px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  display: grid;
  gap: 12px;
}

.hero-panel div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  color: var(--gold);
  font-weight: 850;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 18px;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.paraguay-edge {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(23, 61, 53, 0.96), rgba(23, 59, 79, 0.94)),
    var(--green);
  color: #ffffff;
}

.edge-copy {
  align-self: start;
  position: sticky;
  top: 104px;
}

.edge-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
}

.edge-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.62;
}

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

.edge-card {
  min-height: 246px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.edge-card.featured {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.edge-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 18px;
  color: var(--gold);
}

.edge-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.edge-card h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
}

.edge-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 4vw, 56px);
  padding: clamp(38px, 6vw, 78px) clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.intro-copy h2,
.section-heading h2,
.path-content h2,
.request-copy h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

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

.intro-metrics div {
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: var(--green-soft);
}

.intro-metrics strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.intro-metrics span {
  color: var(--muted);
  line-height: 1.45;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.about-lead h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.03;
}

.about-lead p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.about-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

.about-facts span {
  color: var(--muted);
  line-height: 1.35;
}

.about-body {
  display: grid;
  gap: 16px;
  align-self: start;
}

.about-statement {
  padding: clamp(22px, 3vw, 34px);
  color: #ffffff;
  border-radius: 6px;
  background: var(--blue);
}

.about-statement strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.about-statement p {
  margin: 0;
  font-size: 19px;
  line-height: 1.62;
}

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

.about-pillars article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.about-pillars svg {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: var(--blue);
}

.about-pillars h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.about-pillars p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.section,
.trust-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

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

.section-heading.compact {
  max-width: 780px;
}

.section-heading p,
.request-copy p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.filter-button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
}

.filter-button.active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.trust-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.trust-grid svg {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: var(--blue);
}

.trust-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(28, 40, 36, 0.05);
}

.service-card.is-hidden {
  display: none;
}

.service-card svg {
  margin-bottom: 18px;
  color: var(--blue);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  min-height: 680px;
  background: var(--green);
  color: #ffffff;
}

.visual-panel {
  min-height: 420px;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-content {
  align-self: center;
  padding: clamp(38px, 7vw, 92px);
}

.path-content h2 {
  max-width: 760px;
}

.timeline {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  min-height: 92px;
  padding: 4px 0 0 82px;
  counter-increment: step;
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: var(--gold);
  font-weight: 850;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.timeline span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.citizenship {
  background:
    linear-gradient(180deg, rgba(229, 240, 235, 0.9), rgba(251, 250, 247, 1));
}

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

.citizenship-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
}

.citizenship-grid svg {
  margin-bottom: 18px;
  color: var(--blue);
}

.citizenship-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.destination-strip figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
}

.destination-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.destination-strip figure:hover img {
  transform: scale(1.04);
}

.destination-strip figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  color: #ffffff;
  border-radius: 6px;
  background: rgba(18, 61, 52, 0.82);
  backdrop-filter: blur(10px);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.form-row.single-field {
  grid-template-columns: 1fr;
}

label,
fieldset {
  min-width: 0;
}

label span,
legend {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
}

select,
input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 116px;
  padding: 14px;
  line-height: 1.5;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-grid legend {
  grid-column: 1 / -1;
}

.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 52px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  line-height: 1.25;
}

.checkbox-grid input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.consent-line input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--blue);
}

.consent-line span {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.text-button {
  display: inline;
  padding: 0;
  color: var(--blue);
  border: 0;
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 22, 0.62);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-heading {
  max-width: 660px;
  margin-bottom: 24px;
}

.modal-heading h2 {
  margin-bottom: 10px;
  padding-right: 48px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.modal-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.application-form {
  display: grid;
  gap: 16px;
}

.application-form.is-hidden {
  display: none;
}

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

.application-form .button {
  justify-self: start;
}

.application-form .button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 750;
}

.form-status:not(:empty) {
  padding: 14px 16px;
  border: 1px solid rgba(23, 61, 53, 0.18);
  border-radius: 6px;
  background: var(--green-soft);
  line-height: 1.45;
}

.form-status.is-error {
  color: #9b1c1c;
  border-color: rgba(155, 28, 28, 0.24);
  background: #fff2f2;
}

.success-panel {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(23, 61, 53, 0.18);
  border-radius: 6px;
  background: var(--green-soft);
}

.success-panel[hidden] {
  display: none;
}

.success-panel > svg {
  width: 48px;
  height: 48px;
  color: var(--green);
}

.success-panel h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.success-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}

.text-modal {
  width: min(980px, 100%);
}

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

.text-modal-grid article,
.policy-list section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.text-modal-grid strong,
.policy-list h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.text-modal-grid p,
.policy-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.modal-note {
  margin: 18px 0 0;
  padding: 18px;
  color: var(--ink);
  border-left: 4px solid var(--gold);
  background: var(--green-soft);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: var(--green);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links button {
  min-height: 42px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
  outline: none;
}

.site-footer a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 920px) {
  .site-header {
    color: var(--ink);
    background: rgba(251, 250, 247, 0.94);
    backdrop-filter: blur(18px);
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .main-nav {
    display: none;
  }

  .header-action {
    color: #ffffff;
    background: var(--green);
  }

  .header-action span {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
  }

  .hero-panel {
    margin-top: 38px;
  }

  .intro-band,
  .about-section,
  .paraguay-edge,
  .trust-grid,
  .request-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .edge-copy {
    position: static;
  }

  .intro-metrics,
  .edge-grid,
  .about-facts,
  .text-modal-grid,
  .citizenship-grid,
  .destination-strip {
    grid-template-columns: 1fr;
  }

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

  .visual-panel {
    min-height: 320px;
  }

  .destination-strip figure {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 44px;
    height: 38px;
  }

  .hero {
    padding: 98px 16px 30px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 58px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .button,
  .header-action {
    width: 100%;
  }

  .header-action {
    width: 44px;
    padding: 0;
  }

  .intro-band,
  .section,
  .trust-section,
  .about-section,
  .paraguay-edge,
  .path-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .intro-metrics,
  .service-grid,
  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .timeline li {
    padding-left: 0;
    padding-top: 72px;
  }

  .modal {
    padding: 10px;
  }

  .modal-dialog {
    max-height: 94vh;
  }

  .application-form .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
