/* ============================================
   INDO ISLAND INVEST · Editorial stylesheet
   ============================================ */

:root {
  /* Palette: deep ocean ink, warm sand, refined accents */
  --ink: #0F1A1E;          /* near-black, oceanic */
  --ink-soft: #1B2A30;
  --sand: #F5EFE4;         /* warm paper */
  --sand-deep: #E8DFCE;
  --bone: #FBF7EE;
  --teal: #2A6B6E;         /* deep teal accent */
  --teal-deep: #1A4548;
  --terracotta: #B8552A;   /* warm accent for sold/urgency */
  --gold: #B89254;         /* refined accent */
  --line: rgba(15, 26, 30, 0.12);
  --line-strong: rgba(15, 26, 30, 0.28);
  --muted: rgba(15, 26, 30, 0.62);
  --muted-light: rgba(245, 239, 228, 0.72);

  /* Typography */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --container: 1320px;
  --container-narrow: 1100px;
  --gutter: clamp(20px, 4vw, 56px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
}

/* Subtle grain texture for atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.10 0 0 0 0 0.12 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: multiply;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

.eyebrow--accent {
  color: var(--teal);
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.06;
  color: var(--ink);
}

.display-xl {
  font-size: clamp(48px, 8vw, 128px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.display-l {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 0.98;
}

.display-m {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
}

.display-s {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
}

em, .italic {
  font-style: italic;
  font-family: var(--font-display);
}

p.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */

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

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(80px, 10vw, 160px);
}

.section--tight {
  padding-block: clamp(60px, 7vw, 100px);
}

.section--ink {
  background: var(--ink);
  color: var(--bone);
}

.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 {
  color: var(--bone);
}

.section--sand {
  background: var(--sand);
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav.is-scrolled .nav__brand {
  color: var(--ink);
}

.nav__brand-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  transition: opacity 0.2s;
}

.nav.is-scrolled .nav__link {
  color: var(--ink);
}

.nav__link:hover {
  opacity: 0.6;
}

.nav__cta {
  background: var(--bone);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s;
}

.nav.is-scrolled .nav__cta {
  background: var(--ink);
  color: var(--bone);
}

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

@media (max-width: 880px) {
  .nav__links { gap: 14px; }
  .nav__link { display: none; }
  .nav__link--keep { display: inline; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--bone);
}

.btn--primary:hover {
  background: transparent;
  color: var(--bone);
  transform: translateY(-1px);
}

.btn--ink {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
}

.btn--ink:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(251, 247, 238, 0.4);
}

.btn--ghost:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
  transform: translateY(-1px);
}

.btn--ghost-ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn--ghost-ink:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.btn--whatsapp::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.1-.2.3-.8.9-1 1.1-.2.2-.4.2-.7.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.4.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.1-.7-1.6-.9-2.2-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.3 5.2 4.6.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.7-.7 2-1.4.2-.7.2-1.2.2-1.4-.1-.1-.3-.2-.6-.3M12 0C5.4 0 0 5.4 0 12c0 2.1.6 4.1 1.6 5.9L0 24l6.3-1.6c1.7.9 3.7 1.5 5.7 1.5 6.6 0 12-5.4 12-12S18.6 0 12 0m0 22c-1.9 0-3.7-.5-5.3-1.4l-.4-.2-3.7 1 1-3.6-.3-.4C2.4 15.7 2 13.9 2 12 2 6.5 6.5 2 12 2s10 4.5 10 10-4.5 10-10 10'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.1-.2.3-.8.9-1 1.1-.2.2-.4.2-.7.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.4.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.1-.7-1.6-.9-2.2-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.3 5.2 4.6.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.7-.7 2-1.4.2-.7.2-1.2.2-1.4-.1-.1-.3-.2-.6-.3M12 0C5.4 0 0 5.4 0 12c0 2.1.6 4.1 1.6 5.9L0 24l6.3-1.6c1.7.9 3.7 1.5 5.7 1.5 6.6 0 12-5.4 12-12S18.6 0 12 0m0 22c-1.9 0-3.7-.5-5.3-1.4l-.4-.2-3.7 1 1-3.6-.3-.4C2.4 15.7 2 13.9 2 12 2 6.5 6.5 2 12 2s10 4.5 10 10-4.5 10-10 10'/%3E%3C/svg%3E") no-repeat center;
}

