:root {
  --navy: #062a44;
  --deep: #073b57;
  --teal: #00a5b8;
  --aqua: #49eadf;
  --lagoon: #e9fdff;
  --coral: #ff715b;
  --sun: #ffd166;
  --sand: #fff0c5;
  --cream: #fffaf0;
  --ink: #143344;
  --muted: #667f8b;
  --card: #ffffff;
  --line: #ddecf1;
  --shadow: 0 24px 70px rgba(4, 58, 83, 0.16);
  --shadow-soft: 0 12px 35px rgba(4, 58, 83, 0.08);
  --radius: 28px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f2fdff 0%, #fffdf7 45%, #ffffff 100%);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 236, 241, 0.82);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -0.04em;
  font-size: 18px;
  white-space: nowrap;
}
.brand-mark {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 800;
  color: #234b5c;
}
.nav-links a {
  opacity: 0.92;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #0686a5);
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(0, 165, 184, 0.28);
}
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: var(--navy);
}
/* Colourful homepage */
.home-shell .topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  border: 0;
}
.home-shell.scrolled .topbar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(221, 236, 241, 0.82);
}
.home-shell .nav {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(5, 44, 66, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 0 18px;
  height: 70px;
}
.home-shell .nav-cta {
  background: #0798a9;
}
.home-hero {
  position: relative;
  min-height: 580px;
  color: #fff;
  overflow: hidden;
  background: url("/assets/img/mhr/hero-lagoon.png") 55% center/cover no-repeat;
}
.home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 15, 38, 0.88) 0%,
    rgba(0, 18, 42, 0.72) 20%,
    rgba(0, 12, 30, 0.28) 42%,
    transparent 58%
  );
}
.home-hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, rgba(244, 253, 255, 0), #f4fdff 90%);
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  padding: 110px clamp(18px, 5vw, 60px) 120px
    clamp(18px, calc((100vw - 1180px) / 2 + 24px), 200px);
  display: grid;
  grid-template-columns: 640px 1fr;
  width: 100%;
}
.home-hero-inner > * {
  grid-column: 1;
}
.home-hero h1 {
  font-size: clamp(36px, 5.2vw, 68px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0 0 18px;
}
.home-hero p {
  font-size: 16px;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.hero-kicker {
  display: none;
}
.hero-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.35;
  backdrop-filter: blur(6px);
}
.hero-icon span {
  display: block;
}
.search-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.big-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}
.home-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 20px 0 20px;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
.home-hero h1 span {
  color: #53fff0;
}
.home-hero p {
  font-size: 20px;
  line-height: 1.55;
  max-width: 660px;
  color: #ecfdff;
}
.hero-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.hero-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(0, 36, 56, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 850;
  font-size: 13px;
}
.hero-icon i {
  font-style: normal;
  font-size: 17px;
}
.home-search {
  position: relative;
  z-index: 5;
  margin-top: -80px;
}
.search-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 236, 241, 0.86);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 0 20px 20px;
}
.search-tabs {
  display: flex;
  gap: 8px;
  transform: translateY(-28px);
  margin-left: 15px;
  margin-bottom: -15px;
}
.search-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 17px 17px 0 0;
  padding: 14px 27px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 -8px 24px rgba(5, 44, 66, 0.08);
}
.search-tab.muted {
  background: #eef7fa;
  color: #667f8b;
}
.search-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr auto;
  gap: 12px;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 11px 15px;
  background: #fff;
}
.search-field strong {
  display: block;
  font-size: 13px;
  color: #59717b;
}
.search-field span {
  display: block;
  font-size: 14px;
  color: #8a9da5;
}
.search-field i {
  font-style: normal;
  color: var(--teal);
  font-size: 22px;
}
.home-search .filter-btn,
.big-search-btn {
  border: 0;
  background: linear-gradient(135deg, var(--coral), #ff8f62);
  color: #fff;
  border-radius: 18px;
  padding: 0 34px;
  font-weight: 950;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(255, 113, 91, 0.28);
}
.home-section {
  padding: 54px 0;
}
.home-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.home-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.home-title p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 650;
}
.link-more {
  color: #00889d;
  font-weight: 900;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.resort-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: 0.2s ease;
}
.resort-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.resort-img {
  height: 155px;
  position: relative;
  background: #bff;
}
.resort-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 12px;
  padding: 6px 9px;
  color: #fff;
  background: var(--coral);
  font-size: 12px;
  font-weight: 950;
}
.tile-badge.gold {
  background: #ffbf3c;
}
.tile-badge.teal {
  background: #0296a8;
}
.tile-badge.pink {
  background: #ef6ad0;
}
.heart {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
  color: #fff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}
.tile-body {
  padding: 13px 14px 15px;
}
.tile-body h3 {
  margin: 0 0 4px;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.tile-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #68808a;
  font-size: 13px;
  font-weight: 750;
}
.rating {
  color: #0094a5;
  font-weight: 950;
  text-align: right;
}
.atoll-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.atoll-card {
  min-height: 90px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: end;
  padding: 15px;
  color: #fff;
  box-shadow: var(--shadow-soft);
  background: #066;
}
.atoll-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.atoll-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05),
    rgba(0, 46, 63, 0.68)
  );
}
.atoll-card div {
  position: relative;
  z-index: 1;
  font-weight: 950;
}
.atoll-card small {
  display: block;
  font-weight: 750;
  color: #d9fbff;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
  align-items: stretch;
}
.review-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.review-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 15px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.review-item:last-child {
  border-bottom: 0;
}
.review-item img {
  width: 96px;
  height: 68px;
  object-fit: cover;
  border-radius: 14px;
}
.review-item h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 15px;
}
.review-item p {
  margin: 0;
  color: #627a84;
  font-size: 13px;
}
.dots {
  color: #10b981;
  font-size: 13px;
  letter-spacing: 2px;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 14px;
}
.guide-card {
  position: relative;
  min-height: 252px;
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-soft);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.guide-card.small {
  min-height: 118px;
}
.guide-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 53, 75, 0.08),
    rgba(0, 39, 60, 0.72)
  );
}
.guide-card > *:not(img) {
  position: relative;
  z-index: 1;
}
.guide-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 7px 0 6px;
  font-size: 28px;
  line-height: 1.08;
}
.guide-card.small h3 {
  font-size: 19px;
}
.tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 8px;
  border-radius: 8px;
  background: #00a5b8;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}
