/* ==========================================================
   Cebu OK Travel — Design System
   Single stylesheet shared across all pages
   ========================================================== */

:root {
  /* Logo-derived palette */
  --teal-deep: #0D3845;
  --teal-darker: #082730;
  --teal-mid: #1B5366;
  --teal-soft: #4A7A8A;
  --orange: #EE8A38;
  --orange-deep: #D9651E;
  --orange-soft: #F8C896;
  --cream: #FBF6E8;
  --cream-paper: #F5EBD2;
  --cream-warm: #FAEED1;
  --sand: #F0E1B8;
  --ink: #1A2A30;
  --muted: #6F6B5E;
  --whatsapp: #25D366;
  --line: #06C755;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Cabin', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osd-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.20 0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--orange);
  color: white;
  padding: 10px 18px;
  z-index: 100;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ============== TOP STRIP ============== */
.top-strip {
  background: var(--teal-darker);
  color: var(--cream-warm);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 0;
  position: relative;
  z-index: 30;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-strip span { opacity: 0.9; }
.top-strip a { color: var(--cream-warm); transition: color .2s; }
.top-strip a:hover { color: var(--orange); }
.top-strip .pulse {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: pulse 2s infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(250,238,209,0.1);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-left: 8px;
  transition: background .2s;
}
.lang-switch:hover { background: rgba(238,138,56,0.3); }

/* ============== NAV ============== */
.nav {
  background: rgba(251,246,232,0.95);
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(13,56,69,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px -4px rgba(13,56,69,0.18);
}
.brand-tag {
  font-family: 'Cabin', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid rgba(13,56,69,0.2);
  padding-left: 14px;
  line-height: 1.3;
}
.brand-tag em {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--teal-deep);
  margin-top: 2px;
}
.menu {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.menu a {
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.menu a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .3s ease;
}
.menu a:hover, .menu a.active { color: var(--orange-deep); }
.menu a.active::after { width: 100%; }
.menu a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white; box-shadow: 0 8px 18px -8px rgba(238,138,56,0.5); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); box-shadow: 0 14px 26px -8px rgba(217,101,30,0.6); }
.btn-teal { background: var(--teal-deep); color: var(--cream-warm); }
.btn-teal:hover { background: var(--teal-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--teal-deep); border: 1px solid var(--teal-deep); }
.btn-outline:hover { background: var(--teal-deep); color: var(--cream-warm); }
.btn-cream { background: var(--cream); color: var(--teal-deep); }
.btn-cream:hover { background: var(--cream-warm); transform: translateY(-1px); }
.btn-whatsapp-style { background: var(--whatsapp); color: white; }
.btn-whatsapp-style:hover { background: #1da851; transform: translateY(-1px); }

.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-phone {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--teal-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-phone::before { content: "📞"; font-size: 14px; }

.menu-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span {
  display: block; width: 26px; height: 1.5px;
  background: var(--ink); margin: 6px 0;
  transition: .25s;
}

/* ============== SECTION BASE ============== */
.section { padding: 120px 0; position: relative; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 24px;
  font-weight: 600;
}
.section-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--orange); }
.section-title {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--teal-deep);
  margin-bottom: 20px;
  max-width: 820px;
}
.section-title em { font-style: italic; color: var(--orange-deep); font-weight: 300; }
.section-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.section-head .left { max-width: 700px; }