.text-link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.2s;
}

.text-link:hover {
  gap: 14px;
}

.text-link__arrow {
  transition: transform 0.2s;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gutter);
  padding-top: 100px;
  color: var(--bone);
  isolation: isolate;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,26,30,0.35) 0%, rgba(15,26,30,0.15) 30%, rgba(15,26,30,0.85) 100%),
    linear-gradient(90deg, rgba(15,26,30,0.4) 0%, rgba(15,26,30,0) 60%);
}

.hero__content {
  max-width: 1100px;
  padding-block: clamp(40px, 6vw, 80px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--bone);
}

.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--bone);
}

.hero__title {
  color: var(--bone);
  margin-bottom: 24px;
}

.hero__title em {
  color: var(--sand-deep);
  font-style: italic;
}

.hero__lead {
  max-width: 640px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  font-weight: 300;
  color: rgba(251, 247, 238, 0.88);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__meta {
  position: absolute;
  bottom: var(--gutter);
  right: var(--gutter);
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.7);
  z-index: 2;
}

.hero__meta-divider {
  width: 1px;
  height: 24px;
  background: rgba(251, 247, 238, 0.4);
  margin-inline-start: auto;
  margin-bottom: 12px;
}

@media (max-width: 880px) {
  .hero__meta { display: none; }
}

/* ============================================
   WHY ROTE — editorial split
   ============================================ */

.why {
  background: var(--bone);
}

.why__intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: 80px;
  align-items: start;
}

.why__intro h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 0.98;
}

.why__intro h2 em {
  font-style: italic;
  color: var(--teal);
}

.why__intro p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 600px;
}

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

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

.why__card {
  display: flex;
  flex-direction: column;
}

.why__card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.why__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.why__card:hover .why__card-img img {
  transform: scale(1.04);
}

.why__card-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  background: var(--bone);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.why__card h3 {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why__card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}

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

/* ============================================
   LISTINGS GRID
   ============================================ */

.listings {
  background: var(--ink);
  color: var(--bone);
  padding-block: clamp(100px, 12vw, 180px);
  position: relative;
  overflow: hidden;
}

.listings__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(56px, 7vw, 96px);
  align-items: end;
}

.listings__header h2 {
  color: var(--bone);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 0.98;
}

.listings__header h2 em {
  color: var(--gold);
  font-style: italic;
}

.listings__header-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.listings__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.6);
  display: flex;
  gap: 16px;
}

.listings__count strong {
  font-weight: 500;
  color: var(--bone);
}

.listings__count span {
  display: flex;
  gap: 6px;
}

.listings__count span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 4px;
  background: var(--teal);
}

.listings__count span.is-sold::before {
  background: var(--terracotta);
}

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

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

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

.plot-card {
  display: block;
  position: relative;
  color: var(--bone);
  transition: transform 0.4s ease;
}

.plot-card:hover {
  transform: translateY(-4px);
}

.plot-card__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--ink-soft);
}

.plot-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.plot-card:hover .plot-card__img img {
  transform: scale(1.05);
}

.plot-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(251, 247, 238, 0.92);
  color: var(--ink);
  padding: 7px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.plot-card__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.plot-card__badge.is-sold {
  background: var(--terracotta);
  color: var(--bone);
}

.plot-card__badge.is-sold::before {
  background: var(--bone);
}

.plot-card__sold-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 26, 30, 0.55);
  pointer-events: none;
}

.plot-card__sold-overlay span {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--bone);
  transform: rotate(-6deg);
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  padding: 6px 28px;
}

.plot-card__num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--bone);
  background: rgba(15, 26, 30, 0.45);
  backdrop-filter: blur(6px);
  padding: 6px 9px;
}

.plot-card__location {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plot-card__location::before {
  content: "";
  width: 6px;
  height: 1px;
  background: currentColor;
}

.plot-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--bone);
}

.plot-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(251, 247, 238, 0.18);
}

.plot-card__size {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(251, 247, 238, 0.7);
}

.plot-card__price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.plot-card__price-sold {
  text-decoration: line-through;
  color: rgba(251, 247, 238, 0.4);
}

