*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --ivory: #faf6ee;
  --ivory-2: #f1eadb;
  --surface: #ffffff;
  --navy: #16263f;
  --navy-2: #20344f;
  --navy-3: #0e1a2c;
  --navy-soft: #e8ecf2;
  --gold: #c2a04c;
  --gold-deep: #9c7e33;
  --gold-soft: #f1e8cf;
  --gold-bright: #d4b45f;
  --ink: #16263f;
  --body: #45506a;
  --muted: #8b93a4;
  --faint: #bcc2ce;
  --line: #e9e2d3;
  --line-2: #ded5c2;
  --fd: "Playfair Display", serif;
  --fb: "Montserrat", sans-serif;
  --nav-h: 74px;
  --eo: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --es: cubic-bezier(0.34, 1.56, 0.64, 1);
  --r: 14px;
  --r-lg: 22px;
  --sh-s: 0 4px 18px rgba(22, 38, 63, 0.07);
  --sh-m: 0 18px 46px rgba(22, 38, 63, 0.12);
  --sh-l: 0 34px 74px rgba(22, 38, 63, 0.2);
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ivory);
  color: var(--body);
  font-family: var(--fb);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--gold-deep);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--gold);
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 100px 0;
}
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-soft), var(--gold-soft) 90%);
}
.ph::after {
  content: "\2726";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: rgba(194, 160, 76, 0.32);
}
.ph img {
  position: relative;
  z-index: 1;
  transition: opacity 0.5s, transform 0.9s var(--eo);
}
.ph img.imgfail {
  opacity: 0;
}
.eyebrow {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.eyebrow::before,
.eyebrow.two::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.center .eyebrow {
  justify-content: center;
}
.s-title {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  color: var(--ink);
  margin: 16px 0 0;
}
.s-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.s-lead {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 580px;
  margin-top: 16px;
  line-height: 1.7;
}
.center {
  text-align: center;
}
.center .s-lead {
  margin-left: auto;
  margin-right: auto;
}
/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s,
    border-color 0.2s, color 0.2s;
}
.btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(194, 160, 76, 0.32);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: var(--sh-m);
}
.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-line:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 38px;
  font-size: 0.78rem;
}
/* announce */
.announce {
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 9px 16px;
}
.announce b {
  color: var(--gold-bright);
}
.announce span {
  opacity: 0.6;
  margin: 0 12px;
}
/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 246, 238, 0.9);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.nav.scrolled {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 22px rgba(22, 38, 63, 0.05);
}
.nav-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--ink);
}
.brand .bn {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}
.brand .bs {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.48rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-left: auto;
  align-items: center;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a,
.nav-links > li > span {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > span:hover,
.nav-links > li.open > span {
  color: var(--navy);
}
.nav-links .caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: 0.2s;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-m);
  min-width: 200px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.22s;
  border-radius: 10px;
}
.nav-links > li:hover .dropdown,
.nav-links > li.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.dropdown a {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--body);
  padding: 9px 12px;
  border-radius: 7px;
  transition: 0.18s;
}
.dropdown a:hover {
  background: var(--ivory-2);
  color: var(--navy);
}
.nav-cta {
  margin-left: 0.4rem;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/* HERO journey */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-3);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .slideimg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--eo);
}
.hero-bg .slideimg.on {
  opacity: 1;
}
.hero-bg .slideimg .ph {
  position: absolute;
  inset: 0;
}
.hero-bg .slideimg img {
  transform: scale(1.06);
}
.hero-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(14, 26, 44, 0.7),
    rgba(14, 26, 44, 0.55) 50%,
    rgba(14, 26, 44, 0.8)
  );
}
.hero-in {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 100px 0;
}
.hero-in .eyebrow {
  color: var(--gold-bright);
  justify-content: center;
}
.hero-in .eyebrow::before,
.hero-in .eyebrow.two::after {
  background: var(--gold-bright);
}
.hero-in h1 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: #fff;
  margin: 18px 0 14px;
}
.hero-in h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-in .hsub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
}
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
.jcard {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 26px 18px;
  cursor: pointer;
  transition: 0.25s;
  text-align: center;
  color: #fff;
}
.jcard:hover {
  background: rgba(194, 160, 76, 0.95);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--sh-m);
}
.jcard .je {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.jcard b {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.3rem;
  display: block;
  line-height: 1.2;
}
.jcard span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  display: block;
}
.jcard:hover span {
  color: rgba(255, 255, 255, 0.9);
}
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
/* capacity strip */
.capstrip {
  background: var(--navy);
  color: #fff;
}
.capstrip-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 34px 0;
}
.capit {
  text-align: center;
  padding: 0 1rem;
}
.capit .cn {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 2.1rem;
  color: var(--gold-bright);
  line-height: 1;
}
.capit .cl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}
.capit + .capit {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
/* experiences */
.exp {
  background: var(--ivory);
}
.exp-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}
.exp-tab {
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--body);
  background: var(--surface);
  border: 1px solid var(--line-2);
  padding: 13px 26px;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.exp-tab:hover {
  border-color: var(--gold);
}
.exp-tab.on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.exp-panel {
  display: none;
  margin-top: 3rem;
}
.exp-panel.on {
  display: block;
  animation: fade 0.5s var(--eo);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.exp-img {
  aspect-ratio: 5/6;
  box-shadow: var(--sh-l);
  position: relative;
}
.exp-img .tagpill {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--gold);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.exp-text h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: var(--ink);
  line-height: 1.1;
  margin: 12px 0 14px;
}
.exp-text h3 em {
  font-style: italic;
  color: var(--gold-deep);
}
.exp-text > p {
  color: var(--body);
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.exp-atmos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.8rem;
}
.exp-atmos li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-2);
}
.exp-atmos .ai {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.exp-atmos .ai svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}
.exp-atmos b {
  color: var(--ink);
  font-weight: 600;
  display: block;
  font-size: 0.95rem;
}
.exp-atmos span {
  font-size: 0.84rem;
  color: var(--muted);
}
/* timeline visualizer */
.timeline {
  background: var(--surface);
}
.tl-nodes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 3rem auto 0;
  max-width: 680px;
}
.tl-node {
  flex: 1;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.tl-node .dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  background: var(--surface);
  display: grid;
  place-items: center;
  margin: 0 auto;
  transition: 0.25s;
  color: var(--muted);
  position: relative;
  z-index: 2;
}
.tl-node .dot svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.tl-node.on .dot {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  transform: scale(1.08);
}
.tl-node .tlab {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 12px;
  text-transform: uppercase;
}
.tl-node.on .tlab {
  color: var(--navy);
}
.tl-node .ttime {
  font-size: 0.64rem;
  color: var(--faint);
  margin-top: 2px;
}
.tl-line {
  flex: 0 0 auto;
  width: 90px;
  height: 2px;
  background: var(--line-2);
  margin-top: -38px;
}
.tl-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3.2rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.tl-img {
  aspect-ratio: 4/3;
  position: relative;
  min-height: 300px;
}
.tl-img .tphase {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--eo);
}
.tl-img .tphase.on {
  opacity: 1;
}
.tl-img .tphase .ph {
  position: absolute;
  inset: 0;
}
.tl-info {
  padding: 3rem;
}
.tl-info .ph-eyebrow {
  font-family: var(--fb);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.tl-info h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 2.1rem;
  color: var(--ink);
  margin: 6px 0 10px;
}
.tl-info p {
  color: var(--body);
  margin-bottom: 1.4rem;
}
.tl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tl-chips span {
  font-size: 0.74rem;
  color: var(--navy);
  background: var(--navy-soft);
  padding: 7px 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tl-chips span::before {
  content: "\2726";
  color: var(--gold);
  font-size: 0.6rem;
}
/* floor plan tool */
.floor {
  background: var(--ivory-2);
}
.floor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.floor-controls .fl-label {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}
.layout-opts {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.layout-opt {
  text-align: left;
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  padding: 16px 18px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.layout-opt:hover {
  border-color: var(--gold);
}
.layout-opt.on {
  border-color: var(--navy);
  box-shadow: var(--sh-s);
}
.layout-opt b {
  font-family: var(--fd);
  font-size: 1.12rem;
  color: var(--ink);
  display: block;
  font-weight: 600;
}
.layout-opt span {
  font-size: 0.78rem;
  color: var(--muted);
}
.layout-opt .cap {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
  text-align: right;
}
.av-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  padding: 14px 18px;
  cursor: pointer;
  margin-top: 1.2rem;
  transition: 0.2s;
  font-size: 0.84rem;
  color: var(--ink-2);
}
.av-toggle.on {
  border-color: var(--navy);
}
.av-toggle .sw {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: var(--line-2);
  position: relative;
  flex-shrink: 0;
  transition: 0.2s;
}
.av-toggle.on .sw {
  background: var(--navy);
}
.av-toggle .sw::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: 0.2s;
}
.av-toggle.on .sw::after {
  left: 21px;
}
.av-toggle b {
  font-weight: 600;
  color: var(--ink);
}
.floor-stage {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem;
  box-shadow: var(--sh-s);
}
.floor-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: var(--ivory);
}
.floor-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.2rem;
  justify-content: center;
}
.lg {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: var(--body);
}
.lg .sw {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
/* builder */
.builder {
  background: var(--navy);
  color: #fff;
}
.builder .eyebrow {
  color: var(--gold-bright);
}
.builder .eyebrow::before,
.builder .eyebrow.two::after {
  background: var(--gold-bright);
}
.builder .s-title {
  color: #fff;
}
.builder .s-title em {
  color: var(--gold-bright);
}
.builder .s-lead {
  color: rgba(255, 255, 255, 0.65);
}
.build-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 2.4rem;
  align-items: start;
  margin-top: 3rem;
}
.build-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
  padding: 2.2rem;
}
.bblock {
  margin-bottom: 2rem;
}
.bblock:last-child {
  margin-bottom: 0;
}
.bblock .bl {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.bblock .bl .hint {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.74rem;
}
.guest-readout {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 12px;
}
.guest-readout b {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--gold-bright);
  line-height: 1;
}
.guest-readout span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gslider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.gslider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 1px var(--gold);
  cursor: pointer;
}
.gslider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  cursor: pointer;
}
.bopts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.bopt {
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 17px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  min-width: 120px;
}
.bopt:hover {
  border-color: var(--gold-bright);
}
.bopt.on {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.bopt .bo-sub {
  font-size: 0.66rem;
  opacity: 0.7;
}
.bchecks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.bcheck {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 14px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
}
.bcheck:hover {
  border-color: var(--gold-bright);
}
.bcheck.on {
  background: rgba(194, 160, 76, 0.18);
  border-color: var(--gold);
}
.bcheck .box {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.bcheck.on .box {
  background: var(--gold);
  border-color: var(--gold);
}
.bcheck .box svg {
  width: 12px;
  height: 12px;
  stroke: var(--navy);
  stroke-width: 3;
  fill: none;
  opacity: 0;
}
.bcheck.on .box svg {
  opacity: 1;
}
.bcheck .bc-name {
  flex: 1;
  font-weight: 500;
}
.bcheck .bc-price {
  font-size: 0.72rem;
  color: var(--gold-bright);
  font-weight: 600;
  white-space: nowrap;
}
.build-sum {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r);
  padding: 2rem;
  position: sticky;
  top: 96px;
}
.build-sum h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.build-sum .sub {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.sumrow {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.sumrow .sl {
  color: var(--body);
}
.sumrow .sl small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}
.sumrow .sv {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.sumtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 2px solid var(--navy);
}
.sumtotal .tl {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.sumtotal .tv {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 1;
}
.sumper {
  text-align: right;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 4px;
}
.build-sum .btn {
  width: 100%;
  margin-top: 1.4rem;
}
.build-sum .note {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.5;
}
/* inclusions */
.incl {
  background: var(--ivory);
}
.incl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.incl-it {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.8rem 1.4rem;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.incl-it:hover {
  border-color: var(--gold);
  box-shadow: var(--sh-s);
  transform: translateY(-3px);
}
.incl-it .ck {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
}
.incl-it .ck svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}
.incl-it .ii {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--gold-deep);
  display: grid;
  place-items: center;
}
.incl-it .ii svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
}
.incl-it b {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}
.incl-banner {
  text-align: center;
  margin-top: 2.6rem;
  font-size: 0.92rem;
  color: var(--body);
}
.incl-banner b {
  color: var(--navy);
}
/* menus */
.menus {
  background: var(--surface);
}
.menu-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.4rem;
}
.mtab {
  font-family: var(--fb);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--body);
  background: var(--ivory);
  border: 1px solid var(--line-2);
  padding: 12px 22px;
  cursor: pointer;
  transition: 0.2s;
}
.mtab.on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.menu-panel {
  display: none;
  margin-top: 3rem;
}
.menu-panel.on {
  display: block;
  animation: fade 0.5s var(--eo);
}
.menu-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.mcol h4 {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.mcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mcol li {
  color: var(--body);
}
.mcol li b {
  font-family: var(--fd);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.04rem;
  display: block;
}
.mcol li span {
  font-size: 0.82rem;
  color: var(--muted);
}
.menu-cta {
  text-align: center;
  margin-top: 3rem;
}
/* gallery */
.gallery {
  background: var(--ivory-2);
}
.gal-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.gchip {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  background: transparent;
  border: 1px solid var(--line-2);
  padding: 9px 18px;
  cursor: pointer;
  transition: 0.2s;
}
.gchip:hover {
  border-color: var(--gold);
}
.gchip.on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 1rem;
  margin-top: 2.4rem;
}
.gal {
  overflow: hidden;
  position: relative;
}
.gal.tall {
  grid-row: span 2;
}
.gal.wide {
  grid-column: span 2;
}
.gal.hide {
  display: none;
}
.gal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(22, 38, 63, 0);
  transition: 0.3s;
}
.gal:hover::after {
  background: rgba(22, 38, 63, 0.16);
}
.gal:hover .ph img {
  transform: scale(1.08);
}
/* pricing */
.pricing {
  background: var(--surface);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.pcard {
  border: 1px solid var(--line);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pcard.feat {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--sh-m);
}
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-m);
}
.pcard .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.pcard .pk {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.pcard.feat .pk {
  color: var(--gold-bright);
}
.pcard h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 5px 0 12px;
}
.pcard.feat h3 {
  color: #fff;
}
.pcard .from {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pcard.feat .from {
  color: rgba(255, 255, 255, 0.6);
}
.pcard .amt {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--navy);
  line-height: 1.1;
}
.pcard.feat .amt {
  color: #fff;
}
.pcard .amt small {
  font-family: var(--fb);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--muted);
}
.pcard.feat .amt small {
  color: rgba(255, 255, 255, 0.6);
}
.pcard ul {
  list-style: none;
  margin: 1.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  text-align: left;
}
.pcard li {
  font-size: 0.85rem;
  color: var(--body);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.pcard.feat li {
  color: rgba(255, 255, 255, 0.82);
}
.pcard li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.pcard.feat li::before {
  color: var(--gold-bright);
}
.pcard .btn {
  width: 100%;
  margin-top: 0.6rem;
}
/* reviews */
.reviews {
  background: var(--ivory);
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.rev {
  background: var(--surface);
  padding: 2.1rem;
  border: 1px solid var(--line);
  text-align: center;
}
.rev .stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.rev p {
  font-family: var(--fd);
  font-size: 1.14rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.rev .who b {
  font-family: var(--fb);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.84rem;
  display: block;
}
.rev .who span {
  font-size: 0.74rem;
  color: var(--muted);
}
/* contact */
.contact {
  background: var(--ivory-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: start;
}
.contact h2 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  color: var(--ink);
  line-height: 1.1;
  margin: 14px 0 14px;
}
.contact h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.ct-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 1.8rem 0;
}
.ct-act {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
  transition: 0.2s;
}
.ct-act:hover {
  border-color: var(--gold);
  box-shadow: var(--sh-s);
}
.ct-act .ci {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-deep);
}
.ct-act .ci svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
.ct-act b {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}
.ct-act span {
  font-size: 0.84rem;
  color: var(--muted);
}
.form {
  background: var(--surface);
  padding: 2.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--sh-m);
  position: relative;
}
.form h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
}
.form .fh {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 1rem;
}
.fg label {
  font-family: var(--fb);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg input,
.fg select,
.fg textarea {
  background: var(--ivory);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 0.92rem;
  padding: 13px 14px;
  outline: none;
  transition: 0.2s;
  width: 100%;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
  background: #fff;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B93A4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.fg textarea {
  resize: vertical;
  min-height: 70px;
}
.form .btn {
  width: 100%;
  margin-top: 0.3rem;
}
.form-ok {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 2rem;
}
.form-ok.on {
  display: flex;
  animation: fade 0.5s var(--eo);
}
.form-ok .ic {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
}
.form-ok h3 {
  color: var(--ink);
}
.form-ok p {
  color: var(--muted);
}
/* footer */
.footer {
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .brand {
  align-items: flex-start;
  color: #fff;
  margin-bottom: 14px;
}
.foot-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.7;
}
.foot-soc {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.foot-soc a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  transition: 0.2s;
  overflow: hidden;
}
.foot-soc a svg {
  width: 40px;
  height: 40px;
  display: block;
}
.foot-soc a:hover {
  transform: translateY(-3px);
}
.foot-col h5 {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col a,
.foot-col li {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}
.foot-col a:hover {
  color: var(--gold-bright);
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
}
/* sticky book + toast */
.sticky-book {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  box-shadow: var(--sh-l);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s var(--es);
  pointer-events: none;
}
.sticky-book.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 170%);
  background: var(--navy);
  color: #fff;
  padding: 15px 26px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  z-index: 3000;
  box-shadow: var(--sh-l);
  transition: transform 0.4s var(--es);
  display: flex;
  align-items: center;
  gap: 11px;
}
.toast.show {
  transform: translate(-50%, 0);
}
.toast .td {
  color: var(--gold-bright);
}
/* anim */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--eo), transform 0.8s var(--eo);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* responsive */
@media (max-width: 980px) {
  .exp-grid,
  .tl-stage,
  .floor-grid,
  .build-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .build-sum {
    position: static;
  }
  .capstrip-in {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
  .capit:nth-child(3) {
    border-left: none;
  }
  .incl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 420px;
  }
  .price-grid,
  .rev-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }
  .tl-info,
  .exp-img .tagpill {
  }
}
@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: calc(var(--nav-h) + 38px);
    left: 0;
    right: 0;
    background: rgba(250, 246, 238, 0.99);
    border-top: 1px solid var(--line);
    padding: 1.6rem 32px;
    gap: 1.1rem;
    box-shadow: var(--sh-m);
    max-height: 80vh;
    overflow: auto;
  }
  .nav-links .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 6px 0 6px 14px;
    min-width: 0;
    background: transparent;
  }
  .nav-links > li.open .dropdown {
    transform: none;
  }
  .journey {
    grid-template-columns: 1fr 1fr;
    max-width: 420px;
  }
  .capstrip-in {
    grid-template-columns: 1fr 1fr;
  }
  .incl-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bchecks {
    grid-template-columns: 1fr;
  }
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .tl-nodes {
    max-width: 100%;
  }
  .tl-line {
    width: 30px;
  }
  .foot-bot {
    flex-direction: column;
    text-align: center;
  }
  .sticky-book {
    right: 14px;
    bottom: 14px;
  }
  .sticky-book .btn {
    padding: 13px 20px;
    font-size: 0.7rem;
  }
}
@media (max-width: 430px) {
  .wrap,
  .nav-in {
    padding: 0 20px;
  }
  .incl-grid,
  .gal-grid {
    grid-template-columns: 1fr;
  }
  .capstrip-in {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .tl-node .tlab {
    font-size: 0.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
}
