:root {
  --aiv-ink: #142033;
  --aiv-muted: #667085;
  --aiv-royal: #10284d;
  --aiv-red: #5b0f2f;
  --aiv-soft: #f6f8fb;
  --aiv-line: rgba(20,32,51,.10);
}

.aiv-page {
  background: #fff;
  color: var(--aiv-ink);
  font-family: inherit;
}

.aiv-page * { box-sizing: border-box; }

.aiv-page a { color: inherit; }

.aiv-page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.aiv-page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16,40,77,.94), rgba(20,32,51,.88)), var(--aiv-royal);
  color: #fff;
  padding: 84px 0 78px;
}

.aiv-page-hero:after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.aiv-eyebrow {
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.aiv-page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.04em;
}

.aiv-page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.aiv-hero-actions,
.aiv-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.aiv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--aiv-red);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(91,15,47,.22);
}

.aiv-btn.aiv-btn-light {
  background: #fff;
  color: var(--aiv-ink) !important;
  box-shadow: none;
}

.aiv-section {
  padding: 78px 0;
}

.aiv-section.alt {
  background: var(--aiv-soft);
}

.aiv-section h2 {
  margin: 0 0 16px;
  color: var(--aiv-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.aiv-lead {
  max-width: 780px;
  margin: 0;
  color: var(--aiv-muted);
  font-size: 18px;
  line-height: 1.8;
}

.aiv-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 48px;
  align-items: center;
}

.aiv-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.aiv-info-card,
.aiv-contact-card,
.aiv-process-card {
  border: 1px solid var(--aiv-line);
  border-radius: 22px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(20,32,51,.06);
}

.aiv-info-card h3,
.aiv-contact-card h3,
.aiv-process-card h3 {
  margin: 0 0 10px;
  color: var(--aiv-ink);
  font-size: 21px;
}

.aiv-info-card p,
.aiv-contact-card p,
.aiv-process-card p {
  margin: 0;
  color: var(--aiv-muted);
  line-height: 1.7;
}

.aiv-stat-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.aiv-stat {
  border-radius: 22px;
  background: #fff;
  padding: 26px;
  border: 1px solid var(--aiv-line);
}

.aiv-stat strong {
  display: block;
  color: var(--aiv-red);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  line-height: 1;
}

.aiv-stat span {
  display: block;
  margin-top: 8px;
  color: var(--aiv-muted);
  line-height: 1.4;
}

.aiv-process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-top: 34px;
}

.aiv-process-card:before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--aiv-red);
  font-weight: 900;
  letter-spacing: .08em;
}

.aiv-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.aiv-contact-stack {
  display: grid;
  gap: 16px;
}

.aiv-contact-card a {
  color: var(--aiv-royal);
  font-weight: 800;
  text-decoration: none;
}

.aiv-note-box {
  border-radius: 26px;
  background: var(--aiv-royal);
  color: #fff;
  padding: 34px;
}

.aiv-note-box h2,
.aiv-note-box h3 { color: #fff; }
.aiv-note-box p { color: rgba(255,255,255,.78); }

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

.aiv-check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.84);
  line-height: 1.6;
}

.aiv-check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aiv-red);
}

