/* ============================================
   RAYS GUESTHOUSE — V0.2
   Primary: Averia Serif Libre  |  Secondary: Jost
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand:        #DEDED6;
  --peach:       #F6DCBD;
  --teal:        #4FB3BF;
  --sky:         #D6F0FA;
  --brown:       #643D20;
  --ocean:       #02516D;
  --ocean-dark:  #013d52;
  --teal-light:  #7ecdd6;
  --white:       #ffffff;
  --off-white:   #fafaf9;
  --linen:       #f5f3ef;
  --text:        #1e1a16;
  --text-mid:    #5a4f44;
  --text-light:  #9a8f82;
  --border:      rgba(100,61,32,0.12);
  --border-light: rgba(100,61,32,0.07);
  --nav-h:       76px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --logo-h:      37px;
  --footer-logo-w: 192px;
}

html { font-size: 16px; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }
body { font-family: 'Jost', sans-serif; font-weight: 300; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.45s var(--ease), backdrop-filter 0.45s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav.solid {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid var(--border) !important;
}
.nav-logo { height: var(--logo-h); display: block; flex-shrink: 0; }
.nav-logo img { width: auto; height: 100%; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 0.75rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); transition: color 0.2s; position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--teal); transition: width 0.25s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a, .nav.solid .nav-links a { color: var(--text-mid); }
.nav.scrolled .nav-links a:hover, .nav.solid .nav-links a:hover { color: var(--ocean); }
.btn-book {
  font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 22px; border: 1px solid rgba(255,255,255,0.65);
  color: var(--white); background: transparent; transition: all 0.25s;
  cursor: pointer; text-decoration: none; white-space: nowrap;
}
.btn-book:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.nav.scrolled .btn-book, .nav.solid .btn-book { border-color: var(--ocean); color: var(--ocean); }
.nav.scrolled .btn-book:hover, .nav.solid .btn-book:hover { background: var(--ocean); color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 200; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: background 0.3s, transform 0.35s, opacity 0.3s; transform-origin: center; }
.nav.scrolled .nav-toggle span, .nav.solid .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-toggle span:nth-child(3) { width: 16px; }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ocean); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: 'Averia Serif Libre', serif; font-size: 2rem; font-weight: 300; color: var(--white); letter-spacing: 0.04em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-book { font-family: 'Jost', sans-serif !important; font-size: 0.76rem !important; letter-spacing: 0.2em; text-transform: uppercase; padding: 12px 32px; border: 1px solid rgba(255,255,255,0.4) !important; margin-top: 12px; }
.mobile-book:hover { background: var(--teal); border-color: var(--teal) !important; }

/* ---- HERO ---- */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: flex-end; padding: 0 0 88px 64px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-img.active { opacity: 1; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,36,52,0.62) 0%, rgba(2,36,52,0.18) 55%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-eyebrow { font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 300; letter-spacing: 0.32em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 18px; }
.hero-title { font-family: 'Averia Serif Libre', serif; font-size: clamp(3.2rem, 6vw, 5.8rem); font-weight: 300; line-height: 1.08; color: var(--white); margin-bottom: 36px; }
.hero-title em { font-style: italic; color: var(--peach); }
.hero-cta { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.73rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); padding: 14px 32px; border: 1px solid rgba(255,255,255,0.5); transition: all 0.28s; }
.hero-cta:hover { background: var(--teal); border-color: var(--teal); }
.hero-dots { position: absolute; bottom: 44px; right: 64px; display: flex; gap: 8px; z-index: 2; }
.dot { width: 30px; height: 2px; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: background 0.3s, width 0.35s; padding: 0; }
.dot.active { background: var(--teal); width: 48px; }
.hero-scroll { position: absolute; right: 64px; top: 50%; transform: translateY(-50%) rotate(90deg); display: flex; align-items: center; gap: 14px; z-index: 2; }
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.scroll-line { width: 44px; height: 1px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--teal); animation: scrollAnim 2.2s infinite; }
@keyframes scrollAnim { 0% { left: -100%; } 100% { left: 100%; } }

