:root {
  --forest-950: #08281c;
  --forest-900: #0d3425;
  --forest-800: #123f2d;
  --forest-700: #18513a;
  --forest-600: #27664b;
  --leaf-500: #6f9c69;
  --leaf-300: #a9c5a3;
  --sage-100: #e5eee3;
  --sage-50: #f2f6f0;
  --gold-600: #b98d3c;
  --gold-500: #d5ae61;
  --gold-300: #e9d19b;
  --cream: #f7f3e9;
  --cream-2: #eee6d5;
  --white: #fffdf8;
  --ink: #17251e;
  --muted: #657069;
  --line: rgba(20, 57, 42, 0.14);
  --danger: #8e3e32;
  --warning: #9b6c1d;
  --shadow-sm: 0 12px 36px rgba(8, 40, 28, 0.08);
  --shadow-md: 0 24px 70px rgba(8, 40, 28, 0.14);
  --shadow-lg: 0 35px 100px rgba(4, 25, 17, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1240px;
  --header-height: 84px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
}

body.dialog-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

::selection {
  color: var(--forest-950);
  background: var(--gold-300);
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h3 {
  line-height: 1.25;
}

p {
  text-wrap: pretty;
}

svg:not(.svg-sprite) {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--forest-950);
  background: var(--gold-300);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading.centered {
  max-width: 810px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.overview-copy h2,
.inventory-copy h2,
.protection-copy h2,
.overseas-copy h2,
.partner-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 20px;
  color: var(--forest-900);
  font-size: clamp(2.35rem, 5vw, 4.45rem);
}

.section-heading > p,
.section-heading.split > p,
.section-heading.centered > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--forest-700);
}

.eyebrow.light {
  color: var(--gold-300);
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.mini-label.gold {
  color: var(--gold-300);
}

.lead {
  font-size: 1.16rem;
  line-height: 1.75;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: var(--white);
  background: var(--forest-700);
  box-shadow: 0 14px 32px rgba(13, 52, 37, 0.22);
}

.button-primary:hover {
  background: var(--forest-900);
  box-shadow: 0 18px 42px rgba(13, 52, 37, 0.3);
}

.button-gold {
  color: var(--forest-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 32px rgba(188, 143, 59, 0.2);
}

.button-gold:hover {
  box-shadow: 0 18px 42px rgba(188, 143, 59, 0.3);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.button-outline {
  color: var(--forest-800);
  border-color: rgba(18, 63, 45, 0.26);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--forest-700);
  background: rgba(18, 63, 45, 0.05);
}

.button-light {
  color: var(--forest-950);
  background: var(--white);
}

.button-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(7, 35, 24, 0.45);
  backdrop-filter: blur(10px);
}

.button-text {
  min-height: auto;
  padding: 8px 0;
  color: var(--white);
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}

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

.button-block {
  width: 100%;
}

.inline-actions,
.hero-actions,
.location-actions,
.protection-actions,
.overseas-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 35, 24, 0.42);
  backdrop-filter: blur(16px) saturate(130%);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(8, 40, 28, 0.94);
  box-shadow: 0 12px 30px rgba(4, 24, 16, 0.2);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.brand img {
  width: min(282px, 40vw);
  height: auto;
}

.site-nav {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.8vw, 28px);
}

.site-nav > a {
  position: relative;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav > a::after {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold-300);
  transition: width 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a.active {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a.active::after {
  width: 100%;
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(780px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 56% 50%;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 34, 23, 0.96) 0%, rgba(7, 41, 28, 0.88) 38%, rgba(7, 35, 24, 0.42) 70%, rgba(7, 35, 24, 0.32) 100%),
    linear-gradient(0deg, rgba(5, 31, 21, 0.76) 0%, transparent 52%);
}

.hero-grid-overlay {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.55fr);
  gap: 72px;
  align-items: center;
  padding-top: calc(var(--header-height) + 52px);
  padding-bottom: 96px;
}

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

.hero h1 {
  max-width: 880px;
  margin-bottom: 26px;
  font-size: clamp(3.45rem, 7vw, 6.85rem);
  line-height: 0.96;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  overflow-wrap: normal;
}

.hero h1 em {
  color: var(--gold-300);
  font-weight: 500;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  font-weight: 650;
}

.hero-trust svg {
  color: var(--gold-300);
}

.hero-legal {
  max-width: 700px;
  margin: 0;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.58);
  border-left: 2px solid rgba(233, 209, 155, 0.56);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(7, 37, 25, 0.82), rgba(10, 53, 36, 0.6));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px) saturate(120%);
}

.hero-panel::before {
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 2px);
  pointer-events: none;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 45%);
}

.panel-kicker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 0 6px rgba(233, 209, 155, 0.12);
}