.aiv-cta-band {
  border-radius: 32px;
  background: linear-gradient(135deg, #10284d, #142033);
  color: #fff;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.aiv-cta-band h2 {
  color: #fff;
  margin: 0 0 10px;
}

.aiv-cta-band p {
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: 620px;
}

@media (max-width: 900px) {
  .aiv-two-col,
  .aiv-contact-layout,
  .aiv-cta-band { grid-template-columns: 1fr; display: grid; }
  .aiv-card-grid,
  .aiv-process { grid-template-columns: 1fr; }
  .aiv-stat-panel { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .aiv-page-shell { padding: 0 18px; }
  .aiv-page-hero { padding: 62px 0; }
  .aiv-section { padding: 56px 0; }
  .aiv-stat-panel { grid-template-columns: 1fr; }
  .aiv-cta-band { padding: 30px; }
  .aiv-btn { width: 100%; }
}
/* About and Contact use custom full-width sections, so remove the theme's default widget block there. */
body.page-id-5756 .footer-one .foot-top,
body.page-id-5757 .footer-one .foot-top {
  display: none !important;
}

.aiv-fullwidth-main {
  width: 100%;
  overflow: hidden;
}
/* Full-width villa photo banners for About and Contact. */
body.page-id-5756 .aiv-page-hero,
body.page-id-5757 .aiv-page-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.page-id-5756 .aiv-page-hero {
  background-image:
    linear-gradient(90deg, rgba(10, 18, 31, .88) 0%, rgba(10, 18, 31, .68) 44%, rgba(10, 18, 31, .26) 100%),
    url("/wp-content/uploads/2026/06/lsi-9d48c0df628589bb-01.webp");
}

body.page-id-5757 .aiv-page-hero {
  background-image:
    linear-gradient(90deg, rgba(10, 18, 31, .88) 0%, rgba(10, 18, 31, .66) 46%, rgba(10, 18, 31, .22) 100%),
    url("/wp-content/uploads/2026/06/lsi-e3b74eb6c64812b5-01.webp");
}

body.page-id-5756 .aiv-page-hero:after,
body.page-id-5757 .aiv-page-hero:after {
  background: rgba(255,255,255,.06);
}

@media (max-width: 700px) {
  body.page-id-5756 .aiv-page-hero,
  body.page-id-5757 .aiv-page-hero {
    min-height: 520px;
    background-position: center center;
  }
}
/* Give banner copy a wider, calmer reading column. */
body.page-id-5756 .aiv-page-hero .aiv-page-shell,
body.page-id-5757 .aiv-page-hero .aiv-page-shell {
  width: 100%;
}

body.page-id-5756 .aiv-page-hero h1,
body.page-id-5757 .aiv-page-hero h1 {
  max-width: 980px;
  line-height: 1.04;
  letter-spacing: -.035em;
}

body.page-id-5756 .aiv-page-hero p:not(.aiv-eyebrow),
body.page-id-5757 .aiv-page-hero p:not(.aiv-eyebrow) {
  max-width: 820px;
  line-height: 1.82;
}

@media (min-width: 1100px) {
  body.page-id-5756 .aiv-page-hero h1,
  body.page-id-5757 .aiv-page-hero h1 {
    font-size: clamp(56px, 5.4vw, 82px);
  }
}

@media (max-width: 700px) {
  body.page-id-5756 .aiv-page-hero h1,
  body.page-id-5757 .aiv-page-hero h1 {
    max-width: 100%;
    line-height: 1.08;
  }

  body.page-id-5756 .aiv-page-hero p:not(.aiv-eyebrow),
  body.page-id-5757 .aiv-page-hero p:not(.aiv-eyebrow) {
    max-width: 100%;
    line-height: 1.7;
  }
}
/* AIV: keep About and Contact hero copy readable over photo banners. */
body.page-id-5756 .aiv-page-hero,
body.page-id-5757 .aiv-page-hero,
body.page-id-5756 .aiv-page-hero h1,
body.page-id-5757 .aiv-page-hero h1,
body.page-id-5756 .aiv-page-hero p,
body.page-id-5757 .aiv-page-hero p,
body.page-id-5756 .aiv-page-hero .aiv-eyebrow,
body.page-id-5757 .aiv-page-hero .aiv-eyebrow {
  color: #ffffff !important;
}

body.page-id-5756 .aiv-page-hero p,
body.page-id-5757 .aiv-page-hero p {
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

/* AIV: readable text on dark sections. */
.aiv-note-box,
.aiv-note-box h2,
.aiv-note-box h3,
.aiv-note-box p,
.aiv-note-box li,
.aiv-note-box a,
.aiv-cta-band,
.aiv-cta-band h2,
.aiv-cta-band h3,
.aiv-cta-band p,
.aiv-cta-band li,
.aiv-cta-band a {
  color: #ffffff !important;
}

.aiv-note-box p,
.aiv-note-box li,
.aiv-cta-band p,
.aiv-cta-band li {
  opacity: .96;
}

/* AIV destinations directory page. */
.aiv-destinations-page {
  background: #fff;
}

.aiv-destinations-hero {
  padding: 38px 0 30px;
  background: #fff;
  color: #142033;
}

.aiv-destinations-page .aiv-page-shell {
  max-width: 1060px;
}

.aiv-destinations-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #142033;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.aiv-destinations-hero p:not(.aiv-eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  color: #142033;
  font-size: 14px;
  line-height: 1.7;
}

.aiv-destination-search-wrap {
  margin-top: 28px;
  max-width: 620px;
}

.aiv-destination-search {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(20,32,51,.14);
  border-radius: 999px;
  padding: 0 24px;
  background: #fff;
  color: #142033;
  font-size: 15px;
  box-shadow: 0 14px 34px rgba(20,32,51,.08);
}

.aiv-destinations-list {
  padding: 44px 0 76px;
}

.aiv-destination-state-block {
  margin-bottom: 58px;
}

.aiv-destination-state-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.aiv-destination-state-head h2 {
  margin: 0;
  color: #142033;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.05;
}

.aiv-destination-state-head p {
  margin: 8px 0 0;
  color: #667085;
  font-weight: 700;
}

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

.aiv-destination-card {
  position: relative;
  display: flex;
  min-height: 255px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border: 0;
  border-radius: 13px;
  background-color: #142033;
  background-position: center;
  background-size: cover;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 18px 42px rgba(20,32,51,.10);
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease;
}

.aiv-destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(135deg, #5b0f2f, #142033);
}

.aiv-destination-card-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.aiv-destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5,8,14,.28) 0%, rgba(5,8,14,.48) 45%, rgba(5,8,14,.82) 100%);
  transition: background .18s ease;
}

.aiv-destination-card-all::after {
  background: linear-gradient(180deg, rgba(5,8,14,.28) 0%, rgba(5,8,14,.48) 45%, rgba(5,8,14,.84) 100%);
}

.aiv-destination-card:hover,
.aiv-destination-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 28px 68px rgba(91,15,47,.2);
}

.aiv-destination-card:hover::after,
.aiv-destination-card:focus::after {
  background: linear-gradient(180deg, rgba(5,8,14,.18) 0%, rgba(5,8,14,.4) 42%, rgba(5,8,14,.86) 100%);
}

.aiv-destination-city {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.15;
  text-shadow: 0 4px 18px rgba(0,0,0,.36);
}

.aiv-destination-count {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 3px 14px rgba(0,0,0,.32);
}

.aiv-destination-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 34px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-shadow: 0 3px 14px rgba(0,0,0,.32);
}

.aiv-destination-empty {
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  color: #667085;
  font-weight: 700;
}

@media (max-width: 980px) {
  .aiv-destination-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .aiv-destinations-hero {
    padding: 62px 0 42px;
  }

  .aiv-destination-card-grid {
    grid-template-columns: 1fr;
  }

  .aiv-destination-card {
    min-height: 230px;
    padding: 24px;
  }
}