/* ---- REDUCED ZOOM (V0.2) ---- */
.property-img-wrap img { transition: transform 1.3s var(--ease); }
.property-card:hover .property-img-wrap img { transform: scale(1.025); }
.room-img img { transition: transform 1.1s var(--ease); }
.room-card:hover .room-img img { transform: scale(1.025); }
.dining-feature-img img { transition: transform 1.1s var(--ease); }
.dining-feature:hover .dining-feature-img img { transform: scale(1.025); }
.dining-single-img img { transition: transform 1s var(--ease); }
.dining-single:hover .dining-single-img img { transform: scale(1.025); }
.exp-full-img img { transition: transform 0.85s var(--ease); }
.exp-full-item:hover .exp-full-img img { transform: scale(1.025); }
.package-img img { transition: transform 0.85s var(--ease); }
.package-card:hover .package-img img { transform: scale(1.025); }
.exp-item img { transition: transform 0.85s var(--ease); }
.exp-item:hover img { transform: scale(1.025); }
.gallery-row img { transition: none; }

/* ---- SHARED ---- */
.section-label { font-family: 'Jost', sans-serif; font-size: 0.66rem; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; display: block; }
h2 { font-family: 'Averia Serif Libre', serif; font-weight: 300; line-height: 1.18; color: var(--text); }
h3 { font-family: 'Averia Serif Libre', serif; font-weight: 300; color: var(--text); }

.btn-outline { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; padding: 12px 28px; border: 1px solid var(--border); color: var(--text); transition: all 0.25s; margin-top: 24px; }
.btn-outline:hover { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.btn-teal { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; padding: 13px 30px; background: var(--teal); color: var(--white); border: none; transition: background 0.25s; cursor: pointer; }
.btn-teal:hover { background: var(--ocean); }
.btn-dark { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; padding: 14px 36px; background: var(--ocean); color: var(--white); transition: background 0.25s; cursor: pointer; border: none; }
.btn-dark:hover { background: var(--ocean-dark); }
.btn-white { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; padding: 13px 30px; border: 1px solid rgba(255,255,255,0.55); color: var(--white); transition: all 0.25s; }
.btn-white:hover { background: var(--white); color: var(--ocean); }
.btn-text { font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); display: inline-block; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.btn-text:hover { border-color: var(--teal); }
.btn-brown { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; padding: 14px 36px; background: var(--brown); color: var(--white); transition: background 0.25s; }
.btn-brown:hover { background: var(--ocean); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---- SECTIONS ---- */
.intro { padding: 112px 48px; display: flex; justify-content: center; background: var(--white); }
.intro-inner { max-width: 700px; text-align: center; }
.intro-heading { font-family: 'Averia Serif Libre', serif; font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 300; margin-bottom: 26px; color: var(--ocean); }
.intro-body { font-size: 1.02rem; color: var(--text-mid); line-height: 1.88; }

.properties { background: var(--linen); }
.property-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.property-img-wrap { overflow: hidden; }
.property-info { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.property-info h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 20px; color: var(--ocean); }
.property-info p { color: var(--text-mid); font-size: 0.96rem; line-height: 1.88; }

.dining-preview { padding: 96px 64px; background: var(--white); }
.dining-header { max-width: 540px; margin: 0 auto 60px; text-align: center; }
.dining-header h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 18px; color: var(--ocean); }
.dining-header p { color: var(--text-mid); }
.dining-single { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 440px; max-width: 1100px; margin: 0 auto; border: 1px solid var(--border-light); }
.dining-single-img { overflow: hidden; }
.dining-single-info { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; background: var(--linen); }
.dining-single-info h3 { font-family: 'Averia Serif Libre', serif; font-size: 2.2rem; font-weight: 300; margin-bottom: 14px; color: var(--ocean); }
.dining-single-info p { color: var(--text-mid); font-size: 0.94rem; line-height: 1.82; margin-bottom: 10px; }

.experiences-preview { padding: 96px 64px; background: var(--linen); display: grid; grid-template-columns: 1fr 1.7fr; gap: 80px; align-items: center; }
.exp-left h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 16px; color: var(--text); }
.exp-left p { color: var(--text-mid); margin-bottom: 8px; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.exp-item { position: relative; overflow: hidden; aspect-ratio: 1; }
.exp-item p { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 16px 14px; background: linear-gradient(to top, rgba(2,36,52,0.68), transparent); color: var(--white); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; }

.teal-cta { position: relative; height: 560px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.teal-cta-bg { position: absolute; inset: 0; }
.teal-cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(2,36,52,0.5); }
.teal-cta-content { position: relative; z-index: 2; color: var(--white); max-width: 560px; padding: 0 20px; }
.teal-cta-content h2 { font-family: 'Averia Serif Libre', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; color: var(--white); margin-bottom: 18px; }
.teal-cta-content em { font-style: italic; color: var(--peach); }
.teal-cta-content p { color: rgba(255,255,255,0.74); font-size: 0.94rem; }

.gallery-strip { padding: 72px 0; background: var(--white); overflow: hidden; }
.gallery-row { display: flex; gap: 10px; padding: 0 48px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.gallery-row::-webkit-scrollbar { display: none; }
.gallery-row img { flex: 0 0 300px; height: 210px; object-fit: cover; }

.packages-highlight { background: var(--ocean); padding: 68px 64px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.packages-highlight h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 10px; }
.packages-highlight p { color: rgba(255,255,255,0.62); font-size: 0.92rem; max-width: 480px; }
.packages-highlight .section-label { color: var(--teal-light); }

.cta-section { padding: 112px 48px; background: var(--linen); display: flex; justify-content: center; }
.cta-inner { text-align: center; max-width: 540px; }
.cta-inner h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); margin-bottom: 8px; color: var(--text); }

