:root {
  --blue-primary: #121212;
  --blue-secondary: #c6a55a;
  --blue-accent: #d4af37;
  --gold-accent: #d4af37;
  --gray-dark: #121212;
  --gray-medium: #4f4b43;
  --gray-light: #f0f4f8;
  --white: #ffffff;
  --line: rgba(18, 18, 18, 0.08);
  --shadow-sm: 0 4px 12px rgba(18, 18, 18, 0.05);
  --shadow: 0 12px 24px rgba(18, 18, 18, 0.08);
  --shadow-lg: 0 24px 48px rgba(18, 18, 18, 0.12);
  --shadow-premium: 0 30px 60px rgba(18, 18, 18, 0.15);
  --radius-lg: 24px;
  --radius-md: 16px;
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-blur: blur(14px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-medium);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  color: var(--gray-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

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

code {
  color: var(--blue-primary);
  font-size: 0.92em;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.container-sm {
  width: min(840px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.6rem 0;
}

.section-soft {
  background: var(--gray-light);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: rgba(18, 18, 18, 0.05);
  color: var(--blue-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
}

.lead {
  max-width: 64ch;
  color: var(--gray-medium);
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius-md);
  padding: 1rem 1.45rem;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-accent);
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.15);
}

.btn-accent {
  background: var(--blue-accent);
  color: #121212;
}

.btn-accent:hover {
  background: #c5a02e;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.btn-ghost {
  border: 1px solid rgba(198, 165, 90, 0.16);
  background: var(--white);
  color: var(--gray-dark);
}

.btn-ghost:hover {
  background: var(--gray-light);
  border-color: rgba(198, 165, 90, 0.28);
  color: var(--blue-primary);
}

.btn-sm {
  padding: 0.78rem 1.15rem;
  font-size: 0.82rem;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--gray-dark);
}

.logo-has-image {
  gap: 0;
}

.brand-logo {
  display: block;
  width: auto;
}

.brand-logo-header {
  height: 63px;
}

.brand-logo-footer {
  height: 52px;
  margin-bottom: 1rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.logo-copy strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.logo-copy small {
  display: block;
  color: var(--gray-medium);
  font-size: 0.75rem;
}

.menu-toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(198, 165, 90, 0.14);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue-primary);
  margin: 2px 0;
}

.main-nav {
  position: fixed;
  inset: 74px 0 auto 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(198, 165, 90, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  display: none;
  flex-direction: column;
  padding: 0.8rem 4%;
  gap: 0.65rem;
}

.main-nav.open {
  display: flex;
}

.main-nav a {
  font-size: 0.92rem;
  color: var(--gray-medium);
  font-weight: 500;
}

.nav-item-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(19, 40, 68, 0.12);
}

.nav-submenu a {
  font-size: 0.86rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-primary);
}

.main-nav .nav-cta,
.main-nav .nav-cta:hover,
.main-nav .nav-cta.active {
  color: var(--white);
}

.main-nav .nav-cta {
  background: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  line-height: 1;
  box-shadow: none;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta.active {
  background: var(--blue-secondary);
}

.nav-cta {
  margin-top: 0.25rem;
  width: fit-content;
  white-space: nowrap;
}

.hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=80');
  background-size: cover;
  background-position: center;
  min-height: 72vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 10, 10, 0.9) 15%, rgba(12, 12, 12, 0.72) 58%, rgba(18, 18, 18, 0.52) 100%);
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
  padding: 2.5rem 0 3.1rem;
  grid-template-columns: 1fr;
}

.hero-card {
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  max-width: 760px;
}

.hero-card h1 {
  font-size: clamp(1.86rem, 7.2vw, 2.95rem);
  max-width: 16ch;
  color: var(--gold-accent);
}

.hero-card .lead {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-media {
  display: none;
}

.hero-meta {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-meta article {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  background: rgba(12, 12, 12, 0.5);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-meta article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.hero-meta strong {
  display: block;
  color: var(--gold-accent);
  font-size: 1.05rem;
}

.hero-meta span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

.home-hero {
  min-height: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--line);
}

.home-hero::before {
  display: none;
}

.home-hero-layout {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.4rem, 7vw, 5rem);
}

.home-hero-copy {
  max-width: 560px;
}

.home-hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 4.8rem);
  max-width: 9ch;
  color: var(--gray-dark);
  letter-spacing: -0.04em;
}

.home-hero-copy h1 span {
  color: var(--blue-secondary);
}

.home-hero-copy .eyebrow {
  background: rgba(198, 165, 90, 0.08);
  border-color: rgba(198, 165, 90, 0.16);
  color: var(--blue-secondary);
}

.home-hero-copy .lead {
  margin-top: 1rem;
  color: var(--gray-medium);
  font-size: 1.05rem;
}

.home-hero-points {
  margin-top: 1.4rem;
}

.home-hero-points li {
  color: var(--gray-dark);
}

.home-hero-points svg {
  color: var(--blue-secondary);
}

.home-hero-visual {
  position: relative;
  isolation: isolate;
  padding-left: 1.5rem;
}

.home-hero-visual::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  right: -1.4rem;
  width: 84%;
  height: 72%;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(198, 165, 90, 0.2), rgba(198, 165, 90, 0.08));
  z-index: 0;
}

