:root {
  --teal: #159b9b;
  --teal-bright: #1eb6b2;
  --teal-dark: #0b6668;
  --teal-deep: #074d50;
  --mint: #e9f8f6;
  --mint-strong: #d6f1ee;
  --sun: #1de099;
  --sun-dark: #169586;
  --button-gradient: linear-gradient(45deg, #1de099, #1dc8cd);
  --button-gradient-hover: linear-gradient(45deg, #22eaa2, #24d5da);
  --ink: #153b3d;
  --muted: #5f7374;
  --paper: #ffffff;
  --warm: #fffaf1;
  --line: rgba(11, 102, 104, 0.16);
  --shadow: 0 22px 60px rgba(7, 77, 80, 0.13);
  --shadow-soft: 0 12px 34px rgba(7, 77, 80, 0.09);
  --radius: 26px;
  --radius-small: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 5.4vw, 5.8rem);
  font-weight: 300;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 3.8vw, 4.1rem);
  font-weight: 300;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.35;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: var(--paper);
  background: var(--teal-deep);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(10, 119, 120, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(5, 74, 77, 0.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  min-width: 184px;
  align-items: center;
}

.brand-logo {
  width: 188px;
  height: auto;
}

.brand-logo-footer {
  width: 210px;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 23px;
  font-size: 0.76rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--paper);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  background: var(--button-gradient);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(29, 224, 153, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--button-gradient-hover);
  box-shadow: 0 15px 36px rgba(29, 224, 153, 0.3);
  filter: saturate(1.06);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(29, 224, 153, 0.82);
  outline-offset: 4px;
}

.button-small {
  min-height: 40px;
  padding: 10px 17px;
  font-size: 0.7rem;
}

.header-cta {
  flex: 0 0 auto;
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible,
.button-white {
  color: var(--teal-deep);
  background: var(--paper);
  border-color: var(--paper);
}

.button-white:hover,
.button-white:focus-visible {
  background: var(--mint);
}

.button-full {
  width: 100%;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--paper);
  background: var(--teal-dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("../images/optimized/hero.webp");
  background-position: center center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 74, 77, 0.95) 0%, rgba(7, 92, 94, 0.84) 44%, rgba(7, 92, 94, 0.2) 76%, rgba(7, 92, 94, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 74, 77, 0.38), transparent 55%);
}

.hero-content {
  position: relative;
  display: grid;
  min-height: 760px;
  padding-top: 108px;
  padding-bottom: 96px;
  align-items: center;
  gap: 74px;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
}

.hero-copy {
  max-width: 850px;
}

.hero h1 {
  max-width: none;
  margin-bottom: 32px;
  font-size: clamp(2.9rem, 4.1vw, 4.4rem);
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  margin: 34px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 13px 24px;
  font-size: 0.75rem;
  list-style: none;
  opacity: 0.9;
}

.hero-trust li::before {
  margin-right: 7px;
  color: var(--sun);
  content: "✓";
  font-weight: 700;
}

.hero-dates {
  display: flex;
  width: fit-content;
  margin: 0 0 36px;
  padding: 15px 20px;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-dates div {
  display: grid;
  gap: 3px;
}

.hero-dates strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-dates span {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.72;
  text-transform: uppercase;
}

.hero-dates i {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-portrait-slot {
  position: relative;
  min-height: 640px;
  align-self: end;
  pointer-events: none;
}

.hero-portrait-slot img {
  position: absolute;
  bottom: -96px;
  left: 50%;
  width: min(100%, 480px);
  max-height: 650px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 28px rgba(4, 48, 50, 0.28));
  transform: translateX(-50%);
}

.quick-facts {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.facts-grid article {
  padding: 27px 22px;
  border-right: 1px solid var(--line);
}

.facts-grid article:first-child {
  border-left: 1px solid var(--line);
}

.facts-grid strong,
.facts-grid span {
  display: block;
}

.facts-grid strong {
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.facts-grid span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.section {
  padding: 112px 0;
}

.section-tint {
  background: var(--mint);
}

.section-heading {
  max-width: 620px;
}

.section-heading > p:not(.eyebrow),
.accommodation-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading-centered {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.sticky-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.text-link,
.whatsapp-link {
  display: inline-flex;
  padding-bottom: 3px;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
}

.about-grid {
  display: grid;
  gap: 78px;
  grid-template-columns: 0.8fr 1.2fr;
}

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

.need-grid article {
  min-height: 218px;
  padding: 28px;
  background: var(--warm);
  border: 1px solid rgba(29, 224, 153, 0.2);
  border-radius: var(--radius-small);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.need-grid article:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.need-grid span,
.program-card > div > span,
.digital-cards span,
.master-copy > span,
.expense-card > span,
.accommodation-card > span,
.review-proof-copy > span,
.form-heading > span,
.program-price-main > span {
  display: block;
  margin-bottom: 17px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.need-grid h3 {
  font-size: 1.05rem;
}

.need-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.outcome-layout {
  display: grid;
  align-items: stretch;
  gap: 70px;
  grid-template-columns: 0.86fr 1.14fr;
}

.outcome-photo {
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.outcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcome-copy {
  align-self: center;
}

.outcome-list {
  margin-top: 38px;
}

.outcome-list article {
  display: grid;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  gap: 20px;
  grid-template-columns: 48px 1fr;
}

.outcome-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.outcome-list strong {
  color: var(--teal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.8rem;
}

.outcome-list h3 {
  margin-bottom: 6px;
}

.outcome-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.digital-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 10%, rgba(30, 182, 178, 0.34), transparent 34%),
    linear-gradient(135deg, var(--teal-deep), var(--teal-dark));
}

.digital-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: 0.84fr 1.16fr;
}

.digital-copy {
  align-self: center;
}

.digital-lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
}

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

.digital-cards article {
  min-height: 245px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-small);
}

.digital-cards span {
  color: #8ce5df;
}

.digital-cards p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}

.program-section {
  overflow: hidden;
}

.program-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.program-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.program-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.92fr 1.08fr;
}

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

.program-card-wide img {
  height: 100%;
  min-height: 460px;
}

.program-card > div {
  padding: 34px;
}

.program-card h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.program-card ul {
  margin: 20px 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.82rem;
}

.program-card li + li {
  margin-top: 7px;
}

.value-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 12px;
  font-size: 0.8rem;
}