/* ---- FOOTER ---- */
.footer { background: var(--ocean); color: rgba(255,255,255,0.8); padding: 80px 64px 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 60px; }
.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo-wrap img { width: var(--footer-logo-w); height: auto; object-fit: contain; }
.footer-tagline { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 18px; }
.footer-desc { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.82; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 8px; }
.footer-col a { font-size: 0.86rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.36); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.36); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ---- PAGE HERO ---- */
.page-hero { height: 60vh; min-height: 440px; position: relative; display: flex; align-items: flex-end; padding: 0 64px 68px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,36,52,0.56) 0%, rgba(2,36,52,0.1) 60%, transparent 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content p { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 14px; }
.page-hero-content h1 { font-family: 'Averia Serif Libre', serif; font-size: clamp(2.8rem, 5vw, 4.6rem); font-weight: 300; color: var(--white); line-height: 1.08; }

.page-intro { padding: 80px 64px; max-width: 720px; margin: 0 auto; text-align: center; }
.page-intro h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); margin-bottom: 18px; color: var(--ocean); }
.page-intro p { color: var(--text-mid); line-height: 1.88; }

/* ---- ROOMS ---- */
.rooms-grid { padding: 0 64px 100px; display: flex; flex-direction: column; }
.room-card { display: grid; grid-template-columns: 1.2fr 1fr; border-top: 1px solid var(--border-light); min-height: 420px; }
.room-card:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
.room-card:nth-child(even) .room-img { order: 2; }
.room-card:nth-child(even) .room-info { order: 1; }
.room-img { overflow: hidden; }
.room-info { padding: 60px; display: flex; flex-direction: column; justify-content: center; background: var(--linen); }
.room-info h3 { font-family: 'Averia Serif Libre', serif; font-size: 2rem; font-weight: 300; margin-bottom: 14px; color: var(--ocean); }
.room-info p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.82; margin-bottom: 24px; }
.room-meta { display: flex; gap: 22px; margin-bottom: 26px; flex-wrap: wrap; }
.room-meta-item { display: flex; flex-direction: column; gap: 2px; }
.room-meta-item span:first-child { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }
.room-meta-item span:last-child { font-family: 'Averia Serif Libre', serif; font-size: 1.05rem; color: var(--ocean); }
.room-price { font-family: 'Averia Serif Libre', serif; font-size: 1.4rem; color: var(--brown); }
.room-price span { font-size: 0.72rem; font-family: 'Jost', sans-serif; color: var(--text-light); }