.panel-note {
  position: relative;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  line-height: 1.55;
}

.panel-rate {
  position: relative;
  display: grid;
  margin-bottom: 26px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-rate span,
.panel-rate small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.panel-rate strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.1;
}

.panel-metrics {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
}

.panel-metrics div {
  padding: 16px;
  background: rgba(7, 37, 25, 0.48);
}

.panel-metrics strong,
.panel-metrics span {
  display: block;
}

.panel-metrics strong {
  color: var(--gold-300);
  font-size: 1.12rem;
}

.panel-metrics span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.7rem;
}

.share-button {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.72);
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
  background: transparent;
}

.concept-label {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 20px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(5, 31, 21, 0.62);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: max(20px, calc((100% - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-scroll span {
  position: relative;
  width: 1px;
  height: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero-scroll span::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  content: "";
  background: var(--gold-300);
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { transform: translateY(0); }
  100% { transform: translateY(96px); }
}

.fact-ribbon {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--forest-800);
}

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

.fact-grid div {
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.fact-grid div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

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

.fact-grid span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fact-grid strong {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.trust-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(169, 197, 163, 0.18), transparent 30%),
    var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 63, 45, 0.28);
  box-shadow: var(--shadow-md);
}

.icon-box {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--forest-700);
  border-radius: 16px;
  background: var(--sage-100);
}

.icon-box svg {
  width: 25px;
  height: 25px;
}

.trust-card h3 {
  margin-bottom: 12px;
  color: var(--forest-900);
  font-size: 1.13rem;
}

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

.project-overview {
  overflow: hidden;
  background: var(--white);
}

.project-overview::before {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(18, 63, 45, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(18, 63, 45, 0.025), 0 0 0 160px rgba(18, 63, 45, 0.015);
}

.overview-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1fr);
  gap: 80px;
  align-items: center;
}

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

.sponsor-line {
  margin: 32px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--gold-500);
  background: var(--cream);
}

.sponsor-line span,
.sponsor-line strong,
.sponsor-line small {
  display: block;
}

.sponsor-line span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsor-line strong {
  margin: 4px 0;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.sponsor-line small {
  color: var(--muted);
  line-height: 1.5;
}

.evidence-board {
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--forest-900), var(--forest-700));
  box-shadow: var(--shadow-lg);
}

.evidence-board::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(233, 209, 155, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 45px rgba(233, 209, 155, 0.035), 0 0 0 90px rgba(233, 209, 155, 0.02);
}

.evidence-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.evidence-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.evidence-head .mini-label {
  color: var(--gold-300);
}

.board-version {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.65rem;
}

.status-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.status-list strong,
.status-list small {
  display: block;
}

.status-list strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.status-list small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.45;
}

.status-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
}

.status-icon svg {
  width: 17px;
  height: 17px;
}

.status-icon.verified {
  color: #b8d5ad;
  background: rgba(142, 194, 126, 0.14);
}

.status-icon.pending {
  color: var(--gold-300);
  background: rgba(233, 209, 155, 0.12);
}

.status-icon.neutral {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.09);
}

.status-icon.planned {
  color: #b9d6b0;
  background: rgba(169, 197, 163, 0.12);
}

.status-pill {
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill.verified {
  color: #c5e3bc;
  border-color: rgba(197, 227, 188, 0.2);
  background: rgba(125, 180, 108, 0.1);
}

.status-pill.pending {
  color: var(--gold-300);
  border-color: rgba(233, 209, 155, 0.2);
  background: rgba(233, 209, 155, 0.08);
}

.status-pill.neutral {
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.15);
}

.status-pill.planned {
  color: #c7ddc0;
  border-color: rgba(199, 221, 192, 0.18);
}

.location-section {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.62fr);
  gap: 36px;
  align-items: stretch;
}

.location-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 45, 0.14);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.location-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.location-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(8, 40, 28, 0.78);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
}

.location-visual {
  position: relative;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.location-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.location-card > svg {
  width: 27px;
  height: 27px;
  margin-top: 4px;
  color: var(--forest-700);
}

.location-card span,
.location-card strong,
.location-card small {
  display: block;
}

.location-card span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card strong {
  margin: 3px 0;
  color: var(--forest-900);
  line-height: 1.45;
}

.location-card small {
  color: var(--muted);
  line-height: 1.45;
}

.location-actions {
  margin-top: auto;
  padding-top: 12px;
}

.micro-note {
  display: flex;
  gap: 9px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.micro-note svg {
  margin-top: 2px;
  color: var(--warning);
}

.master-section {
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(213, 174, 97, 0.13), transparent 25%),
    linear-gradient(145deg, var(--forest-950), var(--forest-800));
}

.master-section .section-heading h2,
.payment-section .section-heading h2,
.triangle-section .section-heading h2,
.process-section .section-heading h2,
.partner-section h2,
.contact-section h2 {
  color: var(--white);
}

.master-section .section-heading p,
.payment-section .section-heading p,
.triangle-section .section-heading p,
.process-section .section-heading p,
.partner-section p,
.contact-section p {
  color: rgba(255, 255, 255, 0.65);
}

.master-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(330px, 0.55fr);
  gap: 30px;
  align-items: stretch;
}

