@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy-950: #04171d;
  --navy-900: #09222a;
  --navy-850: #0d2a33;
  --navy-800: #153641;
  --gold-700: #8f6535;
  --gold-500: #d1a666;
  --gold-400: #f6c478;
  --gold-300: #dabc86;
  --ivory: #f8f4ec;
  --paper: #fffdf8;
  --ink: #10272e;
  --muted: #5d6d71;
  --line: rgba(9, 34, 42, 0.13);
  --line-dark: rgba(246, 196, 120, 0.2);
  --success: #176b55;
  --danger: #9d3f3f;
  --shadow-sm: 0 10px 34px rgba(4, 23, 29, 0.08);
  --shadow-md: 0 24px 70px rgba(4, 23, 29, 0.14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 88px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-weight: 670;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.65rem);
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--gold-400);
  color: var(--navy-950);
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-sm {
  padding: clamp(52px, 7vw, 82px) 0;
}

.section-ivory {
  background: var(--ivory);
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(246, 196, 120, 0.09), transparent 25%),
    radial-gradient(circle at 88% 84%, rgba(21, 54, 65, 0.9), transparent 34%),
    var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.05rem;
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.section-dark .section-kicker,
.section-dark .eyebrow {
  color: var(--gold-400);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 3.2rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

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

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.gold-text {
  background: linear-gradient(112deg, var(--gold-700), var(--gold-400) 48%, var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(4, 23, 29, 0.91);
  backdrop-filter: blur(18px) saturate(125%);
  transition: box-shadow 280ms var(--ease), border-color 280ms var(--ease), background 280ms var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(246, 196, 120, 0.17);
  background: rgba(4, 23, 29, 0.97);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(220px, 18vw, 260px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1000 / 210;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.nav-link,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.72rem 0.78rem;
  font-size: 0.79rem;
  font-weight: 620;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 220ms var(--ease), background 220ms var(--ease);
}

.nav-link::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.52rem;
  left: 0.8rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold-400);
  content: "";
  transition: transform 280ms var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"],
.nav-trigger.is-current,
.nav-trigger:hover,
.nav-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 220ms var(--ease);
}

.nav-dropdown:hover .nav-trigger svg,
.nav-dropdown:focus-within .nav-trigger svg,
.nav-dropdown.is-open .nav-trigger svg {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: min(630px, 78vw);
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  transform: translate(-50%, 8px);
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(246, 196, 120, 0.18);
  border-radius: 18px;
  background: rgba(6, 27, 33, 0.985);
  box-shadow: var(--shadow-md);
  padding: 0.75rem;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
}

.nav-overlay {
  display: none;
}

.nav-dropdown-end .dropdown-panel {
  right: 0;
  left: auto;
  transform: translateY(8px);
}

.nav-dropdown-end:hover .dropdown-panel,
.nav-dropdown-end:focus-within .dropdown-panel,
.nav-dropdown-end.is-open .dropdown-panel {
  transform: translateY(0);
}

.dropdown-panel-compact {
  width: min(380px, 78vw);
  grid-template-columns: 1fr;
}

.dropdown-link {
  display: block;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  text-decoration: none;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
  transform: translateX(3px);
  background: rgba(246, 196, 120, 0.08);
}

.dropdown-link strong,
.dropdown-link span {
  display: block;
}

.dropdown-link strong {
  color: #fff;
  font-size: 0.82rem;
}

.dropdown-link span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
}

.nav-actions .button {
  white-space: nowrap;
}

.nav-toggle {
  position: relative;
  z-index: 1003;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(246, 196, 120, 0.24);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 240ms var(--ease), opacity 180ms;
}

.nav-toggle span {
  margin: 4px 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-5px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.84rem 1.28rem;
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.button::before {
  position: absolute;
  top: -100%;
  left: -60%;
  width: 35%;
  height: 300%;
  transform: rotate(25deg);
  background: rgba(255, 255, 255, 0.35);
  content: "";
  transition: left 520ms var(--ease);
}

.button:hover::before,
.button:focus-visible::before {
  left: 135%;
}

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

.button-gold {
  background: linear-gradient(120deg, var(--gold-700), var(--gold-400) 55%, var(--gold-300));
  box-shadow: 0 12px 28px rgba(143, 101, 53, 0.25);
  color: var(--navy-950);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 18px 38px rgba(143, 101, 53, 0.35);
}

.button-outline {
  border-color: rgba(246, 196, 120, 0.38);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--gold-400);
  background: rgba(246, 196, 120, 0.07);
}

.button-dark {
  background: var(--navy-900);
  color: #fff;
}

