/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/* === SECTION 1: Hero === */

:root {
  --pxv-navy: #0D1B2A;
  --pxv-gold: #C9A96E;
  --pxv-gold-dark: #a8863e;
  --pxv-sand: #F8F5F0;
  --pxv-white: #FFFFFF;
  --pxv-charcoal: #4A4A4A;
  --pxv-font-serif: 'Cormorant Garamond', Georgia, serif;
  --pxv-font-sans: 'Jost', sans-serif;
}

.pxv-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('/wp-content/uploads/2026/04/imgi_71_20250604_113229129.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pxv-font-sans);
  overflow: hidden;
}

.pxv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.45) 0%,
    rgba(13, 27, 42, 0.60) 50%,
    rgba(13, 27, 42, 0.75) 100%
  );
  z-index: 1;
}

.pxv-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  width: 100%;
}

.pxv-hero-eyebrow {
  font-family: var(--pxv-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pxv-gold);
  margin-bottom: 20px;
}

.pxv-hero-headline {
  font-family: var(--pxv-font-serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--pxv-white);
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.pxv-hero-sub {
  font-family: var(--pxv-font-sans);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.6;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pxv-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pxv-hero-ctas br {
  display: none;
}

.pxv-btn-primary,
.pxv-btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--pxv-font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.pxv-btn-primary i,
.pxv-btn-secondary i {
  font-size: 14px;
  margin-right: 8px;
  flex-shrink: 0;
}

.pxv-btn-primary {
  background: var(--pxv-gold);
  color: var(--pxv-navy);
  border: 2px solid var(--pxv-gold);
}

.pxv-btn-primary:hover {
  background: var(--pxv-gold-dark);
  border-color: var(--pxv-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

.pxv-btn-secondary {
  background: transparent;
  color: var(--pxv-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.pxv-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--pxv-white);
  transform: translateY(-2px);
}

.pxv-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: pxv-bounce 2s ease-in-out infinite;
}

.pxv-hero-scroll i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes pxv-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 768px) {
  .pxv-hero {
    min-height: 100svh;
    background-position: center top;
  }
  .pxv-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .pxv-btn-primary,
  .pxv-btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pxv-hero-content {
    padding: 0 20px;
  }
  .pxv-hero-eyebrow {
    font-size: 10px;
  }
}

/* === SECTION 1: Hero — tagline addition === */
.pxv-hero-tagline {
  font-family: var(--pxv-font-sans);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pxv-gold);
  margin-bottom: 28px;
  margin-top: -10px;
}

@media (max-width: 480px) {
  .pxv-hero-tagline {
    font-size: 12px;
    letter-spacing: 0.14em;
  }
}

/* === SECTION 2: Properties Grid === */
.pxv-props {
  background: var(--pxv-sand);
  padding: 100px 0;
  font-family: var(--pxv-font-sans);
}
.pxv-props-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.pxv-props-header {
  text-align: center;
  margin-bottom: 64px;
}
.pxv-props-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pxv-gold);
  margin-bottom: 16px;
}
.pxv-props-headline {
  font-family: var(--pxv-font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--pxv-navy);
  margin: 0 0 16px 0;
  line-height: 1.1;
}
.pxv-props-subhead {
  font-size: 16px;
  font-weight: 300;
  color: var(--pxv-charcoal);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.pxv-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pxv-prop-card {
  background: var(--pxv-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.07);
}
.pxv-prop-card * {
  cursor: default;
}
.pxv-prop-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #e8e4de;
}
.pxv-prop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pxv-prop-info {
  padding: 20px 24px 24px;
}
.pxv-prop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pxv-prop-meta span {
  font-size: 15.94px;
  font-weight: 500;
  color: var(--pxv-charcoal);
  letter-spacing: 0.04em;
}
.pxv-prop-meta span i {
  margin-right: 5px;
  color: var(--pxv-gold);
  font-size: 14.61px;
}
.pxv-prop-rating {
  color: var(--pxv-navy) !important;
  font-weight: 600 !important;
}
.pxv-prop-rating i {
  color: var(--pxv-gold) !important;
}
.pxv-prop-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}
.pxv-prop-specs span {
  font-size: 15.94px;
  font-weight: 400;
  color: var(--pxv-charcoal);
}
.pxv-prop-specs span i {
  margin-right: 5px;
  color: var(--pxv-gold);
  font-size: 14.61px;
}
.pxv-prop-btn {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  font-family: var(--pxv-font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  padding: 14px 24px;
  background: var(--pxv-navy);
  color: var(--pxv-white);
  border: 2px solid var(--pxv-navy);
  border-radius: 2px;
  cursor: pointer !important;
}
.pxv-prop-btn i {
  margin-right: 8px;
  font-size: 12px;
}
.pxv-prop-btn:hover {
  background: var(--pxv-gold);
  border-color: var(--pxv-gold);
  color: var(--pxv-navy);
}
.pxv-props-grid br {
  display: none;
}

/* === SECTION: Properties — direct booking nudge === */
.pxv-props-direct-nudge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.06) 100%);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 4px;
  padding: 18px 28px;
  margin-top: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.pxv-props-direct-nudge svg {
  width: 24px;
  height: 24px;
  color: var(--pxv-gold);
  flex-shrink: 0;
  transform: rotate(180deg);
}
.pxv-props-direct-nudge span {
  font-family: var(--pxv-font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--pxv-navy);
  line-height: 1.5;
  text-align: left;
}
.pxv-props-direct-nudge span a {
  color: var(--pxv-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pxv-props-direct-nudge span a:hover {
  color: var(--pxv-gold-dark);
}
@media (max-width: 768px) {
  .pxv-props-direct-nudge {
    padding: 16px 20px;
    gap: 12px;
  }
  .pxv-props-direct-nudge span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .pxv-props-direct-nudge {
    padding: 14px 16px;
    text-align: left;
    gap: 10px;
  }
  .pxv-props-direct-nudge span {
    font-size: 13px;
  }
}

/* === SECTION 2: Properties Grid — Dual Button Addition === */
.pxv-prop-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pxv-prop-btns br { display: none; }
.pxv-prop-btn--primary {
  background: var(--pxv-navy);
  color: var(--pxv-white);
  border: 2px solid var(--pxv-navy);
}
.pxv-prop-btn--primary:hover {
  background: var(--pxv-gold);
  border-color: var(--pxv-gold);
  color: var(--pxv-navy);
}
.pxv-prop-btn--secondary {
  background: transparent;
  color: var(--pxv-navy);
  border: 2px solid var(--pxv-navy);
}
.pxv-prop-btn--secondary:hover {
  background: var(--pxv-navy);
  color: var(--pxv-white);
}

.pxv-prop-btn--secondary:hover {
  background: var(--pxv-gold);
  border-color: var(--pxv-gold);
  color: var(--pxv-navy);
}

@media (max-width: 1024px) {
  .pxv-props-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .pxv-props {
    padding: 80px 0;
  }
  .pxv-props-inner {
    padding: 0 24px;
  }
  .pxv-props-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pxv-props-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .pxv-props {
    padding: 60px 0;
  }
  .pxv-props-inner {
    padding: 0 16px;
  }
  .pxv-props-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === SECTION 3: Experiences Strip — Flatsome injection fix === */
.pxv-exp-grid p,
.pxv-exp-grid br {
  display: none;
}

/* === SECTION 3: Experiences Strip === */

.pxv-exp {
  background: var(--pxv-white);
  padding: 100px 0;
  font-family: var(--pxv-font-sans);
}

.pxv-exp-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.pxv-exp-header {
  text-align: center;
  margin-bottom: 56px;
}

.pxv-exp-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pxv-gold);
  margin-bottom: 16px;
}

.pxv-exp-headline {
  font-family: var(--pxv-font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--pxv-navy);
  margin: 0;
  line-height: 1.1;
}

.pxv-exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pxv-exp-grid br {
  display: none;
}

.pxv-exp-tile {
  position: relative;
  display: block;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.pxv-exp-tile * {
  cursor: pointer;
}

.pxv-exp-img-wrap {
  position: absolute;
  inset: 0;
}

.pxv-exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.pxv-exp-tile:hover .pxv-exp-img-wrap img {
  transform: scale(1.04);
}

.pxv-exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.10) 0%,
    rgba(13, 27, 42, 0.65) 100%
  );
  z-index: 1;
}