.trust-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #009cad, #06476a);
  color: #fff;
  padding: 40px 0;
  margin-top: 34px;
}
.trust-strip:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/mhr/footer-underwater.png") right center/auto
    100% no-repeat;
  opacity: 0.58;
}
.trust-inner {
  position: relative;
  z-index: 1;
}
.trust-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 24px;
  font-size: 32px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-item {
  text-align: center;
}
.trust-item i {
  font-style: normal;
  font-size: 31px;
  display: block;
  margin-bottom: 8px;
}
.trust-item b {
  display: block;
}
.trust-item span {
  font-size: 13px;
  color: #d6fbff;
}
.newsletter {
  margin-top: -1px;
  background: #06344f;
  color: #fff;
  padding: 32px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.newsletter h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  font-size: 29px;
}
.newsletter p {
  margin: 5px 0 0;
  color: #ccecf3;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  width: 300px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 17px;
}
.newsletter-form input::placeholder {
  color: #b9dce5;
}
.newsletter-form button {
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 950;
  padding: 14px 22px;
}
/* existing generated pages */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: url("/assets/img/mhr/hero-lagoon.png") center/cover no-repeat;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 42, 68, 0.73),
    rgba(0, 120, 145, 0.4)
  );
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -1px -10%;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f4fcff 88%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
  padding: 118px 0 120px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 850;
  font-size: 14px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.96;
  margin: 22px 0 20px;
  letter-spacing: -0.06em;
}
.hero p {
  font-size: 19px;
  color: #e8fbff;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn-primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}
.hero-card {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #fff;
}
.hero-card img {
  height: 430px;
  width: 100%;
  object-fit: cover;
}
.floating-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}
.floating-panel strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.stat {
  padding: 14px;
  border-radius: 20px;
  background: #eefcff;
}
.stat b {
  display: block;
  color: var(--navy);
  font-size: 22px;
}
.section {
  padding: 76px 0;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.035em;
  color: var(--navy);
}
.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 730px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(6, 40, 58, 0.08);
  transition: 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  background: #d8f7f8;
}
.card-body {
  padding: 23px;
}
.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e2fbff;
  color: #07505c;
  font-weight: 850;
  font-size: 12px;
}
.badge.sand {
  background: #fff3c4;
  color: #6b4a07;
}
.card h3 {
  font-size: 23px;
  line-height: 1.12;
  margin: 0 0 10px;
  color: var(--navy);
  letter-spacing: -0.035em;
}
.card p {
  color: #5d727b;
  margin: 0;
}
.search-panel {
  margin-top: -84px;
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.search-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 12px;
}
.input,
.select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid #d5e6eb;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
}
.filter-btn {
  border: 0;
  background: linear-gradient(135deg, var(--coral), #ff8f62);
  color: #fff;
  border-radius: 18px;
  padding: 0 22px;
  font-weight: 950;
}
.results-count {
  margin: 14px 2px 0;
  color: var(--muted);
  font-weight: 700;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.feature-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 18px 56px rgba(6, 40, 58, 0.08);
}
.tick {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.tick div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.tick span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #dffbf5;
  color: #087b72;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.page-hero {
  position: relative;
  background: url("/assets/img/mhr/hero-lagoon.png") center/cover no-repeat;
  color: #fff;
  padding: 118px 0 80px;
  overflow: hidden;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 39, 62, 0.74),
    rgba(0, 144, 166, 0.42)
  );
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  margin: 12px 0;
  letter-spacing: -0.05em;
}
.page-hero p {
  font-size: 18px;
  max-width: 840px;
  color: #e9fdff;
}
.crumbs {
  font-size: 14px;
  color: #d9fbff;
  font-weight: 800;
}
.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 16px 48px rgba(6, 40, 58, 0.07);
}
.article h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  margin: 34px 0 12px;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.article h3 {
  font-size: 23px;
  color: var(--navy);
  margin-top: 26px;
}
.article p {
  font-size: 17px;
  color: #3f5863;
}
.article ul {
  padding-left: 22px;
}
.side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}
.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(6, 40, 58, 0.06);
}
.side-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 21px;
}
.fact {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: #536b75;
}
.fact:first-of-type {
  border-top: 0;
}
.fact b {
  color: var(--navy);
  text-align: right;
}
.toc a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: #43616c;
  font-weight: 750;
}
.toc a:first-child {
  border-top: 0;
}
.notice {
  padding: 18px;
  border-radius: 22px;
  background: #fff8df;
  border: 1px solid #f3df9a;
  color: #634c15;
}
.footer {
  background: #041d2c;
  color: #dff9ff;
  padding: 58px 0 28px;
  margin-top: 0;
}
.footer .container {
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer h3,
.footer h4 {
  color: #fff;
  margin-top: 0;
}
.footer a {
  display: block;
  color: #b9dce5;
  margin: 8px 0;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ec7d2;
  font-size: 14px;
}
.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill-list a {
  display: inline-flex;
  background: #ecfbfc;
  border: 1px solid var(--line);
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 800;
  color: #0a5360;
}
.directory-list {
  columns: 3;
  column-gap: 34px;
}
.directory-list a {
  display: block;
  break-inside: avoid;
  padding: 8px 0;
  border-bottom: 1px solid #e8f2f5;
  color: #244b58;
  font-weight: 720;
}
.faq {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq h3 {
  margin: 0 0 8px;
}
.highlight {
  background: linear-gradient(135deg, #eefcff, #fff8e3);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mini {
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(6, 40, 58, 0.06);
}
.mini b {
  font-size: 28px;
  color: var(--teal);
  display: block;
}
.pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pagination a {
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}
.pagination a.active {
  background: var(--navy);
  color: #fff;
}
.form {
  display: grid;
  gap: 14px;
}
.textarea {
  min-height: 140px;
  resize: vertical;
}
.note {
  font-size: 14px;
  color: #6b7c84;
}
.empty {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px dashed #b8d3da;
  text-align: center;
  color: #536b75;
}
.map-shape {
  height: 420px;
  border-radius: 36px;
  background: url("/assets/img/mhr/atoll-baa.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}
.map-shape:after {
  content: "Maldives atoll guide";
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fff;
  font-weight: 950;
  font-size: 26px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.45);
}
@media (max-width: 1040px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .atoll-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .search-row {
    grid-template-columns: 1fr 1fr;
  }
  .big-search-btn {
    min-height: 58px;
  }
  .split-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-grid {
    grid-template-columns: 1fr;
  }
  .guide-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 940px) {
  .hero-inner,
  .feature,
  .content-wrap {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding-top: 96px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-grid {
    grid-template-columns: 1fr;
  }
  .filter-btn {
    padding: 15px;
  }
  .side {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }
  .directory-list {
    columns: 2;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    color: var(--navy) !important;
  }
  .mobile-toggle {
    display: block;
  }
  .brand-mark {
    width: 54px;
    height: 54px;
  }
  .brand {
    font-size: 16px;
  }
  .home-shell .nav {
    margin-top: 10px;
  }
  .home-hero-inner {
    padding-top: 125px;
  }
  .search-tabs {
    transform: none;
    margin: 0 0 12px 0;
  }
  .search-card {
    padding-top: 15px;
  }
  .search-tab {
    border-radius: 15px;
  }
}
@media (max-width: 680px) {
  .featured-grid,
  .grid,
  .footer-grid,
  .mini-grid,
  .atoll-row,
  .search-row,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .directory-list {
    columns: 1;
  }
  .hero-card img {
    height: 300px;
  }
  .hero h1,
  .home-hero h1 {
    font-size: 43px;
  }
  .section,
  .home-section {
    padding: 48px 0;
  }
  .article {
    padding: 24px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    min-height: unset;
  }
  .search-panel {
    margin-top: -50px;
  }
  .home-hero {
    min-height: 640px;
  }
  .home-search {
    margin-top: -70px;
  }
  .review-item {
    grid-template-columns: 80px 1fr;
  }
  .review-item time {
    display: none;
  }
  .review-item img {
    width: 80px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    width: 100%;
  }
  .trust-strip {
    padding: 34px 0;
  }
  .home-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .split-grid {
    gap: 18px;
  }
}

/* SVG icon display fixes */
.search-field svg {
  color: var(--teal);
  flex-shrink: 0;
}
.hero-icon svg {
  flex-shrink: 0;
  opacity: 0.95;
}
.trust-item svg {
  display: block;
  margin: 0 auto 10px;
  opacity: 0.92;
}

/* Responsive fixes */
@media (max-width: 680px) {
  .atoll-row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .big-search-btn {
    width: 100%;
    min-height: 58px;
  }
  .search-tabs {
    flex-wrap: nowrap;
  }
  .search-tab {
    flex: 1;
    justify-content: center;
    padding: 12px 10px;
    font-size: 13px;
  }
  .home-hero-inner {
    padding: 100px 20px 90px;
    grid-template-columns: 1fr;
  }
  .home-hero-inner > * {
    grid-column: 1;
  }
  .home-hero h1 {
    font-size: clamp(32px, 8vw, 52px);
  }
  .home-hero p {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .atoll-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero-icons {
    gap: 8px;
  }
  .hero-icon {
    font-size: 12px;
    padding: 8px 10px;
  }
  .home-hero h1 {
    font-size: 36px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .review-item {
    grid-template-columns: 72px 1fr;
  }
  .review-item img {
    width: 72px;
    height: 56px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .newsletter h3 {
    font-size: 22px;
  }
  .home-title h2 {
    font-size: 26px;
  }
}

/* SEO keyword search hub */
.seo-keyword-section {
  padding: 54px 0;
  background: linear-gradient(135deg, #ecfbff 0%, #fff8df 100%);
}
.seo-keyword-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  border-radius: 34px;
  padding: 32px;
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 26px;
  align-items: start;
}
.seo-kicker {
  display: inline-flex;
  border-radius: 999px;
  background: #dffbf5;
  color: #087b72;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.seo-keyword-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  color: var(--navy);
  margin: 13px 0 12px;
  letter-spacing: -0.035em;
}
.seo-keyword-copy p {
  margin: 0;
  color: #536b75;
  font-weight: 650;
}
.seo-keyword-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.seo-keyword-pill {
  display: block;
  background: #fff;
  border: 1px solid #d9edf2;
  border-radius: 18px;
  padding: 14px 15px;
  box-shadow: 0 8px 22px rgba(6, 40, 58, 0.05);
  transition: 0.18s ease;
}
.seo-keyword-pill:hover {
  transform: translateY(-2px);
  border-color: #8edfe7;
  box-shadow: 0 12px 30px rgba(0, 165, 184, 0.12);
}
.seo-keyword-pill strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}
.seo-keyword-pill span {
  display: block;
  margin-top: 5px;
  color: #667f8b;
  font-size: 13px;
  line-height: 1.4;
}
@media (max-width: 940px) {
  .seo-keyword-card {
    grid-template-columns: 1fr;
  }
  .seo-keyword-grid {
    grid-template-columns: 1fr;
  }
}
button.search-tab {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.search-field input {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  width: 100%;
  padding: 0;
  min-width: 0;
  display: block;
}
.search-field input::placeholder {
  color: #8a9da5;
}
.search-field input[type="date"] {
  color-scheme: light;
  cursor: pointer;
}
.search-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}
#home-search-btn {
  cursor: pointer;
  min-height: 70px;
}
.search-field-guests {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.guests-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 270px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  z-index: 200;
  display: none;
}
.guests-dropdown.open {
  display: block;
}
.guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.guests-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.guests-label b {
  display: block;
  color: var(--navy);
  font-size: 14px;
}
.guests-label small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.guests-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.guests-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
}
.guests-btn:hover {
  background: var(--lagoon);
  border-color: var(--teal);
}
#adults-val,
#children-val {
  width: 22px;
  text-align: center;
  font-weight: 800;
  color: var(--navy);
  font-size: 15px;
}
