:root {
  --bg-0: #ecf2f4;
  --bg-1: #f7f8fb;
  --text: #152033;
  --muted: #607086;
  --line: rgba(255, 255, 255, 0.48);
  --line-soft: rgba(255, 255, 255, 0.28);
  --shadow-soft: 0 14px 30px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 20px 40px rgba(17, 24, 39, 0.12);
  --glass-white: rgba(255, 255, 255, 0.34);
  --glass-white-2: rgba(255, 255, 255, 0.22);
  --glass-blue: rgba(203, 224, 255, 0.18);
  --glass-green: rgba(167, 218, 186, 0.16);
  --glass-warm: rgba(255, 213, 180, 0.14);
  --accent: #ff7a2f;
  --accent-dark: #e66a1f;
  --green: #1d6b3f;
  --green-2: #2f975f;
  --blue: #0e4ea6;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --wrap: min(1200px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 560px at 5% 5%, rgba(118, 186, 146, 0.18), transparent 62%),
    radial-gradient(920px 580px at 95% 6%, rgba(132, 167, 255, 0.15), transparent 64%),
    radial-gradient(900px 640px at 50% 98%, rgba(255, 168, 111, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  min-height: 100vh;
  overflow-x: hidden;
  animation: tintDrift 24s ease-in-out infinite alternate;
}

@keyframes tintDrift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%;
  }
  100% {
    background-position: 4% 6%, 96% 6%, 54% 94%, 0% 0%;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
}

.orb-1 {
  width: 240px;
  height: 240px;
  left: -60px;
  top: 70px;
  background: radial-gradient(circle, rgba(87, 189, 129, 0.24), rgba(87, 189, 129, 0));
  animation: orbFloat1 14s ease-in-out infinite;
}

.orb-2 {
  width: 260px;
  height: 260px;
  right: -70px;
  top: 120px;
  background: radial-gradient(circle, rgba(109, 151, 255, 0.2), rgba(109, 151, 255, 0));
  animation: orbFloat2 16s ease-in-out infinite;
}

.orb-3 {
  width: 320px;
  height: 320px;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 161, 102, 0.16), rgba(255, 161, 102, 0));
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(10px, 18px, 0); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-14px, 12px, 0); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-48%) translateY(-16px); }
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section-shell,
.glass-panel,
.glass-chip {
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
}

.section-shell {
  background: linear-gradient(135deg, var(--glass-white), rgba(231, 240, 255, 0.14));
  border-radius: var(--radius-xl);
}

.glass-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(228, 241, 255, 0.18));
  border-radius: var(--radius-lg);
}

.glass-panel.warm {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 225, 200, 0.22));
}

.glass-chip {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(220, 237, 255, 0.14));
  border-radius: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .24s cubic-bezier(.22,.61,.36,1), box-shadow .24s ease, background-color .24s ease, border-color .24s ease, color .24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-ghost {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(235, 244, 255, 0.22));
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 10px 20px rgba(15, 23, 42, 0.07);
  color: #1d2b3f;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(235, 244, 255, 0.35));
}

.btn-accent {
  background: linear-gradient(135deg, rgba(255, 122, 47, 0.92), rgba(255, 96, 59, 0.86));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 24px rgba(255, 122, 47, 0.25);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: linear-gradient(135deg, rgba(230, 106, 31, 0.95), rgba(255, 87, 43, 0.9));
}

.btn-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.96), rgba(23, 182, 85, 0.88));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: linear-gradient(135deg, rgba(28, 188, 91, 0.96), rgba(19, 158, 72, 0.92));
}

.btn-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(235, 244, 255, 0.3));
  color: #152033;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 10px 20px rgba(15, 23, 42, 0.08);
}

.btn-dark {
  background: linear-gradient(135deg, #111827, #1f3045);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.26);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: linear-gradient(135deg, #155e38, #1e7a4c);
}

.site-header {
  padding: 12px 0 0;
}

.top-nav {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  position: sticky;
  top: 10px;
  z-index: 250;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(226, 240, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 14px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  text-decoration: none;
  min-width: 0;
  line-height: 0;
  justify-self: start;
  position: relative;
  top: 0;
}

.brand-logo {
  width: auto;
  height: clamp(58px, 4.8vw, 72px);
  max-width: min(100%, 320px);
  display: block;
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.18));
}

.brand-text {
  font-weight: 800;
  color: #184b2f;
  font-size: 18px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: rgba(21, 32, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(236, 244, 255, 0.17));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 8px 16px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px) saturate(170%);
  -webkit-backdrop-filter: blur(12px) saturate(170%);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.nav-links li:first-child a {
  background: linear-gradient(135deg, rgba(29, 107, 63, 0.84), rgba(47, 151, 95, 0.82));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 18px rgba(29, 107, 63, 0.16);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(234, 243, 255, 0.72), rgba(220, 235, 255, 0.28));
  border-color: rgba(191, 216, 255, 0.86);
  color: var(--blue);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(236, 244, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 8px 16px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  cursor: pointer;
  position: relative;
}

.mobile-nav-toggle span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #183256;
  transition: transform .22s ease, opacity .18s ease, width .22s ease, height .22s ease, border-radius .22s ease, background-color .22s ease;
  transform-origin: center;
}

.hero {
  width: var(--wrap);
  margin: 14px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 620px;
  background: #09131d;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 21, 0.9) 0%, rgba(7, 15, 25, 0.82) 35%, rgba(7, 15, 25, 0.56) 60%, rgba(7, 15, 25, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 15, 25, 0.12) 0%, rgba(7, 15, 25, 0.62) 100%);
}

.hero-panel {
  position: relative;
  z-index: 1;
  color: #fff;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px;
}

.hero-breadcrumbs {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(193, 220, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
}

.hero-offer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 850px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(203, 224, 255, 0.06));
  backdrop-filter: blur(12px) saturate(165%);
  -webkit-backdrop-filter: blur(12px) saturate(165%);
}

.hero-offer-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.35;
}

.hero-offer-bar strong {
  color: #fff;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  background: linear-gradient(135deg, rgba(255, 143, 58, 0.96), rgba(255, 110, 36, 0.9));
  box-shadow: 0 10px 18px rgba(255, 122, 47, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 14px;
  align-items: end;
}

.hero-copy {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(193, 220, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 30px rgba(7, 15, 25, 0.18);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.hero-copy h1 {
  font-family: 'Poppins', 'Manrope', sans-serif;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  max-width: 17ch;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
  max-width: 62ch;
}

.hero-meta {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 10px;
}

.price-card {
  display: grid;
  gap: 2px;
  align-content: start;
  padding: 12px 14px;
}

.price-card .label {
  color: #58677e;
  font-size: 12px;
  font-weight: 600;
}

.price-card strong {
  color: #0f172a;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.price-card small {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}

.assist-card {
  padding: 12px 14px;
}

.assist-card span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.assist-card p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.hero-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(193, 220, 255, 0.06));
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
}

.hero-cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-side {
  padding: 16px;
  color: #122033;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(232, 243, 255, 0.28));
}

.hero-side-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.pill.muted {
  background: #eaf4ff;
  color: var(--blue);
}

.pill.rating {
  background: #eef9ef;
  color: #17653b;
}

.hero-side h3 {
  font-size: 18px;
  margin-top: 12px;
}

.check-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: #475569;
  font-size: 13px;
  line-height: 1.4;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 0 0 3px rgba(29, 107, 63, 0.12);
}

.check-list.compact li {
  font-size: 12px;
}

.mini-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-stats > div {
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(241, 247, 255, 0.24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.mini-stats strong {
  display: block;
  font-size: 18px;
}

.mini-stats span {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-side .btn {
  margin-top: 14px;
  width: 100%;
}

.trust-strip {
  margin-top: 16px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 0 0 4px rgba(29, 107, 63, 0.12);
  flex: 0 0 auto;
}

.trust-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.trust-item p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

main {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding-bottom: 28px;
}

.listing-section,
.compare-layout,
.gallery-block {
  display: grid;
  gap: 14px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), var(--shadow-soft);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(232, 243, 255, 0.15));
  backdrop-filter: blur(16px) saturate(165%);
  -webkit-backdrop-filter: blur(16px) saturate(165%);
}

.section-heading h2 {
  font-family: 'Poppins', 'Manrope', sans-serif;
  font-size: 28px;
  line-height: 1.15;
  margin-top: 4px;
}

.section-heading p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 62ch;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(236, 244, 255, 0.2));
  color: #1f2d42;
  border-radius: 999px;
  padding: 9px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 8px 16px rgba(15, 23, 42, 0.05);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.chip:hover {
  transform: translateY(-1px);
}

.chip.active {
  background: linear-gradient(135deg, rgba(29, 107, 63, 0.86), rgba(47, 151, 95, 0.82));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.package-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card.compact-highlight {
  justify-content: space-between;
}

.media-wrap {
  position: relative;
  padding: 12px 12px 0;
}

.media-wrap.small {
  padding-top: 0;
  margin-top: 10px;
}

.media-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.package-card:hover .media-wrap img {
  transform: scale(1.02);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.badge {
  position: absolute;
  left: 20px;
  top: 20px;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1);
}

.package-body {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.package-body h3 {
  font-size: 18px;
  line-height: 1.2;
}

.package-meta {
  color: #52637a;
  font-size: 12px;
  font-weight: 700;
}

.package-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.package-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.package-points span {
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #1f3148;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.package-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.package-foot small {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.package-foot strong {
  display: block;
  font-size: 15px;
}

.package-foot.stacked {
  flex-direction: column;
  align-items: stretch;
}

.package-foot.stacked .btn {
  width: 100%;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 14px;
}

.compare-card {
  padding: 16px;
}

.compare-card h3 {
  font-size: 20px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.feature-list li {
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(236, 244, 255, 0.18));
}

.feature-list strong {
  display: block;
  font-size: 14px;
}

.feature-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.why-card {
  padding: 14px;
}

.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, rgba(29, 107, 63, 0.9), rgba(47, 151, 95, 0.84));
  box-shadow: 0 10px 18px rgba(29, 107, 63, 0.16);
}

.why-card h4 {
  margin-top: 10px;
  font-size: 16px;
}

.why-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.activities-section {
  width: var(--wrap);
  margin-inline: auto;
  padding: 14px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.activity-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  padding: 12px;
}

.activity-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.activity-card h3 {
  font-size: 17px;
}

.activity-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 170px;
  gap: 12px;
}