.pxv-exp-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pxv-exp-label span {
  font-family: var(--pxv-font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--pxv-white);
  letter-spacing: 0.04em;
}

.pxv-exp-label i {
  font-size: 14px;
  color: var(--pxv-gold);
  transition: transform 0.2s ease;
}

.pxv-exp-tile:hover .pxv-exp-label i {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .pxv-exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pxv-exp-tile {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .pxv-exp {
    padding: 80px 0;
  }
  .pxv-exp-inner {
    padding: 0 24px;
  }
  .pxv-exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pxv-exp-tile {
    height: 260px;
  }
  .pxv-exp-label span {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .pxv-exp {
    padding: 60px 0;
  }
  .pxv-exp-inner {
    padding: 0 16px;
  }
  .pxv-exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pxv-exp-tile {
    height: 200px;
  }
  .pxv-exp-label {
    padding: 20px 16px;
  }
  .pxv-exp-label span {
    font-size: 14px;
  }
}

/* === SECTION 4: About Strip === */

.pxv-about {
  background: var(--pxv-sand);
  padding: 100px 0;
  font-family: var(--pxv-font-sans);
}

.pxv-about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pxv-about-img-col {
  position: relative;
}

.pxv-about-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}

.pxv-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pxv-about-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pxv-about-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pxv-gold);
  margin-bottom: 16px;
}

.pxv-about-headline {
  font-family: var(--pxv-font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--pxv-navy);
  line-height: 1.1;
  margin: 0 0 32px 0;
}

.pxv-about-body {
  margin-bottom: 40px;
}

