/* Container Layout - Handles its own internal layout and centering safely */
.resort-hero {
  max-width: 900px;
  width: 100%;                 
  display: flex;
  flex-direction: column;
  gap: 24px;
  
  /* Safe centering on the page without breaking body */
  margin: 80px auto; 
  padding: 0 20px;
  box-sizing: border-box;
}

/* Typography Spacing & Arrangement */
.location-tagline {
  letter-spacing: 2px;
  margin: 0;
}

.main-title {
  margin: 0;
  line-height: 1.2;
}

.sub-title {
  display: block;
  margin-top: 8px;
}

.description {
  max-width: 650px;
  line-height: 1.6;
  margin: 0;
}

/* Horizontal Features List */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.feature-item {
  display: flex;
  align-items: center;
}

/* Bullet separators for the features */
.feature-item + .feature-item::before {
  content: "•";
  margin-right: 24px;
  opacity: 0.5;
}

/* Star icon for the first feature item */
.star-icon::before {
  content: "★";
  margin-right: 8px;
}

/* Button Container & Styles */
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  box-sizing: border-box;
}

/* Filled Primary Button */
.btn-primary-ov {
  background-color: #cca46a; 
  color: #000000;
  border: none;
}

/* Outlined Secondary Button */
.btn-secondary-ov {
	background-color: transparent;
    color: black;
    border: 1px solid grey;
}
	
/* Filled Primary Button */
.btn-primary-ov:hover {
  background-color: transparent; 
  color: #cca46a;
  border: 1px solid #cca46a;
}

/* Outlined Secondary Button */
.btn-secondary-ov:hover {
	background-color: grey;
    color: white;
    border: 1px solid grey;
}


/* section 2 */
/* Isolated container targeting just this feature row */
.vgm-features-grid-section {
/*   max-width: 1100px; */
  width: 100%;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Flexbox setup to arrange columns horizontally */
.vgm-features-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

/* Individual feature columns */
.vgm-feature-card {
  flex: 1;
  text-align: center;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* Vertical divider styling using native borders on intermediate cards */
.vgm-feature-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Layout spacing inside cards */
.vgm-feature-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: inline-block;
}

.vgm-feature-title {
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.vgm-feature-text {
  margin: 0;
  line-height: 1.5;
  opacity: 0.7; /* Gives the subtitle a lighter, muted tone */
}

/* Responsive adjustments for mobile/tablet screens */
@media (max-width: 768px) {
  .vgm-features-container {
    flex-direction: column;
    gap: 32px;
  }
  
  .vgm-feature-card {
    padding: 10px 0;
  }
  
  .vgm-feature-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 32px;
  }
}


/* section 3 */
/* Container Layout - Exact background color applied to match screenshots */
.ovh-split-showcase-section {
  width: 100%;
  background-color: #fbf9f4; /* Exact light cream background color from image */
  color: #2b2521;            /* Dark brown/charcoal text color from image */
  margin: 60px 0;
  padding: 80px 40px;
  box-sizing: border-box;
}

/* Two-column structural wrapper grid layout */
.ovh-split-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left Content Column */
.ovh-content-column {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

/* Right Image Column (Sticky Behavior) */
.ovh-visual-column {
  flex: 0.8;
  position: sticky;
  top: 40px;
}

/* Top Accent Headline */
.ovh-section-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  color: #9c8470; /* Muted brown accent shade */
}

/* Main Blockquote Styling */
.ovh-main-quote {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 50px 0;
  padding-left: 24px;
  border-left: 2px solid #cca46a; /* Gold vertical accent bar on left */
  color: #4a3e36;
}

/* Feature List Rows */
.ovh-features-list {
  display: flex;
  flex-direction: column;
}

.ovh-feature-row {
  display: flex;
  gap: 24px;
  padding: 35px 0;
  border-top: 1px solid #e1dbd2; /* Clean border separators */
}

.ovh-row-number {
  font-size: 13px;
  color: #cca46a; /* Gold colored sequence numbers */
  margin-top: 4px;
}

.ovh-row-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ovh-row-title {
  margin: 0;
/*   font-size: 20px; */
  font-weight: 500;
  line-height: 1.3;
}

.ovh-row-text {
  margin: 0;
/*   font-size: 14px; */
  line-height: 1.6;
  color: #61554d; /* Softer text color for details */
}

/* Bottom CTA Layout */
.ovh-action-container {
  border-top: 1px solid #e1dbd2;
  padding-top: 40px;
  margin-top: 20px;
}

/* Outlined Action Button Styling from screenshot */
.ovh-btn-dark-text {
  display: inline-block;
  background-color: transparent;
  color: #2b2521;
  border: 1px solid #2b2521;
  padding: 18px 40px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  box-sizing: border-box;
}

/* Image Container Layout with relative positioning for caption overlay */
.ovh-image-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* True responsive img sizing */
.ovh-side-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Caption positioned at the bottom left over the image layout */
.ovh-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff; /* White text overlaying the image bottom */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); /* Ensures text stays visible on light images */
}