.gallery-card {
  overflow: hidden;
  padding: 10px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  transition: transform .35s ease, filter .35s ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

/* ── Auto-scroll horizontal gallery ── */
.gallery-scroll-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
  mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
  cursor: grab;
}

.gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: galleryScroll 32s linear infinite;
  will-change: transform;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  flex: none;
  width: 300px;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.40);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

@keyframes galleryScroll {
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .gallery-item {
    width: 230px;
    height: 165px;
  }
  .gallery-track {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
  }
  .gallery-item {
    scroll-snap-align: start;
  }
}

.testimonial-section,
.reach-section,
.faq-section,
.blog-section,
.cta-banner {
  width: var(--wrap);
  margin-inline: auto;
  padding: 14px;
}

.testimonial-grid,
.reach-grid,
.blog-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 14px;
}

.testimonial-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, rgba(29, 107, 63, 0.9), rgba(47, 151, 95, 0.8));
  box-shadow: 0 10px 18px rgba(29, 107, 63, 0.14);
}

.testimonial-head h4 {
  font-size: 14px;
}

.testimonial-head p {
  font-size: 12px;
  color: var(--muted);
}

.rating-tag {
  border-radius: 999px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 800;
  color: #17653b;
  background: rgba(232, 249, 238, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.testimonial-card > p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.reach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reach-card {
  overflow: hidden;
}

.reach-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.reach-content {
  padding: 14px;
}

.reach-content h3 {
  font-size: 17px;
}

.reach-content p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.reach-content .btn {
  margin-top: 12px;
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  font-weight: 700;
}

.faq-question span:first-child {
  font-size: 15px;
  line-height: 1.35;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  color: #183256;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  padding: 0 16px 15px;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 14px;
}

.blog-date {
  display: inline-block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.blog-content h3 {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.35;
}

.blog-content p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  text-decoration: none;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.cta-copy h2 {
  font-family: 'Poppins', 'Manrope', sans-serif;
  font-size: 28px;
  line-height: 1.15;
  margin-top: 4px;
}

.cta-copy p:not(.eyebrow) {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cta-actions {
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.site-footer {
  padding-bottom: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 12px;
}

.footer-col {
  padding: 14px;
}

.footer-col h3,
.footer-col h4 {
  font-size: 16px;
}

.footer-col p,
.footer-col li,
.footer-col a,
.footer-col span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-decoration: none;
}

.footer-col p,
.footer-col ul {
  margin-top: 8px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 12px;
  padding: 12px 14px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.floating-contact {
  position: fixed;
  right: 12px;
  top: 48%;
  transform: translateY(-50%);
  z-index: 260;
  transition: transform .28s ease, opacity .2s ease;
}

.float-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
  transition: transform .22s ease, box-shadow .22s ease, opacity .24s ease;
}

.float-btn:hover {
  transform: translateX(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
}

.float-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.float-btn.phone {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.96), rgba(21, 176, 82, 0.88));
}

.scroll-top {
  position: fixed;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(236, 244, 255, 0.24));
  color: #1a2940;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 10px 18px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px) saturate(170%);
  -webkit-backdrop-filter: blur(12px) saturate(170%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 260;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(.986);
  filter: saturate(.92);
  transition:
    opacity .65s ease var(--reveal-delay, 0ms),
    transform .75s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms),
    filter .65s ease var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1);
}

.hero-breadcrumbs.reveal-on-scroll,
.hero-offer-bar.reveal-on-scroll {
  transform: translate3d(0, 14px, 0) scale(.99);
}

.hero-copy.reveal-on-scroll,
.hero-side.reveal-on-scroll {
  transform: translate3d(0, 18px, 0) scale(.99);
}

.hero-copy.is-visible,
.hero-side.is-visible,
.hero-copy:not(.reveal-on-scroll),
.hero-side:not(.reveal-on-scroll),
.hero-offer-bar.is-visible {
  animation: panelFloat 8s ease-in-out infinite;
}

.hero-side.is-visible,
.hero-side:not(.reveal-on-scroll) {
  animation-delay: -.7s;
}

.hero-offer-bar.is-visible {
  animation-delay: -1.4s;
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Tablet */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 320px;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile nav + layout */
@media (max-width: 900px) {
  body {
    animation-duration: 18s;
  }

  .top-nav {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
    width: min(100%, calc(100% - 12px));
    top: 6px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(224, 239, 255, 0.13));
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  #siteNav.mobile-nav-open .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(220, 237, 255, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 12px 22px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
  }

  #siteNav.mobile-nav-open .nav-links a {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
    min-height: 44px;
  }

  #siteNav.mobile-nav-open .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  #siteNav.mobile-nav-open .nav-actions .btn {
    width: 100%;
    padding: 12px 14px;
    min-height: 44px;
    font-size: 14px;
  }

  #siteNav.mobile-nav-open .mobile-nav-toggle {
    gap: 0;
    background: linear-gradient(135deg, rgba(234, 243, 255, 0.82), rgba(214, 232, 255, 0.32));
    border-color: rgba(191, 216, 255, 0.92);
  }

  #siteNav.mobile-nav-open .mobile-nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
  }

  #siteNav.mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  #siteNav.mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);
  }

  #siteNav.mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hero {
    width: min(100%, calc(100% - 12px));
    margin-top: 10px;
    min-height: 700px;
    border-radius: 20px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 15, 25, 0.68) 0%, rgba(7, 15, 25, 0.84) 42%, rgba(7, 15, 25, 0.94) 100%),
      linear-gradient(90deg, rgba(7, 15, 25, 0.38) 0%, rgba(7, 15, 25, 0.18) 100%);
  }

  .hero-panel {
    padding: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-copy {
    padding: 14px;
    border-radius: 14px;
  }

  .hero-copy h1 {
    font-size: 24px;
    max-width: none;
  }

  .hero-lead {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-card {
    grid-template-columns: auto auto 1fr;
    align-items: baseline;
    gap: 6px;
  }

  .price-card strong {
    font-size: 24px;
  }

  .hero-tags {
    gap: 6px;
  }

  .hero-tags span {
    font-size: 11px;
    padding: 6px 8px;
  }

  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-cta-row .btn {
    width: 100%;
    padding: 10px 10px;
    font-size: 13px;
  }

  .hero-side {
    border-radius: 14px;
    padding: 14px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    width: min(100%, calc(100% - 12px));
    margin-top: 12px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    grid-template-columns: 140px 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .reach-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    width: 100%;
    min-width: 0;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .section-heading {
    flex-direction: column;
    padding: 14px;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: 22px;
  }

  .listing-section,
  .compare-layout,
  .gallery-block,
  .activities-section,
  .testimonial-section,
  .reach-section,
  .faq-section,
  .blog-section,
  .cta-banner,
  .site-footer {
    width: min(100%, calc(100% - 12px));
  }

  .section-shell,
  .activities-section,
  .testimonial-section,
  .reach-section,
  .faq-section,
  .blog-section,
  .cta-banner {
    border-radius: 18px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card.compact-highlight {
    grid-template-columns: 1fr;
  }

  .compare-card,
  .activities-section,
  .testimonial-section,
  .reach-section,
  .faq-section,
  .blog-section,
  .cta-banner {
    padding: 12px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-bottom {
    margin-top: 10px;
  }

  .floating-contact {
    right: 8px;
    top: 52%;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
  }

  .float-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: transform .34s cubic-bezier(.22,.61,.36,1), opacity .22s ease, box-shadow .22s ease;
  }

  .float-btn img {
    width: 20px;
    height: 20px;
  }

  .float-btn.whatsapp {
    transition-delay: .02s;
  }

  .float-btn.phone {
    transition-delay: .08s;
  }

  body.mobile-menu-open .floating-contact {
    opacity: 0;
    pointer-events: none;
    transform: translate(60px, -50%);
  }

  body.mobile-menu-open .floating-contact .float-btn {
    opacity: 0;
    transform: translateX(42px) scale(.96);
  }

  .scroll-top {
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  .top-nav {
    align-items: center;
    padding-left: 6px;
  }

  .brand {
    justify-self: start;
    align-self: center;
    margin-left: 0;
    top: 0;
  }

  .mobile-nav-toggle {
    align-self: center;
    justify-self: end;
    top: 0;
  }

  .brand-logo {
    width: auto;
    height: 48px;
    max-width: min(100%, 200px);
  }

  .brand-text {
    font-size: 15px;
  }

  #siteNav.mobile-nav-open .nav-links {
    grid-template-columns: 1fr;
  }

  #siteNav.mobile-nav-open .nav-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-breadcrumbs {
    width: 100%;
    justify-content: center;
  }

  .hero-offer-bar {
    padding: 8px 10px;
  }

  .hero-offer-bar p {
    font-size: 12px;
  }

  .hero-cta-row {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 22px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .activity-card {
    grid-template-columns: 1fr;
  }

  .activity-card img {
    height: 170px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-card {
    padding: 8px;
  }

  .floating-contact {
    top: 56%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body,
  .bg-orb,
  .hero-copy.is-visible,
  .hero-side.is-visible,
  .hero-offer-bar.is-visible {
    animation: none !important;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================
   FINAL POLISH — BONE WHITE + YELLOW THEME + FIT & FINISH
   ========================= */
:root {
  --bg-0: #f6f0e4;
  --bg-1: #fbf7ee;
  --text: #261f17;
  --muted: #7a6a58;
  --line: rgba(255, 251, 240, 0.62);
  --line-soft: rgba(255, 250, 236, 0.34);
  --glass-white: rgba(255, 248, 234, 0.44);
  --glass-white-2: rgba(255, 245, 224, 0.24);
  --glass-blue: rgba(255, 223, 154, 0.12);
  --glass-green: rgba(228, 204, 123, 0.12);
  --glass-warm: rgba(255, 215, 142, 0.16);
  --accent: #d99b1f;
  --accent-dark: #bf8614;
  --green: #b57d17;
  --green-2: #d8a12a;
  --blue: #9a6b10;
  --shadow-soft: 0 14px 30px rgba(71, 52, 22, 0.08);
  --shadow-strong: 0 20px 40px rgba(71, 52, 22, 0.12);
}

body {
  color: var(--text);
  background:
    radial-gradient(980px 620px at 6% 6%, rgba(255, 212, 128, 0.16), transparent 62%),
    radial-gradient(980px 620px at 96% 8%, rgba(247, 227, 173, 0.18), transparent 64%),
    radial-gradient(980px 680px at 50% 100%, rgba(214, 175, 84, 0.08), transparent 62%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
}

.section-shell,
.glass-panel,
.glass-chip,
.section-heading,
.top-nav {
  border-color: rgba(255, 249, 236, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 253, 246, 0.65), 0 14px 28px rgba(80, 58, 24, 0.08);
}

.section-shell {
  background: linear-gradient(135deg, rgba(255, 248, 235, 0.42), rgba(255, 231, 179, 0.12));
}

.glass-panel {
  background: linear-gradient(135deg, rgba(255, 249, 239, 0.50), rgba(255, 228, 168, 0.14));
}

.glass-panel.warm {
  background: linear-gradient(135deg, rgba(255, 249, 239, 0.62), rgba(255, 216, 134, 0.20));
}

.glass-chip {
  background: linear-gradient(135deg, rgba(255, 249, 238, 0.40), rgba(255, 226, 160, 0.12));
}

.top-nav {
  background: linear-gradient(135deg, rgba(255, 249, 239, 0.58), rgba(255, 224, 156, 0.12));
}

.brand-text {
  color: #5f4416;
}

.nav-links li:first-child a,
.chip.active,
.why-num,
.avatar {
  background: linear-gradient(135deg, rgba(185, 130, 21, 0.92), rgba(223, 168, 49, 0.86));
  box-shadow: 0 10px 18px rgba(179, 130, 30, 0.18);
}

.nav-links a {
  background: linear-gradient(135deg, rgba(255, 249, 239, 0.48), rgba(255, 233, 184, 0.10));
  border-color: rgba(255, 248, 233, 0.78);
  color: rgba(44, 32, 20, 0.94);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: linear-gradient(135deg, rgba(255, 241, 208, 0.74), rgba(255, 227, 158, 0.22));
  border-color: rgba(237, 202, 119, 0.65);
  color: #885a08;
}

.nav-actions .btn-ghost,
.btn-ghost,
.btn-light,
.chip,
.package-points span,
.faq-icon,
.scroll-top {
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.70), rgba(255, 233, 182, 0.18));
  border-color: rgba(255, 249, 234, 0.82);
  color: #3e2f1b;
}

.btn-accent {
  background: linear-gradient(135deg, rgba(222, 159, 38, 0.96), rgba(196, 132, 22, 0.90));
  box-shadow: 0 12px 24px rgba(202, 144, 31, 0.22);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: linear-gradient(135deg, rgba(202, 139, 22, 0.98), rgba(176, 116, 13, 0.94));
}

.btn-dark {
  background: linear-gradient(135deg, #5e4315, #7b5718);
  box-shadow: 0 14px 28px rgba(109, 78, 23, 0.24);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: linear-gradient(135deg, #7a5514, #9a6b12);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 21, 12, 0.88) 0%, rgba(34, 25, 13, 0.80) 35%, rgba(37, 26, 13, 0.54) 60%, rgba(37, 26, 13, 0.24) 100%),
    linear-gradient(180deg, rgba(30, 21, 10, 0.10) 0%, rgba(30, 21, 10, 0.58) 100%);
}

.hero-copy,
.hero-breadcrumbs,
.hero-offer-bar,
.assist-card {
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.16), rgba(255, 224, 154, 0.08));
  border-color: rgba(255, 245, 224, 0.22);
}

.hero-kicker,
.hero-offer-bar p,
.hero-tags span {
  color: rgba(255, 246, 230, 0.90);
}

.offer-pill {
  background: linear-gradient(135deg, rgba(233, 167, 34, 0.96), rgba(204, 133, 17, 0.90));
  box-shadow: 0 10px 18px rgba(207, 144, 29, 0.18);
}

.pill.muted {
  background: rgba(255, 239, 199, 0.84);
  color: #8a5d0d;
}

.pill.rating,
.rating-tag {
  background: rgba(255, 244, 213, 0.90);
  color: #8a5d0d;
}

.eyebrow,
.text-link {
  color: #9a6b10;
}

.chip-dot,
.check-list li::before {
  background: linear-gradient(135deg, #bd851a, #dca630);
  box-shadow: 0 0 0 3px rgba(220, 166, 49, 0.16);
}

.feature-list li,
.mini-stats > div {
  background: linear-gradient(135deg, rgba(255, 249, 238, 0.60), rgba(255, 229, 169, 0.16));
  border-color: rgba(255, 247, 228, 0.72);
}

.badge {
  color: #6d4a0c;
  background: rgba(255, 248, 230, 0.88);
  border-color: rgba(255, 249, 236, 0.92);
}

#siteNav.mobile-nav-open .mobile-nav-toggle {
  background: linear-gradient(135deg, rgba(255, 241, 208, 0.88), rgba(255, 224, 156, 0.28));
  border-color: rgba(237, 202, 119, 0.75);
}

#siteNav.mobile-nav-open .mobile-nav-toggle span {
  background: #8a5d0d;
}

.scroll-top {
  color: #6d4a0c;
}

/* Desktop alignment polish */
.package-grid,
.why-grid,
.testimonial-grid,
.reach-grid,
.blog-grid {
  align-items: stretch;
}

.package-card,
.why-card,
.testimonial-card,
.reach-card,
.blog-card {
  height: 100%;
}

.package-card,
.testimonial-card,
.blog-card,
.why-card {
  display: flex;
  flex-direction: column;
}

.package-body,
.blog-content,
.reach-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-foot,
.blog-content .text-link,
.reach-content .btn {
  margin-top: auto;
}

.package-foot {
  padding-top: 2px;
}

.reach-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card > p:last-child {
  margin-top: auto;
  padding-top: 12px;
}

.section-heading {
  align-items: center;
}

.section-heading > * {
  min-width: 0;
}

.section-heading .btn {
  align-self: center;
}

.cta-banner {
  align-items: stretch;
}

.cta-copy,
.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Mobile fit & finish */
@media (max-width: 900px) {
  body {
    background:
      radial-gradient(760px 520px at 10% 6%, rgba(255, 218, 142, 0.16), transparent 62%),
      radial-gradient(760px 520px at 92% 8%, rgba(242, 223, 172, 0.18), transparent 64%),
      radial-gradient(760px 560px at 50% 100%, rgba(214, 175, 84, 0.10), transparent 64%),
      linear-gradient(180deg, var(--bg-0), var(--bg-1));
  }

  .top-nav,
  .hero,
  .trust-strip,
  .listing-section,
  .compare-layout,
  .activities-section,
  .gallery-block,
  .testimonial-section,
  .reach-section,
  .faq-section,
  .blog-section,
  .cta-banner,
  .site-footer {
    width: min(100%, calc(100% - 10px));
  }

  .top-nav {
    top: 5px;
    padding: 9px;
    border-radius: 14px;
  }

  .section-heading,
  .filter-chips {
    border-radius: 14px;
  }

  .hero-panel {
    gap: 10px;
    padding: 10px;
  }

  .hero-copy,
  .hero-side {
    border-radius: 14px;
  }

  .hero-copy h1,
  .section-heading h2,
  .cta-copy h2 {
    text-wrap: balance;
  }

  .section-heading p,
  .hero-lead,
  .package-text,
  .reach-content p,
  .blog-content p,
  .testimonial-card > p:last-child {
    text-wrap: pretty;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading .btn {
    width: 100%;
    align-self: stretch;
  }

  .package-card,
  .why-card,
  .activity-card,
  .testimonial-card,
  .reach-card,
  .blog-card {
    border-radius: 16px;
  }

  .media-wrap {
    padding: 10px 10px 0;
  }

  .media-wrap img {
    border-radius: 14px;
  }

  .gallery-card {
    border-radius: 16px;
  }

  .gallery-card img,
  .reach-card img,
  .blog-card img,
  .activity-card img {
    border-radius: 12px;
  }

  .faq-question {
    padding: 13px 14px;
  }

  .faq-answer p {
    padding: 0 14px 14px;
  }

  .floating-contact {
    top: 54%;
  }

  .scroll-top {
    bottom: 8px;
    right: 8px;
  }
}

@media (max-width: 640px) {
  .hero {
    border-radius: 18px;
  }

  .hero-copy,
  .hero-side,
  .section-heading,
  .filter-chips,
  .package-card,
  .why-card,
  .testimonial-card,
  .reach-card,
  .blog-card,
  .faq-item,
  .footer-col {
    border-radius: 14px;
  }

  .hero-breadcrumbs {
    padding: 7px 10px;
    gap: 6px;
  }

  .hero-tags {
    gap: 5px;
  }

  .hero-tags span {
    padding: 6px 7px;
  }

  .package-body,
  .blog-content,
  .reach-content {
    padding: 12px;
  }

  .section-heading,
  .activities-section,
  .testimonial-section,
  .reach-section,
  .faq-section,
  .blog-section,
  .cta-banner {
    padding: 10px;
  }

  .floating-contact {
    top: 58%;
  }
}

/* =========================
   FINAL FIT & FINISH — CLEANER HERO + CENTER ALIGN + WIDER DESKTOP + 3D BUTTONS
   ========================= */
:root {
  --wrap: min(1360px, calc(100% - 44px));
}

/* Stronger 3D button depth */
.btn,
.nav-links a,
.chip,
.mobile-nav-toggle,
.float-btn,
.scroll-top {
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -2px 0 rgba(76, 55, 20, 0.08),
    0 3px 0 rgba(118, 87, 28, 0.13),
    0 12px 20px rgba(69, 49, 19, 0.10) !important;
  transition:
    transform .22s cubic-bezier(.22,.61,.36,1),
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease,
    opacity .2s ease;
}

.btn:hover,
.btn:focus-visible,
.nav-links a:hover,
.nav-links a:focus-visible,
.chip:hover,
.chip:focus-visible,
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible,
.float-btn:hover,
.scroll-top:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -2px 0 rgba(76, 55, 20, 0.07),
    0 5px 0 rgba(118, 87, 28, 0.13),
    0 16px 24px rgba(69, 49, 19, 0.12) !important;
}

.btn:active,
.nav-links a:active,
.chip:active,
.mobile-nav-toggle:active,
.float-btn:active,
.scroll-top:active {
  transform: translateY(1px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(76, 55, 20, 0.06),
    0 1px 0 rgba(118, 87, 28, 0.10),
    0 8px 14px rgba(69, 49, 19, 0.10) !important;
}

.btn-accent,
.btn-whatsapp,
.btn-dark {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 0 rgba(70, 42, 10, 0.18),
    0 4px 0 rgba(133, 92, 21, 0.16),
    0 16px 24px rgba(106, 75, 24, 0.16) !important;
}

.btn-whatsapp {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 0 rgba(10, 92, 40, 0.18),
    0 4px 0 rgba(18, 124, 57, 0.20),
    0 16px 24px rgba(22, 121, 58, 0.18) !important;
}

.btn-dark {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(27, 19, 8, 0.25),
    0 4px 0 rgba(92, 65, 20, 0.18),
    0 16px 24px rgba(71, 50, 16, 0.18) !important;
}

/* Desktop feels less squeezed */
@media (min-width: 1200px) {
  .top-nav,
  .hero,
  .listing-section,
  .compare-layout,
  .gallery-block,
  .reach-section,
  .faq-section,
  .cta-banner,
  .site-footer {
    width: min(1360px, calc(100% - 48px));
  }

  .top-nav {
    padding: 12px 16px;
    gap: 18px;
  }

  .hero {
    min-height: 560px;
  }

  .section-heading {
    padding: 18px 22px;
  }
}

/* Cleaner hero banner (reduce clutter) */
.hero-panel {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 24px;
}

.hero-offer-bar {
  margin-inline: auto;
  justify-content: center;
  text-align: center;
}

.hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
}

.hero-copy {
  width: 100%;
  max-width: 860px;
  text-align: center;
  padding: 18px 20px;
}

.hero-copy h1 {
  max-width: none;
  margin-inline: auto;
}

.hero-lead {
  margin-inline: auto;
  max-width: 48ch;
}

.hero-kicker {
  text-align: center;
}

.hero-meta {
  grid-template-columns: minmax(240px, 320px);
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
}

.hero-meta .assist-card {
  display: none;
}

.hero-side {
  display: none;
}

/* Center align overall site content */
main {
  gap: 20px;
}

.section-heading {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-heading p {
  margin-inline: auto;
}

.section-heading .btn {
  align-self: center;
}

.compare-card,
.why-card,
.package-body,
.reach-content,
.cta-copy,
.footer-col,
.footer-bottom {
  text-align: center;
}

.feature-list li {
  text-align: center;
}

.package-points,
.cta-actions {
  justify-content: center;
}

.package-foot {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.package-foot .btn {
  min-width: 110px;
}

.reach-content .btn {
  margin-inline: auto;
}

.footer-col ul {
  justify-items: center;
}

.footer-col li {
  text-align: center;
}

.gallery-grid {
  justify-content: center;
}

/* Balanced heights and cleaner spacing after content trim */
.package-grid,
.why-grid,
.reach-grid {
  align-items: stretch;
}

.package-card,
.why-card,
.reach-card {
  height: 100%;
}

.package-body,
.reach-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-foot,
.reach-content .btn {
  margin-top: auto;
}

/* Mobile fit and center alignment */
@media (max-width: 900px) {
  .top-nav {
    width: min(100%, calc(100% - 8px));
    padding: 8px;
    gap: 8px;
  }

  .hero {
    width: min(100%, calc(100% - 8px));
    min-height: 640px;
  }

  .hero-panel {
    padding: 10px;
    gap: 10px;
  }

  .hero-copy {
    padding: 14px 12px;
  }

  .hero-meta {
    grid-template-columns: minmax(220px, 1fr);
    max-width: 300px;
  }

  .hero-copy h1 {
    font-size: 24px;
  }

  .hero-lead {
    max-width: 34ch;
  }

  .listing-section,
  .compare-layout,
  .gallery-block,
  .reach-section,
  .faq-section,
  .cta-banner,
  .site-footer {
    width: min(100%, calc(100% - 8px));
  }

  .section-heading {
    padding: 12px;
    gap: 10px;
  }

  .section-heading .btn {
    width: 100%;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reach-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-card.tall {
    grid-row: span 2;
  }

  .gallery-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .hero {
    min-height: 600px;
  }

  .hero-copy h1 {
    font-size: 21px;
    line-height: 1.14;
  }

  .hero-lead {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-offer-bar {
    padding: 8px 10px;
    gap: 8px;
  }

  .hero-offer-bar p {
    font-size: 12px;
  }
}

/* =========================
   FINAL DESKTOP REBALANCE — CLEAN HERO + LESS EMPTY/CLUTTERED DESKTOP
   ========================= */
@media (min-width: 901px) {
  :root {
    --wrap: min(1440px, calc(100% - 72px));
  }

  /* Hero: bring back a balanced desktop composition */
  .hero {
    min-height: 560px;
  }

  .hero-panel {
    align-items: stretch;
    justify-content: flex-end;
    text-align: left;
    gap: 12px;
    padding: 22px;
  }

  .hero-offer-bar {
    margin-inline: 0;
    justify-content: flex-start;
    text-align: left;
    max-width: 760px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    justify-items: stretch;
    align-items: end;
    max-width: 1160px;
    margin-inline: 0;
  }

  .hero-copy {
    max-width: none;
    text-align: left;
    padding: 18px;
  }

  .hero-kicker {
    text-align: left;
  }

  .hero-copy h1 {
    max-width: 16ch;
    margin-inline: 0;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-lead {
    margin-inline: 0;
    max-width: 56ch;
  }

  .hero-meta {
    grid-template-columns: 190px minmax(0, 1fr);
    justify-content: flex-start;
    margin-inline: 0;
    max-width: 720px;
  }

  .hero-meta .assist-card {
    display: block;
  }

  .hero-side {
    display: block;
    text-align: left;
    align-self: stretch;
  }

  /* Revert desktop content alignment for better readability */
  .section-heading {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .section-heading p {
    margin-inline: 0;
  }

  .section-heading .btn {
    align-self: flex-start;
    width: auto;
  }

  .compare-card,
  .why-card,
  .package-body,
  .reach-content,
  .cta-copy,
  .footer-col {
    text-align: left;
  }

  .footer-bottom {
    text-align: center;
  }

  .feature-list li {
    text-align: left;
  }

  .package-points {
    justify-content: flex-start;
  }

  .package-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 10px;
  }

  .package-foot .btn {
    min-width: 118px;
  }

  .reach-content .btn {
    margin-inline: 0;
  }

  .cta-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .cta-actions {
    justify-content: initial;
    align-content: center;
  }

  .footer-col ul {
    justify-items: start;
  }

  .footer-col li {
    text-align: left;
  }

  /* Slightly reduce visual noise in desktop hero copy box */
  .hero-copy {
    background: linear-gradient(135deg, rgba(255, 250, 242, 0.12), rgba(255, 224, 154, 0.06));
    border-color: rgba(255, 245, 224, 0.16);
  }

  .hero-side {
    background: linear-gradient(135deg, rgba(255, 249, 239, 0.54), rgba(255, 227, 171, 0.14));
    border-color: rgba(255, 248, 232, 0.66);
  }
}

/* Mobile hero: keep centered but fill the empty feeling a bit */
@media (max-width: 900px) {
  .hero-meta .assist-card {
    display: block;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero-meta .price-card,
  .hero-meta .assist-card {
    width: 100%;
  }

  .hero-meta .assist-card {
    text-align: center;
  }
}

/* =========================
   FINAL DESKTOP POLISH — LESS CLUTTER + BETTER FILL
   ========================= */
@media (min-width: 901px) {
  :root {
    --wrap: min(1500px, calc(100% - 40px));
  }

  .top-nav,
  .hero,
  .listing-section,
  .compare-layout,
  .gallery-block,
  .reach-section,
  .faq-section,
  .cta-banner,
  .site-footer {
    width: min(1500px, calc(100% - 40px));
  }

  main {
    gap: 16px;
  }

  /* Desktop hero: centered vertically so the banner doesn't feel empty */
  .hero {
    min-height: 520px;
  }

  .hero-panel {
    justify-content: center;
    padding: 26px;
    gap: 14px;
  }

  .hero-offer-bar {
    max-width: 640px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .hero-offer-bar p {
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    gap: 12px;
    max-width: 1120px;
  }

  .hero-copy {
    padding: 20px;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 22px rgba(38, 27, 12, 0.10);
  }

  .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(34px, 2.55vw, 42px);
    line-height: 1.06;
  }

  .hero-lead {
    max-width: 50ch;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-meta {
    grid-template-columns: 180px minmax(0, 1fr);
    max-width: 650px;
    gap: 8px;
  }

  .price-card,
  .assist-card {
    border-radius: 14px;
    padding: 11px 12px;
  }

  .assist-card span {
    font-size: 12px;
  }

  .assist-card p {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.38;
  }

  .hero-side {
    width: 300px;
    max-width: 100%;
    padding: 14px;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), 0 10px 20px rgba(74, 53, 22, 0.08);
  }

  .hero-side h3 {
    margin-top: 10px;
    font-size: 17px;
  }

  .check-list {
    margin-top: 10px;
    gap: 8px;
  }

  .check-list li {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-side .btn {
    margin-top: 12px;
    padding: 10px 12px;
    font-size: 13px;
  }

  /* Reduce boxed clutter on desktop headings */
  .section-heading {
    padding: 2px 4px 6px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 14px;
  }

  .section-heading h2 {
    font-size: clamp(24px, 2vw, 30px);
  }

  .section-heading p {
    max-width: 62ch;
  }

  /* Tighten desktop spacing so it feels finished instead of sparse */
  .package-grid {
    gap: 12px;
  }

  .compare-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 12px;
    align-items: start;
  }

  .why-grid,
  .gallery-grid,
  .reach-grid {
    gap: 10px;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }

  .faq-list {
    max-width: 980px;
    margin-inline: auto;
  }

  .faq-question {
    padding: 13px 15px;
  }

  .faq-answer p {
    padding: 0 15px 14px;
  }

  .compare-card,
  .why-card,
  .package-card,
  .reach-card,
  .faq-item,
  .footer-col {
    border-radius: 16px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: min(620px, 85vh);
  }
}

@media (max-width: 640px) {
  .top-nav {
    padding: 8px 10px 8px 6px;
    gap: 10px;
  }

  .hero {
    min-height: min(560px, 80vh);
  }
}

/* Collage hidden on mobile; CTA visible everywhere */
.hero-collage {
  display: none;
}

.hero-cta-desktop {
  display: inline-flex;
  margin-top: 12px;
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 12px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .hero-cta-desktop {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    min-height: 48px;
    font-size: 15px;
  }
}

/* =========================
   FINAL DESKTOP REFERENCE-STYLE LAYOUT (keep our colors/content)
   ========================= */
@media (min-width: 901px) {
  :root {
    --wrap: min(1520px, calc(100% - 36px));
  }

  .top-nav,
  .hero,
  .listing-section,
  .compare-layout,
  .gallery-block,
  .reach-section,
  .faq-section,
  .cta-banner,
  .site-footer {
    width: min(1520px, calc(100% - 36px));
  }

  body {
    background:
      radial-gradient(820px 520px at 18% 2%, rgba(255, 213, 116, 0.16), transparent 62%),
      radial-gradient(920px 560px at 98% 10%, rgba(244, 220, 154, 0.20), transparent 64%),
      linear-gradient(180deg, var(--bg-0), var(--bg-1));
  }

  /* Header closer to reference desktop spacing */
  .top-nav {
    padding: 10px 14px;
    border-radius: 18px;
    gap: 14px;
  }

  .nav-links {
    justify-content: center;
    gap: 8px;
    align-self: center;
    position: relative;
    top: 0;
    transform: none;
  }

  .nav-links a {
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 13px;
  }

  .nav-actions {
    align-self: center;
    position: relative;
    top: 0;
    gap: 8px;
  }

  .nav-actions .btn {
    padding-inline: 14px;
    min-height: 40px;
    font-size: 13px;
  }

  /* Hero: match reference split (copy + collage), keep our colors and text */
  .hero {
    min-height: 560px;
    border-radius: 26px;
  }

  .hero-overlay {
    background:
      linear-gradient(92deg, rgba(36, 25, 11, 0.92) 0%, rgba(37, 26, 12, 0.84) 34%, rgba(41, 28, 12, 0.52) 60%, rgba(41, 28, 12, 0.20) 100%),
      linear-gradient(180deg, rgba(31, 22, 10, 0.06) 0%, rgba(31, 22, 10, 0.50) 100%);
  }

  .hero-panel {
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    padding: 22px;
    text-align: left;
  }

  .hero-offer-bar {
    margin-inline: 0;
    max-width: 700px;
    justify-content: flex-start;
    text-align: left;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .hero-offer-bar p {
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    justify-items: stretch;
    max-width: 1160px;
    margin-inline: 0;
    gap: 14px;
  }

  .hero-copy {
    text-align: left;
    max-width: none;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 248, 236, 0.14), rgba(255, 214, 129, 0.08));
    border-color: rgba(255, 245, 223, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 24px rgba(41, 28, 12, 0.10);
  }

  .hero-kicker {
    text-align: left;
    margin-bottom: 6px;
    letter-spacing: 0.1em;
  }

  .hero-copy h1 {
    margin-inline: 0;
    max-width: 13ch;
    font-size: clamp(34px, 2.6vw, 42px);
    line-height: 1.05;
    margin-bottom: 8px;
  }

  .hero-lead {
    margin-inline: 0;
    max-width: 50ch;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-cta-desktop {
    display: inline-flex;
    margin-top: 12px;
    min-height: 44px;
    padding-inline: 16px;
    border-radius: 12px;
  }

  .hero-meta {
    margin-top: 12px;
    margin-inline: 0;
    grid-template-columns: 178px minmax(0, 1fr);
    max-width: 650px;
    gap: 8px;
    justify-content: flex-start;
  }

  .price-card,
  .assist-card {
    padding: 11px 12px;
    border-radius: 14px;
  }

  .price-card strong {
    font-size: 28px;
  }

  .assist-card span {
    font-size: 12px;
  }

  .assist-card p {
    font-size: 12px;
    line-height: 1.38;
    margin-top: 2px;
  }

  .hero-side {
    display: none;
  }

  .hero-collage {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: center;
  }

  .hero-collage-stack {
    position: relative;
    width: 360px;
    max-width: 100%;
    height: 316px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 250, 241, 0.18), rgba(255, 224, 154, 0.08));
    border: 1px solid rgba(255, 245, 227, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 28px rgba(39, 26, 12, 0.12);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    overflow: hidden;
  }

  .hero-collage-tile {
    position: absolute;
    object-fit: cover;
    border-radius: 999px;
    border: 4px solid rgba(255, 250, 240, 0.96);
    box-shadow: 0 18px 28px rgba(23, 15, 8, 0.16);
    background: #f7f2e9;
  }

  .hero-collage-tile.tile-main {
    width: 168px;
    height: 168px;
    left: 22px;
    top: 58px;
  }

  .hero-collage-tile.tile-top {
    width: 152px;
    height: 152px;
    right: 24px;
    top: 26px;
  }

  .hero-collage-tile.tile-bottom {
    width: 160px;
    height: 160px;
    right: 42px;
    bottom: 20px;
  }

  .hero-collage-plus {
    position: absolute;
    left: 156px;
    top: 190px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #4a3312;
    font-size: 22px;
    font-weight: 800;
    border: 1px solid rgba(255, 248, 235, 0.9);
    background: linear-gradient(135deg, rgba(255, 246, 223, 0.96), rgba(255, 226, 161, 0.78));
    box-shadow: 0 10px 18px rgba(88, 61, 18, 0.14);
  }

  .hero-collage-note {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 360px;
    max-width: 100%;
    padding: 10px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 249, 238, 0.70), rgba(255, 228, 170, 0.18));
  }

  .hero-collage-note strong {
    flex: 0 0 auto;
    font-size: 14px;
    color: #5f4212;
  }

  .hero-collage-note span {
    font-size: 12px;
    line-height: 1.35;
    color: #5f513f;
  }

  /* Desktop section headings: match reference (minimal, not boxed) */
  .section-heading {
    padding: 0 2px 6px;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-align: left;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .section-heading p {
    margin-inline: 0;
    max-width: 64ch;
  }

  .section-heading .btn {
    align-self: flex-start;
    width: auto;
    margin-top: 2px;
  }

  .listing-section,
  .compare-layout,
  .gallery-block,
  .reach-section,
  .faq-section,
  .cta-banner,
  .site-footer {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  /* Top resort cards (reference-style card structure) */
  #packages .package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  #packages .package-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.78), rgba(255, 233, 189, 0.16));
    border: 1px solid rgba(255, 248, 231, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 252, 244, 0.68), 0 16px 26px rgba(78, 56, 24, 0.09);
  }

  #packages .media-wrap {
    padding: 10px 10px 0;
  }

  #packages .media-wrap img {
    height: 190px;
    border-radius: 16px;
  }

  #packages .badge {
    left: 18px;
    top: 18px;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  #packages .package-body {
    gap: 6px;
    padding: 12px 12px 13px;
    text-align: left;
  }

  #packages .package-body h3 {
    font-size: 17px;
    line-height: 1.2;
  }

  #packages .package-meta {
    margin-top: 0;
    font-size: 12px;
    color: #6f5f4f;
  }

  #packages .package-text {
    display: none;
  }

  #packages .package-points {
    display: none;
  }

  #packages .package-foot {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(165, 126, 42, 0.16);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
  }

  #packages .package-foot small {
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7d6b55;
  }

  #packages .package-foot strong {
    font-size: 16px;
  }

  #packages .package-foot .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    border-radius: 12px;
    min-height: 42px;
  }

  /* Adventure/features section like reference: 4 steps + visual card */
  #about.compare-layout {
    position: relative;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 247, 227, 0.76);
    background: linear-gradient(135deg, rgba(255, 248, 234, 0.46), rgba(255, 230, 175, 0.10));
    box-shadow: inset 0 1px 0 rgba(255, 253, 246, 0.64), 0 18px 30px rgba(79, 57, 24, 0.08);
  }

  #about .section-heading {
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(165, 126, 42, 0.16);
  }

  #about .compare-grid {
    grid-template-columns: 1.1fr 0.95fr;
    gap: 12px;
    align-items: stretch;
  }

  #about .why-grid {
    order: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #about .compare-card {
    order: 2;
    position: relative;
    padding: 14px;
    border-radius: 18px;
    overflow: hidden;
    color: #fff7eb;
    background:
      linear-gradient(180deg, rgba(34, 24, 11, 0.22), rgba(34, 24, 11, 0.80)),
      url('images/ultimate.jpg') center/cover no-repeat;
    border: 1px solid rgba(255, 246, 223, 0.18);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 20px 30px rgba(35, 24, 11, 0.18);
  }

  #about .compare-card h3 {
    color: #fff9ef;
    font-size: 20px;
    margin-bottom: 6px;
  }

  #about .feature-list {
    gap: 8px;
    margin-top: 8px;
  }

  #about .feature-list li {
    text-align: left;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 249, 237, 0.18), rgba(255, 224, 153, 0.08));
    border: 1px solid rgba(255, 247, 229, 0.16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  #about .feature-list strong {
    color: #fffaf0;
  }

  #about .feature-list span {
    color: rgba(255, 247, 230, 0.86);
  }

  #about .why-card {
    border-radius: 16px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 249, 239, 0.72), rgba(255, 229, 171, 0.16));
    border: 1px solid rgba(255, 248, 232, 0.86);
    box-shadow: inset 0 1px 0 rgba(255, 253, 245, 0.66), 0 12px 18px rgba(80, 57, 24, 0.06);
  }

  #about .why-num {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 11px;
  }

  #about .why-card h4 {
    margin-top: 8px;
    font-size: 15px;
  }

  #about .why-card p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
  }

  /* Gallery section: reference-style showcase strip + tighter grid */
  #gallery .section-heading {
    padding-bottom: 10px;
  }

  #gallery .gallery-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 10px;
  }

  #gallery .gallery-card {
    border-radius: 18px;
    padding: 9px;
  }

  #gallery .gallery-card img {
    border-radius: 14px;
  }

  /* Reach cards styled like reference's second card grid */
  #reach.reach-section {
    padding: 18px;
    border-radius: 22px;
  }

  #reach .section-heading {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(165, 126, 42, 0.14);
    margin-bottom: 2px;
  }

  #reach .reach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  #reach .reach-card {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.78), rgba(255, 231, 182, 0.16));
  }

  #reach .reach-card img {
    height: 206px;
  }

  #reach .reach-content {
    padding: 12px;
    text-align: left;
  }

  #reach .reach-content h3 {
    font-size: 16px;
  }

  #reach .reach-content p {
    font-size: 12px;
    line-height: 1.45;
  }

  #reach .reach-content .btn {
    width: 100%;
    border-radius: 12px;
    min-height: 40px;
  }

  /* FAQ + CTA kept, but cleaner desktop spacing to avoid clutter */
  #faq.faq-section,
  #contact.cta-banner {
    border-radius: 22px;
  }

  #faq .faq-list {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #faq .faq-item {
    border-radius: 14px;
  }

  #contact.cta-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px;
  }

  #contact .cta-copy {
    text-align: left;
  }

  #contact .cta-actions {
    min-width: 260px;
    justify-content: center;
  }

  /* Footer feels closer to reference: flatter panels, tighter spacing */
  .site-footer {
    padding-top: 6px;
    padding-bottom: 96px;
  }

  .footer-grid {
    gap: 10px;
  }

  .footer-col {
    border-radius: 16px;
    padding: 12px;
    text-align: left;
  }

  .footer-col ul {
    justify-items: start;
  }

  .footer-bottom {
    margin-top: 10px;
    border-radius: 14px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  #packages .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .hero-collage-stack,
  .hero-collage-note {
    width: 320px;
  }

  .hero-collage-stack {
    height: 290px;
  }

  .hero-collage-tile.tile-main {
    width: 150px;
    height: 150px;
    left: 16px;
    top: 54px;
  }

  .hero-collage-tile.tile-top {
    width: 138px;
    height: 138px;
    right: 18px;
    top: 22px;
  }

  .hero-collage-tile.tile-bottom {
    width: 144px;
    height: 144px;
    right: 34px;
    bottom: 16px;
  }

  .hero-collage-plus {
    left: 136px;
    top: 175px;
  }

  #about .compare-grid {
    grid-template-columns: 1fr;
  }

  #about .compare-card {
    min-height: 300px;
  }
}

