/* =========================================================
   Bali Hotel Group — Investor pitch site
   Palette unifies the deck (warm sand + coral) with the brand
   mark's deep teal. Editorial typography. Imagery does the work.
   ========================================================= */

:root {
  /* Deep teal field — used for hero, dark sections, footer */
  --black: #06141A;
  --black-2: #0B1E25;
  --teal-deep: #0E2A2C;
  --teal-mid: #1F6E68;
  --teal-soft: #5EBFB3;
  --teal-light: #A8E5DC;

  /* Warm earth — pulled from the deck */
  --sand: #EFE7DA;
  --sand-2: #E5DAC6;
  --stone: #B79F84;
  --stone-deep: #7A6149;
  --bone: #FAF7F1;

  /* Signal — softened dusty pink (less saturated than #E2B8BF). */
  --coral: #DCC8CB;
  --coral-deep: #B9A3A7;
  --gold: #D9B25A;

  --ink: #1B1F1E;
  --ink-muted: #5C625F;
  --ink-faint: #8A8E8B;

  --white-soft: rgba(255,255,255,0.86);
  --white-faint: rgba(255,255,255,0.55);

  /* Editorial serif (Cormorant) for body italics + lede; Italiana display serif (Zephyr substitute) for big headlines. */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --display-serif: "Italiana", "Cormorant Garamond", "Times New Roman", serif;
  /* Geometric sans (DM Sans) — closest free analog to Azo Sans. */
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 11vw, 150px);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  /* DM Sans 300 reads thin at body size on standard displays — 400 is the minimum legible weight. */
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ============== TYPOGRAPHY ============== */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin: 0 0 18px;
}
.eyebrow--dark { color: var(--stone-deep); }
.eyebrow--coral { color: var(--coral); }

.display {
  font-family: var(--display-serif);
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 70px);
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin: 0 0 28px;
  color: var(--ink);
}
/* Italic emphasis stays on Cormorant since Italiana has no italic. */
.display em { font-family: var(--serif); }
.display--light { color: var(--bone); }
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-mid);
}
.display--light em { color: var(--coral); }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 60ch;
}
.lede em { font-style: italic; color: var(--stone-deep); }
.lede--light { color: var(--white-soft); }
.lede--light em { color: var(--coral); font-style: italic; }

.body {
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-muted);
  max-width: 58ch;
  margin: 0 0 20px;
}
.body em { color: var(--ink); font-style: italic; }

.rule {
  display: block;
  width: 32px; height: 1px;
  background: var(--stone-deep);
  margin-bottom: 20px;
}
.rule--light { background: rgba(168,229,220,0.5); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: var(--ink);
  border-color: var(--coral);
}
.btn--primary:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(192,156,162,0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(255,255,255,0.32);
}
.btn--ghost:hover {
  border-color: var(--bone);
  color: var(--bone);
  background: rgba(255,255,255,0.05);
}

.section--light .btn--ghost,
.section--sand .btn--ghost {
  color: var(--ink);
  border-color: rgba(27,31,30,0.32);
}
.section--light .btn--ghost:hover,
.section--sand .btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(27,31,30,0.04);
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color .5s var(--ease), backdrop-filter .5s var(--ease), padding .5s var(--ease);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo {
  width: 125px;
  height: 30px;
  object-fit: cover;
  filter: drop-shadow(0 0 12px rgba(168,229,220,0.18));
  transition: transform .6s var(--ease);
}
.nav__brand:hover .nav__logo { transform: rotate(8deg) scale(1.04); }
.nav__wordmark {
  font-family: var(--display-serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--bone);
  transition: color .4s var(--ease);
}
.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-soft);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink) !important;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav__cta:hover { background: var(--coral-deep); transform: translateY(-1px); }
@media (max-width: 600px) {
  .nav__cta { padding: 7px 14px; font-size: 9.5px; }
}