.button-dark:hover,
.button-dark:focus-visible {
  box-shadow: 0 15px 35px rgba(4, 23, 29, 0.2);
}

.button-small {
  min-height: 42px;
  padding: 0.64rem 1rem;
  font-size: 0.74rem;
}

.icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  background:
    radial-gradient(circle at 72% 18%, rgba(246, 196, 120, 0.1), transparent 26%),
    radial-gradient(circle at 15% 82%, rgba(21, 54, 65, 0.8), transparent 32%),
    linear-gradient(145deg, #04171d, #09222a 62%, #061b21);
  color: #fff;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(246, 196, 120, 0.12);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -34vw;
  right: -20vw;
  width: 72vw;
  height: 72vw;
}

.hero::after {
  right: -6vw;
  bottom: -27vw;
  width: 52vw;
  height: 52vw;
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  padding: clamp(64px, 9vw, 118px) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  color: #fff;
  font-weight: 610;
}

.hero h1 strong {
  font-weight: 760;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.74rem;
}

.hero-note svg {
  color: var(--gold-400);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 10% -8% -10% 12%;
  filter: blur(34px);
  border-radius: 40%;
  background: rgba(246, 196, 120, 0.12);
  content: "";
}

.logo-stage {
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  border: 1px solid rgba(246, 196, 120, 0.22);
  border-radius: var(--radius-lg);
  background: #082128;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 500ms var(--ease);
}

.logo-stage:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-4px);
}

.logo-stage img {
  width: 100%;
  aspect-ratio: 1.777 / 1;
  object-fit: cover;
}

.status-chip {
  position: absolute;
  right: -12px;
  bottom: -18px;
  max-width: 270px;
  border: 1px solid rgba(246, 196, 120, 0.3);
  border-radius: 16px;
  background: rgba(4, 23, 29, 0.96);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.1rem;
  color: #fff;
}

.status-chip span,
.status-chip strong {
  display: block;
}

.status-chip span {
  margin-bottom: 0.2rem;
  color: var(--gold-400);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-chip strong {
  font-size: 0.83rem;
  line-height: 1.45;
}

.trust-strip {
  border-top: 1px solid rgba(246, 196, 120, 0.12);
  border-bottom: 1px solid rgba(246, 196, 120, 0.12);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 0.9rem;
  border-right: 1px solid rgba(246, 196, 120, 0.1);
  padding: 1.2rem 1.4rem;
}

.trust-item:first-child {
  border-left: 1px solid rgba(246, 196, 120, 0.1);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(246, 196, 120, 0.28);
  border-radius: 50%;
  color: var(--gold-400);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: #fff;
  font-size: 0.82rem;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  line-height: 1.45;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}

.card::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-400));
  content: "";
  transition: transform 350ms var(--ease);
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(143, 101, 53, 0.32);
  box-shadow: var(--shadow-md);
}

.card:hover::after,
.card:focus-within::after {
  transform: scaleX(1);
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.35rem;
  place-items: center;
  border: 1px solid rgba(143, 101, 53, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(246, 196, 120, 0.15), rgba(143, 101, 53, 0.04));
  color: var(--gold-700);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 740;
  text-decoration: none;
}

.card-link span {
  transition: transform 180ms var(--ease);
}

.card-link:hover span,
.card-link:focus-visible span {
  transform: translateX(4px);
}

.dark-card {
  border-color: rgba(246, 196, 120, 0.13);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.dark-card h3 {
  color: #fff;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.58);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.split-copy > p {
  color: var(--muted);
}

.feature-list,
.check-list,
.plain-list {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  margin: 0.85rem 0;
  padding-left: 2rem;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.32rem;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(209, 166, 102, 0.18);
  color: var(--gold-700);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 800;
}

.info-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 120, 0.17);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(246, 196, 120, 0.13), transparent 28%),
    var(--navy-900);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 5vw, 3.4rem);
  color: rgba(255, 255, 255, 0.7);
}

.info-panel h2,
.info-panel h3 {
  color: #fff;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.metric {
  min-height: 116px;
  border: 1px solid rgba(246, 196, 120, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  padding: 1.15rem;
}

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

.metric strong {
  margin-bottom: 0.3rem;
  color: var(--gold-400);
  font-size: 1.3rem;
  line-height: 1.2;
}

.metric span {
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.72rem;
  line-height: 1.45;
}

.property-layout,
.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.editorial-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 460px;
  margin: 0;
  border: 1px solid rgba(143, 101, 53, 0.2);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.editorial-card::after {
  position: absolute;
  z-index: 0;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 19, 25, 0.88));
  content: "";
  pointer-events: none;
}