.plan-frame {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.plan-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.plan-frame:hover > img {
  transform: scale(1.012);
}

.plan-frame::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(4, 25, 17, 0.68));
}

.plan-frame-actions {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.document-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  color: var(--forest-950);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-sm);
  font-size: 0.67rem;
  font-weight: 800;
}

.plan-summary {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.plan-summary h3 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.plan-total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.plan-total strong {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1;
}

.plan-total span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.land-bars {
  margin-bottom: 24px;
}

.land-bars > div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 15px;
  padding-bottom: 8px;
}

.land-bars span,
.land-bars strong {
  font-size: 0.72rem;
}

.land-bars span {
  color: rgba(255, 255, 255, 0.65);
}

.land-bars strong {
  color: var(--gold-300);
}

.land-bars i {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.land-bars i::after {
  display: block;
  width: var(--bar);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

.planned-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.planned-list li {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.77rem;
}

.planned-list span {
  color: rgba(255, 255, 255, 0.58);
}

.planned-list strong {
  color: rgba(255, 255, 255, 0.84);
}

.plan-disclaimer {
  margin: 22px 0 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  line-height: 1.55;
}

.plot-section {
  background: var(--cream);
}

.plot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plot-card {
  position: relative;
  min-height: 470px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plot-card::before {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(18, 63, 45, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 36px rgba(18, 63, 45, 0.025), 0 0 0 72px rgba(18, 63, 45, 0.015);
}

.plot-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.plot-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--forest-900), var(--forest-700));
  box-shadow: var(--shadow-md);
}

.plot-card.featured::before {
  border-color: rgba(233, 209, 155, 0.12);
  box-shadow: 0 0 0 36px rgba(233, 209, 155, 0.035), 0 0 0 72px rgba(233, 209, 155, 0.02);
}

.featured-label {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 9px;
  color: var(--forest-950);
  border-radius: 999px;
  background: var(--gold-300);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plot-top {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.plot-top span {
  color: var(--forest-700);
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 0.9;
}

.plot-top small {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plot-card.featured .plot-top span,
.plot-card.featured .text-link {
  color: var(--gold-300);
}

.plot-card.featured .plot-top small,
.plot-card.featured dl dt {
  color: rgba(255, 255, 255, 0.54);
}

.plot-card h3 {
  position: relative;
  margin-bottom: 26px;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.plot-card.featured h3 {
  color: var(--white);
}

.plot-card dl {
  position: relative;
  margin: 0 0 26px;
}

.plot-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.plot-card.featured dl > div {
  border-color: rgba(255, 255, 255, 0.12);
}

.plot-card dt,
.plot-card dd {
  margin: 0;
  font-size: 0.78rem;
}

.plot-card dt {
  color: var(--muted);
}

.plot-card dd {
  color: var(--forest-900);
  font-weight: 750;
  text-align: right;
}

.plot-card.featured dd {
  color: rgba(255, 255, 255, 0.9);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 5px;
  color: var(--forest-700);
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-weight: 800;
  background: transparent;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.verification-banner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 24px 26px;
  color: var(--forest-900);
  border: 1px solid rgba(185, 141, 60, 0.25);
  border-radius: var(--radius-md);
  background: rgba(233, 209, 155, 0.2);
}

.verification-banner > svg {
  width: 28px;
  height: 28px;
  color: var(--gold-600);
}

.verification-banner strong,
.verification-banner span {
  display: block;
}

.verification-banner span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.payment-section {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 31, 21, 0.98), rgba(15, 58, 41, 0.98)),
    var(--forest-950);
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
}

/* Allow wide tables and controls to scroll inside their cards instead of widening the page. */
.overview-layout > *,
.location-layout > *,
.master-layout > *,
.payment-layout > *,
.inventory-layout > *,
.protection-layout > *,
.overseas-layout > *,
.partner-layout > *,
.faq-layout > *,
.contact-layout > * {
  min-width: 0;
}

.table-scroll,
.inventory-table-card {
  max-width: 100%;
}

.calculator-card,
.payment-table-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.calculator-card {
  padding: 30px;
}

.calculator-head,
.table-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.calculator-head h3,
.table-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.62rem;
  font-weight: 500;
}

.calc-status {
  max-width: 110px;
  padding: 6px 9px;
  color: var(--gold-300);
  border: 1px solid rgba(233, 209, 155, 0.2);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.size-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 26px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.size-switch button {
  padding: 11px 8px;
  color: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  background: transparent;
}

.size-switch button.active {
  color: var(--forest-950);
  background: var(--gold-300);
}

.calc-total {
  margin-bottom: 24px;
}

.calc-total span,
.calc-total strong,
.calc-total small {
  display: block;
}

.calc-total span {
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calc-total strong {
  margin: 3px 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
}

.calc-total small {
  color: var(--gold-300);
}

.payment-bar {
  display: flex;
  height: 36px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--forest-950);
  font-size: 0.66rem;
  font-weight: 900;
}

.payment-bar span {
  display: grid;
  place-items: center;
}

.payment-bar .booking,
.bar-key i.booking {
  background: var(--gold-300);
}

.payment-bar .monthly,
.bar-key i.monthly {
  background: var(--leaf-300);
}

.payment-bar .halfyear,
.bar-key i.halfyear {
  background: var(--white);
}

.bar-key {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
}

.bar-key span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bar-key i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.calc-breakdown {
  margin-bottom: 22px;
}

.calc-breakdown > div {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.calc-breakdown span,
.calc-breakdown strong,
.calc-breakdown small {
  display: block;
}

.calc-breakdown span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.calc-breakdown strong {
  margin: 2px 0;
  color: var(--white);
  font-size: 1.08rem;
}

.calc-breakdown small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
}

.calculator-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.67rem;
  line-height: 1.5;
  text-align: center;
}

.payment-table-card {
  padding: 30px;
}

.table-head > span {
  padding: 6px 10px;
  color: var(--gold-300);
  border: 1px solid rgba(233, 209, 155, 0.18);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  white-space: nowrap;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.payment-table-card table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.payment-table-card th,
.payment-table-card td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
  white-space: nowrap;
}

.payment-table-card thead th {
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.payment-table-card tbody th {
  color: var(--gold-300);
}

.payment-table-card tbody td {
  color: rgba(255, 255, 255, 0.85);
}

.charges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.charges-grid div {
  padding: 15px;
  background: rgba(6, 31, 21, 0.54);
}

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

.charges-grid span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
}

.charges-grid strong {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
}

.payment-warning {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 16px;
  color: var(--gold-300);
  border: 1px solid rgba(233, 209, 155, 0.18);
  border-radius: 12px;
  background: rgba(233, 209, 155, 0.06);
}

.payment-warning p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.73rem;
}

.payment-warning strong {
  color: var(--gold-300);
}

.inventory-section {
  background: var(--white);
}

.inventory-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.67fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
}

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