.program-card-final {
  color: var(--paper);
  background: var(--teal-deep);
}

.program-card-final > div > span {
  color: #8ce5df;
}

.program-card-final ul {
  color: rgba(255, 255, 255, 0.8);
}

.program-card-final .value-note {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

.travel-days {
  display: grid;
  margin-top: 24px;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.travel-days article {
  display: flex;
  padding: 22px 26px;
  align-items: center;
  gap: 22px;
  background: var(--warm);
  border: 1px solid rgba(29, 224, 153, 0.24);
  border-radius: var(--radius-small);
}

.travel-days strong {
  color: var(--sun-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.5rem;
}

.travel-days span {
  color: var(--muted);
  font-size: 0.78rem;
}

.place-layout {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.78fr 1.22fr;
}

.check-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 800;
}

.place-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.place-gallery figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-small);
}

.place-gallery .place-main {
  height: 390px;
  grid-column: 1 / -1;
}

.place-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.place-gallery figure:hover img {
  transform: scale(1.035);
}

.place-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  color: var(--paper);
  background: rgba(7, 77, 80, 0.82);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 700;
}

.masters-grid {
  display: grid;
  gap: 28px;
}

.master-card {
  display: grid;
  min-height: 600px;
  overflow: hidden;
  background: var(--mint);
  border-radius: var(--radius);
  grid-template-columns: 0.83fr 1.17fr;
}

.master-card-reverse {
  grid-template-columns: 1.17fr 0.83fr;
}

.master-card-reverse .master-photo {
  order: 2;
}

.master-photo {
  min-height: 600px;
}

.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.master-copy {
  padding: 65px;
  align-self: center;
}

.master-copy h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 600;
}

.master-copy p,
.master-copy ul {
  color: var(--muted);
}

.master-copy ul {
  margin: 24px 0 0;
  padding-left: 20px;
  font-size: 0.82rem;
}

.master-copy li + li {
  margin-top: 9px;
}

.reviews-section {
  color: var(--paper);
  background: var(--teal-deep);
}

.reviews-layout {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.84fr 1.16fr;
}

.section-heading-light h2,
.section-heading-light p:not(.eyebrow) {
  color: var(--paper);
}

.review-proof {
  display: grid;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  grid-template-columns: 0.74fr 1.26fr;
}

.review-proof > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.review-proof-copy {
  padding: 48px;
  align-self: center;
}

.review-proof-copy h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
}

.review-proof-copy p {
  color: var(--muted);
}

