/* ==========================================================================
   GLOBAL VARIABLES & RESET
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dusk: #0E1810;
  --forest: #192B1E;
  --canopy: #243D2A;
  --savanna: #C2863A;
  --honey: #E0A84E;
  --parchment: #F5EDD8;
  --linen: #EDE0C4;
  --bark: #7A5C38;
  --smoke: #A09070;
  --white: #FFFCF5;
  --ink: #1A1610;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--parchment);
  color: var(--ink);
  overflow-x: clip; /* clip prevents page-level H-scroll without blocking child scroll containers */
}

p { color: var(--bark); line-height: 1.7; }
img { display: block; max-width: 100%; width: 100%; }
a { text-decoration: none; color: inherit; }
section { scroll-margin-top: 80px; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.lead { font-size: 16px; line-height: 1.95; color: var(--bark); font-weight: 300; }
.eyebrow { font-family: 'Jost', sans-serif; font-size: 16px; letter-spacing: .30em; text-transform: uppercase; color: var(--savanna); font-weight: 700; display: block; margin-bottom: 16px; }
.h1 { font-family: 'Cormorant', serif; font-size: clamp(3.8rem, 7vw, 7rem); line-height: .98; font-weight: 600; letter-spacing: -.01em; }
.h2 { font-family: 'Cormorant', serif; font-size: clamp(3.2rem, 4vw, 6rem); line-height: 1.02; font-weight: 600; letter-spacing: -.01em; }
.h3 { font-family: 'Cormorant', serif; font-size: clamp(1.9rem, 2.8vw, 2.8rem); line-height: 1.1; font-weight: 500; }
em { font-style: italic; color: var(--savanna); }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.divider { display: flex; justify-content: center; margin: 40px 0; }
.div-gem { display: flex; gap: 8px; }
.div-gem span { width: 6px; height: 6px; border-radius: 50%; background: var(--savanna); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.sec-head div { max-width: 600px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: 'Jost', sans-serif; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; cursor: pointer; border: none; transition: all .3s ease; white-space: nowrap; }
.btn-fill { background: var(--savanna); color: #fff; padding: 14px 28px; }
.btn-fill:hover { background: var(--honey); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: rgba(255, 255, 255, .85); padding: 13px 26px; border: 1px solid rgba(255, 255, 255, .28); }
.btn-ghost:hover { border-color: var(--honey); color: #fff; background: rgba(224, 168, 78, .1); }
.btn-ghost-dark { background: transparent; color: var(--bark); padding: 13px 26px; border: 1px solid rgba(122, 92, 56, .35); }
.btn-ghost-dark:hover { border-color: var(--savanna); color: var(--savanna); }
.arr { transition: transform .25s; font-style: normal; }
.btn:hover .arr { transform: translateX(5px); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   SOCIAL TOPBAR
   ========================================================================== */
.social-topbar {
  background: #f5f0e8;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1001;
}

.social-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.social-topbar-contact {
  display: flex;
  gap: 20px;
}

.social-topbar-contact a {
  color: #4a3728;
  text-decoration: none;
  transition: color 0.2s;
}

.social-topbar-contact a:hover {
  color: #c9a96e; /* your gold accent */
}

.social-topbar-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-topbar-icons a {
  color: #4a3728;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.social-topbar-icons a:hover {
  color: #c9a96e;
  transform: translateY(-1px);
}

.language-switcher {
  margin-left: 14px;
  display: flex;
  align-items: center;
}

.language-switcher select {
  background: transparent;
  border: 1px solid rgba(74, 55, 40, 0.3);
  border-radius: 4px;
  color: #4a3728;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  padding: 3px 6px;
  cursor: pointer;
  width: 118px;
  max-width: 118px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-switcher select:hover {
  border-color: #c9a96e;
}

@media (max-width: 600px) {
  .social-topbar-contact {
    display: none; /* hide contact text on small screens, keep icons */
  }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
#nav { position: fixed; top: 37px; left: 0; right: 0; z-index: 200; height: 72px; background: #101214; border-bottom: 1px solid rgba(224, 168, 78, .16); display: flex; align-items: center; transition: background .35s, box-shadow .35s; }
#nav.scrolled { background: rgba(16, 18, 20, .96); box-shadow: 0 4px 36px rgba(0, 0, 0, .28); border-bottom-color: rgba(224, 168, 78, .26); }
#nav .container { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
#nav .logo { flex-shrink: 0; }
#nav .logo img { height: 80px; width: auto; }
#nav-links { display: flex; flex-wrap: wrap; row-gap: 6px; gap: 10px 12px; align-items: center; list-style: none; min-width: 0; flex-shrink: 1; }
#nav-links a { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .82); font-weight: 600; transition: color .25s; padding: 4px 0; border-bottom: 1px solid transparent; white-space: nowrap; }
#nav-links a:hover, #nav-links a.active { color: var(--honey); border-bottom-color: var(--honey); }
.nav-cta { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; padding: 12px 16px; border-radius: 999px; background: var(--honey); color: #111; font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; box-shadow: 0 18px 40px rgba(194, 134, 58, .18); transition: transform .25s, background .25s; white-space: nowrap; }
.nav-cta:hover { background: #f4c051; transform: translateY(-1px); }

/* Hamburger & Drawer */
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: #fff; transition: all .3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

.drawer { position: fixed; top: 72px; left: 0; right: 0; background: #101214; border-bottom: 1px solid rgba(224, 168, 78, .18); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all .35s; z-index: 199; }
.drawer.active { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer-inner { padding: 32px 24px; }
.drawer-links { display: flex; flex-direction: column; gap: 24px; list-style: none; }
.drawer-links a { font-family: 'Jost', sans-serif; font-size: 14px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255, 255, 255, .75); font-weight: 500; transition: color .25s; }
.drawer-links a:hover { color: #fff; }
.drawer-cta { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); }
.drawer-cta a { display: inline-flex; align-items: center; padding: 12px 24px; background: var(--honey); color: #111; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; border-radius: 999px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: #090A08; color: #fff; padding: 80px 0 40px; border-top: 1px solid rgba(224, 168, 78, .22); }
.ft-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; margin-bottom: 60px; }
.ft-col h4 { font-family: 'Cormorant', serif; font-size: 1.4rem; color: #fff; margin-bottom: 20px; font-weight: 600; }
.ft-links { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.ft-links a { font-size: 14px; color: rgba(255, 255, 255, .7); transition: color .25s; }
.ft-links a:hover { color: #fff; }
.ft-about { font-size: 13.5px; color: rgba(255, 255, 255, .65); line-height: 1.65; margin-bottom: 20px; }
.ft-social { display: flex; gap: 16px; margin-top: 20px; }
.ft-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; transition: all .25s; color: rgba(255, 255, 255, .7); }
.ft-social a:hover { border-color: var(--honey); background: var(--honey); color: #111; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 60px; flex-wrap: wrap; gap: 20px; }
.ft-bottom span { font-size: 13px; color: rgba(255, 255, 255, .6); }
.ft-accent { font-family: 'Cormorant', serif; font-size: 1rem; color: var(--honey); font-style: italic; }

/* ==========================================================================
   CHATBOT WIDGET
   ========================================================================== */
.chatbot-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1000; font-family: 'Jost', sans-serif; }
.chatbot-toggle { display: flex; align-items: center; gap: 10px; background: #E0A84E; padding: 10px 18px; border-radius: 50px; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s, background 0.2s; color: #1a1a1a; }
.chatbot-toggle:hover { transform: scale(1.03); background: #f4c051; }
.chatbot-icon { font-size: 24px; }
.chatbot-label { font-weight: 600; font-size: 14px; letter-spacing: 0.3px; }
.chatbot-window { position: absolute; bottom: 70px; right: 0; width: 350px; background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); overflow: hidden; display: none; flex-direction: column; max-height: 500px; border: 1px solid rgba(194,134,58,0.3); }
.chatbot-window.active { display: flex; }
.chatbot-header { background: #C2863A; color: white; padding: 12px 16px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.chatbot-close { cursor: pointer; font-size: 20px; line-height: 1; }
.chatbot-messages { padding: 16px; height: 350px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: #fefaf5; }
.bot-message { background: #f0e6d8; padding: 10px 14px; border-radius: 18px 18px 18px 4px; max-width: 85%; font-size: 13px; color: #2c2b26; line-height: 1.45; }
.user-message { background: #E0A84E; color: #1a1a1a; padding: 10px 14px; border-radius: 18px 18px 4px 18px; max-width: 85%; align-self: flex-end; font-size: 13px; }
.whatsapp-suggestion { background: #e8f5e9; border-left: 3px solid #25D366; padding: 10px 12px; border-radius: 12px; font-size: 12px; display: flex; flex-direction: column; gap: 8px; }
.whatsapp-link-small { background: #25D366; color: white; text-align: center; padding: 6px 12px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 12px; display: inline-block; align-self: flex-start; }
.chatbot-input-area { display: flex; border-top: 1px solid rgba(0,0,0,0.1); padding: 10px; background: white; }
.chatbot-input { flex: 1; border: 1px solid #ddd; border-radius: 40px; padding: 8px 14px; font-size: 13px; outline: none; }
.chatbot-send { background: #C2863A; border: none; color: white; border-radius: 40px; padding: 8px 16px; margin-left: 8px; cursor: pointer; font-weight: 600; font-size: 12px; }
.quick-buttons { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px; background: #fff; border-top: 1px solid #eee; }
.quick-btn { background: #f0e6d8; border: none; border-radius: 20px; padding: 6px 12px; font-size: 11px; cursor: pointer; color: #4a3b2c; transition: 0.2s; }
.quick-btn:hover { background: #E0A84E; color: #111; }

/* ==========================================================================
   PAGE SPECIFIC: INDEX
   ========================================================================== */
#home { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; background-color: #10150f; overflow: hidden; }
#home > .container { position: relative; z-index: 1; }
.hero-bg-slides { position: absolute; top: 0; left: 0; right: 0; height: 100vh; z-index: 0; }
.hero-bg-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-bg-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; transform: translateZ(0); backface-visibility: hidden; image-rendering: -webkit-optimize-contrast; image-rendering: high-quality; }
.hero-bg-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(9, 10, 8, .28), rgba(9, 10, 8, .15)); z-index: 1; }
.hero-bg-slide.active { opacity: 1; }
.hero-copy { max-width: 720px; color: #fff; padding: 120px 0 60px; margin: 0 auto 0 0; text-align: left; }
.hero-copy .eyebrow { color: var(--honey); margin-bottom: 20px; letter-spacing: .35em; font-family: 'Jost', sans-serif; font-size: 16px; text-transform: uppercase; font-weight: 700; display: block; }
.hero-copy .h1 { font-size: clamp(4rem, 7vw, 7rem); line-height: .95; letter-spacing: -.04em; text-transform: uppercase; margin-bottom: 0; }
.hero-copy p { margin-bottom: 34px; font-size: 1rem; max-width: 650px; color: rgba(255, 255, 255, .85); font-weight: 300; }
.hero-slider { display: grid; margin-bottom: 28px; }
.hero-slide { grid-area: 1 / 1; opacity: 0; transition: opacity 0.8s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slider-dots { display: flex; gap: 10px; margin-bottom: 36px; }
.hero-dot { width: 28px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, .35); border: none; cursor: pointer; padding: 0; transition: background 0.3s ease, width 0.3s ease; }
.hero-dot.active { background: var(--honey); width: 48px; }
.hero-btns { display: flex; gap: 18px; justify-content: flex-start; flex-wrap: wrap; }
.hero-btns .btn { border-radius: 14px; }
.hero-panel { background: var(--parchment); padding: 70px 0 50px; width: 100%; }
.welcome-panel { max-width: 940px; margin: 0 auto; padding: 40px 40px; border-radius: 28px; background: #fff; box-shadow: 0 28px 70px rgba(0, 0, 0, .12); color: var(--dusk); }
.welcome-panel h2 { font-family: 'Cormorant', serif; font-size: clamp(2.6rem, 4vw, 3.8rem); line-height: 1.02; margin-bottom: 26px; color: var(--dusk); }
.welcome-panel p { font-size: 1rem; line-height: 1.85; color: var(--bark); margin-bottom: 20px; }
.dest-note { margin-top: 24px; color: var(--smoke); font-size: 0.95rem; letter-spacing: .05em; }

#story { padding: 70px 0; background: var(--parchment); }
#story .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: center; }
.story-visual img { border-radius: 24px; height: 520px; object-fit: cover; width: 100%; }
.story-copy .eyebrow { margin-bottom: 20px; }
.story-copy .h2 { margin-bottom: 24px; }
.story-copy p { margin-bottom: 28px; }

#destinations { padding: 70px 0; background: var(--parchment); color: var(--dusk); }
.dests { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 28px; }
.dc { overflow: hidden; border-radius: 24px; background: #fff; box-shadow: 0 24px 80px rgba(0, 0, 0, .08); }
.dc img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s ease; }
.dc:hover img { transform: scale(1.05); }
.dc-info { padding: 28px 24px; }
.dc-tag { font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: var(--savanna); font-weight: 700; margin-bottom: 10px; display: block; }
.dc h3 { font-family: 'Cormorant', serif; font-size: 2.1rem; margin-bottom: 12px; color: var(--dusk); }
.dc p { font-size: 0.98rem; line-height: 1.75; color: var(--bark); margin: 0; }
.more-lnk { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--dusk); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; }
.more-lnk:hover { color: var(--savanna); }

#itineraries { padding: 65px 0; background: var(--parchment); }
#itineraries .eyebrow { color: var(--honey); }
.itin-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 32px; }
.ic { background: #fff; color: var(--dusk); padding: 34px; border-radius: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, .06); }
.ic-days { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--savanna); font-weight: 700; margin-bottom: 16px; }
.ic h3 { font-family: 'Cormorant', serif; font-size: 2.4rem; margin-bottom: 16px; color: var(--dusk); }
.ic p { font-size: 15px; line-height: 1.75; color: var(--bark); margin-bottom: 24px; }

#experiences { padding: 65px 0; background: var(--parchment); color: var(--dusk); }
.exp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 26px; }
.exp-copy .eyebrow { margin-bottom: 20px; color: var(--savanna); }
.exp-copy .h2 { margin-bottom: 24px; }
.exp-copy p { margin-bottom: 28px; color: var(--bark); }
.exp-visual img { width: 100%; height: clamp(320px, 52vw, 620px); border-radius: 24px; object-fit: cover; object-position: center; box-shadow: 0 24px 64px rgba(0, 0, 0, .12); }
.learn-more-content { background: #fff; border-radius: 20px; padding: 20px; margin-top: 20px; border-left: 4px solid var(--honey); display: none; }
.learn-more-content.show { display: block; }
.learn-more-content p { margin-bottom: 12px; font-size: 0.95rem; }

#testimonials { padding: 65px 0; background: var(--parchment); }
#testimonials .eyebrow { color: var(--honey); }
.test-row {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  margin-top: 60px;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;   /* momentum scroll on iOS */
  scrollbar-width: none;               /* Firefox — hide bar */
  user-select: none;
}
.test-row::-webkit-scrollbar { display: none; }   /* Chrome / Safari / Edge */

/* grab cursor only on devices that have a precise pointer (mouse) */
@media (pointer: fine) {
  .test-row { cursor: grab; }
  .test-row.is-dragging { cursor: grabbing; }
}

/* while dragging, freeze snap and block child click/hover interference */
.test-row.is-dragging { scroll-snap-type: none; }
.test-row.is-dragging .tc { pointer-events: none; }
.test-row .tc { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.tc { background: #fff; padding: 40px; border-radius: 20px; border: 1px solid rgba(122, 92, 56, .12); box-shadow: 0 8px 32px rgba(0, 0, 0, .08); }
.tc-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.tc-stars svg { width: 16px; height: 16px; fill: var(--honey); }
.tc p { font-size: 16px; line-height: 1.7; color: var(--bark); font-style: italic; margin-bottom: 24px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tc-author .info h4 { font-family: 'Cormorant', serif; font-size: 1.1rem; color: var(--forest); margin-bottom: 2px; }
.tc-author .info span { font-size: 12px; color: var(--smoke); letter-spacing: .05em; text-transform: uppercase; font-weight: 500; }

#cta { padding: 80px 0; background: #090A08; color: #fff; text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-inner .eyebrow { margin-bottom: 20px; }
.cta-inner .h2 { margin-bottom: 24px; }
.cta-inner p { margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact Modal */
.contact-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1001; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.contact-modal.active { opacity: 1; visibility: visible; }
.contact-modal-content { background: #fff; border-radius: 32px; max-width: 400px; width: 90%; padding: 32px; text-align: center; position: relative; color: var(--ink); }
.contact-modal-content h3 { font-family: 'Cormorant', serif; font-size: 1.8rem; margin-bottom: 16px; }
.contact-modal-content p { margin-bottom: 24px; }
.modal-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.modal-btn { padding: 12px 24px; border-radius: 40px; font-weight: 600; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.modal-btn.email { background: var(--savanna); color: white; }
.modal-btn.whatsapp { background: #25D366; color: white; }
.modal-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.modal-close { position: absolute; top: 16px; right: 20px; font-size: 24px; cursor: pointer; color: #999; }

/* ==========================================================================
   PAGE SPECIFIC: ABOUT
   ========================================================================== */
#about { padding: 0; background: #f8f1e6; }
#about-hero { position: relative; min-height: 70vh; display: flex; align-items: center; background: url('../images/turtle.jpeg') center/cover no-repeat; }
#about-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(9, 10, 8, 0.65), rgba(9, 10, 8, 0.3)); }
#about-hero .container { position: relative; z-index: 1; }
.about-hero-copy { max-width: 780px; padding: 110px 0 80px; text-align: left; margin: 0 auto 0 0; padding-left: 24px; }
.about-hero-copy .lead { color: rgba(255, 255, 255, .92); font-size: 1.08rem; line-height: 1.9; text-align: left; }
.about-hero-copy .eyebrow { font-family: 'Cormorant', serif; font-size: clamp(4rem, 9vw, 8rem); font-weight: 700; color: #ffffff; line-height: 1.05; letter-spacing: -0.01em; display: block; margin-bottom: 1rem; text-transform: none; }
.about-hero-copy .h1, .about-hero-copy .h22 { color: rgba(255, 255, 255, 0.92); }
.structured-body { max-width: 880px; margin: 0 auto; padding: 60px 24px 70px; }
.story-block { text-align: left; margin-bottom: 64px; }
.story-block p { font-family: 'Cormorant', serif; font-size: clamp(1.2rem, 2.2vw, 1.65rem); line-height: 1.65; font-weight: 500; color: #1f2a1b; max-width: 75ch; margin: 0 0 1.8rem 0; text-align: left; letter-spacing: -0.2px; }
.story-block .signature-quote { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 400; color: var(--savanna); letter-spacing: 0.02em; border-top: 1px solid rgba(194, 134, 58, 0.3); display: inline-block; padding-top: 1.2rem; margin-top: 0.5rem; text-align: left; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin: 56px 0 48px; }
.about-panel { background: #fff; border-radius: 32px; box-shadow: 0 28px 48px rgba(0, 0, 0, 0.05); padding: 36px 32px; transition: transform 0.2s; }
.about-panel h3 { font-family: 'Cormorant', serif; font-size: 2rem; color: var(--dusk); margin-bottom: 24px; text-align: center; }
.founder-card { display: flex; gap: 28px; align-items: center; background: #f9f2e4; padding: 28px; border-radius: 28px; margin: 20px 0 24px; border: 1px solid rgba(194, 134, 58, 0.18); flex-wrap: wrap; }
.founder-card img { width: 180px; height: 180px; border-radius: 24px; object-fit: cover; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08); }
.founder-copy { flex: 1; text-align: left; }
.founder-copy .mini-eyebrow { font-size: 0.7rem; font-weight: 600; font-family: 'Jost', sans-serif; letter-spacing: .22em; text-transform: uppercase; color: var(--savanna); display: inline-block; margin-bottom: 8px; }
.founder-copy h4 { font-family: 'Cormorant', serif; font-size: 1.8rem; color: var(--dusk); margin-bottom: 12px; }
.founder-copy p { font-size: 1rem; line-height: 1.75; color: var(--bark); text-align: left; }
.about-panel .panel-text { font-size: 1rem; line-height: 1.85; margin-top: 20px; text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin: 40px 0 48px; }
.feature-card { background: #fff; padding: 28px 24px; border-radius: 28px; border: 1px solid rgba(194, 134, 58, 0.1); transition: all 0.2s; text-align: center; }
.feature-card h4 { font-family: 'Cormorant', serif; font-size: 1.35rem; color: var(--dusk); margin-bottom: 12px; }
.feature-card p { font-size: 0.98rem; line-height: 1.7; color: var(--bark); text-align: center; }
.more-quote { background: rgba(194, 134, 58, 0.08); border-radius: 28px; padding: 32px 36px; text-align: center; font-size: 1.08rem; line-height: 1.75; color: var(--dusk); margin-top: 20px; font-style: italic; font-family: 'Cormorant', serif; font-weight: 500; }
.more-quote strong { display: block; margin-top: 20px; color: var(--savanna); font-style: normal; font-family: 'Jost', sans-serif; font-weight: 600; letter-spacing: 0.5px; }

/* ==========================================================================
   PAGE SPECIFIC: DESTINATIONS
   ========================================================================== */
#dest-hero { position: relative; height: 70vh; min-height: 440px; display: flex; align-items: flex-end; overflow: hidden; margin-top: 72px; }
#dest-hero .hero-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; object-position: center; }
#dest-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,10,8,.78) 0%, rgba(9,10,8,.22) 50%, transparent 100%); z-index: 1; }
.hero-text { position: relative; z-index: 2; padding: 0 0 56px; color: #fff; }
.hero-eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--honey); font-weight: 700; display: block; margin-bottom: 14px; }
.hero-text h1 { font-family: 'Cormorant', serif; font-size: clamp(3.8rem, 8vw, 6.5rem); font-weight: 700; line-height: 1.0; color: #fff; margin-bottom: 12px; }
.hero-text p { font-family: 'Cormorant', serif; font-size: clamp(1.1rem, 2.2vw, 1.6rem); font-style: italic; font-weight: 300; color: rgba(255,255,255,.85); max-width: 560px; }
.dest-intro { background: var(--white); padding: 52px 0 44px; }
.dest-intro p { font-size: 1rem; line-height: 1.9; color: var(--bark); font-weight: 300; max-width: 800px; }
.dest-section { padding: 64px 0 24px; background: var(--parchment); }
.dest-section.alt-bg { background: var(--linen); }
.section-header { margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid rgba(194, 134, 58, .22); }
.section-sub { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .30em; text-transform: uppercase; color: var(--savanna); font-weight: 700; display: block; margin-bottom: 10px; }
.section-label { font-family: 'Cormorant', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--dusk); letter-spacing: -.01em; line-height: 1.08; }
.section-label em { font-style: normal; color: var(--savanna); }
.section-desc { font-size: .95rem; color: var(--bark); font-weight: 300; line-height: 1.8; margin-top: 12px; max-width: 660px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.grid-5 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-bottom: 56px; }
.grid-5 .dest-card { grid-column: span 2; }
.grid-5 .dest-card:nth-child(4) { grid-column: 2 / span 2; }
.grid-5 .dest-card:nth-child(5) { grid-column: 4 / span 2; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 24px; }
.grid-3-b { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 56px; }
.grid-coastal-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 24px; }
.grid-coastal-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 56px; }
.dest-card { position: relative; border-radius: 18px; overflow: hidden; cursor: pointer; aspect-ratio: 5/4; display: block; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card .img-alt {
  position: absolute;
  inset: 0;
  animation: img-crossfade 8s ease-in-out infinite;
}
@keyframes img-crossfade {
  0%, 35%  { opacity: 1; }
  50%, 85% { opacity: 0; }
  100%     { opacity: 1; }
}
.dest-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,10,8,.85) 0%, rgba(9,10,8,.06) 65%, transparent 100%); z-index: 1; }
.dest-card:hover::before { opacity: .92; }
.card-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 22px 24px; }
.card-tag { display: block; font-family: 'Jost', sans-serif; font-size: 8.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--honey); font-weight: 700; margin-bottom: 5px; }
.card-body h3 { font-family: 'Cormorant', serif; font-size: 1.45rem; font-weight: 700; color: #fff; margin-bottom: 5px; line-height: 1.15; }
.card-body p { font-size: .85rem; color: rgba(255,255,255,.9); font-weight: 400; margin-bottom: 14px; line-height: 1.5; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.card-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--honey); color: #111; font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; padding: 8px 16px; border-radius: 999px; transition: background .25s, transform .25s; border: none; cursor: pointer; }
.card-btn:hover { background: #f4c051; transform: translateY(-2px); }
.dest-card.wide { aspect-ratio: 16/9; }
.coastal-divider { display: flex; align-items: center; gap: 20px; margin: 16px 0 44px; }
.coastal-divider::before, .coastal-divider::after { content: ''; flex: 1; height: 1px; background: rgba(194, 134, 58, .32); }
.coastal-divider span { font-family: 'Cormorant', serif; font-size: 1.05rem; color: var(--smoke); font-style: italic; letter-spacing: .08em; white-space: nowrap; }

/* Destinations Modal */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.85); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container { background: #fff; max-width: 700px; width: 90%; border-radius: 32px; overflow-y: auto; max-height: 85vh; position: relative; }
.modal-img { width: 100%; height: 240px; object-fit: cover; border-radius: 32px 32px 0 0; }
.modal-content { padding: 32px 36px; }
.modal-content h2 { font-family: 'Cormorant', serif; font-size: 2rem; color: var(--dusk); margin-bottom: 8px; }
.modal-tag { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--savanna); margin-bottom: 20px; display: inline-block; }
.modal-section { margin-bottom: 24px; }
.modal-section h4 { font-family: 'Cormorant', serif; font-size: 1.3rem; color: var(--dusk); margin-bottom: 10px; }
.modal-section p { font-size: .95rem; line-height: 1.65; }
.activities-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.activities-list li { background: var(--linen); padding: 6px 14px; border-radius: 40px; font-size: .85rem; color: var(--bark); }
.accom-item { background: none; border-radius: 0; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.07); display: block; }
.accom-item:last-child { border-bottom: none; }
.accom-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 5px; }
.accom-name { font-family: 'Jost', sans-serif; font-weight: 600; font-size: .92rem; color: var(--dusk); }
.accom-stars { color: #c8961e; font-size: .8rem; letter-spacing: 1.5px; white-space: nowrap; }
.accom-desc { font-size: .85rem; color: var(--bark); line-height: 1.55; margin: 0; }
.best-time { background: rgba(224, 168, 78, .1); border-left: 3px solid var(--honey); padding: 12px 18px; border-radius: 12px; margin-top: 8px; }
.book-modal-btn { background: var(--savanna); color: #fff; padding: 14px 28px; border-radius: 40px; font-weight: 700; letter-spacing: .1em; display: inline-block; margin-top: 16px; transition: all .2s; border: none; cursor: pointer; font-size: .9rem; }
.book-modal-btn:hover { background: var(--honey); transform: translateY(-2px); }

/* Tour Cards */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.tour-card { background: #fff; border-radius: 24px; overflow: hidden; transition: transform .2s, box-shadow .2s; border: 1px solid rgba(194, 134, 58, .15); }
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 20px 30px -12px rgba(0,0,0,.1); }
.tour-card-content { padding: 20px; }
.tour-card h4 { font-family: 'Cormorant', serif; font-size: 1.35rem; margin-bottom: 8px; color: var(--dusk); }
.tour-card p { font-size: .9rem; color: var(--bark); margin-bottom: 16px; }
.tour-card .card-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--savanna); color: #fff; font-size: 9px; padding: 6px 14px; }
.tour-card .card-btn:hover { background: var(--honey); color: #111; }

/* Booking Forms */
.booking-section { background: var(--white); padding: 70px 0; margin-top: 20px; }
.booking-form { max-width: 700px; margin: 0 auto; background: #fff; border-radius: 32px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,.05); }
.booking-form h3 { font-family: 'Cormorant', serif; font-size: 2rem; margin-bottom: 24px; text-align: center; color: var(--dusk); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dusk); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid rgba(194, 134, 58, .3); border-radius: 28px; font-family: 'Jost', sans-serif; background: #fff; color: var(--ink); }
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.date-summary { margin-top: 12px; padding: 12px 16px; border-radius: 18px; background: rgba(194, 134, 58, .08); color: var(--bark); font-size: .92rem; }
.date-summary strong { color: var(--dusk); }
.countdown-summary { background: rgba(42, 93, 68, .08); border: 1px solid rgba(42, 93, 68, .12); }
.countdown-summary.is-soon { background: rgba(224, 168, 78, .12); border: 1px solid rgba(224, 168, 78, .18); }
.countdown-summary.is-today { background: rgba(42, 93, 68, .14); border: 1px solid rgba(42, 93, 68, .22); }
.submit-btn { background: var(--savanna); color: #fff; padding: 14px 32px; border: none; border-radius: 40px; font-weight: 700; letter-spacing: .1em; cursor: pointer; width: 100%; transition: all .2s; }
.submit-btn:hover { background: var(--honey); transform: translateY(-2px); }
.whatsapp-booking { margin-top: 20px; text-align: center; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 12px 28px; border-radius: 40px; font-weight: 600; transition: all .2s; text-decoration: none; }
.whatsapp-link:hover { background: #128C7E; transform: translateY(-2px); }

/* ==========================================================================
   PAGE SPECIFIC: ITINERARIES
   ========================================================================== */
#itinerary-hero { position: relative; height: 62vh; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; margin-top: 72px; }
#itinerary-hero .hero-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; object-position: center 35%; }
#itinerary-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9, 10, 8, .82) 0%, rgba(9, 10, 8, .25) 60%, transparent 100%); z-index: 1; }

.itinerary-main { padding: 70px 0 80px; }
.itinerary-card { background: #fff; border-radius: 32px; box-shadow: 0 20px 38px -12px rgba(0,0,0,.08); margin-bottom: 56px; border: 1px solid rgba(194, 134, 58, .12); overflow: hidden; }
.itinerary-header { background: linear-gradient(105deg, #F9EFE0 0%, #FEF7EF 100%); padding: 24px 32px; border-bottom: 2px solid var(--honey); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.itinerary-header h3 { font-family: 'Cormorant', serif; font-size: 1.9rem; font-weight: 700; color: var(--savanna); }
.itinerary-badge { background: var(--honey); color: #111; padding: 6px 18px; border-radius: 40px; font-size: .7rem; font-weight: 700; letter-spacing: .1em; }
.itinerary-days { padding: 28px 32px; }
.day-item { display: flex; gap: 20px; margin-bottom: 24px; border-bottom: 1px dashed rgba(194, 134, 58, .2); padding-bottom: 20px; }
.day-number { min-width: 70px; font-weight: 700; color: var(--savanna); font-family: 'Jost', sans-serif; font-size: 1rem; }
.day-desc { color: var(--bark); font-size: .95rem; line-height: 1.6; }
.day-desc strong { color: var(--dusk); }
.inclusion-box { background: rgba(224, 168, 78, .06); border-radius: 24px; padding: 22px 28px; margin-top: 16px; border: 1px solid rgba(194, 134, 58, .15); }
.inclusion-box h4 { font-family: 'Cormorant', serif; font-size: 1.3rem; color: var(--savanna); margin-bottom: 12px; }
.inclusion-box ul { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; }
.inclusion-box ul li { font-size: .85rem; color: var(--bark); background: #fff; padding: 4px 14px; border-radius: 30px; border: 1px solid rgba(194, 134, 58, .2); }

/* Custom Builder */
.builder-section { background: var(--white); padding: 60px 0; margin-top: 20px; }
.builder-card { background: #fff; border-radius: 32px; box-shadow: 0 20px 38px -12px rgba(0,0,0,.08); padding: 40px; border: 1px solid rgba(194, 134, 58, .15); }
.builder-card h2 { font-family: 'Cormorant', serif; font-size: 2.2rem; color: var(--dusk); margin-bottom: 12px; }
.builder-card p { color: var(--bark); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.checkbox-group label { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; background: #f9f2e4; padding: 6px 14px; border-radius: 40px; cursor: pointer; color: var(--ink); }
.checkbox-group input { width: auto; margin-right: 4px; }
.full-width { grid-column: span 2; }
.submit-builder-btn { background: var(--savanna); color: #fff; padding: 14px 32px; border: none; border-radius: 40px; font-weight: 700; letter-spacing: .1em; cursor: pointer; width: 100%; transition: all .2s; margin-top: 16px; }
.submit-builder-btn:hover { background: var(--honey); transform: translateY(-2px); }
.whatsapp-builder { text-align: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(194, 134, 58, .2); }
.whatsapp-builder a { background: #25D366; color: #fff; padding: 10px 24px; border-radius: 40px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.whatsapp-builder a:hover { background: #128C7E; }

/* ==========================================================================
   SAFARI DESIGNER — multi-step enquiry wizard
   ========================================================================== */
.sd-section { background: var(--white); padding: 70px 0 80px; }
.sd-wrap { background: #fff; border-radius: 36px; box-shadow: 0 24px 56px -12px rgba(14,24,16,.1); padding: 52px 48px; border: 1px solid rgba(194,134,58,.18); max-width: 900px; margin: 0 auto; }

/* Header */
.sd-header { text-align: center; margin-bottom: 44px; }
.sd-header h2 { font-family: 'Cormorant', serif; font-size: clamp(2rem,3.5vw,2.8rem); color: var(--dusk); margin-bottom: 12px; }
.sd-header p { font-size: .98rem; color: var(--bark); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* Progress */
.sd-progress { margin-bottom: 44px; }
.sd-progress-track { height: 3px; background: rgba(194,134,58,.15); border-radius: 4px; margin-bottom: 16px; }
.sd-progress-fill { height: 3px; background: var(--savanna); border-radius: 4px; transition: width .4s ease; width: 0; }
.sd-dots { display: flex; justify-content: space-between; }
.sd-dot { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 2px solid rgba(194,134,58,.3); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; color: var(--bark); font-family: 'Jost', sans-serif; transition: all .3s; cursor: default; flex-shrink: 0; }
.sd-dot.active { border-color: var(--savanna); color: var(--savanna); background: rgba(194,134,58,.07); }
.sd-dot.done { background: var(--savanna); border-color: var(--savanna); color: #fff; font-size: .7rem; }

/* Panels */
.sd-panel { display: none; }
.sd-panel.active { display: block; animation: sdIn .28s ease; }
@keyframes sdIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* Question */
.sd-step-label { font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--savanna); font-weight: 700; margin-bottom: 10px; }
.sd-question { font-family: 'Cormorant', serif; font-size: clamp(1.45rem,2.5vw,1.9rem); color: var(--dusk); margin-bottom: 6px; font-weight: 600; line-height: 1.25; }
.sd-question-hint { font-size: .85rem; color: var(--smoke); margin-bottom: 28px; font-style: italic; }

/* Option cards */
.sd-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.sd-cards.cols-2 { grid-template-columns: repeat(2,1fr); }
.sd-option { cursor: pointer; display: block; }
.sd-option input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.sd-option-inner { background: #fff; border: 2px solid rgba(194,134,58,.22); border-radius: 20px; padding: 22px 18px 20px; text-align: center; transition: border-color .2s, transform .2s, box-shadow .2s; position: relative; height: 100%; }
.sd-option-inner:hover { border-color: rgba(194,134,58,.6); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(194,134,58,.12); }
.sd-option:has(input:checked) .sd-option-inner { border-color: var(--savanna); background: rgba(194,134,58,.055); box-shadow: 0 0 0 3px rgba(194,134,58,.18); transform: translateY(-2px); }
.sd-option:has(input:checked) .sd-option-inner::after { content: '✓'; position: absolute; top: 11px; right: 13px; background: var(--savanna); color: #fff; width: 22px; height: 22px; border-radius: 50%; font-size: .7rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.sd-option-icon { font-size: 2.1rem; display: block; margin-bottom: 12px; line-height: 1; }
.sd-option-inner h4 { font-family: 'Cormorant', serif; font-size: 1.05rem; font-weight: 600; color: var(--dusk); margin-bottom: 6px; line-height: 1.25; }
.sd-option-inner p { font-size: .78rem; color: var(--bark); line-height: 1.55; margin: 0; }
.sd-option.disabled .sd-option-inner { opacity: .42; pointer-events: none; }

/* Pill selectors */
.sd-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.sd-pill { cursor: pointer; }
.sd-pill input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.sd-pill-label { display: inline-block; padding: 10px 22px; border: 2px solid rgba(194,134,58,.3); border-radius: 40px; font-size: .88rem; font-weight: 500; color: var(--dusk); background: #fff; transition: all .2s; }
.sd-pill-label:hover { border-color: var(--savanna); color: var(--savanna); }
.sd-pill:has(input:checked) .sd-pill-label { background: var(--savanna); color: #fff; border-color: var(--savanna); }

/* Step 5 selects */
.sd-selects { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sd-select-group label { display: block; font-size: .83rem; font-weight: 600; color: var(--dusk); margin-bottom: 8px; }
.sd-select { width: 100%; padding: 12px 16px; border: 2px solid rgba(194,134,58,.25); border-radius: 14px; font-family: 'Jost', sans-serif; background: #fff; color: var(--ink); font-size: .9rem; }

/* Contact inputs */
.sd-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sd-contact-group { display: flex; flex-direction: column; gap: 7px; }
.sd-contact-group.full { grid-column: span 2; }
.sd-contact-group label { font-size: .83rem; font-weight: 600; color: var(--dusk); }
.sd-label-note { font-size: .76rem; color: var(--smoke); font-weight: 400; font-style: italic; }
.designer-input { width: 100%; padding: 13px 18px; border: 2px solid rgba(194,134,58,.25); border-radius: 14px; font-family: 'Jost', sans-serif; background: #fff; color: var(--ink); font-size: .9rem; transition: border-color .2s; resize: vertical; }
.designer-input:focus { outline: none; border-color: var(--savanna); }

/* Step subheading */
.sd-sub-label { font-size: .83rem; font-weight: 600; color: var(--dusk); margin-bottom: 12px; display: block; }

/* Navigation */
.sd-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(194,134,58,.18); }
.sd-back-btn { background: transparent; color: var(--bark); border: 2px solid rgba(194,134,58,.3); padding: 12px 26px; border-radius: 40px; font-weight: 600; cursor: pointer; font-size: .88rem; transition: all .2s; font-family: 'Jost', sans-serif; }
.sd-back-btn:hover { border-color: var(--savanna); color: var(--savanna); }
.sd-next-btn { background: var(--savanna); color: #fff; border: none; padding: 13px 32px; border-radius: 40px; font-weight: 700; cursor: pointer; font-size: .9rem; transition: all .2s; font-family: 'Jost', sans-serif; letter-spacing: .05em; margin-left: auto; }
.sd-begin-btn { background: var(--savanna); color: #fff; border: none; padding: 14px 36px; border-radius: 40px; font-weight: 700; cursor: pointer; font-size: .95rem; transition: all .2s; font-family: 'Jost', sans-serif; letter-spacing: .07em; margin-left: auto; }
.sd-next-btn:hover, .sd-begin-btn:hover { background: var(--honey); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(194,134,58,.3); }

/* Error */
.sd-error { color: #c0392b; font-size: .83rem; margin-top: 14px; padding: 10px 14px; background: rgba(192,57,43,.05); border-radius: 10px; border: 1px solid rgba(192,57,43,.2); }

/* WhatsApp footer */
.sd-whatsapp { text-align: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(194,134,58,.15); }
.sd-whatsapp p { font-size: .88rem; color: var(--bark); margin-bottom: 12px; }
.sd-whatsapp a { background: #25D366; color: #fff; padding: 10px 24px; border-radius: 40px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem; transition: background .2s; }
.sd-whatsapp a:hover { background: #128C7E; }

/* Strip CTA */
.cta-strip { background: #090A08; padding: 70px 0; text-align: center; color: #fff; margin-top: 20px; }
.cta-strip .eyebrow { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--honey); font-weight: 700; display: block; margin-bottom: 16px; }
.cta-strip h2 { font-family: 'Cormorant', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; color: #fff; margin-bottom: 18px; }
.cta-strip p { font-size: 1rem; color: rgba(255, 255, 255, .75); max-width: 560px; margin: 0 auto 32px; }

/* ==========================================================================
   PAGE SPECIFIC: TRAVEL TIPS
   ========================================================================== */
#tips-hero { position: relative; height: 62vh; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; margin-top: 72px; }
#tips-hero .hero-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; object-position: center 30%; }
#tips-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9, 10, 8, .82) 0%, rgba(9, 10, 8, .25) 60%, transparent 100%); z-index: 1; }

.tips-main { padding: 70px 0 80px; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 60px; }
.tip-card { background: #fff; border-radius: 28px; overflow: hidden; box-shadow: 0 20px 40px -12px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s; }
.tip-card:hover { transform: translateY(-5px); box-shadow: 0 28px 48px -16px rgba(0,0,0,.12); }
.tip-icon { background: var(--honey); padding: 18px 0; text-align: center; font-size: 2.4rem; }
.tip-content { padding: 28px 26px 32px; }
.tip-content h3 { font-family: 'Cormorant', serif; font-size: 1.65rem; font-weight: 600; color: var(--dusk); margin-bottom: 14px; }
.tip-content p { font-size: .95rem; margin-bottom: 16px; }
.tip-list { list-style: none; margin-top: 12px; }
.tip-list li { font-size: .88rem; color: var(--bark); padding: 6px 0 6px 20px; position: relative; }
.tip-list li::before { content: "▹"; position: absolute; left: 0; color: var(--savanna); font-size: .85rem; }

.category-section { margin-top: 64px; }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 48px; }
.info-card { background: #fff; border-radius: 24px; padding: 28px 30px; box-shadow: 0 8px 24px rgba(0,0,0,.04); border: 1px solid rgba(194, 134, 58, .12); }
.info-card h3 { font-family: 'Cormorant', serif; font-size: 1.5rem; color: var(--savanna); margin-bottom: 18px; }
.info-card ul { list-style: none; }
.info-card ul li { padding: 8px 0 8px 24px; position: relative; font-size: .95rem; color: var(--bark); }
.info-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--honey); font-weight: 700; }
.alert-box { background: rgba(224, 168, 78, .08); border-left: 4px solid var(--honey); padding: 24px 28px; border-radius: 20px; margin: 32px 0; }
.alert-box p { font-style: italic; font-size: .98rem; margin: 0; }
.alert-box strong { color: var(--savanna); }

.packing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin: 40px 0; }
.packing-col { background: #fff; border-radius: 24px; padding: 28px; box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.packing-col h3 { font-family: 'Cormorant', serif; font-size: 1.45rem; color: var(--dusk); margin-bottom: 20px; border-bottom: 2px solid var(--honey); display: inline-block; padding-bottom: 6px; }
.packing-list { list-style: none; margin-top: 16px; }
.packing-list li { padding: 8px 0 8px 28px; position: relative; font-size: .92rem; color: var(--bark); }
.packing-list li::before { content: "•"; position: absolute; left: 8px; color: var(--savanna); font-size: 1.2rem; font-weight: 700; }


/* ==========================================================================
   MEDIA QUERIES (Aggregated)
   ========================================================================== */
@media (max-width: 1024px) {
  .container { width: calc(100% - 32px); }
  
  /* Index */
  #story .container { grid-template-columns: 3fr; gap: 80px; text-align: center; }
  .exp-row { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .split { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .sec-head { flex-direction: column; gap: 20px; align-items: flex-start; text-align: left; }
  .sec-head div { max-width: 100%; }
  
  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-card { flex-direction: column; text-align: center; }
  .founder-copy, .founder-copy p { text-align: center; }
  
  /* Destinations */
  .grid-3, .grid-5, .grid-3-b, .grid-coastal-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 .dest-card, .grid-5 .dest-card:nth-child(4), .grid-5 .dest-card:nth-child(5) { grid-column: auto; }
  .grid-2, .grid-coastal-2 { grid-template-columns: 1fr; }
  
  /* Itineraries / Tips / Common */
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-grid { grid-template-columns: 1fr; }
  .ft-row { grid-template-columns: 1fr 1fr; }
  .itinerary-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 24px); }
  
  /* Nav & Drawer */
  #nav { height: 64px; }
  #nav .container { gap: 12px; }
  #nav .logo img { height: 62px; }
  .nav-cta, #nav-links { display: none; }
  .hamburger { display: flex; }
  .drawer { top: 64px; }
  .drawer-inner { padding: 24px 20px 28px; }
  .drawer-links a { font-size: 16px; }

  /* Typography / Index */
  .h1 { font-size: clamp(2.8rem, 8vw, 4.5rem); }
  .h2 { font-size: clamp(2.4rem, 6vw, 4rem); }
  .h3 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
  .hero-copy { max-width: 100%; margin: 0 auto; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-slider-dots { justify-content: center; }
  .dests, .itin-row { grid-template-columns: 1fr; }
  .test-row .tc { flex: 0 0 calc((100% - 24px) / 1.2); } /* ~1 card + peek of next on tablet */
  .welcome-panel { padding: 28px 22px; }
  #story .container, .split { gap: 36px; }

  /* About */
  .eyebrow { font-size: clamp(1rem, 10vw, 1.2rem); }
  .about-hero-copy .eyebrow { font-size: clamp(3rem, 10vw, 5rem); }
  .about-hero-copy .h1 { font-size: clamp(1.2rem, 4vw, 2rem); }
  .about-hero-copy { padding: 80px 0 50px; }
  .structured-body { padding: 40px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-panel { padding: 28px 22px; }
  .more-quote { padding: 24px 20px; }
  
  /* Destinations */
  .grid-3, .grid-5, .grid-3-b, .grid-coastal-3, .grid-2, .grid-coastal-2 { grid-template-columns: 1fr; }
  #dest-hero { min-height: 360px; height: 58vh; }
  .hero-text { padding: 0 0 34px; }
  .dest-intro { padding: 40px 0 28px; }
  .dest-section { padding: 44px 0 14px; }
  .section-header { margin-bottom: 28px; padding-left: 16px; }
  .modal-content { padding: 24px; }
  .modal-container { width: calc(100% - 20px); border-radius: 24px; }
  .modal-img { height: 200px; border-radius: 24px 24px 0 0; }
  .booking-form { padding: 24px; }
  .form-row, .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: span 1; }
  .dest-card, .dest-card.wide { aspect-ratio: 16/10; }
  .tour-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Itineraries & Tips */
  .day-item { flex-direction: column; gap: 6px; }
  #itinerary-hero, #tips-hero { min-height: 320px; height: 54vh; }
  .hero-text h1 { font-size: clamp(2.5rem, 8vw, 3.8rem); }
  .itinerary-main { padding: 44px 0 56px; }
  .itinerary-header { padding: 18px 22px; }
  .itinerary-days { padding: 20px; }
  .inclusion-box { padding: 18px 20px; }
  .cta-strip { padding: 48px 0; }
  .builder-card { padding: 24px; }
  .sd-wrap { padding: 32px 22px; }
  .sd-cards { grid-template-columns: repeat(2,1fr); }
  .sd-cards.cols-2 { grid-template-columns: repeat(2,1fr); }
  .sd-contact-grid { grid-template-columns: 1fr; }
  .sd-contact-group.full { grid-column: span 1; }
  .sd-selects { grid-template-columns: 1fr; }
  .tips-grid, .packing-grid { grid-template-columns: 1fr; }
  .tip-card, .info-card { border-radius: 24px; }

  /* Common */
  .ft-row { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; text-align: center; }
}

@media (max-width: 480px) {
  .sd-cards, .sd-cards.cols-2 { grid-template-columns: 1fr; }
  .sd-begin-btn, .sd-next-btn { padding: 13px 24px; font-size: .85rem; }
}

@media (max-width: 480px) {
  /* Global Adjustments */
  #home { min-height: 100svh; }
  .hero-copy { padding: 96px 0 40px; }
  .btn-row, .cta-btns { flex-direction: column; width: 100%; }
  .btn-row .btn, .cta-btns .btn, .btn, .submit-btn, .whatsapp-link, .card-btn, .book-modal-btn { width: 100%; justify-content: center; }
  .welcome-panel { padding: 24px 18px; border-radius: 22px; }
  .story-copy, .exp-copy { text-align: left; }
  .exp-visual img { height: 360px; }
  .test-row .tc { flex: 0 0 calc(100% - 40px); } /* 1 full card + peek on phones */

  /* About */
  .about-hero-copy { padding: 64px 0 40px; }
  .about-panel, .more-quote { border-radius: 24px; }
  .story-block p { font-size: 1.2rem; line-height: 1.6; }
  .founder-card img { width: 140px; height: 140px; }

  /* Destinations */
  .hero-text h1 { font-size: clamp(3rem, 12vw, 4.3rem); }
  .card-body { padding: 18px; }
  .card-body h3 { font-size: 1.3rem; }
  .booking-section { padding: 48px 0; }
  .booking-form { border-radius: 24px; padding: 20px; }
  .coastal-divider { gap: 12px; margin: 6px 0 28px; }

  /* Itineraries & Tips */
  .section-header h2 { font-size: 1.7rem; }
  .itinerary-card { border-radius: 24px; margin-bottom: 36px; }
  .itinerary-header h3 { font-size: 1.55rem; }
  .itinerary-badge { width: 100%; text-align: center; }
  .day-number { min-width: 0; }
  .inclusion-box ul li { width: 100%; text-align: center; }
  .tip-content { padding: 22px 20px 26px; }
  .info-card { padding: 22px; }

  /* Chatbot */
  .chatbot-widget { right: 12px; bottom: 12px; }
  .chatbot-window { width: 300px; right: 0; bottom: 70px; }
  .chatbot-toggle { padding: 8px 14px; }
  .chatbot-label { font-size: 12px; }
}

/* ==========================================================================
   TESTIMONIAL CARDS — CLICKABLE STATE
   ========================================================================== */

.tc-card-link {
  display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.test-row:not(.is-dragging) .tc-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .13);
}

/* 3-line clamp for card previews */
.tc-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* "Read story →" label */
.tc-read-lnk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--savanna);
  transition: gap .2s;
  cursor: pointer;
}
.tc-card-link:hover .tc-read-lnk { gap: 10px; }

/* Avatar initial placeholder (no photo) */
.tc-avatar-init {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--honey);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIAL DETAIL PAGE
   ========================================================================== */

#test-detail-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(150deg, var(--dusk) 0%, var(--forest) 100%);
  overflow: hidden;
}
#test-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(224, 168, 78, .07) 0%, transparent 65%);
}
#test-detail-hero .container { position: relative; z-index: 1; }

.test-detail-hero-copy { padding: 130px 0 72px; max-width: 700px; }
.test-detail-hero-copy .eyebrow { color: var(--honey); }
.test-detail-hero-copy .h1 { color: #fff; margin-top: 10px; }

.test-detail-location {
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color .2s;
}
.back-link:hover { color: var(--honey); }

#test-detail-body { padding: 90px 0 110px; background: var(--parchment); }

.test-detail-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 64px;
  border: 1px solid rgba(122, 92, 56, .1);
  box-shadow: 0 14px 56px rgba(0, 0, 0, .09);
}

.test-detail-stars { display: flex; gap: 6px; margin-bottom: 32px; }
.test-detail-stars svg { width: 20px; height: 20px; fill: var(--honey); }

.test-detail-qdeco {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: 6rem;
  line-height: .55;
  color: var(--honey);
  opacity: .3;
  margin-bottom: 12px;
  user-select: none;
}

.test-detail-quote {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.68;
  color: var(--forest);
  font-style: italic;
  font-weight: 500;
  border: none;
  padding: 0;
  margin: 0 0 44px;
}

.test-detail-author {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(122, 92, 56, .12);
}
.test-detail-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(224, 168, 78, .22);
  flex-shrink: 0;
}
.test-detail-avatar-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--honey);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 1.7rem;
  font-weight: 600;
  flex-shrink: 0;
  border: 3px solid rgba(224, 168, 78, .22);
}
.test-detail-author-info h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.35rem;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 4px;
}
.test-detail-author-info span {
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

#test-more { padding: 80px 0 100px; background: var(--parchment); border-top: 1px solid rgba(122, 92, 56, .1); }
.test-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .test-detail-card { padding: 36px 28px; }
  .test-detail-hero-copy { padding: 100px 0 52px; }
  .test-more-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .test-detail-card { padding: 28px 20px; border-radius: 18px; }
  .test-detail-qdeco { font-size: 4rem; }
}

/* ==========================================================================
   NAV — Auth pill / Sign-in link
   ========================================================================== */
.nav-auth-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(224,168,78,.22);
  border-radius: 999px;
  padding: 6px 14px 6px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-auth-name {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}
.nav-auth-logout {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--honey);
  font-weight: 600;
  transition: color .25s;
}
.nav-auth-logout:hover { color: #fff; }
.nav-auth-signin {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 4px 0;
}
.nav-auth-signin:hover { color: var(--honey); border-bottom-color: var(--honey); }

/* Mobile drawer auth row */
.drawer-auth {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.drawer-auth span {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.drawer-auth a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--honey);
  font-weight: 600;
  transition: color .25s;
}
.drawer-auth a:hover { color: #fff; }

/* ==========================================================================
   AUTH PAGES — Login / Register
   ========================================================================== */
#auth-page {
  min-height: calc(100vh - 109px);
  display: flex;
  align-items: center;
  background: var(--forest);
  padding: 80px 0;
}
.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left branding panel */
.auth-brand-panel { color: #fff; }
.auth-brand-panel .eyebrow { color: var(--honey); }
.auth-brand-panel .h2 { color: #fff; margin-top: 10px; margin-bottom: 20px; }
.auth-brand-panel > p { color: rgba(255,255,255,.72); line-height: 1.8; }
.auth-benefits {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth-benefits li {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.auth-brand-divider {
  height: 1px;
  background: rgba(224,168,78,.25);
  margin: 32px 0;
}
.auth-brand-sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.auth-brand-sub a { color: var(--honey); border-bottom: 1px solid transparent; transition: border-color .2s; }
.auth-brand-sub a:hover { border-bottom-color: var(--honey); }

/* Right form card */
.auth-form-panel {}
.auth-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
}
.auth-card-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 28px;
}

/* Form elements */
.auth-group { margin-bottom: 20px; }
.auth-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 600;
  margin-bottom: 8px;
}
.auth-input {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(122,92,56,.22);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  appearance: none;
}
.auth-input:focus {
  border-color: var(--savanna);
  box-shadow: 0 0 0 3px rgba(194,134,58,.12);
}
.auth-input::placeholder { color: rgba(160,144,112,.6); }
select.auth-input { cursor: pointer; }

/* Password toggle */
.pw-wrap { position: relative; display: block; }
.pw-wrap .auth-input { position: relative; z-index: 1; padding-right: 44px; }
.pw-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; padding: 4px; cursor: pointer;
  color: var(--bark); opacity: .6; line-height: 1; display: flex;
  align-items: center; z-index: 2; transition: opacity .2s;
}
.pw-toggle:hover { opacity: 1; }

.auth-row { margin-bottom: 0; }
.auth-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.auth-field-err {
  display: block;
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
}
.auth-error-box {
  background: rgba(192,57,43,.08);
  border: 1px solid rgba(192,57,43,.25);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 20px;
}
.auth-submit { width: 100%; justify-content: center; margin-top: 24px; border-radius: 10px; padding: 15px 28px; }
.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--smoke);
}
.auth-switch a { color: var(--savanna); border-bottom: 1px solid transparent; transition: border-color .2s; }
.auth-switch a:hover { border-bottom-color: var(--savanna); }

/* Alert messages */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.alert-success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.3); color: #196e3c; }
.alert-error   { background: rgba(192,57,43,.09); border: 1px solid rgba(192,57,43,.25); color: #c0392b; }
.alert-info    { background: rgba(52,152,219,.09); border: 1px solid rgba(52,152,219,.25); color: #1f6f9b; }

/* Notice blocks */
.auth-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.auth-notice span { font-size: 22px; flex-shrink: 0; }
.auth-notice p, .auth-notice > div p { font-size: 14px; margin: 0; color: inherit; }
.auth-notice strong { display: block; margin-bottom: 4px; }
.auth-notice--info { background: rgba(224,168,78,.1); border: 1px solid rgba(224,168,78,.3); color: var(--bark); }
.auth-notice--warn { background: rgba(230,126,34,.1); border: 1px solid rgba(230,126,34,.35); color: #7d4e0f; }

/* ==========================================================================
   TESTIMONIALS LIST PAGE
   ========================================================================== */
#testimonials-hero {
  background: var(--forest);
  padding: 0;
}
.test-hero-copy {
  padding: 140px 0 80px;
  max-width: 680px;
}
.test-hero-copy .eyebrow { color: var(--honey); }
.test-hero-copy .h1 { color: #fff; margin-top: 12px; margin-bottom: 22px; }
.test-hero-copy .lead { color: rgba(255,255,255,.72); margin-bottom: 32px; }

#testimonials-list { padding: 72px 0 90px; }

.tl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tl-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 6px 28px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(201,169,110,.15);
}
.tl-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.tl-card-title {
  font-family: 'Cormorant', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
}
.tl-card-excerpt {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--bark);
  flex: 1;
}
.tl-card-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.tl-trip-badge {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(194,134,58,.1);
  color: var(--savanna);
  border: 1px solid rgba(194,134,58,.25);
  border-radius: 999px;
  padding: 4px 12px;
}
.tl-empty {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.tl-empty p { font-size: 16px; color: var(--smoke); }

/* CTA strip */
#tl-cta-strip {
  background: var(--canopy);
  padding: 60px 0;
}
.tl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.tl-cta-inner .h3 { color: #fff; margin-bottom: 8px; }
.tl-cta-inner p { color: rgba(255,255,255,.65); margin: 0; }

/* ==========================================================================
   SUBMIT TESTIMONIAL PAGE
   ========================================================================== */
#submit-test-body { padding: 72px 0 90px; }
.submit-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 52px 56px;
  box-shadow: 0 16px 60px rgba(0,0,0,.1);
  border: 1px solid rgba(201,169,110,.15);
}

/* Interactive star picker */
.star-picker-wrap { margin-bottom: 32px; }
.star-picker {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  transition: transform .15s;
}
.star-btn:hover { transform: scale(1.15); }
.star-btn svg {
  width: 36px;
  height: 36px;
  fill: rgba(160,144,112,.25);
  transition: fill .15s;
}
.star-btn.active svg { fill: var(--honey); }

/* ==========================================================================
   RESPONSIVE — Auth & Testimonials
   ========================================================================== */
@media (max-width: 900px) {
  .auth-split { grid-template-columns: 1fr; gap: 40px; }
  .auth-brand-panel { text-align: center; }
  .auth-benefits { align-items: center; }
  .auth-card { padding: 36px 28px; }
  .tl-grid { grid-template-columns: 1fr 1fr; }
  .submit-card { padding: 40px 32px; }
  .nav-auth-pill, .nav-auth-signin { display: none; }
}
@media (max-width: 600px) {
  .tl-grid { grid-template-columns: 1fr; }
  .auth-row--2col { grid-template-columns: 1fr; }
  .submit-card { padding: 28px 20px; }
  .tl-cta-inner { flex-direction: column; text-align: center; }
  #auth-page { padding: 40px 0; }
}

/* ==========================================================================
   BLOG PAGES
   ========================================================================== */

#blog-hero {
  background: var(--forest);
  padding: 0;
}
#blog-hero .hero-text {
  padding: 160px 0 80px;
  color: #fff;
}
#blog-hero .hero-eyebrow { color: var(--honey); }
#blog-hero .hero-text h1 { color: #fff; }
#blog-hero .hero-text p { color: rgba(255,255,255,.72); }

#blog-list { padding: 72px 0 90px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-grid--compact { margin-top: 40px; }

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.06);
  border: 1px solid rgba(201,169,110,.15);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }

.blog-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-date {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--honey);
  font-weight: 700;
}
.blog-card-title {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--honey); }
.blog-card-excerpt {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--bark);
  flex: 1;
}
.blog-read-more {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--honey);
  text-decoration: none;
  margin-top: 6px;
}
.blog-read-more:hover { color: var(--savanna); }

.blog-empty { text-align: center; padding: 60px 0; color: var(--bark); }

/* Blog single */
#blog-single-hero {
  background: var(--forest);
  padding: 0;
}
#blog-single-hero .blog-single-hero-copy {
  padding: 160px 0 72px;
  max-width: 780px;
}
#blog-single-hero .back-link {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  letter-spacing: .04em;
}
#blog-single-hero .back-link:hover { color: var(--honey); }
#blog-single-hero .blog-card-date { display: block; margin-bottom: 14px; }
#blog-single-hero .h1 { color: #fff; }

.blog-single-cover { padding: 0 0 60px; background: var(--forest); }
.blog-single-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 20px; display: block; }

#blog-single-body { padding: 70px 0 80px; }
.blog-single-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--bark);
}
.blog-single-content h2,
.blog-single-content h3 { font-family: 'Cormorant', serif; color: var(--forest); margin: 2em 0 .6em; }
.blog-single-content p { margin-bottom: 1.4em; }
.blog-single-content img { max-width: 100%; border-radius: 12px; margin: 1.5em 0; }
.blog-single-content a { color: var(--honey); }

#blog-more { padding: 60px 0 80px; background: #f9f5ef; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  #blog-hero .hero-text { padding: 120px 0 56px; }
  #blog-single-hero .blog-single-hero-copy { padding: 120px 0 52px; }
}
}