.home-hero-image {
  margin: 0;
  position: relative;
  z-index: 1;
  min-height: 630px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(198, 165, 90, 0.1);
  box-shadow: var(--shadow-lg);
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-badge {
  position: absolute;
  left: -2.4rem;
  bottom: 1.8rem;
  z-index: 3;
  display: flex;
  gap: 0.9rem;
  max-width: 320px;
  padding: 1.2rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.home-badge-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(198, 165, 90, 0.08);
  color: var(--blue-primary);
}

.home-badge-icon svg {
  width: 22px;
  height: 22px;
}

.home-hero-badge strong {
  display: block;
  color: var(--gray-dark);
  margin-bottom: 0.2rem;
}

.home-hero-badge p {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.home-about {
  margin-top: -0.5rem;
}

.home-about-card {
  display: grid;
  gap: 1.6rem;
  align-items: stretch;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.home-about-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  height: 100%;
}

.home-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about-copy .lead+.lead {
  margin-top: 0.85rem;
}

.home-about-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.home-section-head {
  display: grid;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.3rem;
}

.home-section-head h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
}

.home-section-head .lead {
  max-width: 42ch;
}

.section-link,
.service-link,
.zone-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--blue-primary);
  font-weight: 700;
}

.section-link::after,
.service-link::after,
.zone-card-link::after {
  content: '\2192';
  font-size: 0.95em;
}

.home-services-grid,
.home-blog-grid,
.home-zones-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.home-services-grid .service-card {
  min-height: 100%;
  padding: 2rem;
}

.home-services-grid .service-card p {
  flex: 1;
}

.home-zones .lead,
.home-blog .lead {
  max-width: 62ch;
}

.home-zones-grid .zone-card {
  min-height: 280px;
}

.zone-card-link {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.zone-card-link::after {
  color: var(--white);
}

.home-proof-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.home-proof-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  height: 96%;
}

.home-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-proof-content,
.home-proof-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 2.5rem !important;
}