/* Smooth transitions for mobile viewports */
@media (max-width: 991px) {
  .ovh-split-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
  
  .ovh-visual-column {
    position: static;
    width: 100%;
  }
  
  .ovh-split-showcase-section {
    padding: 60px 20px;
  }
}

/* Section 4 */
/* Container Layout - No background color as requested, uses auto margin alignment */
.ovh-pvr-showcase-section {
  width: 100%;
  margin: 80px 0;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Two-column structural wrapper reusing the layout approach from prior sections */
.ovh-pvr-split-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Left Image Grid Column Layout */
.ovh-pvr-visual-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ovh-pvr-image-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.ovh-pvr-main-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: rgba(0, 0, 0, 0.05); /* Image loading fallback placeholder */
}

.ovh-pvr-sub-imgs-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.ovh-pvr-sub-img-wrapper {
  flex: 1;
  aspect-ratio: 1 / 1;
  background-color: rgba(0, 0, 0, 0.05);
}

.ovh-pvr-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Content Column Layout */
.ovh-pvr-content-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Header Text Styling */
.ovh-pvr-section-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  opacity: 0.7;
}

.ovh-pvr-main-title {
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 20px 0;
  font-weight: normal;
}

.ovh-pvr-italic-title {
  font-style: italic;
}

.ovh-pvr-divider {
  width: 60px;
  border: none;
  border-top: 1px solid currentColor;
  margin: 0 0 24px 0;
  opacity: 0.3;
}

.ovh-pvr-description {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 35px 0;
  opacity: 0.8;
}

