:root {
  --pacific-sand-bg: #fcfbf7;
  --caribbean-deep-teal: #143d3b;
  --coco-milk-cream: #f4efdf;
  --coral-sunset: #d45b34;
  --magical-gold: #cfa844;
  --ocean-dark-ink: #1c2727;
  --elegant-grey: #e3decb;
  --font-display: 'Merriweather', serif;
  --font-body: 'Poppins', sans-serif;
  
  --spacing-compact: 6dvh;
  --spacing-normal: 10dvh;
  --spacing-spacious: 16dvh;
  
  --border-soft: 16px;
  --shadow-raised: 0 8px 30px rgba(20, 61, 59, 0.08);
  --shadow-raised-hover: 0 16px 40px rgba(20, 61, 59, 0.15);
}

/* Base resets & typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--pacific-sand-bg);
  color: var(--ocean-dark-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Global scroll progress tracker */
.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--coral-sunset);
  width: 0;
  z-index: 10000;
  animation: grow-progress linear;
  animation-timeline: scroll();
}

@keyframes grow-progress {
  to { width: 100%; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--caribbean-deep-teal);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Header & Navigation */
.global-banner-header {
  position: sticky;
  top: 0;
  background: rgba(252, 251, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--elegant-grey);
  z-index: 999;
  padding: 1.25rem 2rem;
}

.header-inner-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-identity-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-identity-anchor svg {
  width: 40px;
  height: 40px;
  fill: var(--coral-sunset);
}

.brand-identity-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--caribbean-deep-teal);
  letter-spacing: -0.5px;
}

/* CSS-Only Hamburger Menu */
.hamburger-toggle-switch {
  display: none;
}

.hamburger-trigger-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger-trigger-icon span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--caribbean-deep-teal);
  transition: 0.3s;
  border-radius: 2px;
}

.navigation-links-deck {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navigation-item-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  color: var(--caribbean-deep-teal);
}

.navigation-item-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral-sunset);
  transition: width 0.3s ease;
}

.navigation-item-link:hover::after,
.navigation-item-link.current-active-page::after {
  width: 100%;
}

.navigation-item-link:hover {
  color: var(--coral-sunset);
}

/* Responsive Menu logic */
@media (max-width: 768px) {
  .hamburger-trigger-icon {
    display: flex;
  }
  
  .navigation-links-deck {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--pacific-sand-bg);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }
  
  .hamburger-toggle-switch:checked ~ .navigation-links-deck {
    right: 0;
  }
  
  .hamburger-toggle-switch:checked ~ .hamburger-trigger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .hamburger-toggle-switch:checked ~ .hamburger-trigger-icon span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-toggle-switch:checked ~ .hamburger-trigger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Magazine Editorial Layout Elements */
.major-spread {
  padding: var(--spacing-spacious) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Preset E Hero Layout */
.editorial-ocean-hero {
  display: flex;
  min-height: calc(100vh - 80px);
  border-bottom: 1px solid var(--elegant-grey);
}

.editorial-left-accent-stripe {
  width: 33%;
  background-color: var(--caribbean-deep-teal);
  color: var(--coco-milk-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-vertical-banner-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.9;
  font-weight: 800;
  color: var(--magical-gold);
}

.editorial-right-image-showcase {
  width: 67%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
}

.editorial-right-image-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(20,61,59,0.1) 0%, rgba(20,61,59,0.85) 100%);
  z-index: 1;
}

.editorial-hero-floating-box {
  position: relative;
  z-index: 2;
  color: var(--pacific-sand-bg);
  max-width: 650px;
}

.editorial-hero-tagline {
  color: var(--magical-gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.editorial-hero-title {
  color: var(--pacific-sand-bg);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.editorial-hero-summary {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
}

.interactive-action-button {
  display: inline-block;
  background: var(--coral-sunset);
  color: var(--pacific-sand-bg);
  padding: 1.1rem 2.25rem;
  border-radius: var(--border-soft);
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-raised);
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-action-button:hover {
  background: var(--caribbean-deep-teal);
  color: var(--coco-milk-cream);
  border-color: var(--magical-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-raised-hover);
}

@media (max-width: 992px) {
  .editorial-ocean-hero {
    flex-direction: column;
  }
  .editorial-left-accent-stripe {
    width: 100%;
    height: 120px;
    padding: 1rem;
  }
  .hero-vertical-banner-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.5rem;
  }
  .editorial-right-image-showcase {
    width: 100%;
    min-height: 60vh;
    padding: 2rem;
  }
  .editorial-hero-title {
    font-size: 2.25rem;
  }
}

/* Pull-Quote block */
.editorial-quote-container {
  background-color: var(--coco-milk-cream);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--elegant-grey);
}

.editorial-quote-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--caribbean-deep-teal);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  line-height: 1.4;
}