.home-proof-panel {
  background: linear-gradient(160deg, #ffffff 0%, #f3f4f6 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-proof-panel .btn {
  margin-top: 1rem;
  width: fit-content;
}

.home-contact-band {
  background: var(--white);
}

.home-contact-grid {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.home-contact-copy h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.home-contact-copy .lead {
  margin-top: 1rem;
}

.home-contact-form {
  padding: 2rem;
}

.home-contact-form h3 {
  margin-bottom: 0.8rem;
}

.home-blog-filters {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-blog-filters li {
  padding: 0.38rem 0.85rem;
  border-radius: 10px;
  background: #edf2f7;
  color: var(--gray-medium);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-blog-filters .active {
  background: var(--blue-primary);
  color: var(--white);
}

.home-blog .blog-card,
.blog-card {
  padding: 0 0 1.35rem;
  display: grid;
  align-content: start;
}

.home-blog .blog-card > img,
.blog-card > img {
  width: 100%;
  min-height: 210px;
  height: 210px;
  object-fit: cover;
  margin: 0 0 0.9rem;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-blog .blog-card > :not(img),
.blog-card > :not(img) {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.home-footer .footer-grid {
  gap: 1.5rem;
}

.home-footer .footer-brand {
  max-width: 320px;
}

.home-footer .footer-links h3 {
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.split {
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid rgba(100, 116, 139, 0.15);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 1.8rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  box-shadow: 0 4px 20px rgba(198, 165, 90, 0.03);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(198, 165, 90, 0.1);
  border-color: rgba(198, 165, 90, 0.18);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.card p {
  color: var(--gray-medium);
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.grid-2 {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 1.8rem;
  top: 1.5rem;
  width: 38px;
  height: 2px;
  background: rgba(198, 165, 90, 0.24);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(198, 165, 90, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--blue-secondary);
  border: 1px solid rgba(198, 165, 90, 0.14);
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: var(--blue-primary);
  color: var(--white);
  transform: scale(1.05);
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zone-card {
  position: relative;
  background: linear-gradient(165deg, #121212 0%, #080808 100%);
  color: var(--white);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
  overflow: hidden;
  padding: 1.5rem;
}

.zone-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 36, 65, 0.95) 0%, rgba(15, 36, 65, 0.4) 50%, rgba(15, 36, 65, 0.1) 100%);
  z-index: 1;
}

.zone-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.zone-card:hover .zone-card-bg {
  transform: scale(1.08);
}

.zone-card-content {
  position: relative;
  z-index: 2;
}

.zone-card-content strong {
  display: inline-block;
  margin-bottom: 0.38rem;
  color: var(--white);
  font-size: 1.15rem;
}

.zone-card-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}

.blog-card,
.property-card,
.zone-card {
  overflow: hidden;
}

.card.blog-card {
  padding: 0 0 1.35rem;
  display: grid;
  align-content: start;
}

.card.blog-card > img {
  width: 100%;
  min-height: 210px;
  height: 210px;
  object-fit: cover;
  margin: 0 0 0.9rem;
  display: block;
}

.card.blog-card > :not(img) {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.property-card img {
  width: calc(100% + 3.6rem);
  height: 190px;
  object-fit: cover;
  margin: -1.8rem -1.8rem 0.75rem -1.8rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover > img,
.property-card:hover img {
  transform: scale(1.05);
}

.blog-card time {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--blue-secondary);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.property-card .price {
  display: inline-block;
  color: var(--blue-primary);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.cta-banner {
  position: relative;
  background-image: linear-gradient(118deg, rgba(8, 8, 8, 0.9) 18%, rgba(10, 10, 10, 0.78) 60%, rgba(18, 18, 18, 0.66) 100%), url('../img/polanco.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: clamp(6.5rem, 11vw, 9.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

.cta-banner-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2,
.cta-banner p {
  color: var(--white);
}

.cta-banner h2 {
  color: var(--gold-accent);
}

.cta-banner .btn {
  margin-top: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--white);
  color: var(--blue-primary);
}

.cta-banner .btn:hover {
  background: rgba(255, 255, 255, 0.88);
}

.testimonial {
  background: #f8fbff;
}

.testimonial cite {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--gray-medium);
  font-style: normal;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-card .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--blue-secondary);
}

.contact-card .icon-box svg {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.contact-card p {
  font-size: 0.9rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.icon-list svg {
  width: 20px;
  height: 20px;
  color: var(--blue-secondary);
  flex-shrink: 0;
}

.form-grid {
  display: grid;
  gap: 0.6rem;
}

label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-dark);
}

input,
textarea,
select {
  font: inherit;
  color: var(--gray-dark);
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.68rem 0.8rem;
  background: #ffffff;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue-secondary);
  box-shadow: 0 0 0 3px rgba(198, 165, 90, 0.16);
}

.form-note {
  min-height: 1em;
  font-size: 0.82rem;
  color: var(--blue-primary);
}

.site-footer {
  margin-top: 2.3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0d0d0d 0%, #121212 60%, #4a4a4a 100%);
  color: var(--white);
  padding: 3.6rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.14), transparent 40%);
  pointer-events: none;
}

.site-footer h3,
.site-footer p,
.site-footer a {
  color: var(--white);
}

.site-footer h3 {
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand h3 {
  margin-top: 0;
}

.footer-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-chip:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer-contact-meta {
  display: grid;
  gap: 0.4rem;
}

.footer-contact-meta a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a {
  display: block;
  margin-bottom: 0.36rem;
  padding: 0.16rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.footer-link-button {
  display: block;
  margin-top: 0.4rem;
  padding: 0.16rem 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--white);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--blue-secondary);
}

.breadcrumbs a:not(:last-child)::after {
  content: '/';
  margin-left: 0.65rem;
  color: rgba(198, 165, 90, 0.45);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 1.6rem;
}

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

.article-layout {
  max-width: 1120px;
  margin: 0 auto;
}

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

.content-card {
  height: 100%;
}

.content-card-body,
.card-body {
  display: grid;
  gap: 0.8rem;
}

.content-card-media {
  margin: -1.6rem -1.6rem 1rem;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.content-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.content-list-item h3,
.content-card h3,
.content-aside h3,
.empty-state h1 {
  margin-bottom: 0.7rem;
}

.content-aside {
  position: sticky;
  top: 100px;
  align-self: start;
}

.rich-content {
  display: grid;
  gap: 1rem;
  max-width: 74ch;
  color: var(--gray-medium);
}

.rich-content h2,
.rich-content h3 {
  margin-top: 0.8rem;
}

.rich-content ul,
.rich-content ol {
  margin: 0;
  padding-left: 1.2rem;
}

.rich-content a {
  color: var(--blue-primary);
  font-weight: 700;
}

.rich-content a:hover {
  color: var(--blue-secondary);
}

.guide-rich-content,
.article-prose {
  max-width: none;
}

.eyebrow-inline {
  margin-bottom: 1rem;
}

.empty-state {
  padding: 2.4rem;
  text-align: center;
}

.lead-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.page-hero {
  position: relative;
  /* Inline backgrounds provided dynamically */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8, 8, 8, 0.9) 15%, rgba(10, 10, 10, 0.74) 55%, rgba(18, 18, 18, 0.58) 100%);
}

.page-hero-wrap {
  position: relative;
  z-index: 1;
  padding: 3.2rem 0 2.6rem;
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 8vw, 3rem);
  max-width: 16ch;
  color: var(--gold-accent);
}

.page-hero p {
  margin-top: 0.75rem;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero-grid {
  display: grid;
  gap: 1.35rem;
  align-items: end;
}

.page-hero-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero-grid-single .page-hero-content {
  max-width: 820px;
}

.page-hero-content {
  max-width: 760px;
}

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

.page-hero-actions .btn-primary {
  background: var(--white);
  color: var(--blue-primary);
}

.page-hero-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.page-hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.page-hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.page-hero-aside {
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.page-hero-aside h3,
.page-hero-aside p,
.page-hero-aside strong {
  color: var(--white);
}

.hero-highlights {
  display: grid;
  gap: 1rem;
  /*margin-top: -2rem;*/
  position: relative;
  z-index: 2;
}

.hero-highlight-card {
  padding: 1.4rem;
}

.highlight-icon,
.aside-icon-box,
.faq-icon,
.timeline-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(198, 165, 90, 0.08);
  border: 1px solid rgba(198, 165, 90, 0.14);
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.highlight-icon svg,
.aside-icon-box svg,
.faq-icon svg,
.timeline-icon svg {
  width: 24px;
  height: 24px;
}

.hero-highlight-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gray-dark);
  font-size: 1.05rem;
}

.page-hero-points {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page-hero-points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.page-hero-points svg {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  color: var(--white);
  flex-shrink: 0;
}

.hero-inline-link {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.18rem;
}

.hero-inline-link:hover {
  color: rgba(255, 255, 255, 0.88);
}

.inline-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.inline-list li {
  border: 1px solid #cfd8e4;
  border-radius: 999px;
  padding: 0.3rem 0.68rem;
  font-size: 0.78rem;
  color: var(--blue-primary);
  background: #f1f6fc;
}

.timeline {
  display: grid;
  gap: 0.75rem;
}

.timeline article {
  border-left: 3px solid var(--blue-secondary);
  padding: 0.2rem 0 0.2rem 0.75rem;
}

.timeline h3 {
  font-size: 1.18rem;
}

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.section-head .lead {
  max-width: 64ch;
}

.section-head-centered {
  text-align: center;
  justify-items: center;
}

.property-landing-hero .page-hero-wrap {
  padding-bottom: 3.6rem;
}

.property-hero-facts {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.property-hero-facts article {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 40px rgba(8, 17, 31, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.property-hero-facts strong {
  color: var(--blue-primary);
  font-size: 1.25rem;
}

.property-hero-facts span {
  color: var(--gray-medium);
  font-size: 0.93rem;
}

.property-story-grid,
.property-review-grid,
.property-contact-grid {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.property-story-card,
.property-review-card {
  padding: clamp(1.45rem, 3vw, 2rem);
}

.property-story-card {
  display: grid;
  gap: 1rem;
}

.property-intro-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.property-intro-copy {
  display: grid;
  gap: 1rem;
}

.property-intro-copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 14ch;
}

.property-intro-card {
  padding: clamp(1.7rem, 4vw, 2.6rem);
  background: linear-gradient(180deg, #132844 0%, #1f3e67 100%);
}

.property-intro-card h3,
.property-intro-card p {
  color: var(--white);
}

.property-intro-card h3 {
  margin-bottom: 0.8rem;
}

.property-story-media img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.property-data-section {
  background: linear-gradient(180deg, #f8f3eb 0%, #f4eee4 100%);
}

.property-data-grid {
  display: grid;
  gap: 1rem;
}

.property-data-card {
  min-height: 100%;
  padding: 1.55rem;
}

.property-data-card h3 {
  color: var(--blue-secondary);
  font-size: 1rem;
}

.property-data-card p {
  margin: 0.55rem 0 0;
  color: var(--gray-dark);
  font-size: 1.6rem;
  font-weight: 800;
}

.property-data-card small {
  display: block;
  margin-top: 0.45rem;
  color: var(--gray-medium);
}

.property-potential-grid {
  display: grid;
  gap: 1rem;
}

.property-potential-card {
  min-height: 100%;
  padding: 1.65rem;
}

.property-potential-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(198, 165, 90, 0.08);
  color: var(--blue-primary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.property-gallery-shell {
  background: linear-gradient(180deg, #10233f 0%, #0b1730 100%);
}

.property-gallery-head h2,
.property-gallery-head .lead,
.property-gallery-head .eyebrow {
  color: var(--white);
}

.property-gallery-grid {
  display: grid;
  gap: 1rem;
}

.property-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 24px;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
}

.property-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-gallery-item:hover img {
  transform: scale(1.04);
}

.property-gallery-item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.76);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.property-gallery-more {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.property-gallery-more summary {
  cursor: pointer;
  list-style: none;
  color: var(--white);
  font-weight: 700;
}

.property-gallery-more summary::-webkit-details-marker {
  display: none;
}

.property-gallery-more summary::after {
  content: '+';
  float: right;
  font-size: 1.2rem;
  line-height: 1;
}

.property-gallery-more[open] summary::after {
  content: '-';
}

.property-gallery-extra-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.property-gallery-extra-item {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.property-gallery-extra-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.property-normative-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.7rem, 4vw, 2.8rem);
  border-left: 6px solid var(--gold-accent);
}

.property-buyer-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.property-buyer-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.property-buyer-list article {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.property-buyer-image {
  margin: 0;
}

.property-buyer-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.property-cta-section {
  position: relative;
  background:
    linear-gradient(rgba(19, 40, 68, 0.84), rgba(19, 40, 68, 0.88)),
    url("../../ajusco/img/IMG_3647.jpg") center/cover no-repeat;
}

.property-cta-shell {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.property-cta-shell h2,
.property-cta-shell p,
.property-cta-shell .eyebrow {
  color: var(--white);
}

.property-cta-shell .btn {
  margin-top: 1rem;
}

.property-contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.property-contact-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.property-contact-card {
  padding: clamp(1.7rem, 4vw, 2.6rem);
  background: linear-gradient(180deg, #132844 0%, #24466f 100%);
}

.property-contact-card h2,
.property-contact-card p,
.property-contact-card strong,
.property-contact-card .eyebrow {
  color: var(--white);
}

.property-contact-copy {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 1.4rem;
}

.property-contact-form-wrap {
  display: grid;
  gap: 0.8rem;
}

.property-contact-form-wrap .form-grid {
  margin: 0;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
}

.service-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(198, 165, 90, 0.12);
  background: var(--white);
  color: var(--gray-dark);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease;
}

.service-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 165, 90, 0.22);
  color: var(--blue-primary);
  box-shadow: var(--shadow-sm);
}

.service-tab.active {
  border-color: transparent;
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-hub-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.service-hub-card {
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-rows: minmax(230px, 250px) 1fr;
}

.service-hub-media {
  position: relative;
  min-height: 230px;
}

.service-hub-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hub-copy {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.75rem;
}

.service-hub-copy h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.service-hub-card {
  border: 1px solid rgba(198, 165, 90, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--white);
}

.service-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 165, 90, 0.15);
}

.service-hub-card:hover .service-hub-media img {
  transform: scale(1.05);
}

.service-hub-media {
  overflow: hidden;
}

.service-hub-media img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(198, 165, 90, 0.05);
  display: grid;
  place-items: center;
  color: var(--blue-primary);
  margin-bottom: 0.8rem;
  transition: background-color 0.3s ease;
}

.process-step:hover .process-icon-wrap {
  background: rgba(198, 165, 90, 0.1);
}

.process-icon-wrap i,
.process-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.services-intro-grid {
  gap: 4rem;
  align-items: center;
}

.services-intro-card {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 5;
}

.services-intro-grid .section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--blue-primary) 0%, #2a4a75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.image-stack {
  position: relative;
  padding: 2rem;
}

.image-stack .media-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-stack:hover .media-frame {
  transform: perspective(1000px) rotateY(0deg);
}

/* Removed old guide-side-panel */

.services-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.services-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-actions-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.services-intro-card {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 5;
  transition: transform 0.5s ease;
}

.services-intro-card:hover {
  transform: translateY(-5px);
}

.intro-accent-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.intro-accent-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
  color: var(--blue-primary);
  font-size: 1.05rem;
}

.intro-icon-bullet {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(51, 78, 104, 0.1);
  display: grid;
  place-items: center;
  color: var(--blue-accent);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.intro-accent-list li:hover .intro-icon-bullet {
  transform: scale(1.15) rotate(5deg);
  background: rgba(51, 78, 104, 0.15);
}

.services-intro-grid .section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  color: var(--blue-primary);
}

.services-intro-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.services-intro-media .media-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.services-intro-media .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guide-status-card {
  position: absolute;
  bottom: 2rem;
  left: -2.5rem;
  width: 290px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.4rem 1.6rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 35px rgba(198, 165, 90, 0.1);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-intro-media:hover .guide-status-card {
  transform: translateY(-8px);
}

.status-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--blue-primary);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(198, 165, 90, 0.2);
}

.status-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--blue-primary);
  font-weight: 750;
}

.status-content p {
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--gray-medium);
  margin: 0;
}

.guide-side-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--blue-primary);
}

