/* ============================================================
   CASA KORI · SEMINYAK
   Spanish Mediterranean coastal villa
   Cinzel + Lato + JetBrains Mono
   sun ivory + Mediterranean blue + sun ochre + olive deep
   + bougainvillea pink + warm sand + ink
   ============================================================ */

:root {
  /* palette */
  --ivory: #fbf3df;
  --paper: #f6ead0;
  --sand: #e8d8b8;
  --sand-deep: #d8c498;
  --med-blue: #3b8290;
  --med-blue-deep: #285f6a;
  --med-blue-soft: #d6e7ea;
  --ochre: #d4954a;
  --ochre-deep: #b87832;
  --olive: #56602f;
  --olive-soft: #8a9559;
  --bougain: #c43564;
  --bougain-soft: #f5d8e0;
  --ink: #1f1c17;
  --ink-soft: #4a443a;
  --line: rgba(31, 28, 23, .14);
  --line-strong: rgba(31, 28, 23, .32);
  --paper-card: #fff8e6;

  /* typography */
  --f-display: "Cinzel", "Trajan Pro", serif;
  --f-body: "Lato", "Helvetica Neue", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", "Source Code Pro", monospace;

  /* sizes */
  --r-pill: 999px;
  --r-card: 14px;
  --r-arch: 240px;

  /* shadow */
  --sh-1: 0 2px 0 rgba(31, 28, 23, .04), 0 12px 28px -16px rgba(31, 28, 23, .18);
  --sh-2: 0 4px 0 rgba(31, 28, 23, .06), 0 22px 48px -20px rgba(31, 28, 23, .28);
  --sh-feat: 0 0 0 2px var(--ochre), 0 6px 0 rgba(31, 28, 23, .06), 0 28px 60px -20px rgba(180, 110, 40, .35);

  /* spacing */
  --wrap: 1180px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font: 400 16.5px/1.62 var(--f-body);
  overflow-x: hidden;
  /* subtle Mediterranean limewash texture */
  background-image:
    radial-gradient(at 12% 8%, rgba(212, 149, 74, .07), transparent 35%),
    radial-gradient(at 92% 22%, rgba(59, 130, 144, .07), transparent 40%),
    radial-gradient(at 50% 95%, rgba(86, 96, 47, .05), transparent 45%);
}

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

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

button { font: inherit; cursor: pointer; }

em {
  font-style: italic;
  color: var(--med-blue);
  font-weight: 400;
}

p em.ph { color: var(--bougain); font-weight: 700; }

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

.kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 14px;
}

.kicker .k-roman {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--med-blue);
  letter-spacing: .12em;
  border-right: 1px solid var(--line-strong);
  padding-right: 12px;
}

.kicker .k-line {
  flex: 0 0 28px;
  height: 1px;
  background: var(--ochre);
  display: inline-block;
}

.kicker-light { color: var(--ochre); }
.kicker-light .k-roman { color: var(--ivory); border-right-color: rgba(251, 243, 223, .35); }

.head {
  text-align: center;
  margin-bottom: 56px;
}

.head h2,
h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: .015em;
}

.head-p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.head .kicker {
  justify-content: center;
}

/* ============================================================
   GPS COORDS BAR
   ============================================================ */

.coords-bar {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 10px 24px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--ochre);
}

.cb-piece { color: var(--ivory); }

.cb-dot { color: var(--ochre); }

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 243, 223, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.br-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--med-blue);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 0 0 0 2px var(--ivory), 0 0 0 3px var(--ochre);
}

.br-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .14em;
  color: var(--ink);
}

.br-sub {
  display: none;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--ochre-deep);
  text-transform: uppercase;
}

.nav-mid {
  margin-left: auto;
  display: none;
  gap: 26px;
  align-items: center;
}

.nav-mid a {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}

.nav-mid a:hover { color: var(--med-blue); }

.nav-mid a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ochre);
}

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--med-blue);
  color: var(--ivory);
  border-radius: var(--r-pill);
  padding: 9px 18px 9px 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 0 0 2px var(--ivory), 0 0 0 3px var(--ochre);
  transition: transform .2s ease, background .2s ease;
}

.nav-wa:hover {
  background: var(--med-blue-deep);
  transform: translateY(-1px);
}

.nav-wa i { font-size: 15px; }

@media (min-width: 900px) {
  .nav-mid { display: inline-flex; }
  .br-sub { display: inline; align-self: center; padding-left: 4px; border-left: 1px solid var(--line-strong); margin-left: 2px; line-height: 1; }
}