.editorial-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.editorial-card:hover img {
  transform: scale(1.025);
}

.editorial-card figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  color: rgba(255, 255, 255, 0.78);
}

.editorial-card figcaption span,
.editorial-card figcaption strong {
  display: block;
}

.editorial-card figcaption span {
  margin-bottom: 0.35rem;
  color: var(--gold-300);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.editorial-card figcaption strong {
  max-width: 540px;
  color: #fff;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.5;
}

.property-photo,
.property-panel {
  min-height: 620px;
}

.property-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.property-panel .section-kicker {
  justify-content: center;
}

.property-panel h2 {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.property-panel > p {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.property-panel .metric-grid {
  width: 100%;
}

.property-panel .metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #fff, var(--ivory));
  box-shadow: var(--shadow-sm);
  padding: clamp(1.8rem, 5vw, 3.6rem);
}

.decision-panel h2 {
  margin-bottom: 1rem;
}

.decision-panel p {
  color: var(--muted);
}

.decision-panel .button {
  margin-top: 1.5rem;
}

.decision-panel .feature-list {
  margin-top: 0;
}

.visual-stack {
  display: grid;
  gap: 1rem;
}

.editorial-card-compact {
  min-height: 290px;
}

.visual-info-panel {
  padding: 0;
}

.info-panel-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

.info-panel-body {
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.prose-visual,
.sidebar-visual,
.contact-visual,
.local-visual {
  overflow: hidden;
  margin: 2rem 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.prose-visual img,
.sidebar-visual img,
.contact-visual img,
.local-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.prose-visual figcaption,
.sidebar-visual figcaption,
.local-visual figcaption {
  padding: 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.sidebar-visual {
  margin: 0 0 1rem;
}

.sidebar-visual img {
  aspect-ratio: 4 / 3;
}

.contact-visual {
  margin: 1.4rem 0 1.7rem;
}

.contact-visual img {
  aspect-ratio: 16 / 10;
}

.local-visual {
  margin-bottom: 0;
}

.local-visual img {
  aspect-ratio: 16 / 8;
}

.guide-intro-section {
  padding-bottom: 0;
}

.guide-intro {
  align-items: center;
}

.guide-intro-copy {
  padding: clamp(0.2rem, 2vw, 2rem);
}

.guide-intro-copy p {
  margin-bottom: 1.7rem;
  color: var(--muted);
}

.process {
  position: relative;
  counter-reset: steps;
}

.process::before {
  position: absolute;
  top: 36px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 196, 120, 0.45), transparent);
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-step {
  position: relative;
  counter-increment: steps;
  text-align: center;
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  place-items: center;
  border: 1px solid rgba(246, 196, 120, 0.36);
  border-radius: 50%;
  background: var(--navy-950);
  box-shadow: 0 0 0 9px rgba(246, 196, 120, 0.03);
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.answer-box {
  margin: 2rem 0;
  border: 1px solid rgba(143, 101, 53, 0.24);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(120deg, rgba(246, 196, 120, 0.12), rgba(246, 196, 120, 0.03));
  padding: 1.35rem 1.5rem;
}

.answer-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}

.answer-box p {
  color: #42575d;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 120, 0.19);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(246, 196, 120, 0.13), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 6vw, 4.6rem);
  color: rgba(255, 255, 255, 0.7);
}

.cta-band::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -70%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(246, 196, 120, 0.16);
  border-radius: 50%;
  content: "";
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-band p {
  max-width: 680px;
}

.cta-band .hero-actions {
  margin-top: 1.6rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 196, 120, 0.13);
  background:
    radial-gradient(circle at 84% 12%, rgba(246, 196, 120, 0.1), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
  padding: clamp(68px, 9vw, 116px) 0 clamp(62px, 8vw, 98px);
  color: #fff;
}

.page-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -30vw;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(246, 196, 120, 0.13);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  list-style: none;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--gold-400);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 4.7rem);
}

.page-hero .lead {
  max-width: 790px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 5rem);
}

.prose {
  color: #344a50;
}

.prose > * + * {
  margin-top: 1.2rem;
}

.prose h2 {
  margin-top: 3.6rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 2.4rem;
  margin-bottom: 0.75rem;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.prose li {
  margin: 0.5rem 0;
}

.prose a:not(.button) {
  color: var(--gold-700);
  font-weight: 620;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
  font-size: 0.84rem;
}

.prose th,
.prose td {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--ivory);
  color: var(--navy-900);
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-card {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
  font-size: 0.76rem;
}

.sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-card li + li {
  border-top: 1px solid var(--line);
}

.sidebar-card a:not(.button) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.62rem 0;
  color: var(--navy-800);
  font-weight: 620;
  text-decoration: none;
}