.inventory-flow {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.inventory-flow li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.inventory-flow li > span {
  color: var(--gold-600);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.inventory-flow strong,
.inventory-flow small {
  display: block;
}

.inventory-flow strong {
  color: var(--forest-900);
}

.inventory-flow small {
  color: var(--muted);
}

.inventory-table-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}

.inventory-table-card .table-head h3 {
  color: var(--forest-900);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--warning) !important;
  border-color: rgba(155, 108, 29, 0.2) !important;
  background: rgba(213, 174, 97, 0.11);
}

.live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warning);
}

.inventory-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
}

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

.inventory-table thead th {
  color: var(--muted);
  background: var(--sage-50);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.inventory-table tbody td,
.inventory-table tfoot {
  font-size: 0.78rem;
}

.inventory-table tfoot th,
.inventory-table tfoot td {
  color: var(--forest-900);
  border-bottom: 0;
  background: var(--sage-50);
}

.verify-link {
  padding: 0;
  color: var(--forest-700);
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  background: transparent;
}

.table-disclaimer {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.lifestyle-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(111, 156, 105, 0.13), transparent 25%),
    var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  margin-bottom: 42px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-grid .gallery-large {
  grid-row: span 2;
}

.gallery-grid figure:last-child {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-grid figure::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(5, 31, 21, 0.82));
}

.gallery-grid figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.gallery-grid figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-300);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-card > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--forest-700);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}

.feature-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.83rem;
}

.feature-card > span {
  position: absolute;
  bottom: 22px;
  left: 28px;
  padding: 5px 8px;
  color: var(--forest-700);
  border: 1px solid rgba(18, 63, 45, 0.15);
  border-radius: 999px;
  background: var(--sage-50);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.triangle-section {
  color: var(--white);
  background:
    radial-gradient(circle at 50% -20%, rgba(213, 174, 97, 0.2), transparent 38%),
    var(--forest-950);
}

.triangle-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.triangle-grid::before {
  position: absolute;
  top: 82px;
  right: 17%;
  left: 17%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(233, 209, 155, 0.42), transparent);
}