/* ============================================================
   HERO · ARCHWAY
   ============================================================ */

.hero {
  position: relative;
  padding: 56px 0 80px;
  background:
    radial-gradient(at 10% 0%, rgba(214, 231, 234, .8), transparent 45%),
    radial-gradient(at 95% 25%, rgba(232, 216, 184, .55), transparent 40%),
    var(--ivory);
}

.hero-wrap {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero-kicker {
  justify-content: center;
}

.masthead {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 8vw, 86px);
  line-height: 1;
  letter-spacing: .04em;
  margin: 6px 0 18px;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.4vw, 18px);
}

.masthead .m-word {
  display: inline-block;
}

.masthead .m-word:nth-child(3) {
  color: var(--med-blue);
}

.masthead .m-dot {
  color: var(--ochre);
  font-size: .55em;
  vertical-align: 0.2em;
}

.hero-tag {
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--ink-soft);
  font-family: var(--f-body);
  font-weight: 400;
}

/* archway frame: CSS-rendered arch with ionic columns */
.archway {
  position: relative;
  margin: 36px auto 30px;
  max-width: 760px;
  padding: 0 70px 0 70px;
}

.arch-col {
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 100%;
  filter: drop-shadow(2px 0 0 rgba(31, 28, 23, .04));
}

.arch-col-l { left: 6px; }
.arch-col-r { right: 6px; transform: scaleX(-1); }

.arch-frame {
  position: relative;
  margin: 0;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  background: var(--ivory);
  border: 4px solid var(--ink);
  border-bottom: 6px double var(--ink);
  box-shadow:
    0 0 0 8px var(--ivory),
    0 0 0 9px var(--ochre),
    0 28px 60px -22px rgba(31, 28, 23, .35);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

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

.arch-frame figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(31, 28, 23, .82), rgba(31, 28, 23, 0));
  color: var(--ivory);
  padding: 36px 22px 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.arch-frame figcaption span:first-child {
  color: var(--ochre);
}

.ornament-olive {
  position: absolute;
  width: 88px;
  height: 88px;
  pointer-events: none;
  z-index: 3;
  opacity: .9;
}

.olive-tl { top: -8px; left: -8px; }
.olive-tr { top: -8px; right: -8px; transform: scaleX(-1); }

/* hero-meta data strip */
.hero-meta {
  margin: 36px auto 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 760px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  padding: 18px;
  position: relative;
}

.hero-meta::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: var(--line);
}

.hm-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 12px;
}

.hm-k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}

.hm-v {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}

.hm-v b {
  color: var(--med-blue);
  font-weight: 700;
  font-size: 19px;
}

.hm-v small {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-soft);
  margin-left: 4px;
  font-weight: 400;
  letter-spacing: .14em;
}