.sidebar-card a:not(.button)::after {
  color: var(--gold-700);
  content: "→";
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(4, 23, 29, 0.04);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 680;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(143, 101, 53, 0.24);
  border-radius: 50%;
  color: var(--gold-700);
  content: "+";
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.city-search {
  display: flex;
  max-width: 680px;
  gap: 0.65rem;
  margin-bottom: 2.2rem;
}

.city-search input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 1.2rem;
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms, box-shadow 180ms;
}

.city-search input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(209, 166, 102, 0.14);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.city-link {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(4, 23, 29, 0.04);
  padding: 1rem;
  text-decoration: none;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.city-link:hover,
.city-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(143, 101, 53, 0.38);
  box-shadow: var(--shadow-sm);
}

.city-link strong,
.city-link span {
  display: block;
}

.city-link strong {
  color: var(--navy-900);
  font-size: 0.88rem;
}

.city-link span {
  color: var(--muted);
  font-size: 0.68rem;
}

.city-link b {
  color: var(--gold-700);
}

.city-link[hidden] {
  display: none;
}

.form-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.form-intro {
  background:
    radial-gradient(circle at 90% 0%, rgba(246, 196, 120, 0.1), transparent 34%),
    var(--navy-900);
  padding: clamp(1.7rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.66);
}

.form-intro h2,
.form-intro h3 {
  color: #fff;
}

.assessment-form {
  padding: clamp(1.4rem, 4vw, 3rem);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.progress-step {
  height: 4px;
  border-radius: 99px;
  background: #e8e4dc;
  transition: background 240ms;
}

.progress-step.is-active,
.progress-step.is-complete {
  background: linear-gradient(90deg, var(--gold-700), var(--gold-400));
}

.form-step h2,
.form-step h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
}

.form-step > p {
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: 0.86rem;
}

html.js .form-step[hidden] {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 660;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d9ddd9;
  border-radius: 11px;
  background: #fff;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms, box-shadow 180ms;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(209, 166, 102, 0.14);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice label {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #d9ddd9;
  border-radius: 13px;
  padding: 0.9rem;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 640;
  cursor: pointer;
  transition: border-color 180ms, background 180ms, transform 180ms;
}

.choice label::before {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid #bcc3c0;
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 4px #fff;
}

.choice input:checked + label {
  transform: translateY(-2px);
  border-color: var(--gold-500);
  background: rgba(246, 196, 120, 0.1);
}

.choice input:checked + label::before {
  border-color: var(--gold-700);
  background: var(--gold-500);
}