/* Scrolled state */
.nav.is-scrolled {
  background: rgba(6, 20, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(168,229,220,0.08);
}
.nav.is-light .nav__wordmark { color: var(--ink); }
.nav.is-light .nav__links a { color: var(--ink); }
.nav.is-light.is-scrolled {
  background: rgba(239, 231, 218, 0.92);
  border-bottom-color: rgba(122,97,73,0.16);
}

@media (max-width: 1080px) {
  .nav__links { display: none; }
}
@media (max-width: 600px) {
  .nav__cta { padding: 9px 16px; font-size: 10.5px; }
  .nav__wordmark { font-size: 16px; letter-spacing: 0.05em; }
}
@media (max-width: 380px) {
  .nav__wordmark { font-size: 14.5px; }
  .nav__logo { width: 30px; height: 30px; }
  .nav__brand { gap: 9px; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero__img {
  /* Fallback still — sits behind the video. Visible until video frame paints, and on browsers blocking autoplay. */
  z-index: 0;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite;
}
.hero__video {
  /* Looping aerial drone. Muted + autoplay + playsinline + loop set in HTML. */
  z-index: 1;
}
@keyframes heroDrift {
  0%, 100% { transform: scale(1.04) translate3d(0,0,0); }
  50%      { transform: scale(1.07) translate3d(-1.2%, -1%, 0); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    /* Center-weighted dark cushion under the title / lede / CTAs. */
    radial-gradient(ellipse 65% 55% at 50% 55%, rgba(6,20,26,0.44) 0%, rgba(6,20,26,0.10) 75%),
    linear-gradient(180deg, rgba(6,20,26,0.51) 0%, rgba(6,20,26,0.33) 28%, rgba(6,20,26,0.30) 50%, rgba(6,20,26,0.42) 78%, rgba(6,20,26,0.58) 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(6,20,26,0.11) 0%, rgba(6,20,26,0.33) 80%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px var(--gutter) 130px;
  max-width: 1080px;
}
.hero__title {
  /* Italiana — Bodoni/Didone display serif, closest free approximation of the Zephyr brand display face. */
  font-family: "Italiana", "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(60px, 4.2vw, 152px);
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--bone);
  margin: 14px 0 22px;
  text-shadow:
    0 1px 3px rgba(6,20,26,0.55),
    0 2px 28px rgba(6,20,26,0.6);
}
.hero__title span { display: block; }
.hero__lede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(23px, 2.3vw, 32px);
  color: var(--bone);
  margin: 0 auto 8px;
  max-width: 32ch;
  letter-spacing: 0.005em;
  text-shadow:
    0 0 1px rgba(6,20,26,0.85),
    0 1px 4px rgba(6,20,26,0.9),
    0 2px 18px rgba(6,20,26,0.7);
}
.hero__sub {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 auto 38px;
  text-shadow: 0 1px 8px rgba(6,20,26,0.7);
}
.hero .eyebrow {
  font-size: 12.5px;
  color: var(--bone);
  text-shadow: 0 1px 8px rgba(6,20,26,0.75);
}

.hero__chips {
  list-style: none;
  padding: 0;
  margin: 0 auto 44px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__chips li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(226,184,191,0.55);
  border-radius: 999px;
  background: rgba(226,184,191,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__chips strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--bone);
  letter-spacing: -0.005em;
}
.hero__chips span {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white-faint);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__scroll em {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--coral), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-12px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 1.1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============== SECTIONS ============== */
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section--light {
  background: var(--bone);
  color: var(--ink);
}
.section--sand {
  background: var(--sand);
  color: var(--ink);
  position: relative;
}
.section--sand::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(122,97,73,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.section--dark {
  background: var(--black);
  color: var(--bone);
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(31,110,104,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(14,42,44,0.42) 0%, transparent 70%);
  pointer-events: none;
}
.section > .container,
.section > * { position: relative; }

.section__head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section__head--center {
  margin: 0 auto 80px;
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
.two-col__label {
  position: sticky;
  top: 120px;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 18px; }
  .two-col__label { position: static; }
}

/* Fade on scroll */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== STATS (Why Bali) ============== */
.stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
@media (max-width: 980px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stats { grid-template-columns: 1fr; } }
.stats li {
  border-top: 1px solid rgba(122,97,73,0.28);
  padding-top: 22px;
}
.stats strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1;
  color: var(--coral);
  letter-spacing: -0.018em;
  margin-bottom: 10px;
}
.stats span {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  display: block;
  max-width: 26ch;
}

/* ============== PORTFOLIO ============== */
.projects {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 96px);
}

.project {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  transition: transform .5s var(--ease);
}
/* Alternate image side: Tu Casa + Don Sueño image-left, Marakai image-right. */
.project:nth-child(even) { grid-template-columns: 1fr 1.35fr; }
.project:nth-child(even) .project__media { order: 2; }
.project:nth-child(even) .project__meta  { order: 1; }
.project:hover { transform: translateY(-4px); }

.project__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: var(--black-2);
  border-radius: 4px;
}
.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s var(--ease);
}
.project:hover .project__media img { transform: scale(1.04); }