.wave-divider { display: block; width: 100%; height: 60px; color: var(--cream-warm); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 0 110px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}
.hero-palm {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.hero-palm.left { left: -40px; height: 70%; }
.hero-palm.right { right: -40px; height: 60%; transform: scaleX(-1); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--orange); }
.hero h1 {
  font-size: clamp(46px, 6.2vw, 88px);
  line-height: 0.98;
  margin-bottom: 28px;
  color: var(--teal-deep);
  letter-spacing: -0.025em;
}
.hero h1 em { font-style: italic; color: var(--orange-deep); font-weight: 300; }
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-microcopy {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-microcopy strong { color: var(--teal-deep); font-weight: 600; }
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(13,56,69,0.12);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--teal-deep);
  font-weight: 500;
}
.trust-item small {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.stars { color: var(--orange); letter-spacing: 2px; }

.hero-visual { position: relative; aspect-ratio: 4/5; }
.hero-visual .img-main {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 200px 200px 24px 24px;
  filter: saturate(1.05) contrast(1.02);
}
.hero-visual .img-accent {
  position: absolute;
  bottom: -40px;
  left: -50px;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  border: 8px solid var(--cream);
  box-shadow: 0 30px 60px -20px rgba(13,56,69,0.3);
  z-index: 2;
}
.hero-visual .palm-deco {
  position: absolute;
  top: -20px;
  right: -50px;
  width: 200px;
  z-index: 3;
  opacity: 0.85;
  animation: sway 8s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3deg); }
}
.hero-badge {
  position: absolute;
  right: -20px;
  top: 60px;
  background: var(--orange);
  color: white;
  padding: 18px 22px;
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  text-align: center;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  line-height: 1.15;
  z-index: 4;
  box-shadow: 0 20px 40px -10px rgba(217,101,30,0.5);
  transform: rotate(-8deg);
  border: 3px solid var(--cream);
}
.hero-badge strong { font-size: 22px; display: block; font-style: normal; }

/* ============== GUARANTEES STRIP ============== */
.guarantees {
  background: var(--teal-deep);
  color: var(--cream-warm);
  padding: 22px 0;
  position: relative;
  z-index: 2;
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1.3;
}
.guarantee:not(:last-child) {
  border-right: 1px solid rgba(250,238,209,0.18);
  padding-right: 30px;
}
.guarantee-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(238,138,56,0.18);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--orange);
}
.guarantee strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 2px;
  font-weight: 500;
}
.guarantee span { font-size: 12px; opacity: 0.78; }

/* ============== TRUST BADGES STRIP ============== */
.trust-badges {
  padding: 50px 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(13,56,69,0.06);
}
.trust-badges-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 600;
}
.trust-badges-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-deep);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  transition: opacity .2s;
}
.trust-badge:hover { opacity: 0.7; }
.trust-badge .badge-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--orange);
}
.trust-badge small {
  display: block;
  font-family: 'Cabin', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============== ABOUT ============== */
.about { background: var(--cream-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px 24px 200px 200px;
}
.about-visual::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px;
  right: 40px; bottom: 40px;
  border: 1px solid var(--orange);
  border-radius: 24px 24px 200px 200px;
  z-index: -1;
}
.about-text h2 { margin-bottom: 28px; }
.about-text p { margin-bottom: 20px; color: var(--muted); }
.about-text p strong { color: var(--ink); font-weight: 500; }
.jp-note {
  background: var(--cream);
  border-left: 3px solid var(--orange);
  padding: 18px 22px;
  margin: 28px 0 36px;
  border-radius: 4px;
  font-size: 15px;
  color: var(--teal-deep);
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* ============== HOW IT WORKS ============== */
.how-it-works { background: var(--cream); text-align: center; }
.how-head { text-align: center; margin-bottom: 70px; }
.how-head .section-eyebrow { justify-content: center; }
.how-head .section-title { text-align: center; margin: 0 auto 16px; }
.how-head .section-intro { margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.step { position: relative; text-align: center; padding: 0 20px; z-index: 1; }
.step-num {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--orange);
  font-weight: 400;
  border: 1px solid rgba(238,138,56,0.2);
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--orange);
  border-radius: 50%;
  opacity: 0.5;
}
.step h3 { font-size: 26px; color: var(--teal-deep); margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 16px; max-width: 280px; margin: 0 auto; }

/* ============== STATS ============== */
.stats {
  background: var(--teal-deep);
  color: var(--cream-warm);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(238,138,56,0.18), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(238,138,56,0.12), transparent 40%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.stat { text-align: center; padding: 0 20px; }
.stat:not(:last-child) { border-right: 1px solid rgba(250,238,209,0.18); }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-num em { font-style: italic; color: var(--orange); font-weight: 300; }
.stat-label { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.78; }

/* ============== TOURS ============== */
.tours { background: var(--cream); }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tour-card {
  background: var(--cream-paper);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(13,56,69,0.06);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(13,56,69,0.3); }
.tour-card.feature {
  grid-column: span 2;
  flex-direction: row;
  background: var(--teal-deep);
  color: var(--cream-warm);
}
.tour-card.feature .tour-img-wrap { width: 50%; flex-shrink: 0; }
.tour-card.feature .tour-img-wrap img { height: 100%; aspect-ratio: auto; }
.tour-card.feature .tour-body { width: 50%; padding: 40px; }
.tour-card.feature h3 { color: var(--cream); }
.tour-card.feature .tour-jp { color: rgba(250,238,209,0.7); }
.tour-card.feature .tour-desc { color: rgba(250,238,209,0.85); }
.tour-card.feature .duration { background: rgba(250,238,209,0.15); color: var(--cream-warm); }
.tour-card.feature .includes-list li { color: rgba(250,238,209,0.85); }
.tour-card.feature .tour-footer { border-color: rgba(250,238,209,0.2); }
.tour-card.feature .custom-tag-text { color: var(--cream); }
.tour-card.feature .custom-tag-sub { color: rgba(250,238,209,0.7); }
.popular-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--orange);
  color: white;
  padding: 6px 14px 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  z-index: 3;
  box-shadow: 0 6px 12px -4px rgba(238,138,56,0.5);
}
.tour-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tour-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tour-card:hover .tour-img-wrap img { transform: scale(1.05); }
.duration {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--cream);
  color: var(--teal-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}
