:root {
  --navy: #1b1114;
  --navy-2: #2a151a;
  --ink: #24191a;
  --graphite: #3a302c;
  --wine: #7f0718;
  --wine-dark: #5d0613;
  --gold: #c99a33;
  --gold-soft: #ead19a;
  --ivory: #f8f2e8;
  --paper: #fffdf8;
  --sage: #7a6f52;
  --muted: #6c737c;
  --line: rgba(28, 32, 37, 0.14);
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(16, 24, 32, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(43, 19, 24, 0.78);
  border-bottom: 1px solid rgba(201, 154, 51, 0.26);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(43, 19, 24, 0.96);
  box-shadow: 0 14px 44px rgba(36, 25, 26, 0.24);
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: cover;
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--navy);
  background: var(--gold);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--wine);
}

.site-nav .nav-whatsapp {
  color: var(--gold-soft);
  border: 1px solid rgba(201, 154, 51, 0.34);
}

.site-nav .nav-whatsapp:hover,
.site-nav .nav-whatsapp:focus-visible {
  color: var(--navy);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 118px clamp(18px, 4vw, 56px) 84px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("assets/hero-precatorios.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 30%, rgba(127, 7, 24, 0.44), rgba(127, 7, 24, 0) 28%),
    linear-gradient(90deg, rgba(27, 17, 20, 0.95) 0%, rgba(43, 19, 24, 0.8) 42%, rgba(27, 17, 20, 0.34) 100%),
    linear-gradient(0deg, rgba(27, 17, 20, 0.92) 0%, rgba(27, 17, 20, 0) 48%);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-seal {
  width: clamp(118px, 14vw, 190px);
  height: clamp(118px, 14vw, 190px);
  margin-bottom: 22px;
  object-fit: cover;
  background: var(--paper);
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wine);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5.2vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 740px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease, color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  border-color: rgba(201, 154, 51, 0.22);
  box-shadow: 0 18px 42px rgba(127, 7, 24, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--wine-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
}

.button.secondary.light {
  color: var(--paper);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 51, 0.24);
  border-radius: var(--radius);
  background: rgba(201, 154, 51, 0.22);
}

.trust-strip div {
  min-width: 0;
  padding: 16px;
  background: rgba(43, 19, 24, 0.68);
}

.trust-strip dt {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.section {
  padding: clamp(70px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 80px);
  align-items: start;
}

.lead-block p,
.copy-panel p,
.documents p,
.faq-intro p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.soft-band {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.light h2 {
  color: var(--white);
}

.route-section {
  background:
    linear-gradient(180deg, rgba(201, 154, 51, 0.09), rgba(201, 154, 51, 0)),
    var(--paper);
}

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

.route-card {
  display: block;
  min-height: 250px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(201, 154, 51, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(36, 25, 26, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border 160ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(36, 25, 26, 0.12);
}

.route-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.route-card p {
  margin: 0;
  color: var(--muted);
}

.visual-split {
  background: var(--paper);
}

.corporate-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(127, 7, 24, 0.26), rgba(201, 154, 51, 0.1)),
    var(--navy);
}

.corporate-band h2,
.corporate-band h3 {
  color: var(--white);
}

.corporate-band p {
  color: rgba(255, 255, 255, 0.76);
}

.article-stack {
  display: grid;
  gap: 14px;
}

.article-stack article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(234, 209, 154, 0.2);
  border-radius: var(--radius);
}

.article-stack p {
  margin: 0;
}

.media-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(201, 154, 51, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(36, 25, 26, 0.14);
}

.media-frame img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.partner-art {
  align-self: start;
}

.partner-art img {
  max-height: 820px;
}

.dark-frame {
  border-color: rgba(201, 154, 51, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

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

.mini-grid div {
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(201, 154, 51, 0.22);
  border-radius: var(--radius);
}

.mini-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.light-copy h2,
.light-copy h3 {
  color: var(--white);
}

.light-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.gold-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.gold-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.gold-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 268px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(16, 24, 32, 0.06);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.info-card p,
.benefit-item p,
.timeline p,
.glossary-grid p,
.faq-list p,
.form-note,
.site-footer p {
  color: var(--muted);
}

.section-note {
  max-width: 860px;
  margin: 24px 0 0;
  padding: 20px 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.copy-panel {
  max-width: 680px;
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-list.compact {
  gap: 10px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-item:first-child {
  border-top: 1px solid var(--line);
}

.benefit-item > span {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(111, 127, 102, 0.16);
}

.process-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(127, 7, 24, 0.34), rgba(201, 154, 51, 0.16)),
    var(--navy);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.timeline article {
  min-height: 300px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.timeline h3 {
  color: var(--white);
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline.clean {
  border-color: var(--line);
  background: var(--line);
}

.timeline.clean article {
  background: var(--white);
}

.timeline.clean h3 {
  color: var(--ink);
}

.timeline.clean p {
  color: var(--muted);
}

.documents {
  background: var(--paper);
}

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

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

.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list.slim li {
  background: rgba(255, 255, 255, 0.72);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 18px;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--wine);
  border-left: 2px solid var(--wine);
  transform: rotate(-45deg);
}

.glossary-band {
  background: var(--ivory);
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.glossary-grid div {
  min-height: 220px;
  padding: 24px;
  background: var(--paper);
}

.strategy-note {
  margin-top: 24px;
  padding: 24px;
  color: var(--white);
  background: #10090b;
  border: 1px solid rgba(201, 154, 51, 0.3);
  border-radius: var(--radius);
}

.strategy-note h3 {
  margin-top: 0;
  color: var(--gold);
}

.strategy-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.strategy-note.compact {
  margin-top: 28px;
  padding: 22px;
  background: rgba(16, 9, 11, 0.72);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(32px, 6vw, 74px);
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--wine);
  font-size: 1.2rem;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.location-section {
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: stretch;
}

address {
  margin: 0 0 16px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
  line-height: 1.55;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(201, 154, 51, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(36, 25, 26, 0.12);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.button.secondary.map-button {
  color: var(--wine);
  border-color: rgba(127, 7, 24, 0.26);
  background: rgba(127, 7, 24, 0.05);
}

.button.secondary.map-button:hover,
.button.secondary.map-button:focus-visible {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.location-section .contact-actions {
  margin-top: 22px;
}

.location-section .copy-panel p {
  color: var(--muted);
}

.contact-band {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(201, 154, 51, 0.18), rgba(201, 154, 51, 0) 30%),
    linear-gradient(135deg, rgba(127, 7, 24, 0.3), rgba(122, 111, 82, 0.12)),
    var(--navy-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form .full,
.full-button,
.form-note {
  grid-column: 1 / -1;
}

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

.form-actions .button {
  flex: 1 1 210px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
}

.contact-form input[type="file"] {
  min-height: auto;
  padding: 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(234, 209, 154, 0.54);
}

.file-field span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(208, 168, 90, 0.2);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.site-footer {
  padding: 36px clamp(18px, 4vw, 56px) 96px;
  color: rgba(255, 255, 255, 0.76);
  background: #160b0e;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr) auto;
  gap: 24px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--gold);
}

.footer-links {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.footer-links span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #160b0e;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: #1f9d55;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 18px 22px;
    background: rgba(43, 19, 24, 0.98);
    border-bottom: 1px solid rgba(201, 154, 51, 0.22);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    margin: 0;
    padding: 14px 10px;
    border-radius: 6px;
  }

  .hero {
    min-height: 76svh;
  }

  .trust-strip,
  .route-grid,
  .card-grid.three,
  .card-grid.four,
  .timeline,
  .glossary-grid,
  .check-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .split-panel,
  .faq-layout,
  .contact-layout,
  .location-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .media-frame img {
    max-height: 560px;
  }

  .partner-art img {
    max-height: 760px;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero-seal {
    width: 108px;
    height: 108px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .site-nav {
    inset: 70px 0 auto;
  }

  .hero {
    min-height: 74svh;
    padding: 106px 18px 32px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(27, 17, 20, 0.96) 0%, rgba(43, 19, 24, 0.86) 58%, rgba(27, 17, 20, 0.6) 100%),
      linear-gradient(0deg, rgba(27, 17, 20, 0.96) 0%, rgba(27, 17, 20, 0) 46%);
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .route-grid,
  .card-grid.three,
  .card-grid.four,
  .timeline,
  .glossary-grid,
  .check-columns,
  .mini-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 28px;
  }

  .timeline article,
  .info-card,
  .route-card,
  .glossary-grid div {
    min-height: auto;
  }

  .media-frame img {
    max-height: none;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 18px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .section {
    padding-block: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