.review-proof-copy a {
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.program-price-card {
  display: grid;
  overflow: hidden;
  color: var(--paper);
  background: var(--teal-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-template-columns: 0.9fr 1.1fr;
}

.program-price-main,
.program-includes {
  padding: 55px;
}

.program-price-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
}

.program-price-main > span {
  color: rgba(255, 255, 255, 0.75);
}

.price-value strong,
.price-value small {
  display: block;
}

.price-value strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(4.3rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.82;
}

.price-value small {
  margin-top: 13px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-price-main > p {
  margin: 27px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.deposit-note {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
}

.deposit-note strong,
.deposit-note span {
  display: block;
}

.deposit-note strong {
  margin-bottom: 6px;
  color: #78f4c5;
}

.deposit-note span {
  font-size: 0.74rem;
  opacity: 0.78;
}

.program-includes h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.program-includes .check-list {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.program-includes .check-list li::before {
  color: #8ce5df;
}

.expense-grid {
  display: grid;
  margin-top: 24px;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.expense-card {
  padding: 40px;
  background: var(--warm);
  border: 1px solid rgba(29, 224, 153, 0.22);
  border-radius: var(--radius-small);
}

.expense-card-separate {
  background: var(--mint);
  border-color: var(--line);
}

.expense-card h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
}

.expense-card ul {
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.expense-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.expense-card .text-link {
  margin-top: 18px;
}

.accommodation-heading {
  max-width: 780px;
  margin: 92px auto 40px;
  text-align: center;
}

.accommodation-grid {
  display: grid;
  align-items: stretch;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.accommodation-card {
  position: relative;
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.accommodation-card-featured {
  border: 2px solid var(--teal);
}

.popular {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 8px 14px;
  color: var(--teal-deep);
  background: var(--sun);
  border-radius: 0 0 12px 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accommodation-card h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
}

.accommodation-price {
  display: inline-block;
  margin: 5px 0 13px;
  padding: 7px 12px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.accommodation-card .check-list {
  min-height: 170px;
  color: var(--muted);
  font-size: 0.82rem;
}

.companion-note {
  display: grid;
  margin-top: 20px;
  padding: 28px 34px;
  align-items: center;
  gap: 30px;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: var(--radius-small);
  grid-template-columns: 0.5fr 1.5fr;
}

.companion-note strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.companion-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.faq-layout {
  display: grid;
  gap: 74px;
  grid-template-columns: 0.7fr 1.3fr;
}

.faq-list details {
  padding: 0;
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 54px 23px 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  content: "+";
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 50px 24px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.consultation {
  padding: 110px 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(7, 77, 80, 0.96), rgba(21, 155, 155, 0.88)),
    url("../images/optimized/phuket-view.webp") center/cover;
}

.consultation-grid {
  display: grid;
  align-items: center;
  gap: 75px;
  grid-template-columns: 0.84fr 1.16fr;
}

.consultation-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.consultation-copy ul {
  margin: 27px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  list-style: none;
}

.consultation-copy li + li {
  margin-top: 9px;
}

.consultation-copy li::before {
  margin-right: 10px;
  color: var(--sun);
  content: "✓";
  font-weight: 800;
}

.whatsapp-link {
  color: var(--paper);
}

.consultation-form {
  padding: 35px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading {
  padding: 0 12px 18px;
}

.form-heading h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 600;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.consultation-form iframe {
  display: block;
  width: 100%;
  min-height: 590px;
  border: 0;
}

.site-footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #063f42;
}

.footer-grid {
  display: grid;
  padding-bottom: 50px;
  gap: 70px;
  grid-template-columns: 1.15fr 0.85fr 1fr;
}

.brand-footer {
  color: var(--paper);
}

.footer-grid p {
  margin-top: 20px;
  font-size: 0.75rem;
}

.footer-grid h2 {
  margin-bottom: 19px;
  color: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  margin-top: 10px;
  font-size: 0.71rem;
}

.footer-grid > div > a:hover,
.footer-grid > div > a:focus-visible {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.61rem;
}

.mobile-consultation {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 0.68rem;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  }

  .hero-portrait-slot {
    min-height: 500px;
  }

  .about-grid,
  .outcome-layout,
  .digital-grid,
  .place-layout,
  .reviews-layout,
  .faq-layout,
  .consultation-grid {
    gap: 48px;
  }

  .master-copy,
  .program-price-main,
  .program-includes {
    padding: 42px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    min-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    place-content: center;
    gap: 5px;
    color: inherit;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .mobile-nav:not([hidden]) {
    display: flex;
    position: fixed;
    z-index: 49;
    top: 70px;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100vh - 70px);
    padding: 32px 20px;
    flex-direction: column;
    gap: 0;
    color: var(--paper);
    background: var(--teal-deep);
    overflow-y: auto;
  }

  .mobile-nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .hero-content {
    display: block;
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 0;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(5, 74, 77, 0.95), rgba(7, 92, 94, 0.68));
  }

  .hero-portrait-slot {
    display: block;
    width: min(72vw, 440px);
    min-height: 600px;
    margin: -24px -28px -104px auto;
  }

  .hero-portrait-slot img {
    bottom: 0;
    width: 100%;
    max-height: none;
  }

  .hero-dates {
    flex-wrap: wrap;
    border-radius: 18px;
  }

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

  .facts-grid article:nth-child(4),
  .facts-grid article:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .facts-grid article:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 86px 0;
  }

  .about-grid,
  .outcome-layout,
  .digital-grid,
  .place-layout,
  .reviews-layout,
  .faq-layout,
  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .outcome-photo {
    min-height: 500px;
  }

  .program-card-wide,
  .master-card,
  .master-card-reverse,
  .program-price-card,
  .review-proof {
    grid-template-columns: 1fr;
  }

  .program-card-wide img,
  .master-photo,
  .review-proof > img {
    height: 480px;
    min-height: 0;
  }

  .master-card-reverse .master-photo {
    order: 0;
  }

  .expense-grid,
  .accommodation-grid {
    grid-template-columns: 1fr;
  }

  .accommodation-card .check-list {
    min-height: auto;
  }

  .companion-note {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  body {
    font-size: 15px;
    padding-bottom: 64px;
  }

  .consultation-grid > *,
  .review-proof > *,
  .program-price-card > *,
  .accommodation-grid > * {
    min-width: 0;
  }

  .review-proof > img,
  .consultation-form iframe {
    width: 100%;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-logo {
    width: 148px;
  }

  .brand-logo-footer {
    width: 180px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.2vw, 3.4rem);
  }

  .hero h1 {
    margin-bottom: 26px;
    font-size: clamp(1.72rem, 7.2vw, 2.8rem);
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    background-position: 58% center;
  }

  .hero-content {
    display: flex;
    min-height: auto;
    padding-top: 106px;
    padding-bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero-copy {
    display: contents;
  }

  .hero .eyebrow {
    order: 1;
  }

  .hero h1 {
    order: 2;
  }

  .hero-lead {
    order: 3;
  }

  .hero-portrait-slot {
    order: 4;
    width: min(76vw, 300px);
    min-height: 450px;
    margin: -42px 0 -82px auto;
  }

  .hero-dates {
    order: 5;
  }

  .hero-actions {
    order: 6;
  }

  .hero-trust {
    order: 7;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    margin-top: 30px;
    gap: 9px;
  }

  .hero-dates {
    width: 100%;
    margin-bottom: 30px;
    padding: 14px 15px;
    justify-content: space-between;
    gap: 10px;
    border-radius: 16px;
  }

  .hero-dates strong {
    font-size: 0.72rem;
  }

  .hero-dates span {
    font-size: 0.5rem;
  }

  .hero-dates i {
    height: 30px;
  }

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

  .facts-grid article,
  .facts-grid article:first-child,
  .facts-grid article:nth-child(4) {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts-grid article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .facts-grid article:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding: 72px 0;
  }

  .need-grid,
  .digital-cards,
  .program-grid,
  .travel-days,
  .place-gallery {
    grid-template-columns: 1fr;
  }

  .need-grid article {
    min-height: auto;
  }

  .outcome-photo {
    min-height: 390px;
  }

  .outcome-list article {
    gap: 12px;
    grid-template-columns: 38px 1fr;
  }

  .digital-cards article {
    min-height: auto;
  }

  .program-card-wide {
    grid-column: auto;
  }

  .program-card img,
  .program-card-wide img {
    height: 260px;
  }

  .program-card > div,
  .expense-card,
  .accommodation-card,
  .review-proof-copy,
  .consultation-form {
    padding: 26px;
  }

  .program-card h3 {
    font-size: 1.72rem;
  }

  .travel-days article {
    display: grid;
    gap: 4px;
  }

  .place-gallery .place-main,
  .place-gallery figure {
    height: 260px;
    min-height: 0;
    grid-column: auto;
  }

  .master-card,
  .master-card-reverse {
    min-height: 0;
  }

  .program-card-wide img,
  .master-photo,
  .review-proof > img {
    height: 380px;
  }

  .master-copy,
  .program-price-main,
  .program-includes {
    padding: 30px;
  }

  .master-copy h3 {
    font-size: 2.4rem;
  }

  .price-value strong {
    font-size: 4.7rem;
  }

  .popular {
    position: static;
    display: inline-block;
    margin: -26px 0 25px;
    border-radius: 0 0 10px 10px;
  }

  .companion-note {
    padding: 25px;
    gap: 12px;
  }

  .faq-list summary {
    padding-right: 46px;
  }

  .consultation {
    padding: 72px 0;
  }

  .consultation-form iframe {
    min-height: 640px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-consultation {
    position: fixed;
    z-index: 45;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--teal-deep);
    background: var(--button-gradient);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(7, 77, 80, 0.3);
    font-size: 0.76rem;
    font-weight: 800;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