.best-for {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(8,39,48,0.92);
  color: var(--cream-warm);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.tour-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.tour-body h3 { font-size: 26px; color: var(--teal-deep); margin-bottom: 6px; }
.tour-jp {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Fraunces', serif;
  font-style: italic;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.tour-desc { font-size: 15px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.includes-list {
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.includes-list li { font-size: 12.5px; color: var(--ink); display: inline-flex; align-items: center; gap: 5px; }
.includes-list li::before { content: "✓"; color: var(--orange); font-weight: 700; }
.tour-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(13,56,69,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.custom-tag { display: flex; flex-direction: column; line-height: 1.2; }
.custom-tag-text {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--teal-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.custom-tag-text::before { content: "✦"; color: var(--orange); font-size: 16px; }
.custom-tag-sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.tour-cta-btn {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.tour-cta-btn:hover { background: var(--orange-deep); transform: translateY(-1px); }
.tour-card.feature .tour-cta-btn:hover { background: var(--cream); color: var(--teal-deep); }

.custom-banner {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--sand) 100%);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(13,56,69,0.08);
  position: relative;
  overflow: hidden;
}
.custom-banner::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(238,138,56,0.18), transparent 70%);
  border-radius: 50%;
}
.custom-icon {
  width: 80px; height: 80px;
  background: var(--teal-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream-warm);
  flex-shrink: 0;
}
.custom-banner h3 { font-size: 28px; color: var(--teal-deep); margin-bottom: 8px; }
.custom-banner p { color: var(--muted); margin-bottom: 6px; max-width: 600px; }
.custom-banner .jp-line {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--orange-deep);
}

/* ============== GALLERY ============== */
.gallery { background: var(--cream-warm); }
.gallery-head { text-align: center; margin-bottom: 60px; }
.gallery-head .section-eyebrow { justify-content: center; }
.gallery-head .section-title { text-align: center; margin: 0 auto 16px; }
.gallery-head .section-intro { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,39,48,0.5) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 16px; left: 18px;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.big { grid-row: span 2; grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,39,48,0.96);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; }
.lightbox .close-lb {
  position: absolute;
  top: 24px; right: 32px;
  background: rgba(250,238,209,0.15);
  color: var(--cream);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}
.lightbox .close-lb:hover { background: var(--orange); }

/* ============== TEAM ============== */
.team { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
  position: relative;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50% 50% 24px 24px;
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
  background: var(--cream-paper);
}
.team-photo svg {
  width: 100%; height: 100%;
}
.team-card h3 {
  font-size: 22px;
  color: var(--teal-deep);
  margin-bottom: 4px;
}
.team-role {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--orange-deep);
  margin-bottom: 12px;
  display: block;
}
.team-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.team-langs {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}
.team-langs span {
  background: var(--cream-warm);
  color: var(--teal-deep);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============== VIDEO SECTION ============== */
.video-section { background: var(--teal-deep); color: var(--cream-warm); position: relative; overflow: hidden; }
.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(238,138,56,0.18), transparent 50%);
}
.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.video-text h2 { color: var(--cream); margin-bottom: 24px; }
.video-text h2 em { color: var(--orange); }
.video-text p { color: rgba(250,238,209,0.85); font-size: 17px; margin-bottom: 28px; }
.video-text .section-eyebrow { color: var(--orange); }
.video-text .section-eyebrow::before { background: var(--orange); }
.video-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: var(--teal-darker);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  border: 4px solid rgba(250,238,209,0.1);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