/* Data Table Row Styling */
.ovh-pvr-specs-table {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.ovh-pvr-table-row {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  line-height: 1.5;
  align-items: flex-start;
}

.ovh-pvr-table-label {
  width: 120px;
  font-weight: bold;
  flex-shrink: 0;
}

.ovh-pvr-table-value {
  flex: 1;
  opacity: 0.8;
}

/* Action Button Panel Layout */
.ovh-pvr-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Red/Brown Filled Primary Action Button style matching the image */
.btn-pvr-primary {
  display: inline-block;
  background-color: #7d4c54; /* Tint extracted directly from image */
  color: #ffffff;
  border: none;
  padding: 18px 36px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

/* Clean Dark Outlined Secondary style matching the image */
.btn-pvr-secondary {
  display: inline-block;
  background-color: transparent;
  color: currentColor;
  border: 1px solid currentColor;
  padding: 18px 36px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

/* Responsive breakdowns for compact viewport handling */
@media (max-width: 991px) {
  .ovh-pvr-split-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .ovh-pvr-main-title {
    font-size: 30px;
  }
}


/* Section 5 */
/* Main Section Base & Cream Background */
.ovh-pkg-main-section {
  width: 100%;
  background-color: #fbf9f4; /* Matches cream background shown across screenshots */
  color: #2b2521;
  padding: 80px 20px;
  box-sizing: border-box;
}

.ovh-pkg-inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Text Alignments */
.ovh-pkg-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9c8470;
  margin: 0 0 16px 0;
}

.ovh-pkg-title {
  font-size: 42px;
  font-weight: normal;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.ovh-pkg-italic {
  font-style: italic;
  color: #7d4c54; /* Tint extracted from "Actually Included" */
}

.ovh-pkg-title-divider {
  width: 45px;
  border: none;
  border-top: 1px solid #cca46a;
  margin: 0 0 28px 0;
}

.ovh-pkg-lead-text {
  font-size: 15px;
  line-height: 1.6;
  max-width: 550px;
  opacity: 0.7;
  margin: 0 0 50px 0;
}

/* Two-Column Cards Layout Grid */
.ovh-pkg-cards-grid {
  display: flex;
  gap: 32px;
  margin-bottom: 50px;
  align-items: stretch;
}

.ovh-pkg-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #eae5dc;
  display: flex;
  flex-direction: column;
}

/* Card Header Colors & Layout */
.ovh-pkg-card-header {
  padding: 35px 30px;
  color: #ffffff;
  position: relative;
}

.ovh-pkg-bg-dark {
  background-color: #261c1c; /* Deep dark cocoa tone */
}

.ovh-pkg-bg-mauve {
  background-color: #7d4c54; /* Deep mauve tone */
}

.ovh-pkg-duration {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin: 0 0 12px 0;
}

.ovh-pkg-card-title {
  font-size: 28px;
  font-weight: normal;
  margin: 0 0 8px 0;
}

.ovh-pkg-card-subtitle {
  font-size: 13px;
  font-style: italic;
  opacity: 0.7;
  margin: 0;
}

/* "Most Popular" Badge overlay */
.ovh-pkg-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: #cca46a;
  color: #261c1c;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 6px 12px;
}

/* Card Row-Table Layout (Reusing previous list structures) */
.ovh-pkg-card-body {
  padding: 20px 30px 35px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ovh-pkg-table-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #f4f0ea;
  font-size: 13px;
  line-height: 1.4;
}

.ovh-pkg-label {
  width: 140px;
  font-weight: bold;
  flex-shrink: 0;
}

.ovh-pkg-value {
  flex: 1;
  opacity: 0.8;
}

/* Action areas fixed at base of cards */
.ovh-pkg-footer-actions {
  margin-top: auto;
  padding-top: 30px;
}

.ovh-pkg-price {
  font-size: 22px;
  margin: 0 0 20px 0;
}

.ovh-pkg-price span {
  font-size: 12px;
  opacity: 0.6;
}

/* Button logic variants */
.ovh-pkg-btn {
  display: block;
  width: 100%;
  padding: 18px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
}

.ovh-pkg-btn-mauve {
  background-color: #7d4c54;
  color: #ffffff;
}

.ovh-pkg-btn-gold {
  background-color: #cca46a;
  color: #261c1c;
}

/* Separate Charges Block (Screenshot 2_3.png) */
.ovh-pkg-separate-charges {
  background-color: #f6eedf; /* Slightly darker cream tint box */
  padding: 40px;
  border: 1px solid #eae5dc;
  margin-bottom: 40px;
}

.ovh-pkg-separate-title {
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 24px 0;
}

.ovh-pkg-separate-grid {
  display: flex;
  gap: 40px;
}

.ovh-pkg-separate-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ovh-pkg-separate-list li {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.8;
  position: relative;
  padding-left: 16px;
}

/* Native '+' layout prefix symbol matching screenshots */
.ovh-pkg-separate-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #7d4c54;
  font-weight: bold;
}

/* Why Book Direct Dark Footer Banner (Screenshot 2_3.png) */
.ovh-pkg-direct-banner {
  background-color: #261c1c;
  color: #ffffff;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ovh-pkg-direct-content {
  flex: 1;
}

.ovh-pkg-direct-title {
  color: #cca46a; /* Gold headline color from image */
/*   font-size: 20px; */
  font-weight: normal;
  margin: 0 0 12px 0;
}

.ovh-pkg-direct-text {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

/* Gold Right-Aligned CTA style from image */
.ovh-pkg-btn-direct {
  background-color: #cca46a;
  color: #261c1c;
  padding: 18px 36px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}

/* Responsiveness break points for tablets/mobile viewports */
@media (max-width: 991px) {
  .ovh-pkg-cards-grid,
  .ovh-pkg-separate-grid,
  .ovh-pkg-direct-banner {
    flex-direction: column;
    gap: 24px;
  }
  
  .ovh-pkg-direct-banner {
    align-items: flex-start;
  }
}

/* Section 6 */
/* Container Layout - Exact rich dark-chocolate tone extracted from the image background */
.ovh-rex-experience-section {
  width: 100%;
  background-color: #261c1c; 
  color: #ffffff;
  padding: 80px 20px;
  box-sizing: border-box;
}

.ovh-rex-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Text Alignments & Accents */
.ovh-rex-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cca46a; /* Gold accent color from image */
  margin: 0 0 20px 0;
}