/* ---- DINING ---- */
.dining-feature { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border-light); min-height: 440px; }
.dining-feature:nth-child(even) .dining-feature-img { order: 2; }
.dining-feature:nth-child(even) .dining-feature-info { order: 1; }
.dining-feature-img { overflow: hidden; }
.dining-feature-info { padding: 60px; display: flex; flex-direction: column; justify-content: center; background: var(--linen); }
.dining-feature-info h3 { font-family: 'Averia Serif Libre', serif; font-size: 2.2rem; font-weight: 300; margin-bottom: 14px; color: var(--ocean); }
.dining-feature-info p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.82; margin-bottom: 14px; }
.dining-tag { display: inline-block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); border: 1px solid rgba(79,179,191,0.5); padding: 4px 12px; margin-bottom: 16px; }

/* ---- EXPERIENCES ---- */
.exp-full-grid { padding: 60px 64px 100px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.exp-full-item { border: 1px solid var(--border-light); margin: -0.5px; }
.exp-full-img { height: 280px; overflow: hidden; }
.exp-full-info { padding: 28px 32px 32px; }
.exp-full-info h3 { font-family: 'Averia Serif Libre', serif; font-size: 1.5rem; font-weight: 300; margin-bottom: 10px; color: var(--ocean); }
.exp-full-info p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.78; }

/* ---- DESTINATION ---- */
.destination-content { padding: 80px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.destination-content h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 20px; color: var(--ocean); }
.destination-content p { color: var(--text-mid); line-height: 1.88; margin-bottom: 16px; }
.destination-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 64px 80px; }
.dest-stat { padding: 32px; background: var(--linen); border-left: 3px solid var(--teal); }
.dest-stat-num { font-family: 'Averia Serif Libre', serif; font-size: 3rem; font-weight: 300; color: var(--ocean); line-height: 1; margin-bottom: 8px; }
.dest-stat-label { font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); }

/* ---- TRANSFERS ---- */
.transfers-layout { padding: 60px 64px 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.transfer-option { background: var(--linen); padding: 40px; }
.transfer-option h3 { font-family: 'Averia Serif Libre', serif; font-size: 1.6rem; font-weight: 300; color: var(--ocean); margin-bottom: 8px; }
.transfer-option .sub { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; display: block; }
.transfer-option p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.schedule-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.schedule-table th { background: var(--ocean); color: var(--white); padding: 10px 14px; text-align: left; font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; }
.schedule-table td { padding: 10px 14px; border-bottom: 1px solid rgba(79,179,191,0.15); color: var(--text-mid); vertical-align: middle; }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: rgba(2,81,109,0.04); }
.schedule-section-title { font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); background: rgba(79,179,191,0.08); padding: 8px 14px; font-weight: 400; }
.schedule-note { font-size: 0.78rem; color: var(--text-light); margin-top: 14px; line-height: 1.6; }

/* ---- PACKAGES ---- */
.packages-grid { padding: 60px 64px 100px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card { border: 1px solid var(--border-light); background: var(--white); }
.package-card.featured { border-color: var(--teal); border-width: 2px; }
.package-img { height: 240px; overflow: hidden; }
.package-info { padding: 28px 32px 32px; }
.package-info h3 { font-family: 'Averia Serif Libre', serif; font-size: 1.5rem; font-weight: 300; color: var(--ocean); margin-bottom: 10px; }
.package-info p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 18px; }
.package-price { font-family: 'Averia Serif Libre', serif; font-size: 1.6rem; color: var(--brown); margin-bottom: 14px; }
.package-price span { font-size: 0.73rem; font-family: 'Jost', sans-serif; color: var(--text-light); }
.package-includes { margin-bottom: 20px; }
.package-includes li { font-size: 0.82rem; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid var(--border-light); list-style: none; display: flex; align-items: center; gap: 8px; }
.package-includes li::before { content: '—'; color: var(--teal); }

/* ---- CONTACT ---- */
.contact-layout { padding: 80px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 20px; color: var(--ocean); }
.contact-info p { color: var(--text-mid); line-height: 1.88; margin-bottom: 32px; }
.contact-detail { margin-bottom: 22px; }
.contact-detail-label { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.contact-detail-val { font-size: 0.94rem; color: var(--text-mid); }
.contact-form-wrap { background: var(--linen); padding: 48px; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea { width: 100%; padding: 12px 16px; background: var(--white); border: 1px solid var(--border); font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300; color: var(--text); outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); }
textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8f82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.87rem; color: var(--text-mid); }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--teal); flex-shrink: 0; }