/* ============== WHY US ============== */
.why { background: var(--cream-warm); position: relative; overflow: hidden; }
.why::before {
  content: "";
  position: absolute;
  left: -200px; top: 100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(238,138,56,0.15), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(13,56,69,0.12);
  border-left: 1px solid rgba(13,56,69,0.12);
}
.why-card {
  padding: 48px 40px;
  border-right: 1px solid rgba(13,56,69,0.12);
  border-bottom: 1px solid rgba(13,56,69,0.12);
  background: rgba(251,246,232,0.5);
  transition: background .3s;
}
.why-card:hover { background: var(--cream); }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--teal-deep);
}
.why-card h3 { font-size: 22px; color: var(--teal-deep); margin-bottom: 6px; }
.why-card .jp-sub {
  font-size: 12px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--orange-deep);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.why-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ============== REVIEWS ============== */
.reviews { background: var(--cream); position: relative; }
.reviews-head { text-align: center; margin-bottom: 70px; }
.reviews-head .section-eyebrow { justify-content: center; }
.reviews-head .section-title { text-align: center; margin: 0 auto 16px; }
.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-warm);
  padding: 12px 24px;
  border-radius: 999px;
  margin-top: 8px;
  font-size: 15px;
}
.review-rating strong {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--teal-deep);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.review-card {
  background: var(--cream-paper);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  border: 1px solid rgba(13,56,69,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(13,56,69,0.25); }
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 90px;
  font-style: italic;
  line-height: 0.5;
  color: var(--orange);
  position: absolute;
  top: 24px; right: 28px;
  opacity: 0.4;
}
.review-stars { color: var(--orange); margin-bottom: 18px; letter-spacing: 2px; }
.review-text {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--teal-deep);
  margin-bottom: 28px;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(13,56,69,0.1);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--cream-warm);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
}
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-weight: 600; color: var(--ink); font-size: 15px; }
.author-info small { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

/* ============== FAQ ============== */
.faq { background: var(--cream-warm); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-side h2 { margin-bottom: 24px; }
.faq-side p { color: var(--muted); margin-bottom: 30px; }
.faq-cta {
  background: var(--cream);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(13,56,69,0.08);
}
.faq-cta strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.faq-cta p { font-size: 14px; margin-bottom: 18px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(13,56,69,0.08);
  overflow: hidden;
  transition: all .25s;
}
.faq-item[open] {
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 8px 24px -16px rgba(13,56,69,0.2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-warm);
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 16px;
  color: var(--teal-deep);
  transition: transform .25s, background .25s, color .25s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: white;
}
.faq-content {
  padding: 0 26px 24px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-content strong { color: var(--ink); font-weight: 600; }

/* ============== BLOG ============== */
.blog { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.blog-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .3s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-img {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--cream);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
}
.blog-card h3 {
  font-size: 26px;
  color: var(--teal-deep);
  margin-bottom: 12px;
  line-height: 1.15;
}
.blog-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; line-height: 1.6; }
.blog-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  display: inline-flex;
  gap: 8px;
}
.blog-link::after { content: "→"; transition: transform .2s; }
.blog-card:hover .blog-link::after { transform: translateX(4px); }
.blog-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

/* ============== NEWSLETTER ============== */
.newsletter {
  background: var(--cream-warm);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 50%, rgba(238,138,56,0.12), transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(13,56,69,0.08), transparent 40%);
}
.newsletter-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.newsletter h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.newsletter h2 em { font-style: italic; color: var(--orange-deep); }
.newsletter p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  background: var(--cream);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(13,56,69,0.1);
  box-shadow: 0 12px 30px -16px rgba(13,56,69,0.2);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 18px;
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.newsletter-form button {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
}
.newsletter-form button:hover { background: var(--orange-deep); }
.newsletter-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============== CTA ============== */
.cta {
  background: var(--teal-deep);
  color: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(238,138,56,0.18), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(238,138,56,0.15), transparent 45%);
}
.cta-content { position: relative; text-align: center; max-width: 760px; margin: 0 auto; z-index: 2; }
.cta h2 { font-size: clamp(40px, 5.5vw, 72px); color: var(--cream); margin-bottom: 24px; }
.cta h2 em { font-style: italic; color: var(--orange); font-weight: 300; }
.cta p { font-size: 19px; color: rgba(250,238,209,0.85); margin-bottom: 40px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp-cream {
  background: rgba(250,238,209,0.1);
  color: var(--cream-warm);
  border: 1px solid rgba(250,238,209,0.3);
}
.btn-whatsapp-cream:hover { background: rgba(250,238,209,0.2); }
.cta-palm { position: absolute; pointer-events: none; opacity: 0.12; }
.cta-palm.left { left: -40px; bottom: 0; height: 80%; }
.cta-palm.right { right: -40px; top: 0; height: 80%; transform: scaleX(-1) rotate(180deg); }

/* ============== CONTACT ============== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info > p { color: var(--muted); margin-bottom: 36px; max-width: 460px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; gap: 16px; align-items: center; }
.contact-list .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--teal-deep);
}
.contact-list .ico.green { background: rgba(37,211,102,0.12); color: var(--whatsapp); }
.contact-list .ico.line { background: rgba(6,199,85,0.12); color: var(--line); }
.contact-list .ico.ig {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  color: white;
}
.contact-list .label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.contact-list .val {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--teal-deep);
  font-weight: 500;
  transition: color .2s;
}
.contact-list a:hover .val { color: var(--orange-deep); }

.whatsapp-quick {
  background: var(--whatsapp);
  color: white;
  padding: 22px 24px;
  border-radius: 16px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 12px 24px -12px rgba(37,211,102,0.5);
}
.whatsapp-quick:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(37,211,102,0.6); }
.whatsapp-quick-icon {
  width: 50px; height: 50px;
  background: white;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 24px;
}
.whatsapp-quick strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 2px;
}
.whatsapp-quick span { font-size: 13px; opacity: 0.95; }

.contact-form {
  background: var(--cream-paper);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(13,56,69,0.08);
  position: relative;
}
.form-badge {
  position: absolute;
  top: -16px; left: 32px;
  background: var(--orange);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 8px 16px -6px rgba(238,138,56,0.5);
}
.contact-form h3 { font-size: 28px; color: var(--teal-deep); margin-bottom: 8px; }
.contact-form > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label, .form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(13,56,69,0.18);
  border-radius: 10px;
  background: var(--cream);
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
textarea { resize: vertical; min-height: 90px; }

/* Honeypot — hidden from humans */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 18px;
  border-radius: 999px;
  border: none;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: all .25s;
}
.form-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(217,101,30,0.5);
}
.form-submit:disabled { opacity: 0.6; cursor: wait; }
.form-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 16px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-size: 32px;
}
.form-success h3 { color: var(--teal-deep); margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; }