.choice input:focus-visible + label {
  outline: 3px solid rgba(209, 166, 102, 0.25);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.consent input {
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.68rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.2rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 0.8rem;
  padding: 1rem 0;
}

.contact-row + .contact-row {
  border-top: 1px solid var(--line);
}

.contact-row .trust-icon {
  border-color: rgba(143, 101, 53, 0.2);
  color: var(--gold-700);
}

.contact-row strong,
.contact-row span,
.contact-row a {
  display: block;
}

.contact-row strong {
  color: var(--navy-900);
  font-size: 0.78rem;
}

.contact-row span,
.contact-row a {
  color: var(--muted);
  font-size: 0.77rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #167b5a;
  box-shadow: 0 16px 42px rgba(4, 23, 29, 0.3);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(4, 23, 29, 0.36);
}

.whatsapp-float svg {
  width: 23px;
  height: 23px;
}

.mobile-bottom-nav {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(246, 196, 120, 0.12);
  background: #031319;
  color: rgba(255, 255, 255, 0.57);
  padding: 72px 0 110px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-brand img {
  display: block;
  width: min(100%, 360px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1000 / 210;
  margin: 0 0 1.35rem;
  object-fit: contain;
}

.footer-brand p {
  max-width: 390px;
  font-size: 0.78rem;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin: 0.5rem 0;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  text-decoration: none;
  transition: color 180ms;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.4rem;
  font-size: 0.66rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.legal-notice {
  margin-top: 1.5rem;
  border-left: 2px solid rgba(246, 196, 120, 0.35);
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
}

.reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }

.sr-only {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.no-results {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 1.4rem;
  color: var(--muted);
  text-align: center;
}

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

  .primary-nav {
    position: fixed;
    z-index: 1002;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    display: flex;
    width: min(91vw, 420px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    visibility: hidden;
    opacity: 0;
    border-top: 1px solid rgba(246, 196, 120, 0.16);
    border-left: 1px solid rgba(246, 196, 120, 0.16);
    background:
      radial-gradient(circle at 100% 0, rgba(246, 196, 120, 0.09), transparent 28%),
      rgba(4, 23, 29, 0.992);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.34);
    padding: 1.1rem 1.35rem max(7rem, calc(1.5rem + env(safe-area-inset-bottom)));
    pointer-events: none;
    transition: transform 300ms var(--ease), opacity 240ms var(--ease), visibility 300ms;
  }

  .primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-overlay {
    position: fixed;
    z-index: 1001;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    border: 0;
    background: rgba(1, 10, 13, 0.58);
    backdrop-filter: blur(4px);
    cursor: pointer;
    pointer-events: none;
    transition: opacity 240ms var(--ease), visibility 240ms;
  }

  .nav-overlay.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav .nav-link,
  .primary-nav .nav-trigger {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    padding: 0.94rem 0.25rem;
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.92rem;
    text-align: left;
  }

  .primary-nav .nav-link::after {
    right: auto;
    bottom: 0.62rem;
    left: 0.25rem;
    width: 34px;
  }

  .primary-nav .nav-dropdown {
    width: 100%;
  }

  .primary-nav .nav-dropdown .nav-trigger svg {
    transform: none;
  }

  .primary-nav .nav-dropdown .dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    transform: none;
    visibility: visible;
    opacity: 1;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0.5rem 0 0.75rem;
  }

  .primary-nav .nav-dropdown.is-open .dropdown-panel {
    display: grid;
  }

  .primary-nav .nav-dropdown.is-open .nav-trigger svg {
    transform: rotate(180deg);
  }

  .primary-nav .dropdown-link {
    border: 1px solid rgba(246, 196, 120, 0.1);
    background: rgba(255, 255, 255, 0.025);
  }

  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 2.5rem;
  }

  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  body {
    padding-bottom: 70px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand img {
    width: 210px;
    height: auto;
  }

  .nav-shell {
    min-height: var(--header-height);
  }

  .nav-actions .button {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 64px 0 82px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-visual {
    width: min(100%, 620px);
  }

  .status-chip {
    right: 10px;
    bottom: -28px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(246, 196, 120, 0.1);
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .content-layout,
  .contact-grid,
  .property-layout,
  .guide-intro,
  .decision-panel {
    grid-template-columns: 1fr;
  }

  .property-photo {
    min-height: 430px;
  }

  .property-panel {
    min-height: auto;
  }

  .decision-panel {
    gap: 1.2rem;
  }

  .guide-intro-copy {
    padding: 1rem 0 0;
  }

  .sidebar {
    position: static;
  }

  .process::before {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    display: grid;
    grid-template-columns: 62px 1fr;
    column-gap: 1rem;
    text-align: left;
  }

  .process-number {
    width: 58px;
    height: 58px;
    grid-row: span 2;
    margin: 0;
  }

  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .city-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 950;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(246, 196, 120, 0.2);
    border-radius: 18px;
    background: rgba(4, 23, 29, 0.96);
    box-shadow: 0 16px 40px rgba(4, 23, 29, 0.35);
    padding: 0.42rem;
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a {
    display: flex;
    min-height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.59rem;
    font-weight: 640;
    text-decoration: none;
  }

  .mobile-bottom-nav a:hover,
  .mobile-bottom-nav a:focus-visible,
  .mobile-bottom-nav a[aria-current="page"] {
    background: rgba(246, 196, 120, 0.1);
    color: var(--gold-400);
  }

  .mobile-bottom-nav svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 188px;
  }

  .nav-shell,
  .nav-actions {
    gap: 0.5rem;
  }

  .primary-nav {
    width: min(94vw, 420px);
    padding-right: 1rem;
    padding-left: 1rem;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .hero-actions,
  .page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .status-chip {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-grid,
  .city-grid,
  .form-grid,
  .choice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-left: 0;
  }

  .trust-item + .trust-item {
    border-top: 1px solid rgba(246, 196, 120, 0.1);
  }

  .dropdown-panel {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .property-photo {
    min-height: 340px;
  }

  .property-panel {
    padding: 1.6rem 1rem;
  }

  .decision-panel {
    padding: 1.5rem 1.1rem;
  }

  .local-visual img {
    aspect-ratio: 3 / 2;
  }

  .page-hero {
    padding-top: 54px;
  }

  .prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

@media print {
  .site-header,
  .mobile-bottom-nav,
  .whatsapp-float,
  .hero-actions,
  .page-hero-actions,
  .site-footer {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .page-hero,
  .section-dark {
    background: #fff;
    color: #000;
  }

  .page-hero h1,
  .section-dark h2,
  .section-dark h3 {
    color: #000;
  }
}