.pxv-about-p {
  font-size: 15px;
  font-weight: 300;
  color: var(--pxv-charcoal);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pxv-about-p:last-child {
  margin-bottom: 0;
}

.pxv-about-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pxv-about-ctas br {
  display: none;
}

.pxv-btn-secondary--dark {
  color: var(--pxv-navy) !important;
  border-color: rgba(13, 27, 42, 0.4) !important;
}

.pxv-btn-secondary--dark:hover {
  background: rgba(13, 27, 42, 0.06) !important;
  border-color: var(--pxv-navy) !important;
}

@media (max-width: 1024px) {
  .pxv-about-inner {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .pxv-about {
    padding: 80px 0;
  }
  .pxv-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .pxv-about-img-wrap {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .pxv-about {
    padding: 60px 0;
  }
  .pxv-about-inner {
    padding: 0 16px;
  }
  .pxv-about-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .pxv-btn-primary,
  .pxv-btn-secondary--dark {
    width: 100%;
    justify-content: center;
  }
}

/* === SECTION 5: Blog Grid === */

.pxv-blog {
  background: var(--pxv-white);
  padding: 100px 0;
  font-family: var(--pxv-font-sans);
}

.pxv-blog-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.pxv-blog-header {
  text-align: center;
  margin-bottom: 56px;
}

.pxv-blog-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pxv-gold);
  margin-bottom: 16px;
}

.pxv-blog-headline {
  font-family: var(--pxv-font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--pxv-navy);
  margin: 0;
  line-height: 1.1;
}

.pxv-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pxv-blog-grid br {
  display: none;
}

.pxv-blog-card {
  display: block;
  text-decoration: none;
  background: var(--pxv-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.07);
}

.pxv-blog-card * {
  cursor: pointer;
}

.pxv-blog-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e8e4de;
}

.pxv-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pxv-blog-img-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4de;
}

.pxv-blog-card-body {
  padding: 20px 22px 24px;
}

.pxv-blog-card-title {
  font-family: var(--pxv-font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--pxv-navy);
  line-height: 1.3;
  margin-bottom: 10px;
}

.pxv-blog-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--pxv-charcoal);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pxv-blog-card-meta {
  font-size: 11px;
  font-weight: 500;
  color: var(--pxv-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pxv-blog-card-meta i {
  margin-right: 6px;
  font-size: 10px;
}

@media (max-width: 1024px) {
  .pxv-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .pxv-blog {
    padding: 80px 0;
  }
  .pxv-blog-inner {
    padding: 0 24px;
  }
  .pxv-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pxv-blog-img-wrap {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .pxv-blog {
    padding: 60px 0;
  }
  .pxv-blog-inner {
    padding: 0 16px;
  }
  .pxv-blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* === GLOBAL FOOTER === */

.pxv-footer {
  background: var(--pxv-navy);
  font-family: var(--pxv-font-sans);
  color: rgba(255, 255, 255, 0.75);
}

.pxv-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 64px;
}

.pxv-footer br {
  display: none;
}

.pxv-footer-logo {
  display: block;
  width: 120px;
  height: auto;
  margin-bottom: 24px;
}

.pxv-footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.pxv-footer-about-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  max-width: 320px;
}

.pxv-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pxv-footer-social br {
  display: none;
}

.pxv-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
}

.pxv-footer-social-link:hover {
  border-color: var(--pxv-gold);
  color: var(--pxv-gold);
}

.pxv-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pxv-gold);
  margin-bottom: 24px;
}

.pxv-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pxv-footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  line-height: 1;
}

.pxv-footer-links a:hover {
  color: var(--pxv-white);
}

.pxv-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pxv-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.pxv-footer-contact-item i {
  color: var(--pxv-gold);
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.pxv-footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.pxv-footer-contact-item a:hover {
  color: var(--pxv-white);
}

.pxv-footer-contact-indent {
  padding-left: 24px;
}

.pxv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pxv-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pxv-footer-bottom span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .pxv-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .pxv-footer-about {
    grid-column: 1 / -1;
  }
  .pxv-footer-about-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .pxv-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 24px 48px;
  }
  .pxv-footer-bottom-inner {
    padding: 20px 24px;
  }
}

/* === GLOBAL FOOTER === */
@media (max-width: 480px) {
  .pxv-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding: 48px 16px 40px;
  }
  .pxv-footer-about {
    grid-column: 1 / -1;
  }
  .pxv-footer-bottom-inner {
    padding: 20px 16px;
    text-align: center;
  }
}

/* === SECTION 1: Rentals Hero === */

.pxv-rentals-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/wp-content/uploads/2026/04/Casa-Sol-img1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pxv-rentals-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.62) 0%, rgba(13,27,42,0.48) 100%);
  z-index: 0;
}

.pxv-rentals-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 780px;
  margin: 0 auto;
}

.pxv-rentals-hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 16px;
}

.pxv-rentals-hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.08;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.pxv-rentals-hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto 36px;
}

.pxv-rentals-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.pxv-rentals-hero-ctas br { display: none; }