.services-intro-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(198, 165, 90, 0.08);
}

.guide-rich-card {
  padding: 1.55rem;
}

.guide-rich-card .guide-rich-content,
.guide-section-card .guide-rich-content,
.guide-faq-intro-card .guide-rich-content,
.article-section-card .article-copy,
.article-hero-body .article-copy {
  max-width: none;
}

.guide-side-stack {
  align-self: start;
}

.guide-spotlight-media img,
.guide-section-media img,
.guide-faq-media img,
.article-note-media img {
  min-height: 280px;
}

.guide-side-panel {
  padding: 1.5rem;
}

.guide-side-panel h3 {
  margin-bottom: 0.55rem;
}

.guide-side-panel .icon-list {
  margin-top: 1.1rem;
}

.guide-side-panel .service-hub-actions {
  padding-top: 0.2rem;
}

.guide-children-priority {
  padding-top: 0.8rem;
}

.guide-section-shell,
.guide-faq-grid,
.article-section-grid {
  display: grid;
  gap: 1.25rem;
}

.guide-section-shell-reverse .guide-section-side,
.article-section-grid-reverse .article-note-card {
  order: -1;
}

.guide-section-card,
.guide-faq-intro-card,
.article-section-card,
.article-note-card,
.article-sidebar-card,
.article-hero-card {
  overflow: hidden;
}