.editorial-quote-text::before {
  content: '“';
  font-size: 8rem;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(212, 91, 52, 0.12);
  font-family: var(--font-display);
}

.editorial-quote-author {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--coral-sunset);
  font-weight: 600;
}

@media (max-width: 768px) {
  .editorial-quote-text {
    font-size: 1.4rem;
  }
}

/* Split Image and Text section */
.asymmetric-storyboard-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.storyboard-snapshot {
  width: 45%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-soft);
  box-shadow: var(--shadow-raised);
}

.storyboard-prose-column {
  width: 55%;
}

.storyboard-kicker-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--coral-sunset);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.storyboard-headline {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.storyboard-paragraph {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--ocean-dark-ink);
}

@media (max-width: 992px) {
  .asymmetric-storyboard-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .storyboard-snapshot, .storyboard-prose-column {
    width: 100%;
  }
  .storyboard-snapshot {
    height: 350px;
  }
  .storyboard-headline {
    font-size: 2rem;
  }
}

/* Magazine Grid Features Section */
.editorial-grid-framework {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.editorial-grid-big-leaf {
  position: relative;
  min-height: 500px;
  border-radius: var(--border-soft);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  background-size: cover;
  background-position: center;
}

.editorial-grid-big-leaf::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(20,61,59,0.1) 0%, rgba(20,61,59,0.9) 100%);
  z-index: 1;
}

.big-leaf-editorial-content {
  position: relative;
  z-index: 2;
  color: var(--pacific-sand-bg);
}

.editorial-grid-stacked-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.editorial-small-leaf {
  background: var(--coco-milk-cream);
  padding: 2.5rem;
  border-radius: var(--border-soft);
  border-top: 4px solid var(--coral-sunset);
  transition: transform 0.3s ease;
}

.editorial-small-leaf:hover {
  transform: translateY(-5px);
}

.small-leaf-svg-icon {
  width: 48px;
  height: 48px;
  fill: var(--coral-sunset);
  margin-bottom: 1.25rem;
}

.small-leaf-heading {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 992px) {
  .editorial-grid-framework {
    grid-template-columns: 1fr;
  }
  .editorial-grid-big-leaf {
    min-height: 350px;
    padding: 2rem;
  }
}

/* How It Works Section */
.how-it-works-framework {
  text-align: center;
  border-top: 1px solid var(--elegant-grey);
}

.how-it-works-sub {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral-sunset);
  margin-bottom: 1rem;
}

.how-it-works-headline {
  margin-bottom: 4rem;
  font-size: 2.5rem;
}

.how-it-works-steps-track {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.how-it-works-element {
  flex: 1;
  position: relative;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--border-soft);
  box-shadow: var(--shadow-raised);
}

.step-num-bg-text {
  font-size: 7rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--coral-sunset);
  opacity: 0.08;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.step-inner-heading {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-inner-description {
  font-size: 0.95rem;
  color: var(--ocean-dark-ink);
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .how-it-works-steps-track {
    flex-direction: column;
    gap: 3rem;
  }
}

/* Editorial CTA Strip */
.editorial-cta-strip {
  background-color: var(--coco-milk-cream);
  text-align: center;
  padding: 6rem 2rem;
  border-top: 1px solid var(--elegant-grey);
  border-bottom: 1px solid var(--elegant-grey);
}

.cta-strip-headline {
  font-size: 2.75rem;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}

.cta-strip-sub {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  color: var(--ocean-dark-ink);
}

/* Minimalist Button with Border Accent & Hover Fill */
.editorial-hollow-button {
  display: inline-block;
  border: 2px solid var(--caribbean-deep-teal);
  color: var(--caribbean-deep-teal);
  background: transparent;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-soft);
  transition: all 0.3s ease;
}

.editorial-hollow-button:hover {
  background: var(--caribbean-deep-teal);
  color: var(--pacific-sand-bg);
  box-shadow: var(--shadow-raised-hover);
}

@media (max-width: 768px) {
  .cta-strip-headline {
    font-size: 1.85rem;
  }
}

/* Expert / Biography Page Styles */
.expert-biography-strip {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.expert-portrait-container {
  width: 45%;
  position: relative;
}

.expert-portrait-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--border-soft);
  box-shadow: var(--shadow-raised);
}

.expert-portrait-frame-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--coral-sunset);
  color: var(--pacific-sand-bg);
  padding: 1.5rem;
  border-radius: var(--border-soft);
  font-family: var(--font-display);
  font-weight: bold;
  box-shadow: var(--shadow-raised);
}

.expert-bio-prose {
  width: 55%;
}

.expert-stat-row-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  border-top: 1px solid var(--elegant-grey);
  border-bottom: 1px solid var(--elegant-grey);
  padding: 4rem 2rem;
  background: var(--coco-milk-cream);
}