.ovh-rex-main-title {
  font-size: 46px;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.ovh-rex-italic {
  font-style: italic;
  display: block;
}

.ovh-rex-title-divider {
  width: 50px;
  border: none;
  border-top: 1px solid #cca46a;
  margin: 0 0 30px 0;
}

.ovh-rex-intro-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  opacity: 0.7;
  margin: 0 0 60px 0;
}

/* 3-Column Experience Grid (Reuses structural logic) */
.ovh-rex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Individual Grid Card Styles */
.ovh-rex-card {
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.ovh-rex-icon {
  font-size: 24px;
  margin-bottom: 24px;
  display: inline-block;
}

.ovh-rex-card-title {
/*   font-size: 22px; */
  color: #cca46a; /* Gold headings */
  font-weight: normal;
  margin: 0 0 16px 0;
}

.ovh-rex-card-desc {
/*   font-size: 14px; */
  line-height: 1.6;
  opacity: 0.8;
  margin: 0 0 24px 0;
}

/* Custom horizontal hyphen dash bullet points from screenshot */
.ovh-rex-bullet-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0; /* Pushes list items evenly to the base */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ovh-rex-bullet-list li {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.6;
  position: relative;
  padding-left: 20px;
}

.ovh-rex-bullet-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}

/* Bottom CTA Layout Block */
.ovh-rex-action-bar {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* Gold CTA Button styling */
.ovh-rex-btn-gold {
  background-color: #cca46a;
  color: #261c1c;
  padding: 18px 40px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

/* Responsive breakdowns for mobile/tablet screens */
@media (max-width: 991px) {
  .ovh-rex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ovh-rex-main-title {
    font-size: 34px;
  }
  
  .ovh-rex-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }
  
  .ovh-rex-card {
    border-right: none;
    padding: 30px 10px;
  }
}

/* Section 7 */
/* Container Layout - No default section background color layer applied */
.ovh-spt-main-section {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
}

.ovh-spt-inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Text Sizing & Alignment */
.ovh-spt-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  opacity: 0.7;
}

.ovh-spt-main-title {
  font-size: 42px;
  font-weight: normal;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.ovh-spt-italic {
  font-style: italic;
  color: #7d4c54; /* Subdued accent color signature */
}

.ovh-spt-title-divider {
  width: 45px;
  border: none;
  border-top: 1px solid #cca46a;
  margin: 0 0 24px 0;
}

.ovh-spt-lead-text {
/*   font-size: 15px; */
  line-height: 1.6;
  max-width: 600px;
/*   opacity: 0.7; */
  margin: 0 0 50px 0;
}

/* 3-Column Responsive Layout Grid Arrangement */
.ovh-spt-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

/* Card Element Blocks */
.ovh-spt-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Image Container Wrapper with Relative Positioning for Badges */
.ovh-spt-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  background-color: rgba(0, 0, 0, 0.05); /* Structural fallback tint */
  overflow: hidden;
}

.ovh-spt-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Badge Labels Overlaid on Images Bottom-Left */
.ovh-spt-img-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background-color: #cca46a; /* Gold label shade from screenshot */
  color: #2b2521;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 6px 12px;
}

/* Card Body Typography Layouts */
.ovh-spt-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ovh-spt-card-meta {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7d4c54;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.ovh-spt-card-title {
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.ovh-spt-card-text {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.7;
  margin: 0;
}

/* Bottom Editorial Skip Block Accent Panel */
.ovh-spt-footer-note-block {
  border-left: 2px solid #cca46a; /* Left gold side bar indicator */
  padding-left: 24px;
  margin: 60px 0 40px 0;
  max-width: 850px;
}

.ovh-spt-note-heading {
  font-size: 22px;
  font-weight: normal;
  margin: 0 0 12px 0;
}

.ovh-spt-note-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
  margin: 0;
}

/* CTA Layout Alignment */
.ovh-spt-action-container {
  margin-top: 20px;
}

/* Outlined Action Link Styling */
.ovh-spt-btn-outline {
  display: inline-block;
  background-color: transparent;
  color: inherit;
  border: 1px solid currentColor;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  box-sizing: border-box;
}


/* Attached the pseudo-class directly to fix the selector break */
.ovh-spt-action-container a:hover {
  background-color: grey !important;
  color: white !important;
  border: 1px solid black !important;
}


/* Responsive viewports fallbacks for tablet/mobile viewports */
@media (max-width: 991px) {
  .ovh-spt-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 650px) {
  .ovh-spt-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .ovh-spt-main-title {
    font-size: 32px;
  }
}


/* Section 8 */
/* Base Section Layout using the soft cream background from the layout */
.ovh-comp-main-section {
  width: 100%;
  background-color: #fbf9f4;
  color: #2b2521;
  padding: 80px 20px;
  box-sizing: border-box;
}

.ovh-comp-inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Text Layout */
.ovh-comp-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9c8470;
  margin: 0 0 16px 0;
}