.pxv-rentals-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: #0D1B2A;
  background: #C9A96E;
  padding: 15px 32px;
  border: 2px solid #C9A96E;
  text-decoration: none;
  cursor: pointer;
}

.pxv-rentals-hero-btn-primary:hover {
  background: #a8863e;
  border-color: #a8863e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}

.pxv-rentals-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
  background: transparent;
  padding: 15px 32px;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  cursor: pointer;
}

.pxv-rentals-hero-btn-secondary:hover {
  border-color: #C9A96E;
  color: #C9A96E;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .pxv-rentals-hero { min-height: 480px; }
  .pxv-rentals-hero-heading { font-size: 42px; }
  .pxv-rentals-hero-sub { font-size: 15px; }
}

@media (max-width: 480px) {
  .pxv-rentals-hero-heading { font-size: 34px; }
  .pxv-rentals-hero-ctas { flex-direction: column; align-items: center; }
  .pxv-rentals-hero-btn-primary,
  .pxv-rentals-hero-btn-secondary { width: 100%; justify-content: center; }
}

/* === SECTION 2: Rentals Properties Grid === */

.pxv-rentals-grid-wrap {
  background: #F8F5F0;
  padding: 100px 40px;
}

.pxv-rentals-grid-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.pxv-rentals-grid-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 12px;
}

.pxv-rentals-grid-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1;
  color: #0D1B2A;
  margin: 0 0 16px;
}

.pxv-rentals-grid-sub {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #4A4A4A;
}

.pxv-rentals-direct-nudge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.06) 100%);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 4px;
  padding: 18px 28px;
  margin-top: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.pxv-rentals-direct-nudge svg {
  width: 24px;
  height: 24px;
  color: #C9A96E;
  flex-shrink: 0;
  transform: rotate(180deg);
}

.pxv-rentals-direct-nudge span {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0D1B2A;
  line-height: 1.5;
  text-align: left;
}

.pxv-rentals-direct-nudge span a {
  color: #C9A96E;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pxv-rentals-direct-nudge span a:hover {
  color: #a8843e;
}

.pxv-rentals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.pxv-rentals-grid br { display: none; }

.pxv-rentals-card {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
}

.pxv-rentals-card * { cursor: default; }
.pxv-rentals-card .pxv-rentals-card-btn { cursor: pointer; }

.pxv-rentals-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.pxv-rentals-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pxv-rentals-card-location {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(13,27,42,0.72);
  padding: 5px 10px;
}

.pxv-rentals-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pxv-rentals-card-rating {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #C9A96E;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pxv-rentals-card-rating .fa { font-size: 11px; }

.pxv-rentals-card-rating--new {
  display: inline-flex;
  align-items: center;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0D1B2A;
  background: #C9A96E;
  padding: 3px 8px;
  width: fit-content;
  margin-bottom: 8px;
}

.pxv-rentals-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #0D1B2A;
  margin-bottom: 12px;
}

.pxv-rentals-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pxv-rentals-card-meta br { display: none; }

.pxv-rentals-card-meta span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pxv-rentals-card-meta .fa {
  color: #C9A96E;
  font-size: 13px;
}

.pxv-rentals-card-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.pxv-rentals-card-btns br { display: none; }

.pxv-rentals-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  padding: 12px 20px;
  width: 100%;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pxv-rentals-card-btn--primary {
  background: transparent;
  color: #0D1B2A;
  border: 2px solid #C9A96E;
}

.pxv-rentals-card-btn--primary:hover {
  background: #C9A96E;
  color: #0D1B2A;
}

.pxv-rentals-card-btn--secondary {
  background: #0D1B2A;
  color: #ffffff;
  border: 2px solid #0D1B2A;
}

.pxv-rentals-card-btn--secondary:hover {
  background: #C9A96E;
  border-color: #C9A96E;
  color: #0D1B2A;
}

@media (max-width: 768px) {
  .pxv-rentals-grid-wrap { padding: 80px 24px; }
  .pxv-rentals-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pxv-rentals-grid-heading { font-size: 36px; }
  .pxv-rentals-direct-nudge { padding: 16px 20px; gap: 12px; }
  .pxv-rentals-direct-nudge span { font-size: 14px; }
}

@media (max-width: 480px) {
  .pxv-rentals-grid-wrap { padding: 60px 16px; }
  .pxv-rentals-grid { grid-template-columns: 1fr; gap: 20px; }
  .pxv-rentals-grid-heading { font-size: 30px; }
  .pxv-rentals-direct-nudge { padding: 14px 16px; gap: 10px; }
  .pxv-rentals-direct-nudge span { font-size: 13px; }
}

/* === SECTION 3: Rentals CTA Strip === */

.pxv-rentals-cta-strip {
  background: #0D1B2A;
  padding: 100px 40px;
}

.pxv-rentals-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pxv-rentals-cta-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 14px;
}

.pxv-rentals-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0 0 18px;
}

.pxv-rentals-cta-sub {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin-bottom: 48px;
}

.pxv-rentals-cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pxv-rentals-cta-contacts br { display: none; }

.pxv-rentals-cta-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
}