@media (min-width: 700px) {
  .hero-meta { grid-template-columns: repeat(5, 1fr); }
  .hero-meta::before { display: none; }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.btn-prim {
  background: var(--med-blue);
  color: var(--ivory);
  box-shadow: 0 0 0 2px var(--ivory), 0 0 0 3px var(--ochre);
}

.btn-prim:hover {
  background: var(--med-blue-deep);
  transform: translateY(-2px);
}

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

.btn-line:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-mini {
  padding: 10px 16px;
  font-size: 10.5px;
  letter-spacing: .2em;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-mini:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-feat {
  background: var(--bougain);
  color: var(--ivory);
  border-color: var(--bougain);
}

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

.btn-cta {
  background: var(--ochre);
  color: var(--ink);
  padding: 17px 32px;
  font-size: 13px;
  box-shadow: 0 0 0 2px var(--ink), 0 6px 0 rgba(31, 28, 23, .15), 0 28px 56px -16px rgba(212, 149, 74, .55);
}

.btn-cta i { font-size: 17px; }

.btn-cta:hover {
  background: var(--ivory);
  transform: translateY(-3px);
  box-shadow: 0 0 0 2px var(--ink), 0 8px 0 rgba(31, 28, 23, .2), 0 32px 64px -16px rgba(212, 149, 74, .6);
}

/* ============================================================
   AZULEJO TILE BAND
   ============================================================ */

.azulejo-band {
  display: flex;
  align-items: center;
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.az-strip {
  display: flex;
  flex: 1;
  height: 60px;
}

.az-tile {
  flex: 1;
  height: 100%;
  position: relative;
  border-right: 1px solid rgba(251, 243, 223, .12);
}

/* azulejo tile patterns — 3 distinct CSS conic / radial designs */
.az-1 {
  background:
    radial-gradient(circle at 50% 50%, var(--ochre) 0 8%, transparent 8% 18%, var(--ivory) 18% 22%, transparent 22% 36%, var(--med-blue) 36% 42%, transparent 42%),
    var(--med-blue-deep);
}

.az-2 {
  background:
    conic-gradient(from 45deg, var(--ivory) 0 25%, var(--bougain) 25% 50%, var(--ivory) 50% 75%, var(--bougain) 75% 100%);
  background-size: 30px 30px;
}

.az-3 {
  background:
    radial-gradient(circle at 0 0, var(--ochre) 0 10px, transparent 10px),
    radial-gradient(circle at 100% 0, var(--ochre) 0 10px, transparent 10px),
    radial-gradient(circle at 0 100%, var(--ochre) 0 10px, transparent 10px),
    radial-gradient(circle at 100% 100%, var(--ochre) 0 10px, transparent 10px),
    radial-gradient(circle at 50% 50%, var(--bougain) 0 5px, transparent 5px),
    var(--olive);
}

.az-medallion {
  flex: 0 0 110px;
  display: grid;
  place-items: center;
  margin: 0 18px;
}

.az-medallion svg {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .5));
}

.azulejo-band-2 {
  border-top: 1px solid var(--ochre);
  border-bottom: 1px solid var(--ochre);
}

/* ============================================================
   TENTANG · split layout
   ============================================================ */

.tentang {
  padding: 96px 0;
  background:
    linear-gradient(to bottom, var(--ivory), var(--paper) 70%, var(--ivory));
}

.tentang-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: start;
}

.t-copy .t-h {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.2;
  margin: 0 0 18px;
}

.t-p {
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 520px;
}

.t-points {
  list-style: none;
  margin: 24px 0 18px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.t-points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  align-items: baseline;
}

.t-points li span {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  color: var(--med-blue);
  letter-spacing: .08em;
}

.t-sign {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
}

.t-sig-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}

.t-sig-role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  margin-top: 4px;
}

.t-fig {
  margin: 0;
  position: relative;
}

.t-fig-frame {
  border-radius: 240px 240px 14px 14px;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 8px var(--ivory), 0 0 0 9px var(--ochre), 0 24px 50px -22px rgba(31, 28, 23, .3);
  aspect-ratio: 4 / 5;
}

.t-fig-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-fig figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.tf-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bougain);
  font-weight: 500;
}

.tf-cap {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
}

.olive-fig {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -28px;
  right: -12px;
  z-index: 2;
}

@media (min-width: 900px) {
  .tentang-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust {
  background: var(--ink);
  color: var(--ivory);
  padding: 32px 0;
  position: relative;
}

.trust::before,
.trust::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background:
    repeating-linear-gradient(90deg,
      var(--ochre) 0 28px,
      var(--bougain) 28px 56px,
      var(--med-blue) 56px 84px,
      var(--ivory) 84px 88px
    );
}

.trust::before { top: 0; }
.trust::after { bottom: 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: center;
}

.tr-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.tr-cell + .tr-cell::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(251, 243, 223, .18);
  display: none;
}

.tr-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--ochre);
  letter-spacing: .04em;
}

.tr-num sup {
  font-size: 14px;
  color: var(--bougain);
  margin-left: 2px;
}

.tr-k {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251, 243, 223, .76);
}

@media (min-width: 700px) {
  .trust-grid { grid-template-columns: repeat(5, 1fr); }
  .tr-cell + .tr-cell::before { display: block; }
}

/* ============================================================
   ROOMS · plate gallery
   ============================================================ */

.rooms {
  padding: 96px 0;
  background: var(--ivory);
}

.plates {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-top: 36px;
}

.plate {
  position: relative;
  background: var(--paper-card);
  border: 1px solid var(--line-strong);
  padding: 26px 22px 22px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--sh-1);
}

.plate:hover {
  transform: translateY(-4px);
  border-color: var(--ochre);
  box-shadow: var(--sh-2);
}

.plate-feat {
  background: var(--ivory);
  border: 2px solid var(--ochre);
  box-shadow: var(--sh-feat);
}