.ovh-comp-main-title {
  font-size: 42px;
  font-weight: normal;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.ovh-comp-italic {
  font-style: italic;
  color: #7d4c54; /* Plum/mauve heading color tint */
}

.ovh-comp-title-divider {
  width: 45px;
  border: none;
  border-top: 1px solid #cca46a;
  margin: 0 0 24px 0;
}

.ovh-comp-lead-text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  opacity: 0.7;
  margin: 0 0 50px 0;
}

/* Table Container Wrapper */
.ovh-comp-table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 50px;
}

.ovh-comp-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

/* Table Header Configurations */
.ovh-comp-data-table th {
  padding: 18px 24px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
}

/* Base header factor label column background tint */
.ovh-comp-data-table thead th:first-child {
  background-color: #f4eee2;
  width: 25%;
}

.ovh-comp-th-vaga {
  background-color: #211919; /* Chocolate brown background */
  color: #cca46a; /* Gold text */
  width: 37.5%;
}

.ovh-comp-th-munn {
  background-color: #2b2521; /* Alternative dark profile background */
  color: #cca46a;
  width: 37.5%;
}

/* Table Row Configurations */
.ovh-comp-data-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #eae2d5;
  line-height: 1.5;
}

.ovh-comp-label-cell {
  background-color: #f4eee2; /* Soft left header panel shade block */
  font-weight: bold;
}

.ovh-comp-data-table tbody tr td:not(.ovh-comp-label-cell) {
  opacity: 0.85;
}

/* Dual Column Grid Layout */
.ovh-comp-cards-grid {
  display: flex;
  gap: 32px;
  margin-bottom: 60px;
}

.ovh-comp-choice-card {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #eae2d5;
  padding: 40px;
  box-sizing: border-box;
}

.ovh-comp-card-headline {
  font-size: 24px;
  font-weight: normal;
  margin: 0 0 28px 0;
  color: #211919;
}

/* Split List-Row Structures inside choice cards */
.ovh-comp-list-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #f7f4ee;
  font-size: 14px;
  line-height: 1.4;
}

.ovh-comp-list-row:last-child {
  border-bottom: none;
}

.ovh-comp-list-left {
  width: 180px;
  font-weight: bold;
  color: #38423b; /* Dark tint for confirmation metrics */
  flex-shrink: 0;
}

.ovh-comp-list-right {
  flex: 1;
  opacity: 0.75;
}

/* Deep Cocoa Base Recommendation Container Block */
.ovh-comp-recommendation-panel {
  background-color: #211919;
  color: #ffffff;
  padding: 60px 50px;
  text-align: center;
  box-sizing: border-box;
}

.ovh-comp-rec-title {
  font-size: 28px;
  font-weight: normal;
  font-style: italic;
  color: #cca46a; /* Gold subtitle accent */
  margin: 0 0 24px 0;
}

.ovh-comp-rec-text {
  font-size: 15px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 40px auto;
  opacity: 0.85;
}

.ovh-comp-action-center {
  display: flex;
  justify-content: center;
}