@media (max-width: 760px) {
  .project,
  .project:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .project:nth-child(even) .project__media { order: 0; }
  .project:nth-child(even) .project__meta  { order: 0; }
}

.project__meta { padding: 0 4px; }
.project__location {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 10px;
}
.project__name {
  font-family: var(--display-serif);
  font-weight: 400;
  font-size: clamp(32px, 3vw, 42px);
  letter-spacing: 0.005em;
  color: var(--bone);
  margin: 0 0 14px;
  line-height: 1.1;
}
.project__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244,239,230,0.82);
  margin: 0 0 18px;
  max-width: 38ch;
}
.project__status {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.5);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(168,229,220,0.14);
}
.project__status--active { color: var(--coral); }

/* Caption — small line under a section */
.caption {
  margin: 56px 0 0;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(244,239,230,0.7);
  max-width: 70ch;
}
.caption--dark { color: var(--ink-muted); }
.caption .rule, .caption .rule--light { display: inline-block; margin: 0 16px 4px 0; vertical-align: middle; }

/* ============== FLAGSHIP / FEATURE SECTION ============== */
.section--feature {
  position: relative;
  padding: clamp(120px, 16vw, 220px) 0;
  background: var(--black);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}
.feature__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.feature__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,20,26,0.38) 0%, rgba(6,20,26,0.3) 30%, rgba(6,20,26,0.64) 100%),
    /* Left side darker to anchor the body copy + KPIs; right side stays bright so the aerial reads. */
    linear-gradient(90deg, rgba(6,20,26,0.7) 0%, rgba(6,20,26,0.5) 38%, rgba(6,20,26,0.2) 70%, rgba(6,20,26,0.35) 100%);
}
.feature__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.kpis {
  list-style: none;
  padding: 0;
  margin: 36px 0 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
@media (max-width: 920px) { .kpis { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
.kpis li {
  border-top: 1px solid rgba(226,184,191,0.42);
  padding-top: 16px;
}
.kpis strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px);
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.kpis span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.78);
}

/* Sections with full-bleed image backgrounds (flagship + commitment) need
   pure-white text + a stacked shadow halo so copy reads cleanly over the busy imagery. */
.section--feature .lede--light,
.section--commitment .lede--light {
  color: var(--bone);
  text-shadow:
    0 0 1px rgba(6,20,26,0.85),
    0 1px 4px rgba(6,20,26,0.85),
    0 2px 18px rgba(6,20,26,0.7);
}
.section--feature .display--light,
.section--commitment .display--light {
  text-shadow:
    0 1px 3px rgba(6,20,26,0.55),
    0 2px 24px rgba(6,20,26,0.55);
}
.section--feature .eyebrow,
.section--commitment .eyebrow {
  text-shadow: 0 1px 8px rgba(6,20,26,0.7);
}
.section--feature .kpis span {
  color: var(--bone);
  text-shadow:
    0 0 1px rgba(6,20,26,0.85),
    0 1px 6px rgba(6,20,26,0.8);
}
.section--feature .kpis strong {
  text-shadow:
    0 1px 3px rgba(6,20,26,0.55),
    0 2px 22px rgba(6,20,26,0.55);
}
.section--feature .kpis li { border-top-color: rgba(226,184,191,0.65); }

