:root {
  --bg: #f3f0e8;
  --paper: #fffdf8;
  --ink: #0d0f0e;
  --muted: #62645d;
  --line: #ded8ca;
  --gold: #a6783f;
  --terra: #8c493d;
  --sea: #1f5150;
  --leaf: #394f40;
  --white: #ffffff;
  --stone: #e8e2d6;
  --charcoal: #101211;
  --bronze: #b98a4a;
  --shadow: 0 28px 80px rgba(15, 17, 16, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(228, 226, 220, 0.78);
  background: rgba(248, 248, 245, 0.9);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(167, 122, 63, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.85), transparent 34%),
    linear-gradient(145deg, #151715, #2b332f 58%, #a77a3f);
  color: #ffffff;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(17, 19, 18, 0.16);
}

.brand-word {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
}

.brand-word span {
  color: var(--gold);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav a,
.lang-switch a,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 12px 18px;
  font-weight: 720;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.nav a,
.lang-switch a {
  color: var(--muted);
}

.nav a:hover,
.lang-switch a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.lang-switch {
  display: flex;
  gap: 4px;
  border-left: 1px solid var(--line);
  padding-left: 8px;
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: start;
  padding: clamp(64px, 8vw, 120px) clamp(20px, 6vw, 96px) clamp(58px, 7vw, 108px);
  background:
    linear-gradient(180deg, rgba(17, 19, 18, 0.3), rgba(17, 19, 18, 0.76)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-inner {
  width: min(980px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #dbc49c;
  font-weight: 760;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 8vw, 96px);
  max-width: 980px;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
}

h3 {
  font-size: 22px;
}

.hero p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.2vw, 23px);
  color: rgba(255, 255, 255, 0.88);
}

.home-template .hero {
  min-height: clamp(620px, calc(100vh - 75px), 780px);
  align-items: start;
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(15, 17, 16, 0.82), rgba(15, 17, 16, 0.46) 48%, rgba(15, 17, 16, 0.2)),
    linear-gradient(180deg, rgba(15, 17, 16, 0.08), rgba(15, 17, 16, 0.5)),
    var(--hero-image);
  background-position: center;
}

.home-template .hero-inner {
  width: 100%;
  max-width: 1120px;
  min-width: 0;
}

.home-template h1 {
  max-width: 980px;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 1.02;
}

.home-template .hero p {
  max-width: 680px;
  margin-top: 26px;
  font-size: clamp(18px, 1.55vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn.light {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.section-actions {
  margin-top: 0;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 96px);
}

.section.alt {
  background: #fbfbf8;
}

.section-head {
  width: min(920px, 100%);
  margin-bottom: 38px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.premium-section {
  padding: clamp(78px, 9vw, 132px) clamp(20px, 6vw, 104px);
}

.premium-heading {
  width: min(980px, 100%);
}

.premium-heading h2 {
  max-width: 920px;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.02;
}

.premium-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
}

.pillars-section {
  background: var(--bg);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 54px);
  margin-top: clamp(44px, 5vw, 70px);
}

.pillar {
  min-height: 230px;
  padding: clamp(28px, 3vw, 42px) 0 0;
  border-top: 1px solid var(--ink);
  background: transparent;
}

.pillar h3 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
}

.pillar p {
  max-width: 340px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.btn.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.phuket-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  background: var(--paper);
}

.feature-image {
  min-height: clamp(420px, 46vw, 640px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 17, 16, 0.05), rgba(15, 17, 16, 0.18)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.feature-copy h2 {
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.02;
}

.feature-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
}

.expert-network {
  background: #111312;
  color: var(--white);
}

.expert-network .premium-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.mission-section {
  background: var(--stone);
}

.mission-section .premium-heading {
  width: min(1120px, 100%);
}

.mission-section .premium-heading p:not(.eyebrow) {
  max-width: 820px;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.34;
  color: var(--ink);
}

.next-line {
  padding: 42px clamp(20px, 6vw, 112px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 22px);
}

.next-line span {
  margin-right: 16px;
  color: var(--ink);
  font-weight: 780;
}

.final-cta {
  background: var(--paper);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(15, 17, 16, 0.08);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(15, 17, 16, 0.08);
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.money-priority {
  background: var(--stone);
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.priority-card {
  min-height: 230px;
  background: var(--white);
  border-color: rgba(36, 93, 97, 0.22);
  box-shadow: var(--shadow);
}

.priority-card h3 {
  font-size: 26px;
}

.priority-card .tag {
  width: max-content;
  max-width: 100%;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  font-weight: 760;
}

.cluster-cta {
  border-top: 1px solid rgba(36, 93, 97, 0.2);
  border-bottom: 1px solid rgba(36, 93, 97, 0.2);
  background: var(--stone);
}

.cluster-cta .section-head {
  margin-bottom: 18px;
}

.cluster-cta h2 {
  max-width: 820px;
}

.cluster-lead-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.55fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(36, 93, 97, 0.2);
  border-bottom: 1px solid rgba(36, 93, 97, 0.2);
  background: #ecece6;
}

.cluster-lead-strip h2 {
  font-size: clamp(28px, 4vw, 54px);
}

.cluster-lead-strip p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.lead-strip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lead-strip-meta span {
  border: 1px solid rgba(17, 19, 18, 0.14);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}

.metric {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 780;
  line-height: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.step {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.step span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 780;
}

.step p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
}

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

.breadcrumbs {
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.filter-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.filter-box strong {
  display: block;
  margin-bottom: 10px;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.form textarea,
.form .wide {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 680;
}

.form-status[data-state="success"] {
  color: var(--leaf);
}

.form-status[data-state="error"] {
  color: var(--terra);
}

.form button {
  width: max-content;
  border: 0;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.selection-section {
  padding-top: clamp(46px, 6vw, 74px);
  padding-bottom: clamp(46px, 6vw, 74px);
}

.selection-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.selection-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.selection-head p:not(.eyebrow) {
  max-width: 720px;
}

.selection-form {
  width: min(820px, 100%);
  max-width: 820px;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(166, 120, 63, 0.24);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 22px 70px rgba(16, 18, 17, 0.07);
}

.selection-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.selection-step {
  display: grid;
  gap: 12px;
  min-width: 0;
  min-height: 0;
}

.selection-step label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.selection-label {
  margin: 0;
  color: var(--ink);
  font-weight: 820;
  font-size: clamp(20px, 2vw, 28px);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.choice-card {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 238, 0.78));
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(16, 18, 17, 0.06);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.choice-card input {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 18px;
  min-height: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.choice-card span {
  display: grid;
  gap: 9px;
  padding-right: 22px;
}

.choice-card strong {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.05;
}

.choice-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 640;
  line-height: 1.35;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(166, 120, 63, 0.42);
  box-shadow: 0 24px 62px rgba(16, 18, 17, 0.09);
}

.choice-card:has(input:checked) {
  border-color: rgba(166, 120, 63, 0.86);
  background:
    radial-gradient(circle at 100% 0%, rgba(202, 165, 105, 0.25), transparent 38%),
    linear-gradient(145deg, #141614, #222822);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(16, 18, 17, 0.18);
}

.choice-card:has(input:checked) small {
  color: rgba(255, 255, 255, 0.72);
}

.selection-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.selection-contact > div {
  grid-column: auto;
}

.selection-contact p:not(.selection-label) {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.selection-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.selection-actions .btn {
  width: auto;
  min-width: 126px;
  border-color: var(--line);
}

.decision-table-wrap {
  width: min(1120px, 100%);
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(16, 18, 17, 0.06);
}

.decision-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.decision-table th,
.decision-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.decision-table th {
  background: #151a16;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.decision-table tr:last-child td {
  border-bottom: 0;
}

.blog-template .hero {
  min-height: clamp(360px, 46vh, 520px);
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(44px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.84), rgba(17, 19, 18, 0.46)),
    var(--hero-image);
}

.blog-template h1 {
  max-width: 980px;
  font-size: clamp(40px, 5.6vw, 72px);
}

.blog-template .hero p {
  max-width: 760px;
  font-size: clamp(17px, 1.65vw, 21px);
}

.blog-toc {
  position: sticky;
  top: 76px;
  z-index: 3;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px clamp(20px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 246, 240, 0.94);
  backdrop-filter: blur(14px);
}

.blog-toc a {
  flex: 0 0 auto;
  max-width: 320px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}

.blog-article-section {
  display: grid;
  justify-items: center;
  padding-top: clamp(50px, 7vw, 88px);
}

.blog-prose {
  width: min(880px, 100%);
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.72;
}

.blog-prose h1 {
  display: none;
}

.blog-prose h2,
.blog-prose h3,
.blog-prose h4 {
  margin-top: clamp(42px, 6vw, 70px);
  margin-bottom: 18px;
}

.blog-prose h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.blog-prose h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.blog-prose p,
.blog-prose li {
  color: #343b36;
}

.blog-prose a {
  color: var(--leaf);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-prose blockquote {
  margin: 30px 0;
  border-left: 4px solid var(--gold);
  padding: 22px 24px;
  background: #fbfbf8;
  color: var(--ink);
  font-weight: 760;
}

.blog-prose ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.blog-prose .table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.blog-prose table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.blog-prose th,
.blog-prose td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.blog-prose th {
  background: #17211b;
  color: var(--white);
  font-size: 15px;
}

.blog-prose tr:last-child td {
  border-bottom: 0;
}

.blog-prose .section.alt {
  margin: clamp(46px, 6vw, 72px) 0;
  padding: clamp(38px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.blog-prose .section-head h2 {
  margin-top: 0;
}

.blog-index-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card .tag {
  width: max-content;
  margin-bottom: 16px;
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 760;
}

footer {
  padding: 34px clamp(18px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  background: #111312;
  color: rgba(255, 255, 255, 0.78);
}

footer a {
  color: #dbc49c;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

/* Luxury homepage layer: keeps the restored block structure, changes only presentation. */
.home-template {
  background:
    linear-gradient(180deg, #f8f6f0 0, var(--bg) 34%, #eee7da 100%);
}

.home-template .site-header {
  padding-top: 24px;
  padding-bottom: 24px;
  background: rgba(250, 248, 242, 0.88);
  border-bottom-color: rgba(16, 18, 17, 0.1);
  box-shadow: 0 18px 60px rgba(16, 18, 17, 0.06);
}

.home-template .brand-word {
  font-size: 17px;
}

.home-template .nav a,
.home-template .lang-switch a {
  color: rgba(13, 15, 14, 0.64);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-template .hero {
  min-height: clamp(660px, calc(100vh - 75px), 820px);
  padding-top: clamp(76px, 8vw, 118px);
  padding-bottom: clamp(64px, 7vw, 104px);
  background:
    radial-gradient(circle at 76% 16%, rgba(185, 138, 74, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(10, 12, 11, 0.88), rgba(10, 12, 11, 0.58) 47%, rgba(10, 12, 11, 0.24)),
    linear-gradient(180deg, rgba(10, 12, 11, 0.08), rgba(10, 12, 11, 0.6)),
    var(--hero-image);
  background-position: center;
}

.home-template .hero-inner {
  max-width: 1080px;
}

.home-template h1 {
  max-width: 1040px;
  font-size: clamp(58px, 6.2vw, 94px);
  line-height: 0.98;
  text-wrap: balance;
}

.home-template .hero p {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.45vw, 22px);
}

.home-template .eyebrow {
  color: #d6b479;
  letter-spacing: 0.16em;
}

.home-template .section {
  scroll-margin-top: 96px;
  padding: clamp(84px, 9vw, 128px) clamp(22px, 6vw, 104px);
  background: var(--paper);
}

.home-template .section.alt,
.home-template .money-priority {
  background:
    linear-gradient(135deg, rgba(185, 138, 74, 0.08), transparent 38%),
    #ece6da;
}

.home-template .section:nth-of-type(5) {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 0.9), rgba(16, 18, 17, 0.68) 44%, rgba(16, 18, 17, 0.18)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.home-template .section:nth-of-type(5) .section-head p,
.home-template .section:nth-of-type(5) .card p {
  color: rgba(255, 255, 255, 0.72);
}

.home-template .section:nth-of-type(5) .card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(16, 18, 17, 0.58);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.home-template .section:nth-of-type(5) .tag {
  border-color: rgba(214, 180, 121, 0.38);
  background: rgba(214, 180, 121, 0.12);
  color: #e4c995;
}

.home-template .section-head {
  max-width: 860px;
  margin-bottom: clamp(34px, 4.8vw, 64px);
}

.home-template .section-head h2 {
  max-width: 920px;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1;
  text-wrap: balance;
}

.home-template .section-head p {
  max-width: 740px;
  margin-top: 20px;
  color: rgba(13, 15, 14, 0.62);
  font-size: clamp(17px, 1.4vw, 21px);
}

.home-template .grid,
.home-template .priority-grid {
  gap: clamp(18px, 2vw, 28px);
}

.home-template .card {
  min-height: 210px;
  padding: clamp(24px, 2.6vw, 36px);
  border-color: rgba(13, 15, 14, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 240, 0.88));
  box-shadow: 0 24px 70px rgba(16, 18, 17, 0.07);
}

.home-template .card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 120, 63, 0.42);
  box-shadow: 0 34px 90px rgba(16, 18, 17, 0.14);
}

.home-template .card h3 {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
}

.home-template .card p {
  margin-top: 14px;
  color: rgba(13, 15, 14, 0.58);
  font-size: 16px;
}

.home-template .priority-card {
  min-height: 260px;
  border-color: rgba(166, 120, 63, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(234, 224, 207, 0.72));
}

.home-template .priority-card h3 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.home-template .tag,
.home-template .priority-card .tag {
  border-radius: 999px;
  border-color: rgba(166, 120, 63, 0.32);
  background: rgba(166, 120, 63, 0.08);
  color: #7d592e;
  letter-spacing: 0.09em;
}

.home-template .priority-card .tag {
  background: var(--charcoal);
  color: var(--white);
}

.home-template .filters {
  border: 1px solid rgba(13, 15, 14, 0.12);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 22px 70px rgba(16, 18, 17, 0.08);
}

.home-template .filter-box {
  background: rgba(255, 255, 255, 0.54);
}

.home-template .form-wrap {
  background:
    radial-gradient(circle at 88% 14%, rgba(185, 138, 74, 0.18), transparent 26%),
    #101211;
  color: var(--white);
}

.home-template .form-wrap .section-head p,
.home-template .form-wrap label {
  color: rgba(255, 255, 255, 0.72);
}

.home-template .form-wrap input,
.home-template .form-wrap textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.home-template .btn {
  min-height: 48px;
  border-color: rgba(13, 15, 14, 0.14);
  border-radius: 0;
  padding-inline: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-template .btn,
.home-template .btn.dark {
  background: var(--charcoal);
  color: var(--white);
}

.home-template .btn.secondary,
.home-template .btn.light {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.home-template footer {
  border-top: 1px solid rgba(214, 180, 121, 0.18);
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 18px 22px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav {
    justify-content: flex-start;
    gap: 6px 8px;
  }

  .nav a,
  .lang-switch a,
  .btn {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .lang-switch {
    padding-left: 4px;
  }

  .hero {
    min-height: 70vh;
    padding-top: 44px;
  }

  .home-template .hero {
    min-height: 72vh;
    padding: 44px 22px 54px;
  }

  .home-template h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .home-template .hero p {
    font-size: 18px;
  }

  .home-template .hero .actions {
    gap: 10px;
  }

  .home-template .hero .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 12px;
  }

  .premium-section {
    padding: 66px 20px;
  }

  .pillar-grid,
  .phuket-feature {
    grid-template-columns: 1fr;
  }

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

  .pillar {
    min-height: 220px;
  }

  .feature-image {
    min-height: 320px;
  }

  .media-band {
    grid-template-columns: 1fr;
  }

  .photo {
    min-height: 260px;
  }

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

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

  .choice-card {
    min-height: 116px;
    padding: 16px;
  }

  .selection-form {
    padding: 18px;
    gap: 14px;
  }

  .selection-form .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .selection-form .choice-card {
    min-height: 86px;
    padding: 12px;
  }

  .selection-form .choice-card input {
    inset: 10px 10px auto auto;
    width: 16px;
    min-height: 16px;
    height: 16px;
  }

  .selection-form .choice-card span {
    gap: 5px;
    padding-right: 16px;
  }

  .selection-form .choice-card strong {
    font-size: 15px;
  }

  .selection-form .choice-card small {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .selection-contact {
    grid-template-columns: 1fr;
    padding: 0;
  }

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

  .blog-template .hero {
    min-height: auto;
    padding: 46px 20px 42px;
  }

  .blog-template h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .blog-toc {
    top: 66px;
    padding: 12px 20px;
  }

  .blog-toc a {
    max-width: 260px;
  }

  .blog-prose .section.alt {
    padding: 26px 18px;
  }
}
