/* ============================================================
   TOURS PHUKET — Design System
   Fonts: Fraunces (headings) + Manrope (body/UI)
   Primary CTA: coral #e5704a
   ============================================================ */

:root {
  --navy:       #062a4a;
  --ocean:      #0d4d7a;
  --teal:       #0e7a8a;
  --sky:        #bfe2ee;
  --sand:       #f6efe3;
  --sand-2:     #efe4cd;
  --coral:      #e5704a;
  --coral-dark: #c8542f;
  --gold:       #d49a3a;
  --ink:        #0a1f33;
  --muted:      #5a6b7a;
  --line:       rgba(6,42,74,.12);
  --white:      #ffffff;
  --shadow-sm:  0 1px 2px rgba(6,42,74,.06), 0 2px 6px rgba(6,42,74,.06);
  --shadow-md:  0 8px 24px rgba(6,42,74,.10), 0 2px 6px rgba(6,42,74,.06);
  --shadow-lg:  0 24px 60px rgba(6,42,74,.18);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ============================================================ LAYOUT */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-max { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 840px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) {
  .container, .container-max, .container-narrow { padding: 0 18px; }
}

.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 760px) { .section { padding: 64px 0; } .section-sm { padding: 40px 0; } }

/* ============================================================ HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner, .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.15);
  flex-shrink: 0;
}
.nav-logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo span { color: var(--teal); }
.header__nav, .nav-links {
  display: flex;
  gap: 4px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.header__nav a, .nav-links a {
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--ink);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.header__nav a:hover, .nav-links a:hover { color: var(--coral); background: rgba(229,112,74,.06); }
.header__cta { display: flex; align-items: center; gap: 14px; }
.phone { font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 8px; color: var(--navy); }
.phone svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .header__nav, .nav-links { display: none; }
  .phone span { display: none; }
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
@media (max-width: 900px) { .nav-burger { display: flex; } }
.nav-mobile { display: none; background: var(--white); border-bottom: 1px solid var(--line); padding: 1rem 24px; flex-direction: column; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--ink); font-size: 15px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.nav-mobile a:last-child { border-bottom: none; color: var(--coral); font-weight: 700; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
}
.btn--primary, .btn-primary, .nav-cta {
  background: var(--coral);
  color: #fff !important;
  border-color: var(--coral);
  box-shadow: 0 6px 16px rgba(229,112,74,.35);
}
.btn--primary:hover, .btn-primary:hover, .nav-cta:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn--ghost, .btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border-color: var(--line);
}
.btn--ghost:hover, .btn-outline:hover { border-color: var(--navy); text-decoration: none; }
.btn--wa { background: #25d366; color: #fff !important; border-color: #25d366; }
.btn--wa:hover { background: #1faa54; text-decoration: none; }
.btn--lg, .btn-lg { padding: 16px 28px; font-size: 15.5px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
/* Legacy gold → coral */
.btn-gold, .btn-gold:hover { background: var(--coral); color: #fff !important; border-color: var(--coral); box-shadow: 0 6px 16px rgba(229,112,74,.35); }
.btn-gold:hover { background: var(--coral-dark); transform: translateY(-1px); text-decoration: none; }
/* Legacy outline-white */
.btn-outline-white { background: transparent; color: #fff !important; border: 1.5px solid rgba(255,255,255,.5); border-radius: 999px; padding: 12px 20px; font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; transition: background .15s; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); text-decoration: none; }

/* ============================================================ PILL / BADGE */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  backdrop-filter: blur(6px);
  color: #fff;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.25); flex-shrink: 0; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
}
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Manrope', sans-serif;
}
.badge-ocean, .badge-sky { background: rgba(14,122,138,.1); color: var(--teal); border-color: rgba(14,122,138,.2); }
.badge-navy { background: var(--navy); color: #fff; }
.badge-sand { background: var(--sand); color: var(--navy); }

/* ============================================================ HERO (homepage — photo bg + form) */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6,42,74,.05) 0%, rgba(6,42,74,.55) 60%, rgba(6,42,74,.75) 100%),
    url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=2000&q=80') center/cover no-repeat;
  color: #fff;
  padding: 90px 0 110px;
  min-height: 680px;
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .hero { padding: 60px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
}
.hero h1 { font-size: clamp(40px,5.5vw,72px); color: #fff; margin: 20px 0 18px; }
.hero h1 em { font-style: italic; color: #ffdcb0; font-weight: 400; }
.hero__sub { font-size: 18px; color: rgba(255,255,255,.86); max-width: 520px; margin-bottom: 28px; }
.hero__stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 28px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: 'Fraunces', serif; font-size: 30px; color: #fff; line-height: 1; }
.stat__lbl { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Hero article (inner pages) */
.hero-article {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  padding: 64px 0;
  text-align: center;
}
.hero-article h1 { font-size: clamp(32px,4vw,52px); color: #fff; margin-bottom: 16px; }
.hero-article p { font-size: 18px; color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto; }
.hero-meta { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.read-time { font-size: 14px; color: rgba(255,255,255,.6); }
.hero-meta-sep { color: rgba(255,255,255,.3); }
.hero-badge { margin-bottom: 16px; }

/* ============================================================ LEAD FORM CARD */
.lead-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.4);
}
.lead-card__title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 4px;
}
.lead-card__sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea,
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fafbfc;
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus,
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--ocean);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13,77,122,.1);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid { display: grid; gap: 14px; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }
.form-label { display: block; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 6px; }
.form-group { display: flex; flex-direction: column; }
.form-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  justify-content: center;
}
.form-foot svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }

/* Standalone form box (inner pages / lead section) */
.form-box {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.lead-section { background: var(--sand); padding: 80px 0; }
.lead-section-dark { background: var(--navy); padding: 80px 0; }

/* Form states */
.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }
.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: #15803d;
}
.form-success h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: #15803d; }
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: .75rem 1rem;
  color: #b91c1c;
  font-size: .875rem;
  margin-bottom: 1rem;
}

/* ============================================================ TRUST BAR */
.trust-bar, .trust {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-bar-inner, .trust__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust__item, .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
}
.trust__item svg, .trust-icon { width: 18px; height: 18px; color: var(--coral); }
.trust__rating { display: flex; align-items: center; gap: 12px; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.trust__rating strong { font-family: 'Fraunces', serif; font-size: 18px; color: var(--navy); }

/* ============================================================ SECTION HEADINGS */
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-title, .section h2 { font-size: clamp(32px,3.6vw,46px); margin-bottom: 14px; font-family: 'Fraunces', serif; }
.section-title em, .section h2 em { font-style: italic; color: var(--teal); font-weight: 400; }
.section__sub, .section-sub { font-size: 17px; color: var(--muted); max-width: 600px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }

/* ============================================================ FLEET / YACHT CARDS */
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 960px) { .fleet-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .fleet-grid { grid-template-columns: 1fr; } }

.yacht {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.yacht:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; color: inherit; }
.yacht__img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.yacht__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.yacht:hover .yacht__img img { transform: scale(1.05); }
.yacht__badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(6,42,74,.85); color: #fff;
  backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .03em;
}
.yacht__fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
}
.yacht__fav svg { width: 16px; height: 16px; color: var(--ocean); }
.yacht__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.yacht__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.yacht__name { font-family: 'Fraunces', serif; font-size: 22px; color: var(--navy); }
.yacht__type { font-size: 13px; color: var(--muted); margin-top: 2px; }
.yacht__rating { font-size: 13px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.yacht__rating span { color: var(--muted); font-weight: 400; }
.yacht__specs {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
  padding: 10px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.yacht__specs > div { display: flex; align-items: center; gap: 6px; }
.yacht__specs svg { width: 14px; height: 14px; color: var(--ocean); }
.yacht__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: auto; }
.price { display: flex; flex-direction: column; }
.price__from { font-size: 12px; color: var(--muted); }
.price__val { font-family: 'Fraunces', serif; font-size: 26px; color: var(--navy); line-height: 1; }
.price__per { font-size: 13px; color: var(--muted); }

/* ============================================================ ROUTE / DESTINATION CARDS */
.routes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 960px) { .routes-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .routes-grid { grid-template-columns: 1fr; } }