/* ============== PROGRAM (What's being built) ============== */
.program {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 40px) clamp(28px, 3.4vw, 56px);
  border-top: 1px solid rgba(122,97,73,0.22);
  padding-top: 48px;
}
@media (max-width: 880px) { .program { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .program { grid-template-columns: 1fr; } }
.program__cell {
  padding-bottom: 6px;
}
.program__cell h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.program__cell p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
  max-width: 36ch;
}

/* ============== QUADRANTS (Where building breathes) ============== */
.quadrants {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.6vw, 56px);
}
@media (max-width: 760px) { .quadrants { grid-template-columns: 1fr; } }
.quadrants li {
  padding: 28px 0 0;
  border-top: 1px solid rgba(122,97,73,0.32);
}
.quadrants h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--ink);
  margin: 0 0 14px;
}
.quadrants p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
  max-width: 42ch;
}

/* Quad — generic 4-column for Mobility */
.quad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.6vw, 56px);
  border-top: 1px solid rgba(122,97,73,0.22);
  padding-top: 48px;
}
@media (max-width: 760px) { .quad { grid-template-columns: 1fr; } }
.quad__cell h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  color: var(--ink);
  margin: 0 0 12px;
}
.quad__cell p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
  max-width: 46ch;
}

/* ============== DIMENSIONS (4 dim cards on dark bg) ============== */
.section--dimensions { background: var(--black); }
.dims {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
@media (max-width: 760px) { .dims { grid-template-columns: 1fr; } }
.dim {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: clamp(28px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--bone);
  background-color: var(--black-2);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .6s var(--ease);
}
.dim::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,20,26,0.19) 0%, rgba(6,20,26,0.34) 55%, rgba(6,20,26,0.64) 100%);
  z-index: 0;
}
.dim:hover { transform: translateY(-4px); }
.dim__num {
  position: absolute;
  top: clamp(20px, 2.4vw, 36px);
  left: clamp(20px, 2.4vw, 36px);
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--coral);
  letter-spacing: 0.05em;
}
.dim h3, .dim p { position: relative; z-index: 1; }
.dim h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--bone);
  margin: 0 0 10px;
  letter-spacing: -0.008em;
  max-width: 18ch;
}
.dim p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(250,247,241,0.86);
  margin: 0;
  max-width: 42ch;
}

/* ============== COMMITMENT ============== */
.section--commitment {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.commit__media { position: absolute; inset: 0; z-index: 0; }
.commit__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.commit__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,20,26,0.4) 0%, rgba(6,20,26,0.45) 50%, rgba(6,20,26,0.64) 100%),
    /* Center-weighted dark spot anchors the centered headline + body copy. */
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(6,20,26,0.5) 0%, rgba(6,20,26,0.15) 75%);
}
.commit__media img { transform: scale(1.05); }
.commit__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

/* ============== CONTACT ============== */
.two-col--contact .two-col__body { max-width: 640px; }
.form {
  margin: 32px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form__field input,
.form__field select,
.form__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(27,31,30,0.2);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  transition: border-color .3s var(--ease);
  border-radius: 0;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-bottom-color: var(--coral);
}
.form__field textarea { resize: vertical; }
.form button[type="submit"] {
  align-self: flex-start;
  margin-top: 10px;
}
.form__note {
  font-size: 13px;
  color: var(--coral-deep);
  margin: 6px 0 0;
  min-height: 1em;
}
.form__note.is-error { color: #B7402A; }
.form__hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact__direct {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink-muted);
  margin: 24px 0 0;
}
.contact__direct a {
  color: var(--ink);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 1px;
  transition: color .3s var(--ease);
}
.contact__direct a:hover { color: var(--coral); }