.info-panel { background: var(--ocean); padding: 56px 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.info-panel-item p:first-child { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 10px; }
.info-panel-item p:last-child { color: rgba(255,255,255,0.72); font-size: 0.88rem; line-height: 1.72; }

/* ---- LEGAL PAGES ---- */
.legal-content { max-width: 860px; margin: 0 auto; padding: 80px 64px 120px; }
.legal-content h1 { font-family: 'Averia Serif Libre', serif; font-size: clamp(2.2rem,3vw,3rem); font-weight: 300; color: var(--ocean); margin-bottom: 8px; }
.legal-content .last-updated { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.1em; margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.legal-content h2 { font-family: 'Averia Serif Libre', serif; font-size: 1.4rem; font-weight: 400; color: var(--ocean); margin: 40px 0 14px; }
.legal-content p, .legal-content li { font-size: 0.93rem; color: var(--text-mid); line-height: 1.88; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 18px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--teal); border-bottom: 1px solid rgba(79,179,191,0.3); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-links, .btn-book { display: none; }
  .nav-toggle { display: flex; }
  :root { --nav-h: 66px; }
  .nav { padding: 0 24px; }
  .hero { padding: 0 0 64px 32px; }
  .hero-scroll { display: none; }
  .hero-dots { right: 32px; bottom: 40px; }
  .intro { padding: 80px 24px; }
  .property-card { grid-template-columns: 1fr; min-height: auto; }
  .property-img-wrap { height: 360px; }
  .property-info { padding: 48px 32px; }
  .properties, .dining-preview, .experiences-preview { padding-left: 24px; padding-right: 24px; }
  .dining-single { grid-template-columns: 1fr; }
  .dining-single-img { height: 320px; }
  .dining-single-info { padding: 48px 32px; }
  .experiences-preview { grid-template-columns: 1fr; }
  .rooms-grid { padding: 0 24px 80px; }
  .room-card, .room-card:nth-child(even) { grid-template-columns: 1fr; }
  .room-card:nth-child(even) .room-img { order: 0; }
  .room-card:nth-child(even) .room-info { order: 0; }
  .room-img { height: 300px; }
  .room-info { padding: 40px 28px; }
  .dining-feature { grid-template-columns: 1fr; }
  .dining-feature:nth-child(even) .dining-feature-img { order: 0; }
  .dining-feature-img { height: 300px; }
  .dining-feature-info { padding: 40px 28px; }
  .exp-full-grid { grid-template-columns: 1fr 1fr; padding: 32px 24px 80px; }
  .destination-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .destination-stats { padding: 0 24px 60px; }
  .transfers-layout { grid-template-columns: 1fr; padding: 40px 24px 80px; }
  .contact-layout { grid-template-columns: 1fr; padding: 60px 24px; }
  .contact-form-wrap { padding: 32px; }
  .packages-grid { grid-template-columns: 1fr 1fr; padding: 32px 24px 80px; }
  .footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .info-panel { padding: 48px 24px; grid-template-columns: 1fr; gap: 28px; }
  .packages-highlight { grid-template-columns: 1fr; padding: 56px 24px; }
  .page-hero { padding: 0 24px 56px; }
  .gallery-row { padding: 0 24px; }
  .page-intro { padding: 60px 24px; }
  .legal-content { padding: 60px 24px 80px; }
}
@media (max-width: 640px) {
  .hero { padding: 0 0 56px 22px; }
  .hero-dots { right: 22px; }
  .exp-full-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .destination-stats { grid-template-columns: 1fr 1fr; }
  .gallery-row img { flex: 0 0 240px; height: 170px; }
  .teal-cta { height: 460px; }
  .transfers-layout { padding: 32px 20px 60px; }
}

/* ============================================
   V0.3 ADDITIONS & FIXES
   ============================================ */

/* ---- HERO EYEBROW — larger, legible over any image ---- */
.hero-eyebrow {
  font-size: 0.76rem !important;
  letter-spacing: 0.36em !important;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55), 0 0 40px rgba(0,0,0,0.3) !important;
  color: #ffffff !important;
}