/* ============== FOOTER ============== */
footer {
  background: var(--teal-darker);
  color: rgba(250,238,209,0.8);
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .brand-logo { height: 64px; border-radius: 8px; }
.footer-brand p { margin-top: 22px; font-size: 15px; line-height: 1.65; max-width: 340px; }
.footer-col h4 {
  font-family: 'Cabin', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.socials { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250,238,209,0.1);
  display: grid; place-items: center;
  color: var(--cream-warm);
  transition: all .25s;
  font-size: 14px;
  font-weight: 600;
}
.social-btn:hover { background: var(--orange); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(250,238,209,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250,238,209,0.55);
}

/* ============== FLOATING WHATSAPP ============== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  background: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.5);
  animation: waPulse 2.5s infinite;
  transition: transform .25s;
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 32px; height: 32px; fill: white; }
@keyframes waPulse {
  0% { box-shadow: 0 12px 30px -8px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 12px 30px -8px rgba(37,211,102,0.5), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}
.float-wa-label {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--teal-darker);
  color: var(--cream-warm);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  font-family: 'Cabin', sans-serif;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.float-wa:hover .float-wa-label { opacity: 1; }
.float-wa-label::after {
  content: "";
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--teal-darker);
}

/* ============== LIVE NOTIFICATION ============== */
.live-notif {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 50;
  background: white;
  color: var(--ink);
  padding: 14px 20px 14px 14px;
  border-radius: 14px;
  box-shadow: 0 20px 40px -10px rgba(13,56,69,0.3);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  font-size: 13px;
  border: 1px solid rgba(13,56,69,0.08);
  transform: translateX(-380px);
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.live-notif.show { transform: translateX(0); }
.live-notif-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 20px;
}
.live-notif strong { display: block; font-weight: 600; color: var(--teal-deep); margin-bottom: 1px; font-size: 13.5px; }
.live-notif span { color: var(--muted); font-size: 12px; }
.live-notif .close-notif {
  position: absolute;
  top: 6px; right: 8px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 4px;
}

/* ============== MOBILE STICKY BAR ============== */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--cream);
  border-top: 1px solid rgba(13,56,69,0.12);
  padding: 12px 16px;
  z-index: 45;
  box-shadow: 0 -10px 30px -10px rgba(13,56,69,0.2);
  gap: 10px;
}
.sticky-mobile a {
  flex: 1;
  text-align: center;
  padding: 13px 8px;
  border-radius: 999px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sticky-mobile .m-call { background: var(--cream-warm); color: var(--teal-deep); }
.sticky-mobile .m-wa { background: var(--whatsapp); color: white; flex: 1.2; }
.sticky-mobile .m-book { background: var(--orange); color: white; flex: 1.4; }

/* ============== TOUR DETAIL PAGE ============== */
.tour-hero {
  position: relative;
  padding: 50px 0;
  background: var(--cream-warm);
}
.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}
.breadcrumbs a { color: var(--orange-deep); transition: color .2s; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }
.tour-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.tour-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  color: var(--teal-deep);
  margin-bottom: 14px;
  line-height: 1;
}
.tour-hero h1 em { font-style: italic; color: var(--orange-deep); font-weight: 300; }
.tour-hero .jp-line {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--teal-soft);
  margin-bottom: 22px;
}
.tour-hero p.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
}
.tour-meta-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.tour-meta-pill {
  background: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--teal-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(13,56,69,0.1);
}
.tour-meta-pill .ico { color: var(--orange); }
.tour-hero-img {
  aspect-ratio: 4/5;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(13,56,69,0.25);
}
.tour-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Tour body sections */
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.tour-detail-main h2 {
  font-size: 36px;
  color: var(--teal-deep);
  margin-bottom: 20px;
  margin-top: 50px;
}
.tour-detail-main h2:first-child { margin-top: 0; }
.tour-detail-main p {
  margin-bottom: 18px;
  color: var(--ink);
  line-height: 1.7;
}
.itinerary {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  position: relative;
}
.itinerary::before {
  content: "";
  position: absolute;
  left: 23px; top: 24px; bottom: 24px;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--orange) 0, var(--orange) 4px, transparent 4px, transparent 10px);
}
.itinerary li {
  padding: 22px 0 22px 70px;
  position: relative;
  border-bottom: 1px solid rgba(13,56,69,0.08);
}
.itinerary li:last-child { border-bottom: none; }
.itinerary .time {
  position: absolute;
  left: 0; top: 22px;
  width: 48px; height: 48px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--teal-deep);
  font-weight: 600;
  border: 1px solid rgba(238,138,56,0.3);
  z-index: 2;
}
.itinerary h4 {
  font-size: 19px;
  color: var(--teal-deep);
  margin-bottom: 4px;
}
.itinerary p { color: var(--muted); font-size: 14.5px; margin-bottom: 0; }