.route {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  cursor: pointer;
  transition: transform .3s;
  text-decoration: none;
}
.route::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,42,74,0) 30%, rgba(6,42,74,.85) 100%);
  z-index: 1;
}
.route img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.route:hover { transform: translateY(-4px); text-decoration: none; color: #fff; }
.route:hover img { transform: scale(1.06); }
.route__content { position: relative; z-index: 2; }
.route__name { font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 4px; color: #fff; }
.route__meta { font-size: 13px; opacity: .85; display: flex; gap: 12px; flex-wrap: wrap; color: rgba(255,255,255,.85); }

/* Legacy route card compat */
.route-card { border-radius: 14px; overflow: hidden; transition: transform .3s, box-shadow .3s; display: block; text-decoration: none; color: inherit; border: 1px solid var(--line); }
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.route-card-thumb { height: 160px; background: linear-gradient(135deg, var(--navy), var(--ocean)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.route-card-body { padding: 1.25rem; background: #fff; }
.route-card h3 { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.route-card-meta { font-size: 13px; color: var(--muted); }

/* ============================================================ HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 8px 4px; }
.step__num, .step-num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  font-weight: 500;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p, .step-num + p { font-size: 15px; color: var(--muted); }

/* ============================================================ WHY US (dark section) */
.why { background: var(--navy); color: #fff; }
.why h2, .why h3 { color: #fff; }
.why .eyebrow { color: #ffdcb0; }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; margin-top: 40px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
.why-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; background: var(--ocean); }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #ffdcb0;
  border: 1px solid rgba(255,255,255,.12);
}
.why-icon svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 20px; color: #fff; margin-bottom: 6px; }
.why-item p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ============================================================ REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.review__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.review__text { font-family: 'Fraunces', serif; font-size: 18px; color: var(--navy); line-height: 1.5; font-weight: 400; }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--ocean));
  color: #fff; display: grid; place-items: center;
  font-weight: 600; font-size: 15px;
  flex-shrink: 0;
}
.review__name { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.review__meta { font-size: 13px; color: var(--muted); }
.review__source { margin-left: auto; font-size: 12px; color: var(--muted); }

/* ============================================================ SEO SECTION */
.seo-block { background: var(--sand); }
.seo-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .seo-grid { grid-template-columns: 1fr; gap: 32px; } }
.seo-sticky { position: sticky; top: 96px; }
.seo-content h3 { font-size: 22px; margin: 32px 0 12px; }
.seo-content p { font-size: 16px; color: var(--ink); margin-bottom: 14px; line-height: 1.7; }
.seo-content ul { padding-left: 20px; margin: 10px 0 16px; color: var(--ink); font-size: 16px; line-height: 1.7; list-style: disc; }
.seo-content li { margin-bottom: 6px; }

/* ============================================================ FAQ */
.faq { max-width: 840px; margin: 0 auto; }
details.faq__item, .faq__item { border-bottom: 1px solid var(--line); }
details.faq__item:first-child, .faq__item:first-child { border-top: 1px solid var(--line); }
summary.faq__q, .faq__q, .faq-btn {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  list-style: none;
}
summary.faq__q::-webkit-details-marker { display: none; }
summary.faq__q::after, .faq__q::after {
  content: '+';
  font-size: 28px;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform .25s;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
}
details[open] summary.faq__q::after, .faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a, .faq-answer { padding: 0 0 22px; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 680px; }

/* Legacy JS-based FAQ compat */
.faq-btn { background: none; border: none; }
.faq-btn-text { font-family: 'Fraunces', serif; font-size: 18px; color: var(--navy); font-weight: 500; text-align: left; }
.faq-icon { display: none; } /* use the ::after pseudo instead */
.faq-answer { display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-btn::after { transform: rotate(45deg); }
.faq-btn::after { content: '+'; font-size: 28px; color: var(--coral); flex-shrink: 0; transition: transform .25s; font-family: 'Manrope', sans-serif; font-weight: 300; }

/* ============================================================ FINAL CTA */
.cta-section, .final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6,42,74,.92) 0%, rgba(6,42,74,.7) 60%, rgba(6,42,74,.4) 100%),
    url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1800&q=80') center/cover;
  color: #fff;
  padding: 96px 0;
}
.cta-section { text-align: center; }
.cta-section h2, .final-cta h2 { color: #fff; font-size: clamp(34px,4vw,52px); margin-bottom: 18px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 18px; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta p { color: rgba(255,255,255,.8); font-size: 18px; margin-bottom: 32px; max-width: 560px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.final-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================ GRID SYSTEM */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============================================================ CARDS (generic) */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body { padding: 24px; }

/* Highlight / info boxes */
.highlight-card { background: var(--sand); border-radius: 12px; padding: 18px 20px; margin-bottom: 12px; }
.highlight-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: 'Manrope', sans-serif; }
.highlight-card p { font-size: 14px; color: var(--muted); margin: 0; }
.red-card { background: #fef2f2; border: 1px solid #fecaca; border-radius: 12px; padding: 16px 20px; margin-bottom: 12px; }
.red-card h4 { font-size: 14px; font-weight: 700; color: #b91c1c; margin-bottom: 4px; font-family: 'Manrope', sans-serif; }
.red-card p { font-size: 13px; color: #dc2626; margin: 0; }
.info-box { border-radius: 12px; padding: 20px 24px; margin: 20px 0; }
.info-box-sky { background: #f0f9ff; border: 1px solid #bae6fd; }
.info-box-amber { background: #fffbeb; border: 1px solid #fde68a; }
.info-box-red { background: #fef2f2; border: 1px solid #fecaca; }
.info-box-green { background: #f0fdf4; border: 1px solid #bbf7d0; }
.info-box-sand { background: var(--sand); border: 1px solid var(--sand-2); }
.info-box-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 14px; font-family: 'Manrope', sans-serif; }
.verdict-box { background: rgba(212,154,58,.1); border: 1px solid rgba(212,154,58,.3); border-radius: 8px; padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--navy); }

/* ============================================================ TABLES */
.table-wrap { overflow-x: auto; margin: 20px 0; border-radius: 12px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead tr { background: var(--navy); color: #fff; }
th { text-align: left; padding: 12px 16px; font-weight: 600; font-family: 'Manrope', sans-serif; }
td { padding: 11px 16px; color: var(--ink); border-bottom: 1px solid var(--line); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--sand); }

/* ============================================================ STAT GRID */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 24px 0; }
.stat-cell { background: var(--sand); border-radius: 10px; padding: 16px; text-align: center; }
.stat-cell-label { font-size: 12px; color: var(--muted); margin-bottom: 4px; font-family: 'Manrope', sans-serif; }
.stat-cell-value { font-size: 15px; font-weight: 700; color: var(--navy); }
@media (max-width: 600px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================ PROSE */
.prose h2 { font-size: 28px; margin: 40px 0 16px; }
.prose h3 { font-size: 20px; margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; line-height: 1.75; font-size: 16px; }
.prose p:first-child { font-size: 18px; font-weight: 500; color: var(--navy); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 6px; line-height: 1.65; font-size: 15px; }
.prose a { color: var(--ocean); text-decoration: underline; }
.prose strong { color: var(--navy); font-weight: 600; }

/* ============================================================ BREADCRUMBS */
.breadcrumbs { background: var(--sand); border-bottom: 1px solid var(--line); padding: 10px 0; }
.breadcrumbs-inner { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 13px; font-family: 'Manrope', sans-serif; }
.breadcrumbs a { color: var(--ocean); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs-sep { color: var(--muted); }
.breadcrumbs-current { color: var(--muted); }

/* ============================================================ TAGS */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }

/* ============================================================ FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer h4 {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer a { display: block; padding: 5px 0; color: rgba(255,255,255,.7); }
.footer a:hover { color: #fff; }
.footer__about { font-size: 15px; line-height: 1.6; max-width: 340px; }
.footer-bottom, .footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-brand { }
.footer-tagline { font-size: 15px; line-height: 1.6; margin-bottom: 16px; color: rgba(255,255,255,.65); }
.footer-contact a { color: #ffdcb0; display: inline; }
.footer-col a { font-size: 14px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

/* ============================================================ STICKY WHATSAPP */
.sticky-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .2s;
  text-decoration: none;
}
.sticky-wa:hover { transform: scale(1.08); text-decoration: none; }
.sticky-wa svg { width: 30px; height: 30px; }
.sticky-wa::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================ MOBILE BOTTOM BAR */
.mobile-cta, .mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #fff;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(6,42,74,.08);
  gap: 10px;
  align-items: center;
}
.mobile-bar .btn, .mobile-cta .btn { flex: 1; padding: 14px; border-radius: 999px; }
.mobile-cta p { font-size: 13px; color: var(--muted); margin: 0; }
.mobile-cta-spacer { display: none; }
@media (max-width: 640px) {
  .mobile-cta, .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .sticky-wa { bottom: 84px; }
  .mobile-cta-spacer { display: block; height: 74px; }
}

/* ============================================================ UTILITIES */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-ocean { color: var(--ocean); }
.text-coral { color: var(--coral); }
.text-muted, .text-gray { color: var(--muted); }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.fw-bold { font-weight: 700; }
.bg-sand { background: var(--sand); }
.bg-sky { background: #f0f9ff; }
.bg-white { background: #fff; }
.bg-navy { background: var(--navy); }
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }
.p-3 { padding: 12px; } .p-4 { padding: 16px; } .p-6 { padding: 24px; }
.d-flex { display: flex; } .align-center { align-items: center; } .flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; }
.rounded { border-radius: 12px; } .rounded-lg { border-radius: 16px; }
.check-list { list-style: none; }
.check-list li, .check-list div { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; margin-bottom: 8px; color: var(--ink); }
.arrow { color: var(--ocean); font-weight: 700; flex-shrink: 0; }

/* ============================================================ YACHT DETAIL PAGE */
.breadcrumb { padding: 16px 0; font-size: 13.5px; color: var(--muted); border-bottom: 1px solid var(--line); }
.breadcrumb a { color: var(--ocean); }
.breadcrumb a:hover { color: var(--coral); text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: var(--line); }

.yhero { padding: 48px 0 80px; }
.yhero__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 960px) { .yhero__grid { grid-template-columns: 1fr; gap: 32px; } }

.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 240px); gap: 8px; border-radius: 16px; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform .4s; }
.gallery img:hover { transform: scale(1.04); }
.gallery > :first-child { grid-row: 1 / 3; grid-column: 1 / 2; height: 488px; }
@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 140px; }
  .gallery > :first-child { grid-row: 1 / 2; grid-column: 1 / 3; height: 240px; }
  .gallery > :nth-child(n+5) { display: none; }
}

.yacht-info__badge { display: inline-flex; align-items: center; gap: 8px; background: var(--sand); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--coral-dark); margin-bottom: 14px; }
.yacht-info h1 { font-size: clamp(36px,4.5vw,52px); margin-bottom: 8px; }
.yacht-info__type { font-size: 17px; color: var(--muted); margin-bottom: 18px; }
.yacht-info__rating { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.yacht-info__rating strong { font-family: 'Fraunces', serif; font-size: 22px; color: var(--navy); }
.yacht-info__rating span { color: var(--muted); font-size: 14px; }

.specs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 24px; }
.spec { display: flex; gap: 12px; align-items: center; padding: 14px; background: var(--sand); border-radius: 12px; }
.spec__icon { width: 36px; height: 36px; border-radius: 8px; background: #fff; display: grid; place-items: center; color: var(--ocean); flex-shrink: 0; }
.spec__icon svg { width: 18px; height: 18px; }
.spec__val { font-family: 'Fraunces', serif; font-size: 18px; color: var(--navy); line-height: 1.1; }
.spec__lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 20px; background: var(--navy); color: #fff; border-radius: 14px; margin-bottom: 18px; }
.price-row__from { font-size: 13px; color: rgba(255,255,255,.7); display: block; margin-bottom: 2px; }
.price-row__val { font-family: 'Fraunces', serif; font-size: 34px; line-height: 1; }
.price-row__per { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; display: block; }
.yacht-info__actions { display: flex; gap: 10px; }
.yacht-info__actions .btn { flex: 1; }

.pricing-table { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.pricing-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 20px; padding: 22px 28px; align-items: center; border-bottom: 1px solid var(--line); }
.pricing-row:last-child { border-bottom: 0; }
.pricing-row--head { background: var(--sand); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 14px 28px; }
.pricing-row__name { font-family: 'Fraunces', serif; font-size: 19px; color: var(--navy); }
.pricing-row__sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.pricing-row__val { font-family: 'Fraunces', serif; font-size: 22px; color: var(--navy); }
@media (max-width: 760px) {
  .pricing-row { grid-template-columns: 1fr 1fr; padding: 18px; }
  .pricing-row--head { display: none; }
  .pricing-row__name { grid-column: 1 / 3; padding-bottom: 8px; border-bottom: 1px dashed var(--line); margin-bottom: 8px; }
}

.amenities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 760px) { .amenities-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .amenities-grid { grid-template-columns: 1fr; } }
.amenity { display: flex; gap: 12px; align-items: center; padding: 14px 16px; background: var(--sand); border-radius: 10px; font-size: 14.5px; color: var(--ink); }
.amenity svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; background: var(--sand); padding: 60px; border-radius: 20px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; padding: 32px; } }
.about-grid p { font-size: 16px; color: var(--ink); line-height: 1.7; margin-bottom: 14px; }
.about-grid img { border-radius: 14px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }

.final-cta__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .final-cta__grid { grid-template-columns: 1fr; text-align: center; } }
.final-cta em { font-style: italic; color: #ffdcb0; font-weight: 400; }
@media (max-width: 860px) { .final-cta p { margin-left: auto; margin-right: auto; } .final-cta__actions { justify-content: center; } }