.triangle-card {
  position: relative;
  z-index: 1;
  min-height: 490px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.triangle-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--serif);
  font-size: 2.6rem;
}

.triangle-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--forest-950);
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 0 11px rgba(233, 209, 155, 0.08);
}

.triangle-icon svg {
  width: 27px;
  height: 27px;
}

.triangle-card h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.triangle-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.triangle-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.triangle-card li {
  position: relative;
  padding: 10px 0 10px 22px;
  color: rgba(255, 255, 255, 0.77);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.triangle-card li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold-300);
}

.protection-section {
  background: var(--white);
}

.protection-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1fr);
  gap: 74px;
  align-items: start;
}

.protection-copy {
  position: sticky;
  top: 110px;
}

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

.protection-actions {
  margin: 28px 0;
}

.fraud-alert {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  color: var(--danger);
  border: 1px solid rgba(142, 62, 50, 0.18);
  border-radius: var(--radius-md);
  background: rgba(142, 62, 50, 0.045);
}

.fraud-alert > svg {
  width: 26px;
  height: 26px;
}

.fraud-alert strong,
.fraud-alert p {
  display: block;
}

.fraud-alert p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.checklist {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.checklist li:last-child {
  border-bottom: 0;
}

.checklist li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--forest-700);
  border-radius: 50%;
  background: var(--sage-100);
}

.checklist li > span svg {
  width: 18px;
  height: 18px;
}

.checklist strong,
.checklist small {
  display: block;
}

.checklist strong {
  margin-bottom: 2px;
  color: var(--forest-900);
}

.checklist small {
  color: var(--muted);
  line-height: 1.5;
}

.legal-section {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.legal-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-card > svg {
  width: 30px;
  height: 30px;
  margin: 34px 0 24px;
  color: var(--forest-700);
}

.legal-card h3 {
  margin-bottom: 12px;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

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

.legal-state {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-state.neutral {
  color: var(--muted);
  border-color: var(--line);
  background: var(--sage-50);
}

.legal-state.pending {
  color: var(--warning);
  border-color: rgba(155, 108, 29, 0.18);
  background: rgba(213, 174, 97, 0.12);
}

.legal-state.supplied {
  color: var(--forest-700);
  border-color: rgba(18, 63, 45, 0.16);
  background: var(--sage-100);
}

.legal-state.planned {
  color: #4c7249;
  border-color: rgba(76, 114, 73, 0.16);
  background: rgba(169, 197, 163, 0.18);
}

.legal-request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--forest-900), var(--forest-700));
  box-shadow: var(--shadow-md);
}