.pxv-rentals-cta-contact-item .fa {
  font-size: 22px;
  color: #C9A96E;
  margin-bottom: 4px;
}

.pxv-rentals-cta-contact-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.pxv-rentals-cta-contact-link {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
}

.pxv-rentals-cta-contact-link:hover { color: #C9A96E; }

.pxv-rentals-cta-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.pxv-rentals-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.pxv-rentals-cta-btns br { display: none; }

.pxv-rentals-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: #0D1B2A;
  background: #C9A96E;
  padding: 15px 32px;
  border: 2px solid #C9A96E;
  text-decoration: none;
  cursor: pointer;
}

.pxv-rentals-cta-btn-primary:hover {
  background: #a8863e;
  border-color: #a8863e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}

.pxv-rentals-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
  background: transparent;
  padding: 15px 32px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  cursor: pointer;
}

.pxv-rentals-cta-btn-secondary:hover {
  border-color: #C9A96E;
  color: #C9A96E;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .pxv-rentals-cta-strip { padding: 80px 24px; }
  .pxv-rentals-cta-heading { font-size: 32px; }
  .pxv-rentals-cta-contact-item { padding: 0 24px; }
}

@media (max-width: 480px) {
  .pxv-rentals-cta-strip { padding: 60px 16px; }
  .pxv-rentals-cta-heading { font-size: 28px; }
  .pxv-rentals-cta-contacts { flex-direction: column; gap: 28px; }
  .pxv-rentals-cta-divider { width: 60px; height: 1px; }
  .pxv-rentals-cta-contact-item { padding: 0; }
  .pxv-rentals-cta-btns { flex-direction: column; align-items: center; }
  .pxv-rentals-cta-btn-primary,
  .pxv-rentals-cta-btn-secondary { width: 100%; justify-content: center; }
}

/* === SECTION 1: About Hero === */
.pxv-about-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-image: url('/wp-content/uploads/2026/04/IMG_1331-rotated-1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pxv-about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.35) 100%);
}
.pxv-about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
}
.pxv-about-hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 16px;
}
.pxv-about-hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 20px;
}
.pxv-about-hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .pxv-about-hero { min-height: 420px; }
  .pxv-about-hero-heading { font-size: 40px; }
}
@media (max-width: 480px) {
  .pxv-about-hero { min-height: 360px; }
  .pxv-about-hero-heading { font-size: 32px; }
  .pxv-about-hero-sub { font-size: 16px; }
}

/* === SECTION 2: About Intro === */
.pxv-about-intro {
  background: #ffffff;
  padding: 100px 24px;
}
.pxv-about-intro-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pxv-about-intro-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 14px;
}
.pxv-about-intro-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.15;
  color: #0D1B2A;
  margin: 0 0 28px;
}
.pxv-about-intro-body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 18px;
}
.pxv-about-intro-body:last-of-type {
  margin-bottom: 36px;
}
.pxv-about-intro-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.pxv-about-intro-ctas br { display: none; }
.pxv-about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C9A96E;
  color: #0D1B2A;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pxv-about-btn-primary:hover {
  background: #a8863e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
  color: #0D1B2A;
}
.pxv-about-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0D1B2A;
  border: 2px solid #0D1B2A;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}
.pxv-about-btn-secondary:hover {
  background: #0D1B2A;
  color: #ffffff;
}
.pxv-about-intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .pxv-about-intro { padding: 80px 24px; }
  .pxv-about-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pxv-about-intro-image { order: -1; }
  .pxv-about-intro-image img { height: 320px; }
  .pxv-about-intro-heading { font-size: 34px; }
}
@media (max-width: 480px) {
  .pxv-about-intro { padding: 60px 20px; }
  .pxv-about-intro-heading { font-size: 28px; }
  .pxv-about-btn-primary,
  .pxv-about-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* === SECTION 3: Fast Facts === */
.pxv-about-facts {
  background: #F8F5F0;
  padding: 100px 24px;
}
.pxv-about-facts-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.pxv-about-facts-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: #0D1B2A;
  margin-bottom: 48px;
}
.pxv-about-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pxv-about-facts-grid br { display: none; }
.pxv-about-fact-card {
  background: #ffffff;
  border: 1px solid rgba(13,27,42,0.08);
  padding: 36px 28px;
  cursor: default;
}
.pxv-about-fact-card * { cursor: default; }
.pxv-about-fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: #0D1B2A;
  line-height: 1;
  margin-bottom: 16px;
}
.pxv-about-fact-desc {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #4A4A4A;
}
@media (max-width: 768px) {
  .pxv-about-facts { padding: 80px 24px; }
  .pxv-about-facts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pxv-about-facts { padding: 60px 20px; }
  .pxv-about-facts-grid { grid-template-columns: 1fr; }
  .pxv-about-facts-label { font-size: 28px; }
  .pxv-about-fact-num { font-size: 44px; }
}