.expert-stat-metric-cell {
  padding: 1rem;
}

.expert-stat-metric-number {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--coral-sunset);
  margin-bottom: 0.5rem;
}

.expert-stat-metric-label {
  font-size: 0.95rem;
  color: var(--caribbean-deep-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .expert-biography-strip {
    flex-direction: column;
  }
  .expert-portrait-container, .expert-bio-prose {
    width: 100%;
  }
  .expert-portrait-image {
    height: 400px;
  }
  .expert-stat-row-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Booking & Reservation Layout */
.top-tier-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.top-tier-info-module {
  background: var(--coco-milk-cream);
  padding: 2.5rem;
  border-radius: var(--border-soft);
  border-top: 4px solid var(--coral-sunset);
  box-shadow: var(--shadow-raised);
}

.top-tier-inner-sequence {
  margin-top: 1.5rem;
}

.top-tier-seq-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.seq-item-bullet-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral-sunset);
  flex-shrink: 0;
}

.registration-form-wrap {
  background: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem;
  border-radius: var(--border-soft);
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--elegant-grey);
}

.registration-form-headline {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.registration-form-group {
  margin-bottom: 1.75rem;
}

.registration-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--caribbean-deep-teal);
}

.registration-form-control {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid var(--elegant-grey);
  border-radius: var(--border-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ocean-dark-ink);
  background: var(--pacific-sand-bg);
  transition: border-color 0.3s ease;
}

.registration-form-control:focus {
  outline: none;
  border-color: var(--coral-sunset);
}

.registration-form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.registration-form-checkbox-wrapper input {
  margin-top: 0.25rem;
}

.registration-form-checkbox-label {
  font-size: 0.85rem;
  color: var(--ocean-dark-ink);
}

.registration-form-submit-trigger {
  width: 100%;
  background: var(--coral-sunset);
  color: var(--pacific-sand-bg);
  padding: 1.2rem;
  border-radius: var(--border-soft);
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-raised);
  transition: all 0.3s ease;
}

.registration-form-submit-trigger:hover {
  background: var(--caribbean-deep-teal);
  transform: translateY(-2px);
}

.registration-corporate-email-link {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.registration-corporate-email-link a {
  color: var(--coral-sunset);
  font-weight: bold;
}

/* FAQ Accordion Section */
.faq-accordion-section {
  max-width: 800px;
  margin: 6rem auto 0 auto;
}

.faq-accordion-headline {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
}

.faq-accordion-item {
  border-bottom: 1.5px solid var(--elegant-grey);
  padding: 1.5rem 0;
}

.faq-accordion-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--caribbean-deep-teal);
  margin-bottom: 0.75rem;
}

.faq-accordion-body {
  font-size: 0.95rem;
  color: var(--ocean-dark-ink);
}

@media (max-width: 992px) {
  .top-tier-info-grid {
    grid-template-columns: 1fr;
  }
  .registration-form-wrap {
    padding: 2.5rem;
  }
}

/* Cookie Consent Bar */
.cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ocean-dark-ink);
  color: var(--pacific-sand-bg);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  animation: slide-up-cookie 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slide-up-cookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-consent-text {
  font-size: 0.9rem;
  max-width: 800px;
}

.cookie-consent-cta-set {
  display: flex;
  gap: 1rem;
}

.cookie-consent-trigger {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-soft);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}

.cookie-consent-trigger-accept {
  background: var(--coral-sunset);
  color: var(--pacific-sand-bg);
}

.cookie-consent-trigger-decline {
  background: transparent;
  border: 1px solid var(--pacific-sand-bg);
  color: var(--pacific-sand-bg);
}

@media (max-width: 768px) {
  .cookie-consent-bar {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
}

/* Footer Section */
.global-page-footer {
  background: var(--caribbean-deep-teal);
  color: var(--coco-milk-cream);
  padding: 5rem 2rem 3rem 2rem;
}

.global-page-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.global-page-footer-masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(244, 239, 223, 0.15);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.footer-nav-set {
  display: flex;
  gap: 2rem;
}

.footer-nav-anchor {
  font-size: 0.9rem;
  color: var(--coco-milk-cream);
}

.footer-nav-anchor:hover {
  color: var(--coral-sunset);
}

.footer-disclaimer-wrapper {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-disclaimer-text {
  margin-bottom: 0.5rem;
}

.footer-copyright-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .global-page-footer-masthead {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-nav-set {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer-copyright-strip {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Scroll appearance utility using scroll timeline logic */
.reveal-on-scroll {
  animation: fade-slide-in both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-driven simple scaling for editorial quotes */
.scale-on-scroll {
  animation: scale-adjust both;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}

@keyframes scale-adjust {
  from {
    transform: scale(0.95);
    opacity: 0.9;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}