/* =========================
   CARD LAYOUT FIX — fill grid cells properly
   ========================= */
@media (min-width: 901px) {
  #packages .package-grid,
  #reach .reach-grid {
    align-items: stretch;
  }

  #packages .package-card,
  #reach .reach-card {
    width: 100%;
    height: 100%;
  }

  #packages .package-body {
    height: auto;
    align-content: start;
  }

  #packages .media-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  #about .compare-grid {
    align-items: stretch;
  }

  #about .compare-card {
    min-height: 340px;
  }

  #reach .reach-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}

/* =========================
   MOBILE RESPONSIVE POLISH
   ========================= */
@media (max-width: 900px) {
  /* Ensure all interactive elements meet 44px touch target */
  .package-foot .btn,
  .reach-content .btn,
  .cta-actions .btn,
  .faq-question {
    min-height: 44px;
  }

  /* Package cards: full-width image with better proportion */
  .media-wrap img {
    height: 200px;
  }

  /* Reach cards: taller images on mobile for impact */
  .reach-card img {
    height: 180px;
    object-fit: cover;
  }

  /* FAQ: slightly more breathing room */
  .faq-list {
    gap: 8px;
  }

  /* Prevent floating buttons from overlapping narrow content */
  .floating-contact {
    right: 6px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }

  /* Footer: more compact on mobile */
  .site-footer {
    padding-bottom: 80px;
  }

  /* CTA section: stack nicely */
  .cta-actions .btn {
    width: 100%;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  /* Smaller screens: tighter but still comfortable */
  .media-wrap img {
    height: 180px;
  }

  .reach-card img {
    height: 160px;
  }

  /* Ensure price card text is readable */
  .price-card strong {
    font-size: 22px;
  }

  /* Stack package footer for small screens */
  .package-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .package-foot .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile: slightly larger headline so it reads with more authority */
@media (max-width: 900px) {
  .hero-copy h1 {
    font-size: 27px;
    line-height: 1.12;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 23px;
    line-height: 1.13;
  }
}

/* =========================
   MEDIUM MOBILE GRID FIX (520–900px)
   — restore 2-column layouts that collapse too early
   ========================= */
@media (min-width: 520px) and (max-width: 900px) {

  /* Package grid: 2 columns */
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .media-wrap img {
    height: 168px;
  }

  /* Why cards: 2 columns */
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  /* Reach cards: 2 columns, 3rd card spans full row */
  .reach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .reach-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: stretch;
  }

  .reach-card:last-child img {
    height: 100%;
    object-fit: cover;
  }

  /* Gallery: 2-column with tall and wide spans restored */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 165px;
  }

  .gallery-card.tall {
    grid-row: span 2;
  }

  .gallery-card.wide {
    grid-column: span 2;
  }

  /* FAQ: slightly more compact */
  .faq-list {
    gap: 8px;
  }
}

