:root {
  --cream: #f7f3ec;
  --cream-alt: #fbf9f4;
  --navy: #14253f;
  --navy-dark: #0f1d33;
  --navy-mid: #1c3458;
  --gold: #d3a23c;
  --gold-hover: #c79433;
  --gold-2: #bf8f33;
  --text-base: #16294a;
  --text-1: #3c4759;
  --text-2: #4a5566;
  --text-3: #5a6475;
  --border: rgba(20, 37, 63, .07);
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebe5b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text-base);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #14253f; }
a { color: inherit; }
img { max-width: 100%; }
input, textarea, select, button { font-family: inherit; }
svg.lucide, i[data-lucide] { stroke-width: 1.6; }
.text-gold { color: var(--gold); }
.text-gold-2 { color: var(--gold-2); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s ease;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-radius: 7px;
}
.btn--gold:hover { background: var(--gold-hover); }
.btn--nav {
  font-size: 13px;
  letter-spacing: .03em;
  padding: 12px 22px;
  box-shadow: 0 6px 16px rgba(20, 37, 63, .14);
}
.btn--lg {
  font-size: 14px;
  letter-spacing: .05em;
  padding: 16px 38px;
  border-radius: 8px;
  box-shadow: 0 12px 26px -12px rgba(20, 37, 63, .5);
}
.btn--mobile-cta {
  text-align: center;
  font-size: 14px;
  letter-spacing: .03em;
  padding: 14px;
  border-radius: 8px;
  margin-top: 14px;
}
.btn--panel {
  font-size: 13px;
  letter-spacing: .05em;
  padding: 13px 24px;
}

/* ===== Header ===== */
.site-header {
  z-index: 50;
  background: rgba(247, 243, 236, .88);
  backdrop-filter: blur(10px);
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand__logo { height: 65px; width: auto; display: block; }
.nav-desktop { display: flex; align-items: center; gap: 26px; }
.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
}
.lang-toggle { display: flex; align-items: center; gap: 8px; }
.lang-btn {
  width: 30px;
  height: 22px;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  flex: none;
  line-height: 0;
  background: none;
}
.lang-btn img { width: 100%; height: 100%; display: block; object-fit: cover; }
.mobile-controls { display: none; align-items: center; gap: 14px; }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(20, 37, 63, .14);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--navy);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid rgba(20, 37, 63, .08);
  box-shadow: 0 18px 30px -18px rgba(20, 37, 63, .4);
  padding: 8px 24px 18px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #2a3853;
  padding: 13px 0;
  border-bottom: 1px solid rgba(20, 37, 63, .06);
}

@media (max-width: 820px) {
  .nav-desktop { display: none !important; }
  .mobile-controls { display: flex !important; }
  .brand__logo { height: 53px !important; }
  .hero__icons { justify-content: center !important; }
  .hero__rule { margin-left: auto !important; margin-right: auto !important; }
}

/* ===== Layout helpers ===== */
.section-inner { max-width: 1180px; margin: 0 auto; padding: 84px 24px; }

/* ===== Hero ===== */
.hero { background: var(--cream); position: relative; }
.hero__row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.hero__copy { flex: 1 1 480px; min-width: 320px; position: relative; }
.hero__h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.04;
  letter-spacing: -.5px;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
@media (max-width: 560px) { .hero__h1 { font-size: 42px !important; } }
.hero__p { font-size: 19px; line-height: 1.55; color: var(--text-2); max-width: 480px; margin: 22px 0 0; }
.hero__rule { width: 74px; height: 4px; background: var(--gold); border-radius: 2px; margin: 30px 0 26px; }
.hero__icons { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 96px;
  text-align: center;
}
.hero-icon i { width: 32px; height: 32px; color: var(--navy); }
.hero-icon span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  line-height: 1.3;
}
.hero__photo { flex: 1 1 480px; min-width: 300px; position: relative; }
.hero__photo img { width: 100%; height: auto; display: block; border-radius: 16px; }