/* ---- HERO SCROLL — larger, always visible ---- */
.hero-scroll {
  right: 60px !important;
}
.hero-scroll span {
  font-size: 0.74rem !important;
  letter-spacing: 0.28em !important;
  color: rgba(255,255,255,0.92) !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6) !important;
}
.scroll-line {
  width: 56px !important;
  height: 2px !important;
  background: rgba(255,255,255,0.45) !important;
}

/* ---- GALLERY NAV BAR ---- */
.gallery-strip { padding: 72px 0 60px; }
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 24px 48px 0;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}
.gallery-nav-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.gallery-nav-dot {
  width: 28px; height: 2px;
  background: rgba(30,26,22,0.2);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.3s;
}
.gallery-nav-dot.active {
  background: var(--brown);
  width: 44px;
}
.gallery-nav-btn {
  background: none; border: none; cursor: pointer;
  padding: 8px 12px;
  color: var(--text-mid);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.gallery-nav-btn:hover { color: var(--ocean); }
.gallery-nav-btn svg { width: 16px; height: 16px; }

/* ---- PHONE + COUNTRY CODE FIELD ---- */
.phone-field-wrap {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.phone-field-wrap select.country-code {
  width: auto;
  min-width: 108px;
  flex-shrink: 0;
  border-right: none;
  background-color: var(--linen);
  font-size: 0.82rem;
  padding-right: 32px;
  border-radius: 0;
  color: var(--text-mid);
}
.phone-field-wrap input[type="tel"] {
  flex: 1;
  border-radius: 0;
}

/* ---- DESTINATION — consistent section cards ---- */
/* Culture card uses same property-card look */
.culture-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: var(--white);
}
.culture-card-img {
  overflow: hidden;
}
.culture-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.culture-card:hover .culture-card-img img { transform: scale(1.025); }
.culture-card-info {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.culture-card-info h2 { font-size: clamp(2rem,3vw,2.8rem); margin-bottom: 20px; color: var(--ocean); }
.culture-card-info p { color: var(--text-mid); font-size: 0.96rem; line-height: 1.88; margin-bottom: 12px; }

/* ---- MOBILE: destination page fixes ---- */
@media (max-width: 1024px) {
  .culture-card { grid-template-columns: 1fr; min-height: auto; }
  .culture-card-img { height: 320px; }
  .culture-card-info { padding: 48px 28px; }
  .hero-scroll { display: none !important; }
  .gallery-nav { margin: 20px 24px 0; }
  .gallery-nav-dots { gap: 6px; }
}
@media (max-width: 640px) {
  .culture-card-info { padding: 40px 20px; }
  .gallery-nav { flex-wrap: wrap; gap: 12px; }
  .phone-field-wrap { flex-direction: row; }
  .phone-field-wrap select.country-code { min-width: 94px; font-size: 0.78rem; }
}

/* ---- DESTINATION — Getting Here grid (mobile collapse) ---- */
.getting-here-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .getting-here-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========================================
   V0.3 ADDITIONS & OVERRIDES
   ======================================== */

/* ---- HERO EYEBROW — larger, high-contrast text-shadow ---- */
.hero-eyebrow {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: var(--white) !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7), 0 0 24px rgba(0,0,0,0.5);
  letter-spacing: 0.38em !important;
}

/* ---- HERO SCROLL — bigger, high-contrast ---- */
.hero-scroll {
  right: 56px !important;
}
.hero-scroll span {
  font-size: 0.76rem !important;
  font-weight: 400 !important;
  color: var(--white) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  letter-spacing: 0.28em !important;
}
.scroll-line {
  width: 52px !important;
}

/* ---- PROPERTY-CARD REVERSE — clean order-based swap (no RTL) ---- */
.property-card--reverse {
  direction: ltr !important;
}
.property-card--reverse .property-img-wrap { order: 2; }
.property-card--reverse .property-info { order: 1; }

/* ---- DESTINATION CULTURE — exact same visual as property-card ---- */
.culture-card {
  background: transparent;
}
.culture-card-info {
  background: var(--linen) !important;
}

/* ---- MOBILE: destination page deep fixes ---- */
@media (max-width: 1024px) {
  /* Prevent reversed card from breaking on tablet */
  .property-card--reverse {
    grid-template-columns: 1fr !important;
  }
  .property-card--reverse .property-img-wrap { order: 0 !important; height: 340px; }
  .property-card--reverse .property-info { order: 0 !important; }
  /* Getting Here grid */
  .getting-here-grid { gap: 24px !important; }
  /* Culture card full width */
  .culture-card { grid-template-columns: 1fr; min-height: auto; }
  .culture-card-img { height: 320px !important; }
  .culture-card-info { padding: 48px 28px !important; }
}
@media (max-width: 640px) {
  /* Hero mobile text sizes */
  .hero-eyebrow { font-size: 0.7rem !important; letter-spacing: 0.22em !important; }
  .hero-title { font-size: clamp(2.6rem, 8vw, 3.8rem) !important; }
  .hero { padding: 0 0 48px 20px !important; }
  /* Stats grid 2-col on mobile */
  .destination-stats { grid-template-columns: 1fr 1fr !important; padding: 0 20px 48px !important; }
  /* Destination content section */
  .destination-content { padding: 48px 20px !important; }
  /* Destination linen getting here */
  section.getting-here-section { padding: 56px 20px !important; }
  /* General inner pages */
  .page-hero { padding: 0 20px 40px !important; }
  .page-intro { padding: 48px 20px !important; }
  .rooms-grid { padding: 0 20px 60px !important; }
  .exp-full-grid { padding: 32px 20px 60px !important; }
  .exp-full-grid { grid-template-columns: 1fr !important; }
  .packages-grid { grid-template-columns: 1fr !important; padding: 24px 20px 60px !important; }
  .dining-preview { padding: 60px 20px !important; }
  .transfers-layout { grid-template-columns: 1fr !important; padding: 32px 20px 60px !important; }
  /* Footer */
  .footer { padding: 48px 20px 28px !important; }
  .footer-links { grid-template-columns: 1fr 1fr !important; }
  /* Country code phone wrap */
  .phone-field-wrap { flex-direction: row !important; }
  .phone-field-wrap select.country-code { min-width: 86px !important; font-size: 0.76rem !important; }
  /* Gallery nav */
  .gallery-nav { margin: 16px 20px 0 !important; }
  /* Info panel */
  .info-panel { padding: 40px 20px !important; grid-template-columns: 1fr !important; }
}

/* ---- GETTING HERE SECTION responsive ---- */
@media (max-width: 1024px) {
  .getting-here-section { padding: 64px 24px !important; }
  .getting-here-section > div { max-width: 100% !important; }
}
@media (max-width: 640px) {
  .getting-here-section { padding: 48px 20px !important; }
}

/* ---- COFFEE ACCENT: brown → coffee same hex, ensure consistent usage ---- */
/* #643D20 is already --brown; used on prices, featured labels, CTA hover */

/* ---- PHONE FIELD: wider select on all viewports ---- */
.phone-field-wrap select.country-code {
  min-width: 118px;
  background-position: right 10px center;
}

/* ---- DESTINATION: property-card inside properties.linen keep bg white ---- */
.properties .property-info { background: var(--white); }

/* ---- DESTINATION: remove old culture-card rules (replaced by property-card) ---- */
.culture-card, .culture-card-img, .culture-card-info { all: unset; }

/* ========================================
   V0.4 ADDITIONS
   ======================================== */

/* ---- FOOTER LEGAL LINE — company name ---- */
.footer-company {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
  padding-top: 12px;
  letter-spacing: 0.05em;
}

/* ---- WHATSAPP FLOATING BUTTON ---- */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Speech bubble */
.wa-bubble {
  background: var(--white);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 12px 12px 4px 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  max-width: 200px;
  text-align: right;
  opacity: 0;
  transform: translateY(6px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 18px;
  border-left: 7px solid transparent;
  border-right: 0px solid transparent;
  border-top: 7px solid var(--white);
}
.wa-float:hover .wa-bubble,
.wa-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Button itself */
.wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.42);
  cursor: pointer;
  text-decoration: none;
  animation: waEntrance 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both, waBounce 2.8s ease-in-out 1.2s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  animation-play-state: paused;
}
.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  flex-shrink: 0;
}