/* === SECTION 4: Contact Split === */
.pxv-about-contact {
  background: #0D1B2A;
  padding: 100px 24px;
}
.pxv-about-contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pxv-about-contact-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 14px;
}
.pxv-about-contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 20px;
}
.pxv-about-contact-body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}
.pxv-about-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pxv-about-contact-details br { display: none; }
.pxv-about-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}
.pxv-about-contact-item i {
  color: #C9A96E;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.pxv-about-contact-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pxv-about-contact-item a:hover { color: #C9A96E; }
.pxv-about-contact-form .wpcf7 { width: 100%; }
.pxv-about-contact-form .wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.pxv-about-contact-form .wpcf7-form-control-wrap { display: block; }
.pxv-about-contact-form input[type="text"],
.pxv-about-contact-form input[type="email"],
.pxv-about-contact-form input[type="tel"],
.pxv-about-contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
}
.pxv-about-contact-form input[type="text"]::placeholder,
.pxv-about-contact-form input[type="email"]::placeholder,
.pxv-about-contact-form input[type="tel"]::placeholder,
.pxv-about-contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.pxv-about-contact-form input[type="text"]:focus,
.pxv-about-contact-form input[type="email"]:focus,
.pxv-about-contact-form input[type="tel"]:focus,
.pxv-about-contact-form textarea:focus { border-color: #C9A96E; }
.pxv-about-contact-form textarea { min-height: 140px; resize: vertical; }
.pxv-about-contact-form input[type="submit"] {
  width: 100%;
  background: #C9A96E;
  color: #0D1B2A;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
}
.pxv-about-contact-form input[type="submit"]:hover {
  background: #a8863e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}
.wpcf7-not-valid-tip {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: #e07070;
  margin-top: 4px;
  display: block;
}
.wpcf7-response-output {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
@media (max-width: 768px) {
  .pxv-about-contact { padding: 80px 24px; }
  .pxv-about-contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pxv-about-contact-heading { font-size: 32px; }
}
@media (max-width: 480px) {
  .pxv-about-contact { padding: 60px 20px; }
  .pxv-about-contact-heading { font-size: 26px; }
}

/* === SECTION 1: Restaurants Hero === */
.pxv-rest-hero { position: relative; width: 100%; min-height: 520px; background-image: url('/wp-content/uploads/2026/04/imgi_83_puerto_vallarta_restaurants.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; }
.pxv-rest-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.35) 100%); }
.pxv-rest-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.pxv-rest-hero-eyebrow { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #C9A96E; margin-bottom: 16px; }
.pxv-rest-hero-heading { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 600; line-height: 1.1; color: #FFFFFF; margin: 0; }
@media (max-width: 768px) { .pxv-rest-hero { min-height: 420px; } .pxv-rest-hero-heading { font-size: 40px; } }
@media (max-width: 480px) { .pxv-rest-hero { min-height: 360px; } .pxv-rest-hero-heading { font-size: 32px; } }

/* === SECTION 2: Restaurant Entries === */
.pxv-rest-entry { width: 100%; padding: 100px 40px; box-sizing: border-box; }
.pxv-rest-sand { background: #F8F5F0; }
.pxv-rest-white { background: #FFFFFF; }
.pxv-rest-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.pxv-rest-img-wrap { width: 100%; }
.pxv-rest-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.pxv-rest-body { display: flex; flex-direction: column; gap: 16px; }
.pxv-rest-name { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: #0D1B2A; margin: 0; line-height: 1.1; }
.pxv-rest-specialties-label { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #C9A96E; margin-top: 8px; }
.pxv-rest-desc { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1.8; color: #4A4A4A; margin: 0; }
.pxv-rest-list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.pxv-rest-list li { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1.7; color: #4A4A4A; }
.pxv-rest-entry br { display: none; }
@media (max-width: 768px) { .pxv-rest-entry { padding: 80px 24px; } .pxv-rest-img { height: 300px; } .pxv-rest-name { font-size: 34px; } }
@media (max-width: 480px) { .pxv-rest-entry { padding: 60px 20px; } .pxv-rest-img { height: 240px; } .pxv-rest-name { font-size: 28px; } }

/* === SECTION 1: Beaches Hero === */
.pxv-beach-hero { position: relative; width: 100%; min-height: 520px; background-image: url('/wp-content/uploads/2026/04/imgi_85_puerto_vallarta_beaches.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; }
.pxv-beach-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.35) 100%); }
.pxv-beach-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.pxv-beach-hero-eyebrow { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #C9A96E; margin-bottom: 16px; }
.pxv-beach-hero-heading { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 600; line-height: 1.1; color: #FFFFFF; margin: 0; }
@media (max-width: 768px) { .pxv-beach-hero { min-height: 420px; } .pxv-beach-hero-heading { font-size: 40px; } }
@media (max-width: 480px) { .pxv-beach-hero { min-height: 360px; } .pxv-beach-hero-heading { font-size: 32px; } }

/* === SECTION 2: Beach Entries === */
.pxv-beach-entry { width: 100%; padding: 100px 40px; box-sizing: border-box; }
.pxv-beach-sand { background: #F8F5F0; }
.pxv-beach-white { background: #FFFFFF; }
.pxv-beach-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.pxv-beach-img-wrap { width: 100%; }
.pxv-beach-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.pxv-beach-body { display: flex; flex-direction: column; gap: 16px; }
.pxv-beach-name { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: #0D1B2A; margin: 0; line-height: 1.1; }
.pxv-beach-specialties-label { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #C9A96E; margin-top: 8px; }
.pxv-beach-desc { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1.8; color: #4A4A4A; margin: 0; }
.pxv-beach-list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.pxv-beach-list li { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1.7; color: #4A4A4A; }
.pxv-beach-li-title { font-weight: 700; color: #0D1B2A; }
.pxv-beach-entry br { display: none; }
.pxv-beach-entry * { cursor: default; }
@media (max-width: 768px) { .pxv-beach-entry { padding: 80px 24px; } .pxv-beach-img { height: 300px; } .pxv-beach-name { font-size: 34px; } }
@media (max-width: 480px) { .pxv-beach-entry { padding: 60px 20px; } .pxv-beach-img { height: 240px; } .pxv-beach-name { font-size: 28px; } }

/* === SECTION 1: Local Attractions Hero === */
.pxv-att-hero { position: relative; width: 100%; min-height: 520px; background-image: url('/wp-content/uploads/2026/04/imgi_86_puerto_vallarta_attractions.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; }
.pxv-att-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.35) 100%); }
.pxv-att-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.pxv-att-hero-eyebrow { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #C9A96E; margin-bottom: 16px; }
.pxv-att-hero-heading { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 600; line-height: 1.1; color: #FFFFFF; margin: 0; }
@media (max-width: 768px) { .pxv-att-hero { min-height: 420px; } .pxv-att-hero-heading { font-size: 40px; } }
@media (max-width: 480px) { .pxv-att-hero { min-height: 360px; } .pxv-att-hero-heading { font-size: 32px; } }

/* === SECTION 2: Attraction Entries === */
.pxv-att-entry { width: 100%; padding: 100px 40px; box-sizing: border-box; }
.pxv-att-sand { background: #F8F5F0; }
.pxv-att-white { background: #FFFFFF; }
.pxv-att-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.pxv-att-img-wrap { width: 100%; }
.pxv-att-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.pxv-att-body { display: flex; flex-direction: column; gap: 16px; }
.pxv-att-name { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: #0D1B2A; margin: 0; line-height: 1.1; }
.pxv-att-label { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #C9A96E; margin-top: 8px; }
.pxv-att-desc { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1.8; color: #4A4A4A; margin: 0; }
.pxv-att-list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.pxv-att-list li { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1.7; color: #4A4A4A; }
.pxv-att-li-title { font-weight: 700; color: #0D1B2A; }
.pxv-att-entry br { display: none; }
.pxv-att-entry * { cursor: default; }
@media (max-width: 768px) { .pxv-att-entry { padding: 80px 24px; } .pxv-att-img { height: 300px; } .pxv-att-name { font-size: 34px; } }
@media (max-width: 480px) { .pxv-att-entry { padding: 60px 20px; } .pxv-att-img { height: 240px; } .pxv-att-name { font-size: 28px; } }

/* === SECTION 1: Nightlife Hero === */
.pxv-night-hero { position: relative; width: 100%; min-height: 520px; background-image: url('/wp-content/uploads/2026/04/imgi_84_Nightlife-img.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; }
.pxv-night-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.35) 100%); }
.pxv-night-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.pxv-night-hero-eyebrow { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #C9A96E; margin-bottom: 16px; }
.pxv-night-hero-heading { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 600; line-height: 1.1; color: #FFFFFF; margin: 0; }
@media (max-width: 768px) { .pxv-night-hero { min-height: 420px; } .pxv-night-hero-heading { font-size: 40px; } }
@media (max-width: 480px) { .pxv-night-hero { min-height: 360px; } .pxv-night-hero-heading { font-size: 32px; } }

/* === SECTION 2: Nightlife Entries === */
.pxv-night-entry { width: 100%; padding: 100px 40px; box-sizing: border-box; }
.pxv-night-sand { background: #F8F5F0; }
.pxv-night-white { background: #FFFFFF; }
.pxv-night-inner { max-width: 1100px; margin: 0 auto; }
.pxv-night-body { display: flex; flex-direction: column; gap: 16px; }
.pxv-night-name { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: #0D1B2A; margin: 0; line-height: 1.1; }
.pxv-night-label { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #C9A96E; margin-top: 8px; }
.pxv-night-desc { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1.8; color: #4A4A4A; margin: 0; }
.pxv-night-list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.pxv-night-list li { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1.7; color: #4A4A4A; }
.pxv-night-li-title { font-weight: 700; color: #0D1B2A; }
.pxv-night-entry br { display: none; }
.pxv-night-entry * { cursor: default; }
@media (max-width: 768px) { .pxv-night-entry { padding: 80px 24px; } .pxv-night-name { font-size: 34px; } }
@media (max-width: 480px) { .pxv-night-entry { padding: 60px 20px; } .pxv-night-name { font-size: 28px; } }

/* === SECTION 1: Contact Hero === */
.pxv-contact-hero { position: relative; width: 100%; min-height: 520px; background-image: url('/wp-content/uploads/2026/04/puerto-vallarta-bg1.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; }
.pxv-contact-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.35) 100%); }
.pxv-contact-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.pxv-contact-hero-eyebrow { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #C9A96E; margin-bottom: 16px; }
.pxv-contact-hero-heading { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 600; line-height: 1.1; color: #FFFFFF; margin: 0 0 20px; }
.pxv-contact-hero-sub { font-family: 'Jost', sans-serif; font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.6; }
@media (max-width: 768px) { .pxv-contact-hero { min-height: 420px; } .pxv-contact-hero-heading { font-size: 40px; } .pxv-contact-hero-sub { font-size: 16px; } }
@media (max-width: 480px) { .pxv-contact-hero { min-height: 360px; } .pxv-contact-hero-heading { font-size: 32px; } }

/* === SECTION 2: Contact Split === */
.pxv-contact-split { width: 100%; padding: 100px 40px; background: #F8F5F0; box-sizing: border-box; }
.pxv-contact-split-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pxv-contact-split-left { display: flex; flex-direction: column; gap: 24px; }
.pxv-contact-split-eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #C9A96E; }
.pxv-contact-split-heading { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: #0D1B2A; margin: 0; line-height: 1.1; }
.pxv-contact-split-desc { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1.8; color: #4A4A4A; margin: 0; }
/* === SECTION 2: Contact Split — card spacing fix === */
.pxv-contact-info-cards { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.pxv-contact-info-card { display: flex; align-items: flex-start; gap: 16px; background: #FFFFFF; padding: 14px 20px; border-left: 3px solid #C9A96E; }
.pxv-contact-info-icon { font-size: 18px; color: #C9A96E; margin-top: 2px; min-width: 20px; text-align: center; }
.pxv-contact-info-content { display: flex; flex-direction: column; gap: 4px; }
.pxv-contact-info-label { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #0D1B2A; }
.pxv-contact-info-value { font-family: 'Jost', sans-serif; font-size: 15px; color: #4A4A4A; line-height: 1.6; text-decoration: none; }
a.pxv-contact-info-value:hover { color: #C9A96E; }
.pxv-contact-split-right { display: flex; flex-direction: column; }
.pxv-contact-form-wrap { background: #0D1B2A; padding: 48px; }
.pxv-contact-form-heading { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: #FFFFFF; margin-bottom: 32px; line-height: 1.2; }
.pxv-contact-split br { display: none; }
.pxv-contact-split * { cursor: default; }
a.pxv-contact-info-value { cursor: pointer; }

/* CF7 form styles */
.pxv-contact-cf7 .wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.pxv-contact-cf7 .wpcf7-form p { margin: 0; }
.pxv-contact-cf7 .wpcf7-form p br { display: none; }
.pxv-contact-cf7 input[type="text"],
.pxv-contact-cf7 input[type="email"],
.pxv-contact-cf7 input[type="tel"],
.pxv-contact-cf7 textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: #FFFFFF; font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 300; padding: 14px 16px; outline: none; transition: border-color 0.2s ease; box-sizing: border-box; border-radius: 0; -webkit-appearance: none; }
.pxv-contact-cf7 input[type="text"]::placeholder,
.pxv-contact-cf7 input[type="email"]::placeholder,
.pxv-contact-cf7 input[type="tel"]::placeholder,
.pxv-contact-cf7 textarea::placeholder { color: rgba(255,255,255,0.4); }
.pxv-contact-cf7 input[type="text"]:focus,
.pxv-contact-cf7 input[type="email"]:focus,
.pxv-contact-cf7 input[type="tel"]:focus,
.pxv-contact-cf7 textarea:focus { border-color: #C9A96E; }
.pxv-contact-cf7 textarea { min-height: 140px; resize: vertical; }
.pxv-contact-cf7 input[type="submit"] { width: 100%; background: #C9A96E; color: #0D1B2A; font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 16px 32px; border: none; cursor: pointer; line-height: 1; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; border-radius: 0; -webkit-appearance: none; }
.pxv-contact-cf7 input[type="submit"]:hover { background: #a8863e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,0.3); }
.pxv-contact-cf7 .wpcf7-not-valid-tip { font-family: 'Jost', sans-serif; font-size: 12px; color: #e07070; margin-top: 4px; display: block; }
.pxv-contact-cf7 .wpcf7-response-output { font-family: 'Jost', sans-serif; font-size: 14px; padding: 12px 16px; margin-top: 8px; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
  .pxv-contact-split { padding: 80px 24px; }
  .pxv-contact-split-inner { grid-template-columns: 1fr; gap: 48px; }
  .pxv-contact-split-heading { font-size: 34px; }
  .pxv-contact-form-wrap { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .pxv-contact-split { padding: 60px 20px; }
  .pxv-contact-split-heading { font-size: 28px; }
  .pxv-contact-form-wrap { padding: 28px 20px; }
}