.guide-section-card,
.guide-faq-intro-card,
.article-section-card,
.article-note-card {
  padding: 1.55rem;
}

.article-sidebar-card {
  padding: 1.1rem 0.95rem;
}

.guide-faq-intro-card {
  display: grid;
  gap: 1rem;
}

.guide-faq-support {
  display: grid;
  gap: 1rem;
}

.faq-accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-accordion-item {
  border: 1px solid rgba(198, 165, 90, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-accordion-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.15rem 3.5rem 1.15rem 1.25rem;
  font-weight: 700;
  color: var(--gray-dark);
}

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

.faq-accordion-item summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(198, 165, 90, 0.08);
  color: var(--blue-primary);
  font-size: 1.15rem;
}

.faq-accordion-item[open] summary::after {
  content: '−';
}

.faq-accordion-body {
  padding: 0 1.25rem 1.25rem;
}

.article-shell {
  display: grid;
  gap: 1.4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.article-sidebar {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.article-sidebar-card {
  display: grid;
  gap: 0.9rem;
}

.article-toc-card h3,
.article-sidebar-promo h3 {
  margin-bottom: 0;
}

.article-toc {
  position: relative;
  padding-left: 0.35rem;
  margin-top: 1.4rem;
}

.article-toc::before {
  content: "";
  position: absolute;
  left: -0.25rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: rgba(198, 165, 90, 0.06);
}

.article-toc-link {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.55rem 0.4rem;
  border-radius: 8px;
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-medium);
  line-height: 1.25;
  transition: all 0.3s ease;
}

.article-toc-link:hover {
  color: var(--blue-primary);
  background: rgba(198, 165, 90, 0.06);
  transform: translateX(3px);
}

.article-toc-link i {
  margin-right: 0.45rem;
  font-size: 0.9rem;
  opacity: 0.6;
  transition: all 0.3s ease;
  color: var(--blue-accent) !important;
}

.article-toc-link:hover i {
  opacity: 1;
  transform: scale(1.1);
  color: var(--blue-primary) !important;
}

.article-toc-level-3 {
  padding-left: 1.45rem;
  font-size: 0.86rem;
  opacity: 0.85;
}

.article-toc-level-4 {
  padding-left: 1.5rem;
  font-size: 0.88rem;
}

.article-sidebar-avatar {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.article-main-column {
  display: grid;
  gap: 1.2rem;
}

.article-reading-card {
  overflow: hidden;
  padding: 0;
}

.article-reading-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-reading-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.article-reading-body {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.article-reading-intro {
  display: grid;
  gap: 1rem;
}

.article-summary-list {
  margin-top: -0.15rem;
}

.article-reading-section {
  display: grid;
  gap: 0.45rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(198, 165, 90, 0.08);
  scroll-margin-top: 110px;
}

.article-reading-section .section-head {
  margin-bottom: 0;
}

.article-hero-card {
  padding: 0;
}

.article-hero-grid {
  display: grid;
  gap: 0;
}

.article-hero-media {
  margin: 0;
  min-height: 320px;
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-body {
  display: grid;
  gap: 1.2rem;
  padding: 1.6rem;
}

.article-copy {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--blue-primary);
}

.article-copy>* {
  width: 100%;
  max-width: none;
  margin: 0;
}

.article-copy > * + * {
  margin-top: 1.05rem;
}

.article-reading-section .article-copy > :first-child {
  margin-top: 0;
}

.article-copy ul,
.article-copy ol {
  margin: 0;
  padding-left: 1.2rem;
}

.article-copy li + li {
  margin-top: 0.35rem;
}

.faq-grid .guide-rich-content {
  max-width: none;
}

.guide-section-copy-block {
  margin-bottom: 1.25rem;
}

.article-summary-grid {
  display: grid;
  gap: 0.85rem;
}

.article-summary-card {
  padding: 1rem 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.35rem;
  background: linear-gradient(180deg, rgba(198, 165, 90, 0.04), rgba(198, 165, 90, 0.01));
}

.article-summary-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(198, 165, 90, 0.1);
  color: var(--blue-primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.article-section-block {
  scroll-margin-top: 110px;
}

.article-section-card {
  display: grid;
  gap: 1rem;
}

.article-section-head {
  margin-bottom: 0;
}

.article-section-head h2 {
  max-width: 26ch;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.article-note-card {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.article-note-body {
  display: grid;
  gap: 0.75rem;
}

.article-note-media {
  border-radius: 18px;
}

.article-note-media img {
  min-height: 240px;
}

.article-faq-card {
  display: grid;
  gap: 1rem;
}

.article-cta {
  margin-top: 0;
}

.article-cta-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.service-hub-note {
  margin-top: 0.35rem;
}

.services-intro-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-intro-card .icon-list {
  margin-top: 0.35rem;
}

.service-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
}

.media-split {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.media-frame {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(198, 165, 90, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.about-process-media {
  height: auto;
  align-self: start;
}

.about-process-media img {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-hero-highlights .hero-highlight-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.3rem 1.2rem 1.2rem;
  border: 1px solid rgba(198, 165, 90, 0.12);
  background: linear-gradient(165deg, #ffffff 0%, #f4f8fc 100%);
}

.about-hero-highlights .hero-highlight-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #121212 0%, #d4af37 100%);
}

.about-highlight-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 165, 90, 0.2);
  background: rgba(198, 165, 90, 0.08);
  color: var(--blue-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-highlights .highlight-icon {
  background: linear-gradient(145deg, rgba(198, 165, 90, 0.12), rgba(198, 165, 90, 0.04));
}

.about-hero-highlights .hero-highlight-card strong {
  font-size: 1.08rem;
}

.about-hero-highlights .hero-highlight-card p {
  font-size: 0.92rem;
}

.service-feature-card {
  min-height: 100%;
}

.service-feature-badge {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(198, 165, 90, 0.08);
  border: 1px solid rgba(198, 165, 90, 0.14);
  color: var(--blue-primary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}

.service-feature-card:hover .service-feature-badge {
  transform: translateY(-2px) scale(1.04);
  background: var(--blue-primary);
  color: var(--white);
}

.process-flow {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.process-flow::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(198, 165, 90, 0.26), rgba(198, 165, 90, 0.08));
}

.process-step {
  position: relative;
  padding-left: 3.6rem;
}

.process-step-marker {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(198, 165, 90, 0.16);
  color: var(--blue-primary);
  box-shadow: var(--shadow-sm);
}

.process-step-marker svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.25rem;
}

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

.image-stack .media-frame:first-child img {
  min-height: 300px;
}

.image-stack .media-frame:last-child img {
  min-height: 220px;
}

.check-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--gray-dark);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(198, 165, 90, 0.12);
  border: 1px solid rgba(198, 165, 90, 0.18);
}

.check-list li::after {
  content: '';
  position: absolute;
  left: 1.43rem;
  top: 1.38rem;
  width: 0.38rem;
  height: 0.2rem;
  border-left: 2px solid var(--blue-secondary);
  border-bottom: 2px solid var(--blue-secondary);
  transform: rotate(-45deg);
}

.numbered-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.numbered-card {
  position: relative;
  padding: 1.4rem 1.25rem 1.2rem;
}

.numbered-card::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 11px;
  background: rgba(198, 165, 90, 0.1);
  color: var(--blue-primary);
  font-weight: 800;
}

.pillars-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.pillars-grid .card {
  min-height: 100%;
}

.faq-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.faq-item {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(198, 165, 90, 0.03);
}

.faq-item .faq-icon {
  margin-bottom: 0.8rem;
}

.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.related-links {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.related-link-card {
  display: block;
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.related-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 165, 90, 0.18);
  box-shadow: var(--shadow-sm);
}

.related-link-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gray-dark);
}

.related-link-card span {
  color: var(--blue-primary);
  font-weight: 700;
}

.contact-band {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.contact-hero .page-hero-aside {
  background: linear-gradient(180deg, rgba(19, 40, 68, 0.9) 0%, rgba(36, 70, 111, 0.88) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(10, 24, 41, 0.22);
}

.contact-hero .page-hero-aside h2,
.contact-hero .page-hero-aside p,
.contact-hero .page-hero-aside span,
.contact-hero .page-hero-aside strong {
  color: var(--white);
}

.contact-hero-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-hero-points article {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-quick-grid {
  display: grid;
  gap: 1rem;
}

.contact-quick-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
  min-height: 100%;
}

.contact-quick-card h3 {
  margin: 0;
}

.contact-quick-card p {
  margin: 0;
  color: var(--gray-medium);
}

.contact-quick-card span {
  color: var(--blue-primary);
  font-weight: 700;
}

.contact-quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(198, 165, 90, 0.14) 0%, rgba(198, 165, 90, 0.05) 100%);
  color: var(--blue-primary);
}

.contact-quick-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-page-shell {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.contact-premium-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.contact-premium-quote {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(19, 40, 68, 0.96) 0%, rgba(36, 70, 111, 0.92) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-premium-quote::after {
  content: '';
  position: absolute;
  inset: auto -10% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.contact-premium-quote h2,
.contact-premium-quote p,
.contact-premium-quote .eyebrow,
.contact-premium-quote blockquote {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.contact-quote-mark {
  margin: 0.3rem 0 0;
  padding-left: 1.15rem;
  border-left: 3px solid rgba(198, 165, 90, 0.22);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--blue-primary);
  font-style: italic;
}

.contact-premium-metrics article {
  min-height: 100%;
}

.contact-premium-metrics span {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

.contact-page-main,
.contact-page-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-copy-card,
.contact-form-card,
.contact-expect-card,
.contact-response-card {
  display: grid;
  gap: 1rem;
}

.contact-copy-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-reading-section {
  display: grid;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(198, 165, 90, 0.08);
}

.contact-form-card .form-grid {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.contact-form-card h3 {
  margin: 0;
}

.contact-form-card p {
  margin: 0;
  color: var(--gray-medium);
}

.contact-expect-card .btn {
  justify-self: start;
}

.contact-response-card h3 {
  margin: 0;
}

.contact-response-card .mini-metrics {
  margin-top: 0;
}

.contact-response-card .mini-metrics span {
  color: var(--gray-medium);
  font-size: 0.94rem;
}

.contact-service-links {
  display: grid;
  gap: 1rem;
}

.contact-service-grid {
  display: grid;
  gap: 1rem;
}

.contact-service-card {
  overflow: hidden;
  text-decoration: none;
}

.contact-service-card p {
  color: var(--gray-medium);
}

.contact-service-link {
  color: var(--blue-primary);
  font-weight: 700;
}

.resource-hub-intro {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.resource-grid {
  display: grid;
  gap: 1rem;
}

.resource-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(198, 165, 90, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 165, 90, 0.15);
}

.resource-card-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.resource-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.resource-card:hover .resource-card-media img {
  transform: scale(1.06);
}

.resource-card-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.3rem;
}

.resource-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.resource-card-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(198, 165, 90, 0.08);
  border: 1px solid rgba(198, 165, 90, 0.12);
  color: var(--blue-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.resource-card-preview {
  display: grid;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(198, 165, 90, 0.05) 0%, rgba(198, 165, 90, 0.02) 100%);
  border: 1px solid rgba(198, 165, 90, 0.08);
}

.resource-card-preview strong {
  color: var(--gray-dark);
}

.resource-card-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--gray-medium);
}

.resource-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.resource-card-list i {
  color: var(--blue-secondary);
  flex-shrink: 0;
}

.resource-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.resource-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.resource-benefit-card {
  min-height: 100%;
}

.resource-download-shell {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.resource-download-main,
.resource-download-sidebar {
  display: grid;
  gap: 1rem;
}

.resource-download-content,
.resource-preview-card,
.resource-gate-card,
.resource-siblings-card {
  display: grid;
  gap: 1rem;
}

.resource-preview-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.resource-preview-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.resource-preview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(198, 165, 90, 0.14) 0%, rgba(198, 165, 90, 0.05) 100%);
  color: var(--blue-primary);
}

.resource-preview-icon svg {
  width: 2rem;
  height: 2rem;
}

.resource-preview-top h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.resource-preview-body {
  display: grid;
  gap: 0.7rem;
}

.resource-preview-body p {
  margin: 0;
  color: var(--gray-medium);
}

.resource-download-content {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.resource-reading-section {
  display: grid;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(198, 165, 90, 0.08);
}

.resource-badge-list,
.resource-sibling-list {
  display: grid;
  gap: 0.75rem;
}

.resource-badge-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-badge-list li {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(198, 165, 90, 0.05);
  border: 1px solid rgba(198, 165, 90, 0.1);
  color: var(--gray-dark);
}

.resource-sibling-link {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.resource-sibling-link:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 165, 90, 0.18);
  box-shadow: var(--shadow-sm);
}

.resource-sibling-link strong {
  color: var(--gray-dark);
}

.resource-sibling-link span {
  color: var(--gray-medium);
  font-size: 0.92rem;
}

.resource-gate-card .form-grid {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.form-helper {
  margin-top: -0.2rem;
  color: var(--gray-medium);
  font-size: 0.92rem;
}

.form-download-link {
  color: var(--blue-primary);
  font-weight: 700;
  text-decoration: underline;
}

.contact-band-grid {
  display: grid;
  gap: 1.3rem;
  align-items: start;
}

.mini-metrics {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.mini-metrics article {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.mini-metrics strong {
  display: block;
  color: var(--blue-primary);
  font-size: 1.05rem;
}

.metric-row {
  display: grid;
  gap: 0.75rem;
}

.metric-row article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  background: var(--white);
}

.metric-row strong {
  display: block;
  font-size: 1.2rem;
  color: var(--blue-primary);
}

.feature-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.feature-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.cookie-consent {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 90;
}

.cookie-consent-card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(19, 40, 68, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(8, 19, 33, 0.28);
  color: var(--white);
}

.cookie-consent-copy h2,
.cookie-consent-copy p,
.cookie-consent-copy a {
  color: var(--white);
}

.cookie-consent-copy h2 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.cookie-consent-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-consent-copy a {
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger delays */
.reveal[data-delay="100"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="200"] {
  transition-delay: 0.2s;
}

.reveal[data-delay="300"] {
  transition-delay: 0.3s;
}

.reveal[data-delay="400"] {
  transition-delay: 0.4s;
}

.reveal[data-delay="500"] {
  transition-delay: 0.5s;
}

@media (min-width: 760px) {
  .section {
    padding: 5.8rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 1rem;
    align-items: center;
  }

  .nav-item-group {
    position: relative;
    gap: 0;
  }

  .nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    padding: 0.85rem;
    border: 1px solid rgba(198, 165, 90, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
  }

  .nav-item-group:hover .nav-submenu,
  .nav-item-group:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-submenu a {
    padding: 0.2rem 0;
    white-space: nowrap;
  }

  .main-nav .nav-cta {
    margin: 0 0 0 0.3rem;
    padding-inline: 1.1rem;
  }

  .home-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  }

  .home-about-card {
    grid-template-columns: minmax(320px, 430px) 1fr;
    padding: 1.5rem;
  }

  .home-about-photo {
    min-height: 560px;
  }

  .home-section-head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

  .home-zones-grid .zone-card:first-child {
    grid-column: span 2;
  }

  .home-proof-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .home-contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }

  .page-hero-grid-single {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

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

  .contact-premium-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

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

  .services-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

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

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

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

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

  .property-gallery-item.is-large {
    grid-column: span 2;
    min-height: 320px;
  }

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

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

  .property-intro-grid,
  .property-buyer-grid,
  .property-contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .resource-download-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

  .contact-page-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

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

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

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

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

  .contact-band-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .media-split {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .guide-main-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .guide-section-shell,
  .guide-faq-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }

  .article-shell {
    grid-template-columns: minmax(320px, 0.36fr) minmax(0, 1fr);
    align-items: start;
    gap: 4.5rem;
  }

  .article-shell-simple {
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  }

  .article-sidebar {
    position: sticky;
    top: 98px;
  }

  .article-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  }

  .article-reading-card {
    max-width: 900px;
  }

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

  .article-section-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    align-items: start;
  }

  .guide-faq-support {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
    align-items: start;
  }

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

  .footer-grid>div+div {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 1.25rem;
  }

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

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

@media (max-width: 759px) {
  .hero {
    min-height: 64vh;
  }

  .guide-highlights-section {
    margin-top: 0;
  }

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

  .content-aside {
    position: static;
  }

  .home-hero-copy h1 {
    max-width: 11ch;
  }

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

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

  .property-hero-facts,
  .property-data-grid,
  .property-potential-grid,
  .property-gallery-grid,
  .property-intro-grid,
  .property-buyer-grid,
  .property-contact-layout {
    grid-template-columns: 1fr;
  }

  .property-gallery-item,
  .property-gallery-item.is-large {
    min-height: 240px;
    grid-column: auto;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .home-hero-image {
    min-height: 440px;
  }

  .home-hero-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .home-hero-visual {
    padding-left: 0;
  }

  .footer-legal {
    flex-direction: column;
  }

  .cta-banner {
    padding: 4rem 1.5rem;
  }

  .guide-section-shell-reverse .guide-section-side,
  .article-section-grid-reverse .article-note-card {
    order: 0;
  }

  .article-sidebar {
    position: static;
  }

  .article-reading-body {
    padding: 1.35rem;
  }

  .article-reading-media img {
    min-height: 240px;
  }

  .article-hero-media {
    min-height: 250px;
  }

  .article-prose {
    padding: 1.35rem;
  }

  .article-sidebar-avatar {
    max-width: 92px;
  }
}

.blog-faq-section {
  border-top: 1px solid var(--line);
  padding: 5.5rem 0;
}

.faq-accordion-item-global {
  margin-bottom: 1.25rem;
}

.faq-accordion-item-global .faq-accordion-item {
  border: 1px solid rgba(198, 165, 90, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-accordion-item-global .faq-accordion-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(198, 165, 90, 0.15);
}

.faq-accordion-item-global summary {
  padding: 1.4rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-primary);
  background: rgba(198, 165, 90, 0.015);
  cursor: pointer;
}

.faq-accordion-item-global details[open] summary {
  background: rgba(198, 165, 90, 0.03);
  border-bottom: 1px solid rgba(198, 165, 90, 0.06);
}

.faq-accordion-item-global .faq-accordion-body {
  padding: 1.75rem;
}