.plate-ribbon {
  position: absolute;
  top: 14px;
  right: -6px;
  background: var(--bougain);
  color: var(--ivory);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 14px;
  font-weight: 500;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.plate-ribbon::after {
  content: "";
  position: absolute;
  right: 0; bottom: -8px;
  width: 0; height: 0;
  border-top: 8px solid var(--bougain-soft);
  border-right: 6px solid transparent;
  filter: brightness(.4);
}

.plate-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plate-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--med-blue);
  color: var(--ivory);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px var(--ivory), 0 0 0 3px var(--ink);
  letter-spacing: .04em;
}

.plate-feat .plate-num {
  background: var(--bougain);
}

.plate-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 3px;
}

.plate-h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  margin: 4px 0 0;
  letter-spacing: .015em;
  color: var(--ink);
}

.plate-sub {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 13.5px;
  margin: 0;
}

.plan {
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px;
  margin: 4px 0;
}

.plate-spec {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.plate-spec li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dotted var(--line-strong);
  font-size: 13.5px;
  color: var(--ink-soft);
}

.plate-spec li span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}

.plate-spec li b {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .015em;
}

.plate-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

.plate-amt {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.amt-rp {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ochre-deep);
  text-transform: uppercase;
}

.amt-n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--med-blue);
  letter-spacing: .02em;
}

.plate-feat .amt-n {
  color: var(--bougain);
}

.amt-s {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rooms-note {
  margin-top: 28px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-family: var(--f-body);
  font-style: italic;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}

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

@media (min-width: 1080px) {
  .plates { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   COLUMN DIVIDER · 3 ionic columns
   ============================================================ */

.col-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 36px 16px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.col-divider::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: var(--line-strong);
  z-index: 0;
}

.col-divider .cd-col {
  width: 32px;
  height: 80px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 0 rgba(31, 28, 23, .04));
}

.cd-text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .42em;
  color: var(--ink);
  background: var(--paper);
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FASILITAS
   ============================================================ */

.fas {
  padding: 96px 0;
  background: var(--ivory);
}

.fas-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.fas-cell {
  background: var(--paper-card);
  border: 1px solid var(--line);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}

.fas-cell:hover {
  transform: translateY(-3px);
  border-color: var(--med-blue);
}

.fas-cell::before {
  content: "";
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px dashed var(--line);
  pointer-events: none;
  z-index: 0;
}

.fas-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--med-blue-soft);
  color: var(--med-blue-deep);
  display: grid;
  place-items: center;
  font-size: 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 2px var(--paper-card), 0 0 0 3px var(--ochre);
}

.fas-cell:nth-child(2) .fas-icon { background: var(--bougain-soft); color: var(--bougain); }
.fas-cell:nth-child(3) .fas-icon { background: rgba(212, 149, 74, .2); color: var(--ochre-deep); }
.fas-cell:nth-child(5) .fas-icon { background: var(--bougain-soft); color: var(--bougain); }
.fas-cell:nth-child(6) .fas-icon { background: rgba(86, 96, 47, .18); color: var(--olive); }
.fas-cell:nth-child(7) .fas-icon { background: rgba(212, 149, 74, .2); color: var(--ochre-deep); }
.fas-cell:nth-child(8) .fas-icon { background: rgba(86, 96, 47, .18); color: var(--olive); }

.fas-cell h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.fas-cell p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) { .fas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .fas-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   PROCESS TIMELINE · 7 steps with Roman ochre medallions
   ============================================================ */

.proses {
  padding: 96px 0;
  background:
    linear-gradient(to bottom, var(--ivory), var(--paper) 50%, var(--ivory));
}

.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 32px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--ochre) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.step-med {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--ochre-deep);
  border: 2px solid var(--ochre);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px var(--ivory), 0 0 0 5px var(--line-strong);
  letter-spacing: .04em;
  z-index: 2;
}

.step-feat .step-med {
  background: var(--bougain);
  color: var(--ivory);
  border-color: var(--ink);
  box-shadow: 0 0 0 4px var(--ivory), 0 0 0 5px var(--bougain);
}

.step-body {
  background: var(--paper-card);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 4px;
  position: relative;
}

.step-body::before {
  content: "";
  position: absolute;
  left: -8px; top: 22px;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--paper-card);
  filter: drop-shadow(-1px 0 0 var(--line));
}

.step-feat .step-body {
  background: var(--ivory);
  border: 2px solid var(--ochre);
}

.step-body h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: .015em;
}