.legal-request span {
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-request h3 {
  margin: 3px 0 5px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.legal-request p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.process-section {
  color: var(--white);
  background:
    linear-gradient(rgba(8, 40, 28, 0.94), rgba(8, 40, 28, 0.98)),
    url("../images/hero-waterfront-1280.webp") center / cover fixed;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 235px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-grid li:nth-child(5n) {
  border-right: 0;
}

.process-grid li:nth-child(n + 6) {
  border-bottom: 0;
}

.process-grid span {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.process-grid h3 {
  margin: 28px 0 8px;
  font-size: 0.95rem;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.73rem;
}

.process-warning {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
  padding: 22px 26px;
  color: var(--gold-300);
  border: 1px solid rgba(233, 209, 155, 0.18);
  border-radius: var(--radius-md);
  background: rgba(233, 209, 155, 0.07);
}

.process-warning > svg {
  width: 27px;
  height: 27px;
}

.process-warning strong {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.87);
}

.overseas-section {
  overflow: hidden;
  background: var(--white);
}

.overseas-section::before {
  position: absolute;
  top: -250px;
  left: -250px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(18, 63, 45, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(18, 63, 45, 0.02), 0 0 0 160px rgba(18, 63, 45, 0.012);
}

.overseas-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

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

.overseas-actions {
  margin-top: 28px;
}

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

.overseas-grid article {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.overseas-grid article > span {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(18, 63, 45, 0.18);
  font-family: var(--serif);
  font-size: 2rem;
}

.overseas-grid svg {
  width: 29px;
  height: 29px;
  margin-bottom: 26px;
  color: var(--forest-700);
}

.overseas-grid h3 {
  margin-bottom: 10px;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.overseas-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.partner-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(213, 174, 97, 0.15), transparent 26%),
    var(--forest-900);
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.partner-copy .partner-clarity {
  margin: 28px 0;
  padding: 20px;
  color: rgba(255, 255, 255, 0.68);
  border-left: 2px solid var(--gold-300);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
}

.partner-rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.partner-rules > div {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.partner-rules h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.partner-rules h3 svg {
  width: 22px;
  height: 22px;
}

.partner-rules .allowed h3 {
  color: var(--gold-300);
}

.partner-rules .prohibited h3 {
  color: #e3aaa2;
}

.partner-rules ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-rules li {
  position: relative;
  padding: 11px 0 11px 19px;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.partner-rules li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--gold-300);
}

.partner-rules .prohibited li::before {
  background: #d77f73;
}

.answer-section {
  background: var(--sage-50);
}

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

.answer-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.answer-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--forest-700);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.answer-grid p {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
}

.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro p {
  color: var(--muted);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  color: var(--forest-900);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  list-style: none;
}

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

.faq-list summary svg {
  width: 20px;
  height: 20px;
  color: var(--forest-700);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 790px;
  margin: -5px 0 24px;
  padding-right: 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(5, 31, 21, 0.97), rgba(18, 63, 45, 0.97)),
    url("../images/hero-waterfront-1920.webp") center / cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: center;
}

.contact-cards {
  margin: 30px 0;
}

.contact-cards > a,
.contact-cards > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-cards > * > svg {
  width: 27px;
  height: 27px;
  margin-top: 4px;
  color: var(--gold-300);
}

.contact-cards span,
.contact-cards strong,
.contact-cards small {
  display: block;
}

.contact-cards span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cards strong {
  margin: 3px 0;
  color: var(--white);
}

.contact-cards small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.official-warning {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 19px;
  color: var(--gold-300);
  border: 1px solid rgba(233, 209, 155, 0.18);
  border-radius: var(--radius-md);
  background: rgba(233, 209, 155, 0.06);
}

.official-warning > svg {
  width: 25px;
  height: 25px;
}

.official-warning p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.official-warning strong {
  color: var(--gold-300);
}

.lead-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading span {
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

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

.lead-form label {
  display: block;
  margin-bottom: 14px;
}

.lead-form label > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  outline: 0;
  background: rgba(5, 31, 21, 0.46);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lead-form select {
  color-scheme: dark;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-300);
  background: rgba(5, 31, 21, 0.7);
  box-shadow: 0 0 0 4px rgba(233, 209, 155, 0.08);
}

.lead-form input.invalid,
.lead-form select.invalid,
.lead-form textarea.invalid {
  border-color: #e3aaa2;
}

.lead-form .consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 18px;
}

.lead-form .consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold-500);
}

.lead-form .consent span {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-note {
  margin: 12px 0 0 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.64rem !important;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  min-height: 20px;
  margin-top: 8px;
  color: var(--gold-300);
  font-size: 0.72rem;
  text-align: center;
}

.form-status a {
  color: var(--gold-300);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #f3c2bb;
  font-size: 0.68rem;
  line-height: 1.35;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.site-footer {
  color: var(--white);
  background: #061e15;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.65fr);
  gap: 55px;
  padding-top: 70px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 270px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}

.footer-links h3 {
  margin-bottom: 20px;
  color: var(--gold-300);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-button {
  display: block;
  width: fit-content;
  margin: 10px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  border: 0;
  cursor: pointer;
  font-size: 0.77rem;
  text-align: left;
  background: transparent;
}

.footer-links a:hover,
.footer-button:hover {
  color: var(--white);
}

.footer-disclaimer {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.67rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.66rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: flex;
  height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #1d6f4c;
  box-shadow: 0 16px 42px rgba(6, 30, 21, 0.26);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

.mobile-cta {
  display: none;
}

.back-top {
  position: fixed;
  z-index: 55;
  right: 28px;
  bottom: 86px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest-950);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--gold-300);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.back-top svg {
  transform: rotate(-90deg);
}

.toast {
  position: fixed;
  z-index: 3000;
  right: 24px;
  bottom: 92px;
  max-width: 360px;
  padding: 14px 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: var(--forest-900);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  background: var(--danger);
}

.noscript {
  position: fixed;
  z-index: 5000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  color: var(--white);
  border-radius: 12px;
  background: var(--danger);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  text-align: center;
}

/* Dialogs */
dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

dialog::backdrop {
  background: rgba(3, 20, 13, 0.78);
  backdrop-filter: blur(8px);
}

.lead-dialog,
.legal-dialog {
  width: min(720px, calc(100% - 30px));
  max-height: calc(100svh - 30px);
  overflow: auto;
  padding: 38px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--forest-950), var(--forest-800));
  box-shadow: var(--shadow-lg);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}

.dialog-intro {
  padding-right: 48px;
  margin-bottom: 24px;
}

.dialog-intro h2,
.legal-dialog h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
}

.dialog-intro p,
.legal-dialog p {
  color: rgba(255, 255, 255, 0.62);
}

.modal-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.visit-date-field[hidden] {
  display: none;
}

.legal-dialog article[hidden] {
  display: none;
}