/* ============== FOOTER ============== */
.footer {
  background: var(--black);
  color: var(--white-faint);
  padding: 56px 0 40px;
  border-top: 1px solid rgba(168,229,220,0.08);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__mark {
  width: 32px; height: 32px; border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(168,229,220,0.2));
}
.footer__name {
  font-family: var(--display-serif);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--bone);
  margin: 0;
}
.footer__line {
  font-size: 14px;
  max-width: 56ch;
  margin: 0;
  color: rgba(244,239,230,0.7);
}
.footer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__meta a { transition: color .3s var(--ease); }
.footer__meta a:hover { color: var(--coral); }

/* ============== ACCESSIBILITY ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--coral);
  color: var(--bone);
}

/* ============== INVESTMENT SUMMARY ============== */
.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 40px) clamp(28px, 3.4vw, 56px);
  border-top: 1px solid rgba(122,97,73,0.22);
  padding-top: 48px;
}

.investment-card {
  padding: 0 0 6px;
  background: transparent;
  border: 0;
  min-height: auto;
}

.investment-card:hover {
  transform: translateY(-4px);
  background: rgba(250,247,241,0.72);
  border-color: rgba(122,97,73,0.34);
}

.investment-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}

.investment-card strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.investment-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
  max-width: 36ch;
}

.investment-card p em {
  color: var(--ink);
}

.investment-card span {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}

@media (max-width: 880px) {
  .investment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .investment-grid {
    grid-template-columns: 1fr;
  }
}

/* ============== ROI TABLE ============== */
.roi-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-top: 1px solid rgba(122,97,73,0.18);
  padding-top: 42px;
}

.roi-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.roi-table thead th {
  text-align: left;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-deep);
  padding: 0 18px 18px 0;
  border-bottom: 1px solid rgba(122,97,73,0.16);
}

.roi-table tbody td {
  padding: 24px 18px 24px 0;
  border-bottom: 1px solid rgba(122,97,73,0.12);
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.roi-table tbody tr:hover td {
  color: var(--stone-deep);
}

.roi-note {
  margin-top: 18px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-muted);
}

@media (max-width: 820px) {
  .roi-table tbody td {
    font-size: 18px;
  }
}

/* ============== INVESTOR BENEFITS ============== */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(122,97,73,0.16);
  border: 1px solid rgba(122,97,73,0.16);
}

.perk-item {
  min-height: 230px;
  padding: clamp(24px, 2.6vw, 34px);
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.perk-item span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--stone-deep);
}

.perk-item p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (max-width: 1080px) {
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }

  .perk-item {
    min-height: 170px;
  }
}

/* ============== CAPITAL PROTECTION ============== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 80px);
  border-top: 1px solid rgba(122,97,73,0.16);
  padding-top: 46px;
}

.security-item {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(122,97,73,0.14);
}

.security-item span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-deep);
}

.security-item h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.security-item p {
  margin: 0;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
}

@media (max-width: 760px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}

/* ============== TRUST BAR ============== */
.trust-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 88px;
  z-index: 3;
  width: 100%;
  padding: 0 var(--gutter);
  text-align: center;
}

.trust-bar__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.trust-bar__inner p {
  margin: 0;
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
  text-shadow: 0 1px 8px rgba(6,20,26,0.8);
}

.trust-bar__inner p span {
  color: var(--bone);
}

.hero:has(.trust-bar) .hero__scroll {
  bottom: 12px;
}

@media (max-width: 768px) {
  .trust-bar {
    bottom: 112px;
    padding: 0 22px;
  }

  .trust-bar__inner {
    gap: 8px 14px;
  }

  .trust-bar__inner p {
    font-size: 8.5px;
    line-height: 1.7;
    letter-spacing: 0.12em;
  }

  .hero:has(.trust-bar) .hero__scroll {
    bottom: 28px;
  }
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__investor {
  font-family: var(--display-serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--bone);
  transition: color .4s var(--ease);
}

.phone-field {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 12px;
}

.phone-field select,
.phone-field input {
  width: 100%;
}

@media (max-width: 600px) {
  .phone-field {
    grid-template-columns: 1fr;
  }
}

