:root {
  --navy: #0d2f36;
  --navy-light: #12454e;
  --teal: #1b6b74;
  --orange: #e8792e;
  --orange-dark: #cf6620;
  --cream: #faf6ee;
  --cream-2: #f2ecdf;
  --text: #1c2b2d;
  --text-soft: #4a5c5e;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(13, 47, 54, 0.12);
  --shadow-lg: 0 20px 50px rgba(13, 47, 54, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p { margin: 0 0 1em; color: var(--text-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: "🚤"; font-size: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgba(232, 121, 46, 0.35); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 14px 30px rgba(232, 121, 46, 0.45); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); }

/* NAV */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 47, 54, 0.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
}
.logo .dot { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
}
.nav-links a { opacity: 0.8; transition: opacity 0.15s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 18px; }

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(13,47,54,0.35) 0%, rgba(13,47,54,0.55) 55%, rgba(13,47,54,0.85) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
  .hero {
    background-image: linear-gradient(180deg, rgba(13,47,54,0.35) 0%, rgba(13,47,54,0.55) 55%, rgba(13,47,54,0.85) 100%), url("../img/hero-poster.jpg");
    background-size: cover;
    background-position: center 30%;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero .eyebrow { color: #ffd9b0; }
.hero .eyebrow::before { content: "📍"; }
.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  max-width: 800px;
  margin-bottom: 20px;
}
.hero h1 em { color: #ffb066; font-style: normal; }
.hero .lede {
  font-size: 19px;
  max-width: 540px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 28px;
  max-width: 620px;
}
.hero-stat strong { display: block; font-size: 26px; font-family: "Fraunces", serif; color: var(--white); }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.75); }

/* USP STRIP */
.usp-strip {
  background: var(--navy);
  padding: 0;
}
.usp-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item {
  padding: 34px 20px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
}
.usp-item:first-child { border-left: none; }
.usp-item .icon { font-size: 26px; margin-bottom: 10px; }
.usp-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.usp-item span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* STORY */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.story-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
}
.story-badge .stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.story-badge strong { display: block; font-size: 15px; color: var(--navy); }
.story-badge span { font-size: 12.5px; color: var(--text-soft); }
.story h2 { font-size: clamp(28px, 3.4vw, 40px); }
.story .quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--cream-2);
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 15px;
}
.story .quote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; font-size: 13px; color: var(--text-soft); }

.founder { display: flex; align-items: center; gap: 14px; margin: 22px 0; }
.founder img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); flex-shrink: 0; }
.founder strong { display: block; font-size: 15px; color: var(--navy); font-family: "Fraunces", serif; }
.founder span { font-size: 13px; color: var(--text-soft); }

/* GALLERY */
.gallery { background: var(--cream-2); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background: rgba(13, 47, 54, 0);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.gallery-item:hover .overlay { opacity: 1; background: rgba(13, 47, 54, 0.5); }
.gallery-cta { text-align: center; margin-top: 40px; }
.gallery-cta a { font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 3px; }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; }

/* PRICING */
.pricing { background: var(--navy); color: var(--white); }
.pricing .section-head h2 { color: var(--white); }
.pricing .section-head p { color: rgba(255,255,255,0.7); }
.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 22px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.price-card .amount { font-family: "Fraunces", serif; font-size: 56px; color: var(--navy); font-weight: 700; }
.price-card .amount span { font-size: 18px; font-weight: 600; color: var(--text-soft); }
.price-card .sub { color: var(--text-soft); margin-bottom: 28px; }
.price-list { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; }
.price-list li { padding: 10px 0; border-bottom: 1px solid var(--cream-2); color: var(--text); font-size: 15px; display: flex; gap: 10px; }
.price-list li::before { content: "✓"; color: var(--orange); font-weight: 700; }
.price-card .btn-primary { width: 100%; }

/* REVIEWS */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  color: var(--navy);
}
.rating-badge .stars { color: #f5a623; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-card .stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.review-card p { color: var(--text); font-size: 15px; }
.review-card .who { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.review-card .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  font-family: "Fraunces", serif;
}
.review-card .who strong { font-size: 14px; color: var(--navy); }
.review-card .who span { font-size: 12.5px; color: var(--text-soft); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: var(--radius); padding: 4px 26px; box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--orange);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 20px; margin: -6px 0 0; }

/* LANGUAGE SWITCH */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(13, 47, 54, 0.15);
  transition: background 0.15s;
}
.lang-switch:hover { background: rgba(13, 47, 54, 0.06); }

.lang-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(13, 47, 54, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.lang-overlay.is-visible { opacity: 1; visibility: visible; }
.lang-modal {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}
.lang-overlay.is-visible .lang-modal { transform: translateY(0); }
.lang-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--cream-2);
  color: var(--text-soft);
  font-size: 14px;
  cursor: pointer;
}
.lang-modal-title { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 22px; }
.lang-options { display: flex; gap: 14px; }
.lang-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 14px;
  border-radius: 16px;
  border: 1.5px solid var(--cream-2);
  background: var(--cream);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.lang-option:hover { border-color: var(--orange); background: var(--cream-2); }
.lang-option .flag { font-size: 30px; }
.lang-option strong { color: var(--navy); font-size: 14.5px; }
.lang-option span:last-child { font-size: 12px; color: var(--text-soft); }

/* LOCATION */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; background: var(--cream-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.location-info { padding: 56px; }
.location-info h2 { font-size: 30px; }
.location-info .row { display: flex; gap: 14px; margin-bottom: 18px; font-size: 15px; color: var(--text); }
.location-info .row .ic { font-size: 18px; }
.location iframe { width: 100%; height: 100%; min-height: 380px; border: none; }

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 28px;
  padding: 72px 40px;
  text-align: center;
  color: var(--white);
  margin: 0 24px;
}
.final-cta h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); }
.final-cta p { color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 32px; }
.final-cta .btn-dark { background: var(--navy); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 32px; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { color: var(--white); font-family: "Fraunces", serif; font-size: 22px; font-weight: 700; margin-bottom: 14px; }
footer h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
footer ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.social-row a:hover { background: var(--orange); }

/* STICKY BOOK BAR (mobile) */
.mobile-book {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
  padding: 14px 20px;
  display: none;
  z-index: 200;
}
.mobile-book .btn { width: 100%; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .story { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(3) { border-left: none; }
  .steps { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mobile-book { display: block; }
  body { padding-bottom: 74px; }
  .nav-cta .btn-primary { display: none; }
  .lang-options { flex-direction: column; }
  .story-badge { left: 16px; max-width: calc(100% - 32px); }
}

@media (max-width: 420px) {
  .lang-switch span { display: none; }
  .lang-switch { padding: 8px 10px; }
}
