@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --surface: #F6F0E4; --surface-raised: #FFFDF8; --ink: #2A2420; --ink-muted: #5C5044;
  --border: #E1D6C2; --forest: #2F4A3C; --forest-deep: #1E3329; --forest-soft: #DCE6DE;
  --sunset: #E8752A; --sunset-soft: #FBE2CC; --gold: #C98A3B; --teal-deep: #1E3A3A;
  --success: #3E7A4E; --error: #B3452F;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 24px; --radius-full: 999px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font-sans); background: var(--surface); color: var(--ink); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--forest-deep); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; }

.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 84px; padding: 0 48px; background: var(--surface-raised); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 30; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo span { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--ink); }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-item { position: relative; }
.nav-top { display: inline-flex; align-items: center; gap: 4px; padding: 10px 12px; font-size: 15px; font-weight: 500; color: var(--ink); border-radius: var(--radius-sm); }
.nav-top:hover { background: var(--surface); color: var(--forest); }
.nav-top.active { color: var(--sunset); }
.nav-top .caret { font-size: 9px; opacity: .6; }
.dropdown-panel { display: block; position: absolute; top: 100%; left: 0; min-width: 260px; background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: 0 12px 32px rgba(0,0,0,.12); padding: 10px; z-index: 30; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s; pointer-events: none; }
.nav-item:hover .dropdown-panel, .nav-item:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; transition: opacity .16s ease, transform .16s ease; }
.dropdown-panel a { display: block; padding: 9px 12px; font-size: 14px; color: var(--ink); border-radius: var(--radius-sm); }
.dropdown-panel a:hover { background: var(--forest-soft); color: var(--forest-deep); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 24px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; text-decoration: none; border: 1px solid transparent; cursor: pointer; font-family: var(--font-sans); }
.btn-primary { background: var(--sunset); color: #FFFDF8; }
.btn-primary:hover { background: #d1671f; color: #FFFDF8; }
.btn-secondary { background: var(--forest); color: #FFFDF8; }
.btn-secondary:hover { background: var(--forest-deep); color: #FFFDF8; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--forest); color: var(--forest); }
.btn-outline-light { background: rgba(255,253,248,.16); color: #FFFDF8; border-color: rgba(255,253,248,.85); backdrop-filter: blur(2px); }
.btn-outline-light:hover { background: #FFFDF8; color: var(--forest-deep); border-color: #FFFDF8; }
.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.breadcrumb { padding: 16px 48px 0; font-size: 13px; color: var(--ink-muted); }
.breadcrumb a { color: var(--ink-muted); }

.hero-small { position: relative; min-height: 300px; background: var(--teal-deep); display: flex; align-items: flex-end; padding: 40px 48px; background-size: cover; background-position: center; }
.hero-small .ph-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .35; font-size: 14px; color: #fff; text-align: center; padding: 0 40px; }
.hero-small .hero-inner { position: relative; z-index: 1; }
.hero-small h1 { font-size: 40px; font-weight: 600; color: #FFFDF8; margin: 0 0 10px; }
.hero-small .meta { font-size: 15px; color: rgba(255,253,248,.9); }
.hero-small .meta span { margin-right: 18px; }

.section { padding: 60px 48px; }
.section-alt { background: var(--surface-raised); }
.section-forest { background: var(--forest-deep); }
.section-tint { background: var(--forest-soft); }
.section-forest h1, .section-forest h2, .section-forest h3, .section-forest p { color: #FFFDF8; }
.section-forest .eyebrow { color: var(--gold); }
.section-center { text-align: center; }
.section-narrow { max-width: 820px; margin: 0 auto; }

.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sunset); margin: 0 0 8px; }
.eyebrow-forest { color: var(--forest); }
h2.title { font-size: 33px; font-weight: 600; color: var(--ink); margin: 0 0 16px; line-height: 1.2; }
h3.title-sm { font-size: 23px; font-weight: 600; color: var(--ink); margin: 0 0 14px; }

.prose p { font-size: 17px; line-height: 1.75; color: var(--ink); max-width: 760px; margin: 0 0 18px; }
.prose ul { font-size: 16px; line-height: 1.9; color: var(--ink); padding-left: 20px; }
.prose li { margin-bottom: 6px; }
.section-forest .prose p { color: rgba(255,253,248,.9); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(3, 1fr); } /* intentionally 3 columns — see note below */

.card { display: block; background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; color: inherit; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.card:hover { box-shadow: 0 14px 34px rgba(30,51,41,.14); transform: translateY(-3px); border-color: var(--forest-soft); color: inherit; }
.card .ph { height: 250px; background: var(--forest-soft); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--ink-muted); text-align: center; padding: 0 12px; }
.card .body { padding: 20px; }
.card h3 { font-size: 19px; margin: 0 0 8px; color: var(--ink); }
.card p { font-size: 14.5px; color: var(--ink-muted); margin: 0 0 12px; line-height: 1.6; }
.card .link { display: inline-block; font-size: 13px; font-weight: 600; color: var(--forest); text-transform: uppercase; letter-spacing: .03em; }
.card:hover .link { color: var(--sunset); }
.card .eyebrow-sm { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--sunset); margin: 0 0 4px; }

.day-row { display: flex; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.day-num { flex: 0 0 48px; height: 48px; border-radius: var(--radius-full); background: var(--forest); color: #FFFDF8; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 600; font-size: 17px; }
.day-row h4 { font-size: 18px; margin: 0 0 6px; color: var(--ink); }
.day-row p { font-size: 15px; color: var(--ink-muted); margin: 0; line-height: 1.6; }

.faq-item { background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 14px; max-width: 760px; }
.faq-item .q { font-weight: 600; font-size: 15px; margin: 0 0 6px; color: var(--ink); }
.faq-item .a { font-size: 14.5px; color: var(--ink-muted); margin: 0; line-height: 1.6; }

.two-col { display: flex; gap: 48px; align-items: flex-start; }
.two-col .main { flex: 3; min-width: 0; }
.two-col .side { flex: 2; min-width: 0; }

.sidebar-box { background: var(--forest-soft); border-radius: var(--radius-lg); padding: 26px; position: sticky; top: 100px; }
.sidebar-box .label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--forest); margin: 0 0 4px; }
.sidebar-box .price { font-family: var(--font-serif); font-size: 25px; font-weight: 600; color: var(--ink); margin: 0 0 18px; }

/* Booking form */
.booking-form { background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 100px; }
.booking-form h3 { font-size: 20px; margin: 0 0 4px; }
.booking-form .sub { font-size: 13.5px; color: var(--ink-muted); margin: 0 0 20px; }
.booking-form .field { margin-bottom: 14px; }
.booking-form label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-muted); margin-bottom: 6px; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); font-family: var(--font-sans); font-size: 14.5px;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: 2px solid var(--forest); outline-offset: 1px; }
.booking-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form textarea { resize: vertical; min-height: 70px; }
.booking-form .confirm-msg { display: none; background: var(--forest-soft); border-radius: var(--radius-sm); padding: 14px; font-size: 13.5px; color: var(--forest); margin-top: 12px; }
.booking-form .confirm-msg.show { display: block; }
.booking-form .price-line { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.booking-form .price-line .label { margin: 0; }
.booking-form .price-line .price { margin: 0; font-size: 22px; }

/* Included / excluded */
.incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.incl-excl .panel { border-radius: var(--radius-md); padding: 22px; }
.incl-excl .panel.included { background: var(--forest-soft); }
.incl-excl .panel.excluded { background: var(--surface-raised); border: 1px solid var(--border); }
.incl-excl .panel h4 { font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px; }
.incl-excl .panel.included h4 { color: var(--forest); }
.incl-excl .panel.excluded h4 { color: var(--ink-muted); }
.incl-excl ul { list-style: none; margin: 0; padding: 0; }
.incl-excl li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--ink); margin-bottom: 10px; }
.incl-excl .icon { flex: 0 0 18px; height: 18px; margin-top: 1px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; }
.incl-excl .included .icon { background: var(--success); }
.incl-excl .excluded .icon { background: var(--ink-muted); }
.incl-excl .excluded li { color: var(--ink-muted); }

.confirm { color: var(--gold); font-style: italic; }
[id] { scroll-margin-top: 100px; }

/* Horizontal scroll row (Destinations) */
.hscroll-wrap { position: relative; }
.hscroll { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
.hscroll::-webkit-scrollbar { height: 6px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.hscroll-item { flex: 0 0 calc(33.333% - 14px); min-width: 240px; scroll-snap-align: start; }
.hscroll-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface-raised); color: var(--ink); font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0,0,0,.1); }
.hscroll-arrow:hover { background: var(--forest); color: #FFFDF8; border-color: var(--forest); }
.hscroll-arrow.prev { left: -21px; }
.hscroll-arrow.next { right: -21px; }

/* Tabs (Safari Experiences) */
.tabs-block { }
.tabs-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tab-btn { font-family: var(--font-sans); font-size: 14px; font-weight: 600; padding: 11px 20px; border-radius: var(--radius-full); border: 1px solid var(--border); background: var(--surface-raised); color: var(--ink-muted); cursor: pointer; }
.tab-btn:hover { border-color: var(--forest); color: var(--forest); }
.tab-btn.active { background: var(--forest); border-color: var(--forest); color: #FFFDF8; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; }
.tab-panel .ph { border-radius: var(--radius-lg); }
.tab-panel-body h3 { font-size: 26px; margin: 0 0 14px; color: var(--ink); }
.tab-panel-body p { font-size: 15.5px; line-height: 1.7; color: var(--ink-muted); margin: 0 0 18px; }
.tab-panel-link { font-size: 13px; font-weight: 600; color: var(--forest); text-transform: uppercase; letter-spacing: .03em; }
.tab-panel-link:hover { color: var(--sunset); }

/* Blog magazine layout */
.blog-magazine { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
.blog-featured { position: relative; border-radius: var(--radius-md); overflow: hidden; display: block; color: inherit; min-height: 420px; }
.blog-featured .ph { height: 100%; min-height: 420px; border-radius: 0; }
.blog-featured .blog-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; background: linear-gradient(180deg, transparent 40%, rgba(30,51,41,.88) 100%); padding: 28px; }
.blog-featured .blog-overlay .eyebrow-sm { color: var(--sunset-soft); }
.blog-featured .blog-overlay h3 { font-size: 26px; color: #FFFDF8; margin: 0 0 10px; }
.blog-featured .blog-overlay p { font-size: 14.5px; color: rgba(255,253,248,.85); margin: 0 0 8px; }
.blog-side-list { display: flex; flex-direction: column; gap: 16px; }
.blog-side-card { display: flex; gap: 14px; background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; color: inherit; transition: box-shadow .2s, transform .2s; }
.blog-side-card:hover { box-shadow: 0 10px 26px rgba(30,51,41,.12); transform: translateY(-2px); }
.blog-side-card .ph { flex: 0 0 110px; height: auto; border-radius: 0; }
.blog-side-card .blog-side-body { padding: 12px 14px; }
.blog-side-card .eyebrow-sm { margin: 0 0 4px; }
.blog-side-card h4 { font-size: 15px; line-height: 1.35; margin: 0; color: var(--ink); }

/* Homepage image slider */
.slider { position: relative; height: 460px; overflow: hidden; background: var(--teal-deep); }
.slider .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; background-size: cover; background-position: center; display: flex; align-items: flex-end; z-index: 0; pointer-events: none; }
.slider .slide.active { opacity: 1; z-index: 1; }
.slider .slide-caption { position: relative; z-index: 1; padding: 32px 48px; background: linear-gradient(180deg, transparent, rgba(30,51,41,.8)); width: 100%; }
.slider .slide-caption span { font-family: var(--font-serif); font-size: 25px; font-weight: 600; color: #FFFDF8; }
.slider .dots { position: absolute; bottom: 20px; left: 0; right: 0; z-index: 3; display: flex; gap: 10px; justify-content: center; }
.slider .dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.45); border: 2px solid rgba(255,255,255,.6); cursor: pointer; padding: 0; transition: background .2s; }
.slider .dot.active { background: #FFFDF8; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 999px; border: none; background: rgba(30,51,41,.55); color: #FFFDF8; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.slider-arrow:hover { background: rgba(30,51,41,.85); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-hero-overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; background: linear-gradient(180deg, rgba(30,51,41,.25) 0%, rgba(30,51,41,.72) 100%); pointer-events: none; }
.slider-hero-overlay .hero-inner { pointer-events: auto; }

.footer { background: var(--forest-deep); color: rgba(255,253,248,.85); padding: 56px 48px 28px; }
.footer h5 { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.footer a { display: block; margin-bottom: 8px; font-size: 14.5px; color: rgba(255,253,248,.75); }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 32px; }
.footer-brand span { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: #FFFDF8; }
.footer p.desc { font-size: 14px; color: rgba(255,253,248,.7); max-width: 260px; line-height: 1.6; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge-chip { background: #FFFDF8; border-radius: 8px; padding: 6px 10px; display: flex; align-items: center; justify-content: center; height: 38px; }
.badge-chip img { height: 22px; width: auto; max-width: 74px; object-fit: contain; display: block; }
.contact-line { display: flex; align-items: flex-start; gap: 9px; }
.contact-line svg { flex: 0 0 auto; margin-top: 2px; color: var(--gold); }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; background: rgba(255,253,248,.12); color: #FFFDF8; margin-bottom: 0; }
.social-icons a:hover { background: var(--sunset); color: #fff; }

.whatsapp-float { position: fixed; bottom: 26px; right: 26px; z-index: 50; width: 58px; height: 58px; border-radius: 999px; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,.28); transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,253,248,.15); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,253,248,.55); }
.footer-bottom .links a { display: inline; margin-left: 20px; margin-bottom: 0; color: rgba(255,253,248,.55); }

.final-cta { background: var(--ink); color: #FFFDF8; text-align: center; padding: 64px 48px; }
.final-cta h2 { font-size: 32px; margin: 0 0 16px; color: #FFFDF8; }
.final-cta p { color: rgba(255,253,248,.85); max-width: 520px; margin: 0 auto 26px; font-size: 16.5px; }

.hamburger { display: none; flex-direction: column; gap: 4px; width: 22px; background: none; border: none; padding: 8px; cursor: pointer; }
.hamburger span { height: 2px; background: var(--ink); display: block; }

/* Centered content column — colored section backgrounds stay full-bleed,
   but the content inside is capped and given wider side margins so it
   doesn't stretch edge-to-edge on wide screens. */
:root { --container-max: 1140px; }
.nav-bar, .section, .footer, .final-cta, .hero-small, .breadcrumb, .slider-hero-overlay {
  padding-left: max(64px, calc((100% - var(--container-max)) / 2));
  padding-right: max(64px, calc((100% - var(--container-max)) / 2));
}

@media (max-width: 1000px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .incl-excl { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .blog-magazine { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface-raised); border-bottom: 1px solid var(--border); padding: 8px; box-shadow: 0 12px 24px rgba(0,0,0,.1); }
  .nav-links.nav-open { display: flex; }
  .nav-item { width: 100%; }
  .nav-top { width: 100%; justify-content: space-between; }
  .dropdown-panel { display: block; position: static; box-shadow: none; border: none; margin-top: 0; padding-left: 16px; opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .two-col { flex-direction: column; }
  .hero-small h1 { font-size: 30px; }
  .section { padding: 40px 24px; }
  .nav-bar { padding: 0 20px; }
  .breadcrumb, .hero-small, .slider-hero-overlay { padding-left: 20px; padding-right: 20px; }
  .slider { height: 340px; }
  .slider-arrow { width: 36px; height: 36px; font-size: 13px; }
  .slider .slide-caption span { font-size: 19px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .hscroll-item { flex: 0 0 82%; }
  .hscroll-arrow { display: none; }
  .tabs-nav { gap: 8px; }
  .tab-btn { padding: 9px 14px; font-size: 13px; }
}