.legal-dialog article {
  padding-right: 30px;
}

.legal-dialog h3 {
  margin: 28px 0 8px;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.plan-dialog {
  width: min(1500px, calc(100% - 24px));
  height: min(930px, calc(100svh - 24px));
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest-950);
  box-shadow: var(--shadow-lg);
}

.plan-dialog-head {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-dialog-head h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.plan-dialog-head .mini-label {
  margin: 0 0 3px;
  color: var(--gold-300);
}

.plan-tools {
  display: flex;
  gap: 8px;
}

.plan-tools button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}

.plan-stage {
  position: relative;
  width: 100%;
  height: calc(100% - 132px);
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  background: #d9dedb;
}

.plan-stage.dragging {
  cursor: grabbing;
}

.plan-stage img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  user-select: none;
  transform-origin: center;
  will-change: transform;
}

.plan-dialog-note {
  display: flex;
  min-height: 50px;
  align-items: center;
  margin: 0;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
}

/* Motion */
body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --container: 1080px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav > a:nth-child(5) {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.52fr);
    gap: 40px;
  }

  .master-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.58fr);
  }

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

  .process-grid li {
    padding: 22px;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 0.65fr);
    gap: 35px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 90px 0;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(410px, 92vw);
    height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    padding: 88px 34px 34px;
    background: rgba(8, 40, 28, 0.985);
    box-shadow: -20px 0 60px rgba(3, 20, 13, 0.3);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav > a,
  .site-nav > a:nth-child(5) {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--serif);
    font-size: 1.25rem;
  }

  .site-nav > a::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 20px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-inline: auto;
    gap: 35px;
    padding-bottom: 92px;
  }

  .hero-panel {
    max-width: 640px;
  }

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

  .overview-layout,
  .location-layout,
  .master-layout,
  .inventory-layout,
  .protection-layout,
  .overseas-layout,
  .partner-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .evidence-board {
    max-width: 760px;
  }

  .location-visual img {
    min-height: 440px;
  }

  .master-layout {
    gap: 24px;
  }

  .plan-frame {
    min-height: 520px;
  }

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

  .plot-card {
    padding: 28px 24px;
  }

  .payment-layout {
    grid-template-columns: 1fr;
  }

  .calculator-card {
    max-width: 760px;
  }

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

  .triangle-grid::before {
    display: none;
  }

  .triangle-card {
    min-height: auto;
  }

  .protection-copy,
  .faq-intro {
    position: static;
  }

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

  .process-grid li,
  .process-grid li:nth-child(5n),
  .process-grid li:nth-child(n + 6) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .process-grid li:nth-child(2n) {
    border-right: 0;
  }

  .process-grid li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

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

  .footer-links:last-child {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 72px;
  }

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

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .overview-copy h2,
  .inventory-copy h2,
  .protection-copy h2,
  .overseas-copy h2,
  .partner-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }

  .site-header,
  .site-header.scrolled {
    height: 68px;
  }

  .brand img {
    width: 220px;
  }

  .hero {
    min-height: 920px;
    align-items: flex-start;
  }

  .hero-media img {
    object-position: 58% 45%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 34, 23, 0.95) 0%, rgba(5, 34, 23, 0.84) 48%, rgba(5, 34, 23, 0.86) 100%),
      linear-gradient(90deg, rgba(5, 34, 23, 0.72), transparent);
  }

  .hero-layout {
    padding-top: 128px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12.4vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .hero-actions .button-text {
    width: fit-content;
  }

  .hero-trust {
    display: grid;
  }

  .hero-panel {
    padding: 24px;
  }

  .hero-scroll,
  .concept-label {
    display: none;
  }

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

  .fact-grid div,
  .fact-grid div:first-child {
    padding: 22px 15px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fact-grid div:nth-child(2n) {
    border-right: 0;
  }

  .fact-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-grid,
  .feature-grid,
  .legal-grid,
  .plot-grid,
  .overseas-grid,
  .partner-rules,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: auto;
  }

  .overview-layout {
    gap: 38px;
  }

  .evidence-board {
    padding: 24px;
  }

  .status-list li {
    grid-template-columns: 34px 1fr;
  }

  .status-pill {
    grid-column: 2;
    width: fit-content;
  }

  .location-details,
  .inventory-table-card,
  .calculator-card,
  .payment-table-card,
  .lead-form {
    padding: 24px;
  }

  .location-visual img {
    min-height: 350px;
  }

  .plan-frame {
    min-height: 410px;
  }

  .plan-frame-actions {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .plan-frame-actions .button {
    flex: 1 1 100%;
  }

  .plot-card {
    min-height: auto;
    padding: 30px;
  }

  .plot-top span {
    font-size: 4.8rem;
  }

  .calculator-head,
  .table-head {
    flex-direction: column;
  }

  .calc-status,
  .table-head > span {
    max-width: none;
  }

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

  .inventory-table-card {
    overflow-x: auto;
  }

  .inventory-table {
    min-width: 650px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 220px;
  }

  .gallery-grid .gallery-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-grid figure:last-child {
    grid-column: span 2;
  }

  .legal-request {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

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

  .process-grid li,
  .process-grid li:nth-child(2n),
  .process-grid li:nth-child(5n),
  .process-grid li:nth-child(n + 6),
  .process-grid li:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .process-warning {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .process-warning .button {
    width: 100%;
  }

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

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-links:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float,
  .back-top {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 7px max(7px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(7px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 30, 21, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-cta button,
  .mobile-cta a {
    display: flex;
    min-height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 5px;
    color: rgba(255, 255, 255, 0.74);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    background: transparent;
    font-size: 0.63rem;
    font-weight: 750;
  }

  .mobile-cta button.primary {
    color: var(--forest-950);
    background: var(--gold-300);
  }

  .mobile-cta svg {
    width: 20px;
    height: 20px;
  }

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

  .toast {
    right: 14px;
    bottom: 82px;
    left: 14px;
    max-width: none;
  }

  .lead-dialog,
  .legal-dialog {
    width: calc(100% - 18px);
    max-height: calc(100svh - 18px);
    padding: 26px 20px;
    border-radius: 22px;
  }

  .dialog-close {
    top: 12px;
    right: 12px;
  }

  .dialog-intro {
    padding-right: 38px;
  }

  .plan-dialog {
    width: calc(100% - 10px);
    height: calc(100svh - 10px);
    border-radius: 16px;
  }

  .plan-dialog-head {
    min-height: 74px;
    padding: 12px 14px;
  }

  .plan-dialog-head h2 {
    font-size: 1.05rem;
  }

  .plan-dialog-head .mini-label {
    display: none;
  }

  .plan-tools {
    gap: 5px;
  }

  .plan-tools button {
    width: 36px;
    height: 36px;
  }

  .plan-stage {
    height: calc(100% - 132px);
  }

  .plan-dialog-note {
    min-height: 58px;
    padding: 8px 14px;
    font-size: 0.58rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 980px;
  }

  .hero h1 {
    font-size: clamp(2.42rem, 10.9vw, 4.25rem);
  }

  .hero-panel {
    border-radius: 24px;
  }

  .panel-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .fact-grid strong {
    font-size: 1.16rem;
  }

  .section-heading.centered {
    text-align: left;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }

  .gallery-grid .gallery-large,
  .gallery-grid figure:last-child {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: 240px;
  }

  .size-switch {
    border-radius: 14px;
  }

  .size-switch button {
    border-radius: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .process-section {
    background-attachment: scroll;
  }
}

@media print {
  @page {
    margin: 18mm;
  }

  body {
    color: #111;
    background: #fff;
    font-size: 11pt;
  }

  body.print-checklist > * {
    display: none !important;
  }

  body.print-checklist main,
  body.print-checklist .protection-section,
  body.print-checklist .protection-section .container,
  body.print-checklist .protection-layout,
  body.print-checklist .protection-copy,
  body.print-checklist .checklist {
    display: block !important;
  }

  body.print-checklist .protection-section {
    padding: 0;
  }

  body.print-checklist .protection-copy {
    position: static;
  }

  body.print-checklist .protection-copy .eyebrow,
  body.print-checklist .protection-actions,
  body.print-checklist .fraud-alert {
    display: none !important;
  }

  body.print-checklist .protection-copy h2::before {
    display: block;
    margin-bottom: 4mm;
    content: "Lahore Organic Farm Houses, Phase II";
    color: #666;
    font-family: var(--sans);
    font-size: 10pt;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  body.print-checklist .protection-copy h2 {
    font-size: 26pt;
  }

  body.print-checklist .checklist {
    margin-top: 10mm;
    border: 1px solid #bbb;
    box-shadow: none;
  }

  body.print-checklist .checklist li {
    break-inside: avoid;
    padding: 4mm;
  }

  body.print-checklist .checklist li > span {
    color: #111;
    background: #eee;
  }
}

.hero h1 .phase-title {
  display: block;
  margin-top: 0.14em;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.34em;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .hero h1 .phase-title {
    margin-top: 0.2em;
    font-size: 0.38em;
    letter-spacing: 0.12em;
  }
}

/* Project integration overrides */
.brand img {
  width: min(220px, 30vw);
}

.site-nav > a.nav-login-link {
  display: inline-flex;
  padding: 10px 17px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.site-nav > a.nav-login-link::after {
  display: none;
}

@media (max-width: 760px) {
  .brand img {
    width: 176px;
  }
}