/* Filled Gold Accent Action Button styling with native cursor hover interactions */
.ovh-comp-btn-gold {
  display: inline-block;
  background-color: #cca46a;
  color: #211919;
  padding: 18px 40px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.ovh-comp-btn-gold:hover {
  background-color: #7d4c54;
  color: #ffffff;
}

/* Responsive breakdowns for medium layouts & small mobile devices */
@media (max-width: 991px) {
  .ovh-comp-cards-grid {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .ovh-comp-main-title {
    font-size: 32px;
  }
  
  .ovh-comp-recommendation-panel {
    padding: 40px 20px;
  }
  
  .ovh-comp-list-row {
    flex-direction: column;
    gap: 4px;
  }
  
  .ovh-comp-list-left {
    width: 100%;
  }
}

/* Section 8 */
/* Base Section Container Layout */
.ovh-wtv-main-section {
  width: 100%;
  color: #2b2521;
  padding: 60px 20px;
  box-sizing: border-box;
}

.ovh-wtv-inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography & Layout Headers */
.ovh-wtv-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9c8470;
  margin: 0 0 16px 0;
}

.ovh-wtv-main-title {
  font-size: 42px;
  font-weight: normal;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.ovh-wtv-italic {
  font-style: italic;
  color: #7d4c54; /* Characteristic title purple tint */
}

.ovh-wtv-title-divider {
  width: 45px;
  border: none;
  border-top: 1px solid #cca46a;
  margin: 0 0 24px 0;
}

.ovh-wtv-lead-text {
/*   font-size: 15px; */
  line-height: 1.6;
  max-width: 650px;
  opacity: 0.75;
  margin: 0 0 50px 0;
}

/* Seasonal Cards Layout (2-Column) */
.ovh-wtv-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.ovh-wtv-season-card {
  background-color: #ffffff;
  border: 1px solid #eae2d5;
  padding: 35px 40px;
  box-sizing: border-box;
  position: relative;
}

/* Top Border Color Variants For Seasons */
.ovh-wtv-accent-gold { border-top: 3px solid #cca46a; }
.ovh-wtv-accent-mauve { border-top: 3px solid #7d4c54; }
.ovh-wtv-accent-green { border-top: 3px solid #38423b; }
.ovh-wtv-accent-blue { border-top: 3px solid #5a6b7c; }

.ovh-wtv-card-meta {
  font-size: 11px;
  letter-spacing: 1px;
  color: #9c8470;
  margin: 0 0 12px 0;
}

.ovh-wtv-card-title {
  font-size: 22px;
  font-weight: normal;
  margin: 0 0 14px 0;
  color: #211919;
}

.ovh-wtv-card-desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0;
}

/* Table Architecture Elements */
.ovh-wtv-table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 50px;
}

.ovh-wtv-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

/* Header Cells Layout */
.ovh-wtv-data-table th {
  background-color: #f4eee2; /* Light sand label row background */
  padding: 16px 24px;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: bold;
  opacity: 0.8;
  color: #211919;
}

/* Body Elements Matrix */
.ovh-wtv-data-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #eae2d5;
  line-height: 1.5;
}

.ovh-wtv-month-name {
  font-weight: bold;
  color: #211919;
}

.ovh-wtv-data-table tbody tr td:not(.ovh-wtv-month-name) {
  opacity: 0.85;
}

/* Aligning rating elements with system values */
.ovh-wtv-rating-cell {
  letter-spacing: 0.5px;
}

/* Bottom Actions Panel Container */
.ovh-wtv-action-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Mauve Solid Action Link Buttons */
.ovh-wtv-btn-solid {
  display: inline-block;
  background-color: #7d4c54;
  color: #ffffff;
  padding: 18px 40px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.ovh-wtv-btn-solid:hover {
  background-color: #211919;
}

/* Responsive breakdowns for tablet & mobile views */
@media (max-width: 991px) {
  .ovh-wtv-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .ovh-wtv-main-title {
    font-size: 32px;
  }
  
  .ovh-wtv-season-card {
    padding: 25px 20px;
  }
  
  .ovh-wtv-data-table th, 
  .ovh-wtv-data-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

.sweet-spot {
	background-color: #f1f2eb;
}

/* Section 9 */
/* Base Layout Configuration */
.ovh-log-main-section {
  width: 100%;
  color: #2b2521;
  padding: 60px 20px;
  box-sizing: border-box;
  font-family: inherit;
}

.ovh-log-inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Text Alignments */
.ovh-log-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9c8470;
  margin: 0 0 16px 0;
}

.ovh-log-main-title {
  font-size: 42px;
  font-weight: normal;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.ovh-log-italic {
  font-style: italic;
  color: #7d4c54; /* Characteristic resort accent signature color */
}

.ovh-log-title-divider {
  width: 45px;
  border: none;
  border-top: 1px solid #cca46a;
  margin: 0 0 45px 0;
}

/* Two-Column Responsive Split Content Grid Grid */
.ovh-log-split-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
}

/* Left Column Component Layouts */
.ovh-log-section-headline {
/*   font-size: 24px; */
  font-weight: normal;
  margin: 0 0 16px 0;
}

.ovh-log-lead-desc {
/*   font-size: 14px; */
  line-height: 1.6;
  opacity: 0.75;
  margin: 0 0 40px 0;
  max-width: 680px;
}

.ovh-log-transport-mode {
  font-size: 18px;
  font-weight: normal;
  margin: 0 0 16px 0;
}

/* Structural Log Data Tables CSS */
.ovh-log-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 35px;
}

.ovh-log-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}

.ovh-log-data-table th {
  background-color: #f4eee2;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #211919;
  opacity: 0.8;
}

.ovh-log-data-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #eae2d5;
  line-height: 1.4;
}

.ovh-log-bold-cell {
  font-weight: bold;
  color: #211919;
  width: 50%;
}

.ovh-log-data-table tbody tr td:not(.ovh-log-bold-cell) {
  opacity: 0.8;
}

/* Private Taxi Pickup Callout Block */
.ovh-log-pickup-notice-box {
  background-color: #fcf9f2;
  border: 1px solid #eae2d5;
  padding: 35px;
  margin-top: 45px;
  max-width: 680px;
  box-sizing: border-box;
}

.ovh-log-pickup-title {
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 12px 0;
}

.ovh-log-pickup-desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0 0 24px 0;
}