/* ============================================
   PROCESS
   ============================================ */

.process {
  background: var(--bone);
  position: relative;
}

.process__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 80px);
}

.process__header h2 em {
  color: var(--teal);
  font-style: italic;
}

.process__header p {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}

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

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
  border-top: 1px solid var(--line);
}

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

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

.process__step {
  padding: 32px 0 0;
  border-right: 1px solid var(--line);
  padding-right: clamp(20px, 2vw, 32px);
}

.process__step:last-child { border-right: none; }

@media (max-width: 880px) {
  .process__step:nth-child(2) { border-right: none; }
}

@media (max-width: 540px) {
  .process__step { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 32px; }
  .process__step:last-child { border-bottom: none; }
}

.process__step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 24px;
}

.process__step h4 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process__step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.process__step-time {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 5px 10px;
}

/* ============================================
   BALI COMPARISON
   ============================================ */

.compare {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.compare__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

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

.compare__lead h2 {
  margin-bottom: 28px;
}

.compare__lead h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.compare__lead p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 24px;
}

.compare__quote {
  border-left: 2px solid var(--terracotta);
  padding-left: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-top: 40px;
}

.compare__quote-source {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
  display: block;
  margin-top: 12px;
}

.compare__table {
  background: var(--bone);
  padding: 40px;
  border: 1px solid var(--line);
}

.compare__table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  gap: 16px;
}

.compare__table-row:first-child {
  padding-top: 0;
}

.compare__table-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.compare__table-row.is-head {
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 14px;
}

.compare__table-row.is-head span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare__table-row.is-head span:first-child { color: transparent; }

.compare__location {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.compare__location small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
  margin-top: 4px;
}

.compare__price {
  font-family: var(--font-display);
  font-size: 22px;
}

.compare__price small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.compare__tenure {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare__tenure.is-leasehold { color: var(--terracotta); }
.compare__tenure.is-freehold { color: var(--teal); font-weight: 600; }

.compare__footnote {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 540px) {
  .compare__table { padding: 24px; }
  .compare__table-row { grid-template-columns: 1fr; gap: 6px; }
  .compare__table-row.is-head { display: none; }
  .compare__location { font-size: 22px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--ink);
  color: var(--bone);
}

.testimonials__lead {
  max-width: 880px;
  margin-bottom: clamp(56px, 7vw, 80px);
}

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

.testimonials__lead p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.18;
  font-weight: 300;
  color: var(--bone);
  margin-top: 24px;
  letter-spacing: -0.01em;
}

.testimonials__lead p em {
  font-style: italic;
  color: var(--gold);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

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

.testimonial {
  border: 1px solid rgba(251, 247, 238, 0.14);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(180deg, rgba(251,247,238,0.03), rgba(251,247,238,0));
}

.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  font-style: italic;
  line-height: 0.8;
  color: var(--gold);
  font-weight: 300;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  color: rgba(251, 247, 238, 0.92);
  flex: 1;
}

.testimonial__attr {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 247, 238, 0.14);
}

.testimonial__name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bone);
}

.testimonial__detail {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.55);
}

/* ============================================
   CONTACT / JANIATI
   ============================================ */

.contact {
  background: var(--sand);
}

.contact__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

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

.contact__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-soft);
  max-width: 480px;
}

.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact__photo-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--bone);
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact__body h2 {
  margin-bottom: 28px;
}

.contact__body h2 em {
  color: var(--teal);
  font-style: italic;
}

.contact__body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}

.contact__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 8px;
}

.contact__role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.contact__phone {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact__phone::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.contact__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: var(--bone);
}

.faq__inner {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

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

.faq__lead h2 em {
  color: var(--teal);
  font-style: italic;
}

.faq__lead p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 20px;
  max-width: 320px;
}

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

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 0.2s;
}

.faq__q:hover {
  color: var(--teal);
}

.faq__plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform 0.3s;
}

.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__plus::before { width: 10px; height: 1px; }
.faq__plus::after { width: 1px; height: 10px; transition: transform 0.3s; }

.faq__item.is-open .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__a-inner {
  padding: 0 0 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 720px;
}

.faq__item.is-open .faq__a {
  max-height: 400px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(60px, 8vw, 100px) var(--gutter) 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(251, 247, 238, 0.14);
  margin-bottom: 32px;
}

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

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