/* ============================================================
   DESKTOP REDESIGN — full override for a clean, premium look
   ============================================================ */
@media (min-width: 901px) {

  /* ── 1. Content width: focused, not sprawling ── */
  :root {
    --wrap: min(1280px, calc(100% - 48px));
  }

  .top-nav,
  .hero,
  .listing-section,
  .compare-layout,
  .gallery-block,
  .reach-section,
  .faq-section,
  .cta-banner,
  .site-footer {
    width: var(--wrap);
  }

  main {
    gap: 20px;
    margin-top: 20px;
  }

  /* ── 2. Navigation ── */
  .top-nav {
    padding: 12px 20px;
    border-radius: 20px;
    gap: 18px;
  }

  .nav-links a {
    padding: 9px 13px;
    font-size: 13px;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 13px;
  }

  /* ── 3. Hero ── */
  .hero {
    min-height: 680px;
    border-radius: 28px;
  }

  .hero-panel {
    padding: 30px;
    gap: 14px;
    justify-content: center;
    align-items: stretch;
    text-align: left;
  }

  .hero-offer-bar {
    margin-inline: 0;
    max-width: 680px;
    justify-content: flex-start;
    padding: 9px 14px;
    border-radius: 12px;
  }

  .hero-offer-bar p {
    font-size: 13px;
  }

  /* Hero grid: full-width, no constrained max-width that leaves dead space */
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 16px;
    max-width: none;
    align-items: center;
    justify-items: stretch;
    margin-inline: 0;
  }

  .hero-copy {
    text-align: left;
    max-width: none;
    padding: 24px;
    border-radius: 20px;
  }

  .hero-kicker {
    text-align: left;
    margin-bottom: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 3vw, 52px);
    line-height: 1.04;
    max-width: 14ch;
    margin-inline: 0;
    margin-bottom: 10px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.58;
    max-width: 50ch;
    margin-inline: 0;
  }

  .hero-cta-desktop {
    display: inline-flex;
    margin-top: 18px;
    min-height: 48px;
    padding-inline: 24px;
    font-size: 15px;
    border-radius: 14px;
  }

  .hero-meta {
    margin-top: 16px;
    margin-inline: 0;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 10px;
    max-width: none;
    justify-content: flex-start;
  }

  .hero-side {
    display: none;
  }

  /* Hero collage: photo grid (rectangles) instead of overlapping circles */
  .hero-collage {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: stretch;
    justify-content: center;
  }

  .hero-collage-stack {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
    /* Switch from absolute-positioned circles to CSS grid */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 7px;
    padding: 0;
    background: rgba(40, 27, 10, 0.45);
    border: none;
    box-shadow: 0 20px 32px rgba(39, 26, 12, 0.16);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Override the circle positioning — make them fill grid cells */
  .hero-collage-tile {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: #c9b99a;
  }

  .tile-main {
    grid-column: 1;
    grid-row: span 2;
  }

  .tile-top {
    grid-column: 2;
    grid-row: 1;
  }

  .tile-bottom {
    grid-column: 2;
    grid-row: 2;
  }

  /* Plus badge at grid centre */
  .hero-collage-plus {
    position: absolute;
    left: calc(50% - 16px);
    top: calc(50% - 16px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #4a3312;
    background: rgba(255, 247, 224, 0.95);
    border: 1.5px solid rgba(255, 249, 235, 0.9);
    box-shadow: 0 4px 12px rgba(60, 40, 10, 0.18);
    z-index: 1;
  }

  .hero-collage-note {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 249, 238, 0.72), rgba(255, 228, 170, 0.18));
  }

  .hero-collage-note strong {
    font-size: 18px;
    color: #5f4212;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hero-collage-note span {
    font-size: 13px;
    color: #5f513f;
    line-height: 1.38;
  }

  /* ── 4. Section headings: restore glass panel for visual structure ── */
  .section-heading {
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(255, 249, 239, 0.56), rgba(255, 228, 170, 0.12));
    border: 1px solid rgba(255, 248, 231, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 253, 245, 0.64), 0 8px 20px rgba(78, 56, 24, 0.06);
    border-radius: 18px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
  }

  .section-heading h2 {
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.12;
    margin-top: 4px;
  }

  .section-heading p {
    margin-inline: 0;
    max-width: 58ch;
  }

  .section-heading .btn {
    align-self: center;
    width: auto;
    flex-shrink: 0;
    margin-top: 0;
  }

  /* ── 5. Package section: 2×2 grid — roomier, more premium ── */
  #packages .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  #packages .package-card {
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  #packages .media-wrap {
    padding: 12px 12px 0;
  }

  #packages .media-wrap img {
    height: 240px;
    width: 100%;
    aspect-ratio: unset;
    border-radius: 16px;
    object-fit: cover;
  }

  #packages .badge {
    left: 20px;
    top: 20px;
    font-size: 11px;
    padding: 6px 11px;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  #packages .package-body {
    padding: 18px 18px 20px;
    gap: 8px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  #packages .package-body h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  #packages .package-meta {
    font-size: 13px;
    color: #7a6a58;
    margin-top: 0;
  }

  #packages .package-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.5;
    color: #7a6a58;
    margin-top: 2px;
  }

  #packages .package-points {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
  }

  #packages .package-points span {
    font-size: 12px;
    padding: 6px 10px;
  }

  #packages .package-foot {
    margin-top: auto;
    padding-top: 14px;
    padding-bottom: 0;
    border-top: 1px solid rgba(165, 126, 42, 0.14);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 12px;
  }

  #packages .package-foot small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7d6b55;
  }

  #packages .package-foot strong {
    font-size: 20px;
    line-height: 1;
  }

  #packages .package-foot .btn {
    width: auto;
    min-width: 130px;
    min-height: 44px;
    flex-shrink: 0;
    justify-content: center;
    border-radius: 12px;
  }

  /* ── 6. About/Why section ── */
  #about.compare-layout {
    padding: 22px;
    border-radius: 24px;
  }

  #about .compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
  }

  #about .why-grid {
    order: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #about .why-card {
    padding: 16px;
    border-radius: 18px;
  }

  #about .why-num {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 12px;
  }

  #about .why-card h4 {
    margin-top: 10px;
    font-size: 16px;
  }

  #about .why-card p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.45;
  }

  #about .compare-card {
    order: 2;
    min-height: 380px;
    border-radius: 20px;
    padding: 20px;
  }

  /* ── 7. Gallery ── */
  #gallery .gallery-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 12px;
  }

  #gallery .gallery-card {
    border-radius: 20px;
    padding: 10px;
  }

  #gallery .gallery-card img {
    border-radius: 14px;
  }

  /* ── 8. Reach section ── */
  #reach.reach-section {
    padding: 22px;
    border-radius: 24px;
  }

  #reach .reach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  #reach .reach-card {
    border-radius: 20px;
  }

  #reach .reach-card img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
  }

  #reach .reach-content {
    padding: 16px;
    text-align: left;
  }

  #reach .reach-content h3 {
    font-size: 17px;
  }

  #reach .reach-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 6px;
  }

  #reach .reach-content .btn {
    margin-top: 14px;
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
  }

  /* ── 9. FAQ ── */
  #faq.faq-section {
    padding: 22px;
    border-radius: 24px;
  }

  #faq .faq-list {
    max-width: none;
    gap: 10px;
  }

  #faq .faq-item {
    border-radius: 16px;
  }

  #faq .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  #faq .faq-answer p {
    padding: 0 18px 16px;
    font-size: 14px;
  }

  /* ── 10. CTA ── */
  #contact.cta-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 32px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(219, 159, 34, 0.14), rgba(255, 210, 106, 0.07));
    border-color: rgba(210, 155, 30, 0.22);
  }

  #contact .cta-copy {
    text-align: left;
  }

  #contact .cta-copy h2 {
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.14;
    margin-top: 4px;
  }

  #contact .cta-actions {
    min-width: 270px;
    gap: 12px;
    justify-content: center;
  }

  #contact .cta-actions .btn {
    min-height: 50px;
    font-size: 15px;
    border-radius: 14px;
  }

  /* ── 11. Footer ── */
  .site-footer {
    padding-top: 8px;
    padding-bottom: 100px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 14px;
  }

  .footer-col {
    padding: 18px 20px;
    border-radius: 18px;
    text-align: left;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col p,
  .footer-col ul {
    margin-top: 10px;
  }

  .footer-col ul {
    justify-items: start;
    gap: 8px;
  }

  .footer-col li {
    text-align: left;
  }

  .footer-bottom {
    margin-top: 12px;
    padding: 14px 20px;
    border-radius: 14px;
  }
}

/* Medium desktop (901–1100px): tighter collage */
@media (min-width: 901px) and (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  #packages .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