.step-body p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.step-meta {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--med-blue);
  border-top: 1px dotted var(--line-strong);
  padding-top: 6px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.compare {
  padding: 96px 0;
  background: var(--ivory);
}

.cmp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--paper-card);
  box-shadow: var(--sh-1);
}

.cmp-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-family: var(--f-body);
}

.cmp-table thead th {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 16px 14px;
  text-align: left;
  font-weight: 500;
  border-bottom: 2px solid var(--ochre);
}

.cmp-table thead th.cmp-th-row {
  background: var(--ink);
}

.cmp-table thead th.cmp-th-mine {
  background: var(--med-blue);
  color: var(--ivory);
  position: relative;
}

.cmp-table thead th.cmp-th-mine::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--bougain);
}

.cmp-table tbody th {
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .015em;
  padding: 14px 14px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.cmp-table tbody td {
  padding: 14px 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  vertical-align: top;
}

.cmp-table tbody td.cmp-mine {
  background: var(--med-blue-soft);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  border-left: 4px solid var(--bougain);
}

.cmp-table tbody td.cmp-mine em {
  display: block;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--med-blue-deep);
  margin-top: 2px;
  letter-spacing: 0;
}

.cmp-table tbody tr:hover td {
  background: var(--paper);
}

.cmp-table tbody tr:hover td.cmp-mine {
  background: rgba(59, 130, 144, .22);
}

/* ============================================================
   GALERI · masonry
   ============================================================ */

.galeri {
  padding: 96px 0;
  background: var(--paper);
}

.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  grid-auto-rows: 240px;
}

.gal-cell {
  margin: 0;
  position: relative;
  background: var(--ink);
  overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: 0 0 0 5px var(--ink), 0 0 0 6px var(--ochre), var(--sh-1);
  border-radius: 4px;
}

.gal-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gal-cell:hover img { transform: scale(1.06); }

.gal-cell figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(31, 28, 23, .82), rgba(31, 28, 23, 0));
  color: var(--ivory);
  padding: 28px 16px 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.gal-cell figcaption span:first-child { color: var(--ochre); }

.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

.gal-quote {
  background: var(--med-blue);
  color: var(--ivory);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  box-shadow: 0 0 0 5px var(--ink), 0 0 0 6px var(--ochre), var(--sh-1);
  position: relative;
}

.gal-quote .gq-mark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 80px;
  line-height: .6;
  color: var(--ochre);
  margin-bottom: 6px;
}

.gal-quote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 12px;
}

.gal-quote cite {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bougain-soft);
}

@media (min-width: 700px) {
  .gal-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

/* ============================================================
   TESTIMONIALS · buku tamu
   ============================================================ */

.testi {
  padding: 96px 0;
  background: var(--ivory);
}

.testi-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.testi-card {
  background: var(--paper-card);
  border: 1px solid var(--line-strong);
  padding: 26px 22px 20px;
  position: relative;
  border-radius: 4px;
  transition: transform .25s ease, border-color .25s ease;
  box-shadow: var(--sh-1);
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--med-blue);
}

.testi-card::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px dashed var(--line);
  pointer-events: none;
  border-radius: 4px;
}

.tc-q {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 72px;
  color: var(--bougain);
  line-height: .6;
  display: block;
  margin-bottom: 4px;
}

.tc-body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-style: italic;
}

.tc-stars {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ochre);
  letter-spacing: .14em;
  margin-bottom: 12px;
}

.tc-stars small {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .14em;
  margin-left: 6px;
}

.tc-foot {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px dashed var(--line-strong);
  padding-top: 10px;
}

.tc-name {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .015em;
}

.tc-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}

@media (min-width: 760px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   CTA
   ============================================================ */

.cta {
  background:
    radial-gradient(at 20% 0%, rgba(212, 149, 74, .26), transparent 45%),
    radial-gradient(at 80% 100%, rgba(196, 53, 100, .22), transparent 45%),
    linear-gradient(to bottom, var(--med-blue-deep), var(--ink) 80%);
  color: var(--ivory);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.cta-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-arch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .6;
}

.cta-h {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin: 4px 0 12px;
  color: var(--ivory);
  letter-spacing: .015em;
}

.cta-h em {
  color: var(--ochre);
  font-style: italic;
}

.cta-p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: rgba(251, 243, 223, .82);
  font-size: 15.5px;
}

.cta-foot {
  margin-top: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251, 243, 223, .68);
}

.cta-foot em {
  color: var(--ochre);
  font-style: italic;
}