@keyframes waEntrance {
  0%   { opacity: 0; transform: scale(0.3) translateY(30px); }
  60%  { opacity: 1; transform: scale(1.15) translateY(-4px); }
  80%  { transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  40%  { transform: translateY(-8px); }
  60%  { transform: translateY(-4px); }
}

/* ---- INDEX: Dining feature rows — CSS grid for proper alignment ---- */
.dining-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 20px 0 18px;
  border-top: 1px solid var(--border-light);
}
.dining-feature-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: baseline;
}
.dining-feature-row-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.6;
  padding-top: 1px;
}
.dining-feature-row-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

@media (max-width: 400px) {
  .dining-feature-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .wa-float { bottom: 20px; right: 18px; }
  .wa-btn { width: 52px; height: 52px; }
}
.focus-bottom {
  width: 100%;
  height: 100%;    /* Fills the landscape box */
  object-fit: cover;
  object-position: 50% 100%; /* 50% is horizontal center, 100% is the very bottom */
}
.focus-upper-bottom {
  width: 100%;
  height: 100%;    /* Fills the landscape box */
  object-fit: cover;
  object-position: 50% 75%; /* 50% is horizontal center, 100% is the very bottom */
}
/* ========================================
   V0.5 ADDITIONS
   ======================================== */