.hero__panels {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 24px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}
.panel {
  flex: 1 1 430px;
  min-width: 300px;
  background: var(--navy);
  border-radius: 14px;
}
.panel--cta { padding: 28px 30px; display: flex; align-items: center; gap: 22px; }
.panel__icon-badge {
  flex: none;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel__icon-badge i { width: 30px; height: 30px; color: var(--navy); }
.panel__title {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}
.panel__sub { font-size: 13.5px; color: #b9c2d2; margin: 8px 0 14px; }
.panel--credentials {
  padding: 26px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}
.signature {
  font-family: 'Allura', cursive;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.panel__license {
  font-size: 11px;
  letter-spacing: .14em;
  color: #cdd5e2;
  font-weight: 600;
  display: block;
  margin: 6px 0 14px;
}
.credential-list { display: flex; flex-direction: column; gap: 9px; }
.credential-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #e7ebf2;
}
.credential-list svg { width: 17px; height: 17px; color: var(--gold); }
.trusted-badge { text-align: center; }
.trusted-badge > span {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.4;
  display: block;
  max-width: 150px;
}
.trusted-badge__icons {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.trusted-badge__icons svg:first-child { width: 20px; height: 20px; color: var(--gold); }
.trusted-badge__icons svg:last-child { width: 24px; height: 24px; color: var(--gold); }
.dots { letter-spacing: .32em; color: #c9b48a; font-size: 13px; }

/* ===== Services ===== */
.services { background: var(--cream-alt); border-top: 1px solid rgba(20, 37, 63, .06); }
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.12;
}
.section-heading p { font-size: 17px; color: var(--text-3); margin: 16px 0 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 14px 30px -22px rgba(20, 37, 63, .4);
}
.service-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon img { width: 41px; height: 41px; object-fit: contain; }
.service-card__icon img.icon-svg { width: 37px; height: 37px; }
.service-card__icon svg.icon-outline { width: 41px; height: 41px; color: var(--gold); stroke-width: 1; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 18px 0 8px; letter-spacing: .01em; }
.service-card p { font-size: 14px; line-height: 1.5; color: var(--text-3); margin: 0; }
.section-cta { text-align: center; margin-top: 40px; }

/* ===== Compare ===== */
.compare { background: var(--cream); }
.compare__row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.compare__col { flex: 1 1 440px; min-width: 320px; }
.compare__heading {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 26px;
  line-height: 1.12;
}
.compare-table {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 44px -28px rgba(20, 37, 63, .5);
}
.compare-table__col { flex: 1; padding: 0 0 24px; }
.compare-table__col--without { background: var(--navy); }
.compare-table__col--with { background: #fff; }
.compare-table__header {
  padding: 16px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
}
.compare-table__col--without .compare-table__header { background: var(--navy-mid); color: #cdd5e2; }
.compare-table__col--with .compare-table__header { background: var(--gold); color: var(--navy); }
.compare-table__body { padding: 22px 22px 0; display: flex; flex-direction: column; gap: 18px; }
.compare-table__body span { display: flex; align-items: center; gap: 11px; font-size: 14px; }
.compare-table__col--without .compare-table__body span { color: #e7ebf2; }
.compare-table__col--without .compare-table__body i { width: 19px; height: 19px; color: #8893a6; }
.compare-table__col--with .compare-table__body span { color: #2a3853; }
.compare-table__col--with .compare-table__body i { width: 19px; height: 19px; color: var(--gold-2); }
.did-you-know {
  flex: 1 1 400px;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 34px;
  box-shadow: 0 20px 44px -30px rgba(20, 37, 63, .5);
}
.did-you-know h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  text-align: center;
}
.stat-list { display: flex; flex-direction: column; gap: 22px; }
.stat-row { display: flex; gap: 15px; align-items: flex-start; }
.stat-row i { width: 26px; height: 26px; color: var(--gold-2); flex: none; margin-top: 2px; }
.stat-row p { font-size: 14.5px; line-height: 1.5; color: var(--text-1); margin: 0; }
.stat-row strong { color: var(--navy); }
.did-you-know__closing {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  text-align: center;
  margin: 26px 0 0;
  line-height: 1.3;
}

/* ===== Reviews ===== */
.reviews { background: var(--cream-alt); border-top: 1px solid rgba(20, 37, 63, .06); }
.reviews__heading {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 44px;
  text-align: center;
}
.card-grid--reviews { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 16px 34px -26px rgba(20, 37, 63, .4);
}
.review-card__top { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2px solid #ece4d4;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.review-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-1); margin: 18px 0 14px; }
.review-card__name { font-size: 13.5px; font-weight: 700; color: var(--navy); }

/* ===== Final CTA ===== */
.final-cta { background: var(--navy); }
.final-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.final-cta__lead { display: flex; gap: 20px; align-items: center; flex: 1 1 380px; min-width: 300px; }
.final-cta__icon-badge {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-cta__icon-badge i { width: 30px; height: 30px; color: var(--navy); }
.final-cta__lead h3 {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.final-cta__lead p { font-size: 14px; color: #b9c2d2; margin: 8px 0 0; line-height: 1.5; }
.final-cta__lead strong { color: var(--gold); }
.final-cta__list { display: flex; flex-direction: column; gap: 11px; flex: 0 0 auto; }
.final-cta__list span { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #e7ebf2; }
.final-cta__list svg { width: 18px; height: 18px; color: var(--gold); }
.final-cta__action { text-align: center; flex: 0 0 auto; }
.final-cta__action .btn { padding: 17px 30px; letter-spacing: .04em; line-height: 1.25; }
.final-cta__footer-line { font-size: 13px; color: #b9c2d2; margin: 12px 0 0; }

/* ===== Contact ===== */
.contact { background: var(--cream-alt); }
.contact__row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.contact__copy { flex: 1 1 360px; min-width: 300px; }
.eyebrow { font-size: 12px; letter-spacing: .18em; color: var(--gold-2); font-weight: 700; }
.contact__copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 18px;
  line-height: 1.1;
}
.contact__copy p { font-size: 16.5px; line-height: 1.6; color: var(--text-3); margin: 0 0 28px; max-width: 420px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list span { display: flex; align-items: center; gap: 13px; font-size: 15px; color: #2a3853; }
.contact-list i { width: 20px; height: 20px; color: var(--gold-2); }
.contact__form-card {
  flex: 1 1 420px;
  min-width: 300px;
  background: #fff;
  border: 1px solid rgba(20, 37, 63, .08);
  border-radius: 18px;
  padding: 36px 34px;
  box-shadow: 0 26px 56px -34px rgba(20, 37, 63, .55);
}
.booking-iframe { width: 100%; min-height: 600px; border: none; overflow: hidden; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); color: #cdd5e2; }
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  align-items: center;
  justify-content: center;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cdd5e2;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-link:hover { color: #fff; }
.footer-link svg { width: 18px; height: 18px; color: var(--gold); }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, .6), 0 4px 12px rgba(0, 0, 0, .2);
  text-decoration: none;
  transition: background .2s ease;
}
.whatsapp-fab:hover { background: var(--whatsapp-hover); }

/* ===== Scroll reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .hero__row { padding-top: 40px; }
}