/* Includes/excludes */
.inex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
}
.inex-list { list-style: none; }
.inex-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(13,56,69,0.06);
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.inex-list li::before {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.inex-list.included li::before {
  content: "✓";
  background: rgba(37,211,102,0.15);
  color: var(--whatsapp);
}
.inex-list.excluded li::before {
  content: "×";
  background: rgba(217,101,30,0.15);
  color: var(--orange-deep);
}
.inex-list h4 {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}

/* Booking sidebar */
.booking-card {
  background: var(--cream-paper);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(13,56,69,0.08);
  position: sticky;
  top: 100px;
}
.booking-card h3 {
  font-size: 26px;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.booking-card .booking-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 600;
}
.booking-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.booking-card .booking-includes {
  list-style: none;
  border-top: 1px solid rgba(13,56,69,0.08);
  border-bottom: 1px solid rgba(13,56,69,0.08);
  margin: 22px 0;
  padding: 16px 0;
}
.booking-card .booking-includes li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-card .booking-includes li::before {
  content: "✓"; color: var(--orange); font-weight: 700;
}
.booking-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.booking-card-share {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(13,56,69,0.08);
  font-size: 13px;
  color: var(--muted);
}

/* Other tours */
.other-tours { background: var(--cream-warm); }
.other-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============== ARTICLE PAGE ============== */
.article-hero {
  background: var(--cream-warm);
  padding: 60px 0 40px;
}
.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.article-meta .tag {
  background: var(--orange);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.article-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--teal-deep);
  margin-bottom: 22px;
  max-width: 880px;
  line-height: 1.05;
}
.article-hero h1 em { font-style: italic; color: var(--orange-deep); font-weight: 300; }
.article-hero p.dek {
  font-size: 19px;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 28px;
}
.article-cover {
  margin-top: 30px;
  aspect-ratio: 21/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(13,56,69,0.25);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-body { background: var(--cream); padding: 80px 0; }
.article-body .container { max-width: 760px; }
.article-body h2 {
  font-size: 32px;
  color: var(--teal-deep);
  margin: 50px 0 18px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 22px;
  color: var(--teal-deep);
  margin: 36px 0 12px;
}
.article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 22px;
}
.article-body p strong { color: var(--teal-deep); font-weight: 600; }
.article-body ul, .article-body ol {
  margin: 12px 0 24px 24px;
  color: var(--ink);
}
.article-body li { margin-bottom: 10px; line-height: 1.7; }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 28px;
  margin: 32px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--teal-deep);
  line-height: 1.5;
}
.article-body figure {
  margin: 36px 0;
  border-radius: 16px;
  overflow: hidden;
}
.article-body figure img { width: 100%; }
.article-body figcaption {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.article-body .callout {
  background: var(--cream-warm);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 3px solid var(--orange);
}
.article-body .callout strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.article-body .callout p:last-child { margin-bottom: 0; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 24px 32px; gap: 18px; border-bottom: 1px solid rgba(13,56,69,0.1); box-shadow: 0 20px 40px -20px rgba(13,56,69,0.2); align-items: flex-start; }
  .menu.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-actions .btn-primary, .nav-actions .nav-phone { display: none; }
  .menu .btn-primary { display: inline-flex; }
  .brand-tag { display: none; }
  .brand-logo { height: 48px; }

  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-badge { right: 0; top: 20px; }
  .hero-palm { display: none; }

  .guarantees-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .guarantee { border-right: none !important; padding-right: 0 !important; }
  .guarantee:nth-child(odd) { border-right: 1px solid rgba(250,238,209,0.18) !important; padding-right: 20px !important; }

  .trust-badges-grid { gap: 30px; }

  .section { padding: 90px 0; }
  .about-grid, .contact-grid, .faq-grid, .video-grid, .tour-detail-grid, .tour-hero-grid { grid-template-columns: 1fr; gap: 50px; }

  .tours-grid, .why-grid, .reviews-grid, .blog-grid, .other-tours-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-card.feature { grid-column: span 2; flex-direction: column; }
  .tour-card.feature .tour-img-wrap, .tour-card.feature .tour-body { width: 100%; }
  .tour-card.feature .tour-img-wrap { aspect-ratio: 16/9; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { padding-bottom: 30px; border-bottom: 1px solid rgba(250,238,209,0.18); }

  .steps-grid { grid-template-columns: 1fr; gap: 50px; }
  .steps-grid::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }

  .custom-banner { grid-template-columns: 1fr; padding: 40px 28px; gap: 24px; text-align: center; }
  .custom-icon { margin: 0 auto; }

  .booking-card { position: static; }

  .float-wa { bottom: 90px; right: 18px; width: 56px; height: 56px; }
  .float-wa svg { width: 28px; height: 28px; }
  .live-notif { left: 16px; right: 16px; max-width: none; bottom: 90px; }
  .sticky-mobile { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 600px) {
  .container { padding: 0 22px; }
  body { font-size: 16px; }
  .top-strip { font-size: 12px; }
  .top-strip .container { justify-content: center; }
  .top-strip .lang { display: none; }

  .brand-logo { height: 42px; }

  .hero h1 { font-size: 42px; }
  .hero-trust { gap: 22px; }
  .trust-item strong { font-size: 20px; }

  .guarantees-grid { grid-template-columns: 1fr; gap: 16px; }
  .guarantee, .guarantee:nth-child(odd) { border-right: none !important; padding-right: 0 !important; padding-bottom: 16px; border-bottom: 1px solid rgba(250,238,209,0.18); }
  .guarantee:last-child { border-bottom: none; padding-bottom: 0; }

  .tours-grid, .why-grid, .reviews-grid, .blog-grid, .other-tours-grid { grid-template-columns: 1fr; }
  .tour-card.feature { grid-column: span 1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.big { grid-row: span 1; grid-column: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .team-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }

  .newsletter-form { flex-direction: column; border-radius: 20px; padding: 16px; }
  .newsletter-form input, .newsletter-form button { width: 100%; }

  .section { padding: 70px 0; }
  .hero-visual .img-accent { display: none; }
  .hero-badge { width: 96px; height: 96px; font-size: 11px; padding: 14px; }
  .hero-badge strong { font-size: 18px; }

  .why-card { padding: 36px 28px; }
  .faq-item summary { padding: 18px 20px; font-size: 17px; }
  .faq-content { padding: 0 20px 20px; }
  .booking-card { padding: 28px; }
  .inex-grid { grid-template-columns: 1fr; gap: 24px; }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============== reCAPTCHA widget ============== */
.recaptcha-wrap {
  margin: 8px 0 4px;
  min-height: 78px;
}
.recaptcha-wrap .g-recaptcha {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 380px) {
  /* On very small phones, scale the widget down to fit */
  .recaptcha-wrap .g-recaptcha {
    transform: scale(0.88);
    transform-origin: 0 0;
  }
}