.footer__brand {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.footer__brand em {
  font-style: italic;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(251, 247, 238, 0.6);
  max-width: 320px;
}

.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(251, 247, 238, 0.5);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a, .footer__col li {
  font-size: 14px;
  color: rgba(251, 247, 238, 0.85);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(251, 247, 238, 0.5);
  text-transform: uppercase;
}

/* ============================================
   PLOT DETAIL PAGE
   ============================================ */

.plot-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gutter);
  padding-top: 100px;
  color: var(--bone);
  overflow: hidden;
}

.plot-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.plot-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plot-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,26,30,0.5) 0%, rgba(15,26,30,0.05) 25%, rgba(15,26,30,0.85) 100%);
}

.plot-hero__inner {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.plot-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.7);
}

.plot-hero__breadcrumb a:hover { color: var(--bone); text-decoration: underline; }

.plot-hero__breadcrumb span {
  width: 18px; height: 1px; background: currentColor;
}

.plot-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plot-hero__location-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.plot-hero__location-dot.is-sold { background: var(--terracotta); }

.plot-hero__title {
  color: var(--bone);
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin-bottom: 24px;
}

.plot-hero__title em {
  font-style: italic;
  color: var(--sand-deep);
}

.plot-hero__tagline {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  font-weight: 300;
  color: rgba(251, 247, 238, 0.88);
  max-width: 720px;
  margin-bottom: 40px;
}

.plot-hero__quickfacts {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(251, 247, 238, 0.2);
}

.plot-hero__fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plot-hero__fact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.55);
}

.plot-hero__fact-value {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
}

.plot-hero__sold-stamp {
  position: absolute;
  top: clamp(120px, 14vw, 180px);
  right: var(--gutter);
  border: 2px solid var(--terracotta);
  padding: 12px 24px;
  color: var(--bone);
  background: rgba(184, 85, 42, 0.85);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3em;
  transform: rotate(-3deg);
}

@media (max-width: 760px) {
  .plot-hero__sold-stamp {
    top: 90px;
    right: 20px;
    padding: 8px 14px;
    font-size: 11px;
  }
}

/* Gallery */
.gallery {
  background: var(--sand);
}

.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.gallery__header h2 em {
  color: var(--teal);
  font-style: italic;
}

.gallery__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(8px, 1vw, 16px);
}

.gallery__item {
  overflow: hidden;
  cursor: zoom-in;
  background: var(--ink-soft);
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* Asymmetric layout: editorial */
.gallery__item.g-1 { grid-column: span 8; aspect-ratio: 16 / 10; }
.gallery__item.g-2 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery__item.g-3 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery__item.g-4 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery__item.g-5 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery__item.g-6 { grid-column: span 6; aspect-ratio: 4 / 3; }
.gallery__item.g-7 { grid-column: span 6; aspect-ratio: 4 / 3; }

@media (max-width: 720px) {
  .gallery__item.g-1,
  .gallery__item.g-2,
  .gallery__item.g-3,
  .gallery__item.g-4,
  .gallery__item.g-5,
  .gallery__item.g-6,
  .gallery__item.g-7 {
    grid-column: span 12;
    aspect-ratio: 4 / 3;
  }
}

/* Video block */
.plot-video {
  background: var(--ink);
  padding: 0;
}

.plot-video__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(60px, 7vw, 100px) var(--gutter);
}

.plot-video__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.plot-video__header h2 {
  color: var(--bone);
}

.plot-video__header h2 em { color: var(--gold); font-style: italic; }

.plot-video__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(251, 247, 238, 0.14);
}

.plot-video__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Property details — editorial spec sheet */
.specs {
  background: var(--bone);
}

.specs__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.specs__header h2 em { color: var(--teal); font-style: italic; }

.specs__header p {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

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

.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

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

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

.specs__item {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.specs__item:nth-child(3n) { border-right: none; }

@media (max-width: 880px) {
  .specs__item:nth-child(3n) { border-right: 1px solid var(--line); }
  .specs__item:nth-child(2n) { border-right: none; }
}

@media (max-width: 480px) {
  .specs__item { border-right: none !important; padding-right: 0; }
}

.specs__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.specs__value {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.specs__value-mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Price block */
.price {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}

.price__inner {
  max-width: var(--container);
  margin-inline: auto;
}

.price__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: 64px;
}

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

.price__heading h2 em { color: var(--gold); font-style: italic; }

.price__total {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--bone);
}

.price__total small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.55);
  margin-bottom: 16px;
  font-style: normal;
}