/* ============================================================
   FAQ · sticky aside
   ============================================================ */

.faq {
  padding: 96px 0;
  background: var(--ivory);
}

.faq-wrap {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: start;
}

.faq-aside h2 {
  margin-top: 6px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.faq-p {
  margin: 14px 0 18px;
  color: var(--ink-soft);
  max-width: 320px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--paper-card);
  overflow: hidden;
  transition: border-color .2s ease;
}

.faq-list details[open] {
  border-color: var(--med-blue);
  box-shadow: var(--sh-1);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 36px 1fr 22px;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .015em;
  color: var(--ink);
}

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

.fq-no {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  color: var(--ochre-deep);
  letter-spacing: .04em;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--med-blue);
  text-align: right;
  transition: transform .25s ease, color .25s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
  color: var(--bougain);
}

.fq-body {
  padding: 0 18px 16px;
  border-top: 1px dashed var(--line);
  margin-top: -2px;
}

.fq-body p {
  margin: 12px 0 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}

@media (min-width: 900px) {
  .faq-wrap {
    grid-template-columns: 320px 1fr;
    gap: 56px;
  }
  .faq-aside { position: sticky; top: 100px; }
}

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

.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 56px 0 18px;
  position: relative;
  border-top: 4px solid var(--ochre);
}

.footer::before {
  content: "";
  position: absolute;
  top: 4px; left: 0; right: 0;
  height: 4px;
  background:
    repeating-linear-gradient(90deg,
      var(--ivory) 0 6px,
      transparent 6px 12px
    );
  opacity: .4;
}

.ft-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(251, 243, 223, .18);
}

.ft-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ft-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ochre);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--ivory);
}

.ft-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .14em;
  margin: 0;
}

.ft-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(251, 243, 223, .64);
  margin: 4px 0 0;
}

.ft-coords {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0;
}

.ft-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 32px 0;
}

.ft-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(251, 243, 223, .15);
}

.ft-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-col li {
  font-size: 14px;
  color: rgba(251, 243, 223, .82);
}

.ft-col li a {
  color: rgba(251, 243, 223, .82);
  transition: color .2s ease;
}

.ft-col li a:hover {
  color: var(--ochre);
}

.ft-bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px dashed rgba(251, 243, 223, .18);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(251, 243, 223, .56);
}

.ft-bot p { margin: 0; }

@media (min-width: 700px) {
  .ft-top { flex-direction: row; justify-content: space-between; align-items: center; }
  .ft-cols { grid-template-columns: repeat(4, 1fr); gap: 36px; }
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */

.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 0 0 3px var(--ivory), 0 0 0 5px var(--ochre), 0 18px 40px -10px rgba(37, 211, 102, .55);
  transition: transform .2s ease, box-shadow .2s ease;
}

.fab i { font-size: 22px; }

.fab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 3px var(--ivory), 0 0 0 5px var(--ochre), 0 22px 50px -10px rgba(37, 211, 102, .65);
}

@media (max-width: 560px) {
  .fab span { display: none; }
  .fab { padding: 14px; width: 56px; height: 56px; justify-content: center; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE TYPOGRAPHY POLISH
   ============================================================ */

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .archway { padding: 0 50px 0 50px; }
  .arch-col { width: 38px; }
  .masthead { font-size: 36px; }
  .masthead .m-dot { font-size: 18px; }
  .hero-meta { padding: 14px; }
  .step { grid-template-columns: 56px 1fr; gap: 12px; }
  .step-med { width: 56px; height: 56px; font-size: 15px; }
  .steps::before { left: 28px; }
  .ornament-olive { width: 64px; height: 64px; }
  .gal-wide { grid-column: span 1; }
  .nav-mid { display: none !important; }
  .br-name { font-size: 13.5px; letter-spacing: .1em; }
  .coords-bar { font-size: 9.5px; gap: 10px; padding: 8px 12px; letter-spacing: .2em; }
  .cb-piece:nth-child(n+5) { display: none; }
}

@media (max-width: 380px) {
  .archway { padding: 0 36px; }
  .arch-col { width: 30px; }
  .masthead { font-size: 30px; }
  .masthead .m-dot { font-size: 14px; }
}

/* ============================================================
   ACCENT FLOURISHES
   ============================================================ */

::selection {
  background: var(--ochre);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--med-blue);
  outline-offset: 3px;
}

/* end · Casa Kori · Seminyak · MMXXII */