/* ---- BTN-BOOK: drop shadow while header is transparent ---- */
/* Active when nav is NOT scrolled and NOT solid */
.nav:not(.scrolled):not(.solid) .btn-book {
  box-shadow: 0 2px 14px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
  transition: all 0.25s, box-shadow 0.4s ease;
}
/* Shadow fades out as nav transitions to scrolled/solid */
.nav.scrolled .btn-book,
.nav.solid .btn-book {
  box-shadow: none;
  transition: all 0.25s, box-shadow 0.4s ease;
}

/* ---- FOOTER: by ghostdog attribution ---- */
.footer-ghostdog {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.14);
  text-align: center;
  padding-top: 6px;
  letter-spacing: 0.08em;
  font-style: italic;
}

/* ---- SCROLL TEXT: larger ---- */
.hero-scroll span {
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.75) !important;
  letter-spacing: 0.26em !important;
  font-weight: 300 !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.scroll-line {
  width: 56px !important;
}

/* ---- MAINTENANCE OVERLAY ---- */
/* ==== REMOVE THIS ENTIRE BLOCK WHEN HOTEL IS OPERATIONAL ==== */
.maintenance-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 36, 52, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.6s ease, backdrop-filter 0.6s ease;
}
.maintenance-overlay.dismissed {
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.maintenance-card {
  background: rgba(245, 243, 239, 0.97);
  max-width: 540px;
  width: 100%;
  padding: 52px 48px 44px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.maintenance-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}
.maintenance-title {
  font-family: 'Averia Serif Libre', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--ocean);
  line-height: 1.25;
  margin-bottom: 20px;
}
.maintenance-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}
.maintenance-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--ocean);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  display: inline-block;
}
.maintenance-btn:hover { background: var(--ocean-dark); }
@media (max-width: 560px) {
  .maintenance-card { padding: 40px 28px 36px; }
}
/* ==== END MAINTENANCE BLOCK ==== */

/* ---- INDEX: vertical coco.jpg placeholder ---- */
.coco-vertical-wrap {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  flex-shrink: 0;
}
.coco-vertical-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---- INTRO SECTION: two-column with vertical image ---- */
.intro-with-image {
  padding: 112px 64px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
  background: var(--white);
  max-width: 100%;
}
.intro-with-image .intro-inner {
  text-align: left;
  max-width: none;
}
.intro-with-image .intro-heading { text-align: left; }
.intro-with-image .intro-body { text-align: left; }

@media (max-width: 1024px) {
  .intro-with-image {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 40px;
  }
  .coco-vertical-wrap { aspect-ratio: 4/3; max-height: 340px; }
}
@media (max-width: 640px) {
  .intro-with-image { padding: 60px 20px; gap: 28px; }
}

/* ---- CONTACT FORM: date field ---- */
input[type="date"] {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="date"]:focus { border-color: var(--teal); }
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}