/* Solid Wine Interactive CTA Link */
.ovh-log-btn-pickup {
  display: inline-block;
  background-color: #7d4c54;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.ovh-log-btn-pickup:hover {
  background-color: #211919;
}

/* Right Column Sidebar Panel Blocks */
.ovh-log-timeline-card {
  background-color: #2b2121; /* Dark chocolate theme background profile */
  color: #ffffff;
  padding: 40px 30px;
  box-sizing: border-box;
}

.ovh-log-timeline-header {
  font-size: 20px;
  font-weight: normal;
  font-style: italic;
  color: #cca46a; /* Gold subtitle color match */
  line-height: 1.4;
  margin: 0 0 40px 0;
}

/* Native Travel Log Timeline Steps Architecture */
.ovh-log-timeline-wrapper {
  position: relative;
}

/* Vertical structural timeline connecting vector rule line */
.ovh-log-timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 95px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.ovh-log-timeline-row {
  display: flex;
  position: relative;
  margin-bottom: 32px;
  align-items: flex-start;
}

.ovh-log-timeline-row:last-child {
  margin-bottom: 0;
}

.ovh-log-time {
  width: 75px;
  font-size: 11px;
  font-weight: bold;
  color: #cca46a;
  text-align: right;
  padding-top: 1px;
  letter-spacing: 0.5px;
}

.ovh-log-timeline-dot {
  width: 7px;
  height: 7px;
  background-color: #cca46a;
  border-radius: 50%;
  margin: 5px 15px 0 12px;
  z-index: 2;
  flex-shrink: 0;
}

.ovh-log-event {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.85;
}

/* Bottom Address Context Element Info Area */
.ovh-log-address-card {
  background-color: #fcf9f2;
  border: 1px solid #eae2d5;
  padding: 30px;
  margin-top: 30px;
  box-sizing: border-box;
}

.ovh-log-address-text {
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.8;
  margin: 0 0 12px 0;
}

.ovh-log-pin-icon {
  color: #7d4c54;
  font-style: normal;
}

.ovh-log-map-placeholder {
  display: block;
  font-size: 11px;
  text-transform: lowercase;
  opacity: 0.5;
}

/* Clean Adaptive Viewport Breakdowns */
@media (max-width: 1024px) {
  .ovh-log-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ovh-log-sidebar-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
  }
  
  .ovh-log-address-card {
    margin-top: 0;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .ovh-log-main-title {
    font-size: 32px;
  }

  .ovh-log-sidebar-column {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .ovh-log-address-card {
    margin-top: 30px;
  }
  
  .ovh-log-pickup-notice-box,
  .ovh-log-timeline-card {
    padding: 30px 20px;
  }
}

/* Container wrapper to clip the iframe edges cleanly */
.ovh-log-map-container {
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid #eae2d5;
}

/* Ensures the dynamic iframe renders seamlessly inside its parent element */
.ovh-log-map-container iframe {
  display: block;
  width: 100%;
}



/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */

/* Base Layout Configuration */
.ovh-faq-main-section {
  width: 100%;
  background-color: #2b2121;
  color: #ffffff;
  padding: 80px 20px;
  box-sizing: border-box;
}

.ovh-faq-inner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky Left Layout Tracking Matrix */
.ovh-faq-sidebar-column {
  position: relative;
  height: 100%;
}

.ovh-faq-sticky-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  padding-bottom: 20px;
}