.price__per-m {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  color: rgba(251, 247, 238, 0.85);
  margin-top: 16px;
}

.price__per-m em { color: var(--gold); font-style: italic; }

.price__currencies {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(251, 247, 238, 0.18);
  padding-top: 32px;
}

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

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

.price__currency {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 16px;
  border-right: 1px solid rgba(251, 247, 238, 0.1);
}

.price__currency:last-child { border-right: none; }

@media (max-width: 880px) { .price__currency { border-right: none; } }

.price__currency-code {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.55);
}

.price__currency-amount {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
}

/* Comparison block in plot detail */
.compare-row {
  background: var(--sand);
}

.compare-row__inner {
  max-width: var(--container);
  margin-inline: auto;
}

.compare-row h2 em { color: var(--terracotta); font-style: italic; }

.compare-row__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: 56px;
}

@media (max-width: 880px) { .compare-row__intro { grid-template-columns: 1fr; } }

.compare-row__intro p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
}

.compare-row__factor {
  background: var(--bone);
  border-left: 4px solid var(--terracotta);
  padding: clamp(28px, 3vw, 48px);
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

@media (max-width: 540px) {
  .compare-row__factor { grid-template-columns: 1fr; }
}

.compare-row__factor-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 300;
  line-height: 0.85;
  color: var(--terracotta);
  letter-spacing: -0.04em;
}

.compare-row__factor-num em { font-style: italic; }

.compare-row__factor-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink-soft);
}

.compare-row__factor-text strong {
  font-weight: 600;
  color: var(--ink);
}

/* About + Highlights */
.about-highlights {
  background: var(--bone);
}

.about-highlights__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}

@media (max-width: 880px) {
  .about-highlights__inner { grid-template-columns: 1fr; gap: 64px; }
}

.about-highlights h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.about-highlights h3 em {
  font-style: italic;
  color: var(--teal);
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.about-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background: var(--teal);
  border-radius: 50%;
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.highlight-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
}

.highlight-list__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
}

.highlight-list__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.highlight-list__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

/* CTA block at bottom of plot pages */
.plot-cta {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}

.plot-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(184, 146, 84, 0.08), transparent 60%);
  pointer-events: none;
}

.plot-cta__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}

@media (max-width: 880px) { .plot-cta__inner { grid-template-columns: 1fr; } }

.plot-cta__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-soft);
}

.plot-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.plot-cta__body h2 {
  color: var(--bone);
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 64px);
}

.plot-cta__body h2 em { font-style: italic; color: var(--gold); }

.plot-cta__body p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(251, 247, 238, 0.75);
  margin-bottom: 32px;
  max-width: 540px;
}

.plot-cta__name {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 6px;
}

.plot-cta__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.6);
  margin-bottom: 28px;
}

.plot-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.plot-cta__back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.7);
  padding-top: 24px;
  border-top: 1px solid rgba(251, 247, 238, 0.18);
  transition: color 0.2s, gap 0.2s;
}

.plot-cta__back:hover { color: var(--bone); gap: 18px; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__eyebrow,
.hero__title,
.hero__lead,
.hero__actions,
.plot-hero__breadcrumb,
.plot-hero__location,
.plot-hero__title,
.plot-hero__tagline,
.plot-hero__quickfacts {
  animation: fadeUp 1s ease both;
}

.hero__eyebrow { animation-delay: 0.1s; }
.hero__title { animation-delay: 0.25s; }
.hero__lead { animation-delay: 0.4s; }
.hero__actions { animation-delay: 0.55s; }

.plot-hero__breadcrumb { animation-delay: 0.1s; }
.plot-hero__location { animation-delay: 0.2s; }
.plot-hero__title { animation-delay: 0.3s; }
.plot-hero__tagline { animation-delay: 0.45s; }
.plot-hero__quickfacts { animation-delay: 0.6s; }

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