/* Typography styles matching image samples */
.ovh-faq-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cca46a; /* Gold subtitle accent signature */
  margin: 0 0 24px 0;
}

.ovh-faq-main-title {
  font-size: 52px;
  font-weight: normal;
  margin: 0 0 20px 0;
  line-height: 1.1;
  color: #ffffff;
}

.ovh-faq-italic {
  font-style: italic;
  font-family: serif;
  color: #cca46a;
}

.ovh-faq-title-divider {
  width: 45px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 35px 0;
}

.ovh-faq-sidebar-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.45;
  margin: 0 0 40px 0;
  max-width: 320px;
}

/* Solid Gold Accent Sidebar Action Link Button */
.ovh-faq-btn-gold {
  display: inline-block;
  background-color: #cca46a;
  color: #2b2121;
  padding: 16px 36px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.ovh-faq-btn-gold:hover {
  opacity: 0.9;
}

/* Right Accordion Panel Grid Configurations */
.ovh-faq-accordion-group {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ovh-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: block;
}

.ovh-faq-trigger {
  padding: 35px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.ovh-faq-trigger::-webkit-details-marker {
  display: none;
}

.ovh-faq-question-text {
  font-size: 22px;
  font-weight: normal;
  color: #cca46a; /* Question titles are consistently stylized with gold tints */
  line-height: 1.3;
  padding-right: 40px;
}

/* Circular Icon Wrapper */
.ovh-faq-icon-circle {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}

.ovh-faq-trigger:hover .ovh-faq-icon-circle {
  background-color: rgba(255, 255, 255, 0.18);
}

/* Native CSS Cross Icon Generator */
.ovh-faq-icon-marker {
  position: relative;
  width: 10px;
  height: 10px;
  display: block;
  color: #ffffff;
}

.ovh-faq-icon-marker::before,
.ovh-faq-icon-marker::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Slanted line components forming a standard closure cross shape marker */
.ovh-faq-icon-marker::before {
  top: 4px;
  left: 0;
  width: 10px;
  height: 1.5px;
  transform: rotate(45deg);
}

.ovh-faq-icon-marker::after {
  top: 0;
  left: 4px;
  width: 1.5px;
  height: 10px;
  transform: rotate(45deg);
}

/* Dynamic Panel Open Adjustments for Cross Marker Icon */
.ovh-faq-item[open] .ovh-faq-icon-marker::before {
  transform: rotate(180deg);
}

.ovh-faq-item[open] .ovh-faq-icon-marker::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Response Text Panel Frame Elements */
.ovh-faq-panel-inner {
  padding: 0 0 35px 0;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.75;
  color: #ffffff;
  max-width: 760px;
}

.ovh-faq-panel-inner p {
  margin: 0 0 1.2em 0;
}

.ovh-faq-panel-inner p:last-child {
  margin-bottom: 0;
}

.ovh-faq-empty {
  padding: 40px 0;
  font-size: 14px;
  font-style: italic;
  opacity: 0.4;
}

/* Smooth Fade-in Reveal for Native HTML Details element */
.ovh-faq-item[open] .ovh-faq-panel {
  animation: ovhFaqFadeIn 0.3s ease-out forwards;
}

@keyframes ovhFaqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive breakdowns for mid-tier screen viewports & devices */
@media (max-width: 991px) {
  .ovh-faq-inner-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ovh-faq-sticky-wrapper {
    position: static;
    padding-bottom: 0;
  }

  .ovh-faq-main-title {
    font-size: 38px;
  }
  
  .ovh-faq-sidebar-desc {
    max-width: 100%;
    margin-bottom: 24px;
  }
  
  .ovh-faq-trigger {
    padding: 24px 0;
  }
  
  .ovh-faq-question-text {
    font-size: 18px;
  }
}