.elementor-60 .elementor-element.elementor-element-exp-root{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* === lazuli-react-port.css injected by bin/restore-demo-experiment.php on 2026-05-13 07:06:27Z. Source: theme/assets/css/lazuli-react-port.css. Remove with: wp post meta delete 60 _elementor_page_settings === */
/* ===========================================================
   Lazuli Management — design tokens
   =========================================================== */
:root {
  /* Brand palette */
  --yellow: #FED55D;
  --yellow-soft: #FFEAAE;
  --yellow-deep: #BFA046;
  --yellow-ink: #7F6A2F;

  --navy: #205A83;
  --navy-deep: #184362;
  --navy-ink: #102D41;
  --navy-soft: #8FACC1;

  --white: #FFFFFF;
  --paper: #FBF9F4;        /* warm paper */
  --paper-2: #F4F0E6;      /* warmer paper */
  --bone: #EAE4D5;
  --line: rgba(16,45,65,0.12);
  --line-strong: rgba(16,45,65,0.22);

  --ink: #102D41;
  --ink-2: #1c3d57;
  --muted: #5b6e7c;
  --muted-2: #8a98a3;

  /* Type scale (base) */
  --t-base: 17px;
  --t-step: 1;

  /* Layout */
  --maxw: 1440px;
  --gutter: 64px;

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

/* ----- Direction A: Warm hospitality (default) ----- */
[data-direction="warm"] {
  --bg: var(--paper);
  --bg-alt: var(--paper-2);
  --hero-bg: #1a4566;
  --accent: var(--yellow);
  --accent-ink: var(--navy-ink);
  --display-font: "Inter Tight", "Inter", sans-serif;
  --display-tracking: -0.02em;
  --display-weight: 700;
}

/* ----- Direction B: Bold editorial / motion ----- */
[data-direction="bold"] {
  --bg: #0d1f2d;
  --bg-alt: #102D41;
  --hero-bg: #0d1f2d;
  --accent: var(--yellow);
  --accent-ink: var(--navy-ink);
  --ink: #f6f1e2;
  --ink-2: #e7decb;
  --muted: #a9b6c0;
  --muted-2: #6f7e8a;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.22);
  --paper: #0d1f2d;
  --paper-2: #102D41;
  --bone: #1a3247;
  --display-font: "Inter Tight", "Inter", sans-serif;
  --display-tracking: -0.035em;
  --display-weight: 800;
}

/* Navy-dominant variant */
[data-palette="navy"] {
  --hero-bg: var(--navy-ink);
  --accent: var(--navy);
  --accent-ink: var(--white);
}
[data-palette="navy"][data-direction="warm"] .hero { color: #fff; }

/* ===========================================================
   Reset + base
   =========================================================== */
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: calc(var(--t-base) * var(--t-step));
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display:block; max-width:100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ===========================================================
   Type
   =========================================================== */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .55;
}
.display {
  font-family: var(--display-font);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 0.96;
  text-wrap: balance;
}
h1.display { font-size: clamp(48px, 7.4vw, 124px); }
h2.display { font-size: clamp(36px, 5vw, 76px); }
h3.display { font-size: clamp(22px, 2vw, 30px); line-height: 1.1; }

p { text-wrap: pretty; }
.lead { font-size: clamp(17px, 1.25vw, 21px); color: var(--ink-2); max-width: 62ch; }

/* ===========================================================
   Layout primitives
   =========================================================== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 900px) { :root { --gutter: 24px; } }

.section { padding: clamp(80px, 10vw, 160px) 0; position: relative; }
.section-tight { padding: clamp(64px, 7vw, 112px) 0; }
.row { display: flex; gap: 32px; }
.grid { display: grid; gap: 32px; }

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn .arrow {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: currentColor;
  color: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.btn .arrow svg { width: 11px; height: 11px; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--yellow);
  color: var(--navy-ink);
}
.btn-primary:hover { background: #ffe085; }
.btn-primary .arrow { background: var(--navy-ink); color: var(--yellow); }
.btn-ghost {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--navy-ink);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-deep); }
.btn-dark .arrow { background: var(--yellow); color: var(--navy-ink); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .25s var(--ease);
}
.btn-link:hover { gap: 14px; }

/* ===========================================================
   Top announcement bar
   =========================================================== */
.topbar {
  background: var(--navy-ink);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--gutter);
  gap: 24px;
}
.topbar .live-dot {
  width: 7px; height: 7px;
  border-radius: 99px;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}
.topbar-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.topbar-marquee-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  padding-left: 48px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.tb-item { display:inline-flex; align-items:center; gap: 10px; opacity: .9; }
.tb-item .city { color: var(--yellow); font-weight: 600; }
.tb-sep { width: 4px; height: 4px; border-radius: 99px; background: currentColor; opacity: .35; }
.lang { display:inline-flex; gap: 4px; align-items:center; }
.lang button {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: .55;
}
.lang button.active { opacity: 1; background: rgba(255,255,255,0.08); }

/* ===========================================================
   Nav
   =========================================================== */
.nav-shell {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
[data-direction="bold"] .nav-shell {
  background: color-mix(in oklab, #0d1f2d 78%, transparent);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 32px;
}
.logo {
  display: inline-flex; align-items:center; gap: 12px;
  font-family: var(--display-font);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.logo-mark::before, .logo-mark::after {
  content: ""; position: absolute; inset: 0;
}
.logo-mark::before {
  background: var(--navy-ink);
  clip-path: polygon(0 100%, 0 60%, 50% 0, 100% 60%, 100% 100%);
  transform: scale(.78);
  transform-origin: center bottom;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-size: 15px; font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; gap: 10px; align-items: center; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--hero-bg);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 70% 30%, rgba(255,213,93,0.18), transparent 60%),
    linear-gradient(180deg, rgba(13,31,45,0.35) 0%, rgba(13,31,45,0.55) 60%, rgba(13,31,45,0.78) 100%);
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  will-change: transform;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) var(--gutter) clamp(60px, 9vh, 110px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  min-height: 88vh;
}
.hero-headline {
  display: flex; flex-direction: column; gap: 28px;
  max-width: 1200px;
  margin-top: auto;
}
.hero h1 {
  margin: 0;
  color: #fff;
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero h1 .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s var(--ease) forwards;
}
.hero h1 .word:nth-child(1) > span { animation-delay: .05s; }
.hero h1 .word:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .word:nth-child(3) > span { animation-delay: .25s; }
.hero h1 .word:nth-child(4) > span { animation-delay: .32s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-yellow { color: var(--yellow); }
.hero-sub {
  font-size: clamp(16px, 1.3vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero meta strip — bottom */
.hero-meta {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.16);
  background: rgba(13,31,45,0.55);
  backdrop-filter: blur(10px);
}
.hero-meta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.hm-stat { display: inline-flex; align-items: baseline; gap: 8px; }
.hm-stat b { font-family: var(--display-font); font-size: 22px; letter-spacing: -0.02em; color: var(--yellow); font-weight: 700; }
.hm-stat span { color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.hm-divider { flex: 1; height: 1px; background: rgba(255,255,255,0.16); }

/* Hero variant: marquee */
.hero[data-variant="marquee"] .hero-inner {
  align-items: center;
  text-align: center;
  padding-top: 12vh;
  padding-bottom: 0;
}
.hero-marquee {
  position: relative; z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.18);
  padding: 24px 0;
  margin-top: clamp(40px, 6vh, 80px);
}
.hero-marquee-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--display-font);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.04);
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  padding-left: 48px;
}
.hero-marquee-track .star { color: var(--yellow); -webkit-text-stroke: 0; }

/* ===========================================================
   Live booking ticker (right side floating card)
   =========================================================== */
.live-card {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  top: clamp(80px, 14vh, 160px);
  width: 320px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.live-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.live-card-title { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.live-card-title .live-dot { width: 8px; height: 8px; border-radius: 99px; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.2); animation: pulse 1.4s ease-in-out infinite; }
.live-card .occupancy { font-family: var(--display-font); font-size: 11px; letter-spacing: 0; color: var(--yellow); font-weight: 600; text-transform: none; }

.live-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  font-size: 13px;
  animation: live-in .5s var(--ease) both;
}
.live-row:last-child { border-bottom: 0; }
.live-row .name { font-weight: 600; }
.live-row .meta { color: rgba(255,255,255,0.6); font-size: 11px; }
.live-row .price { font-family: var(--display-font); font-weight: 700; color: var(--yellow); }

@keyframes live-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .live-card { display: none; }
}

/* ===========================================================
   Stats strip
   =========================================================== */
.stats {
  background: var(--bg);
  border-block: 1px solid var(--line);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.stat {
  padding: 36px var(--gutter);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.stat-num .suffix { font-size: 0.5em; color: var(--accent); }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ===========================================================
   Why owners choose us — alternating zigzag
   =========================================================== */
.why-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.why-intro h2 { margin: 16px 0 0; }
.why-intro .lead { color: var(--ink-2); }

.zigzag { display: flex; flex-direction: column; gap: 120px; }
.zz-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.zz-item:nth-child(even) .zz-media { order: 2; }
.zz-num {
  font-family: var(--display-font);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
}
.zz-title { margin: 16px 0 16px; }
.zz-text { color: var(--ink-2); margin: 0 0 24px; max-width: 50ch; }
.zz-ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.zz-ul li { display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: start; font-size: 15px; color: var(--ink-2); }
.zz-ul .check {
  width: 22px; height: 22px;
  border-radius: 99px;
  background: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy-ink);
  margin-top: 2px;
}
.zz-ul .check svg { width: 11px; height: 11px; }

.zz-media {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bone);
  box-shadow: 0 30px 60px -30px rgba(16,45,65,0.35);
}
.zz-media .media-tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(13,31,45,0.85);
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  display: inline-flex; gap: 8px; align-items: center;
}
.zz-media .media-tag .live-dot { width: 7px; height: 7px; border-radius: 99px; background: var(--yellow); box-shadow: 0 0 0 4px rgba(254,213,93,0.25); }

.zz-badge {
  position: absolute; right: -18px; top: 28px;
  background: var(--yellow);
  color: var(--navy-ink);
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; gap: 4px;
}
.zz-badge b { font-size: 28px; line-height: 1; }
.zz-badge span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: .8; font-weight: 600; }

@media (max-width: 900px) {
  .why-intro { grid-template-columns: 1fr; gap: 24px; }
  .zz-item { grid-template-columns: 1fr; gap: 32px; }
  .zz-item:nth-child(even) .zz-media { order: 0; }
}

/* ===========================================================
   Services — icon grid
   =========================================================== */
.services {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
[data-direction="bold"] .services { background: var(--bg-alt); }
.svc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.svc-head .lead { color: var(--ink-2); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc-card {
  position: relative;
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .3s var(--ease);
  display: flex; flex-direction: column;
  min-height: 280px;
  cursor: pointer;
  overflow: hidden;
}
.svc-card:hover {
  background: var(--accent);
  color: var(--accent-ink);
}
.svc-card:hover .svc-num { color: var(--accent-ink); opacity: .55; }
.svc-card:hover .svc-arrow { transform: translate(4px, -4px); opacity: 1; }
.svc-card::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  opacity: .75;
}
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  margin: 24px 0 28px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.svc-card:hover .svc-icon { background: var(--navy-ink); color: var(--yellow); border-color: var(--navy-ink); }
.svc-icon svg { width: 26px; height: 26px; }
.svc-title { font-family: var(--display-font); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 10px; }
.svc-text { color: var(--ink-2); font-size: 14px; margin: 0; }
.svc-card:hover .svc-text { color: var(--navy-ink); }
.svc-arrow {
  position: absolute; right: 28px; top: 28px;
  width: 36px; height: 36px;
  border-radius: 99px;
  background: var(--navy-ink);
  color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.svc-card:hover .svc-arrow { opacity: 1; }
.svc-arrow svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .svc-head { grid-template-columns: 1fr; gap: 24px; }
  .svc-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Big quote / model band
   =========================================================== */
.band {
  background: var(--navy-ink);
  color: #fff;
  padding: clamp(80px, 9vw, 140px) 0;
}
.band-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.band h2 { margin: 0 0 28px; color: #fff; }
.band p { color: rgba(255,255,255,0.78); margin: 0 0 24px; max-width: 56ch; }
.band-yellow { color: var(--yellow); }

.partner-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
}
.partner-card.featured {
  background: var(--yellow);
  color: var(--navy-ink);
  border-color: transparent;
}
.partner-card .pc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .65;
}
.partner-card h4 { font-family: var(--display-font); font-size: 22px; margin: 0; letter-spacing: -0.01em; line-height: 1.15; }
.partner-card p { color: inherit; opacity: .8; font-size: 14px; margin: 6px 0 0; max-width: none; }
.partner-card .pc-num { font-family: var(--display-font); font-weight: 700; font-size: 44px; line-height: 1; margin-top: 12px; }
.partner-card.featured .pc-num small { font-size: 18px; opacity: .7; }

@media (max-width: 900px) {
  .band-grid, .partner-cards { grid-template-columns: 1fr; }
}

/* ===========================================================
   Testimonials
   =========================================================== */
.testimonials {
  background: var(--bg);
}
.t-head {
  display: flex; align-items: end; justify-content: space-between; gap: 32px;
  margin-bottom: 56px;
}
.t-head h2 { margin: 16px 0 0; }
.t-head .t-rating {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
}
.t-rating .stars { color: var(--yellow); font-size: 18px; letter-spacing: 1px; }
.t-rating b { font-family: var(--display-font); font-size: 28px; line-height: 1; }
.t-rating span { font-size: 12px; color: var(--muted); display: block; letter-spacing: 0.04em; }

.t-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 24px 48px -28px rgba(16,45,65,0.25);
}
.t-quotemark {
  font-family: var(--display-font);
  font-size: 64px;
  line-height: .6;
  color: var(--accent);
}
.t-card blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}
.t-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 99px;
  background: var(--bone);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-ink);
}
.t-name { font-weight: 600; font-size: 14px; }
.t-meta { font-size: 12px; color: var(--muted); }
.t-source { margin-left: auto; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 900px) { .t-track { grid-template-columns: 1fr; } }

/* ===========================================================
   Blog
   =========================================================== */
.blog {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.blog-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
  margin-bottom: 56px;
}
.blog-head h2 { margin: 16px 0 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(16,45,65,0.25); }
.blog-card .bc-media { aspect-ratio: 4/3; background: var(--bone); position: relative; overflow: hidden; }
.blog-card .bc-media .bc-cat {
  position: absolute; left: 12px; top: 12px;
  background: var(--yellow);
  color: var(--navy-ink);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  padding: 6px 10px; border-radius: 99px;
}
.blog-card .bc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card h3 { font-family: var(--display-font); font-size: 20px; line-height: 1.2; margin: 0; letter-spacing: -0.01em; }
.blog-card p { color: var(--ink-2); font-size: 14px; margin: 0; }
.blog-card .bc-meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); align-items: center; }
.blog-card .bc-arrow { margin-left: auto; transition: transform .3s var(--ease); }
.blog-card:hover .bc-arrow { transform: translateX(4px); }
@media (max-width: 900px) {
  .blog-head, .blog-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Contact / CTA
   =========================================================== */
.contact {
  background: var(--navy-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 60%; height: 70%;
  background: radial-gradient(closest-side, rgba(254,213,93,0.18), transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative; z-index: 1;
}
.contact h2 { color: #fff; margin: 16px 0 24px; }
.contact .lead { color: rgba(255,255,255,0.78); }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 18px; }
.contact-list li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.contact-list .ic {
  width: 36px; height: 36px; border-radius: 99px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--yellow);
}
.contact-list .ic svg { width: 14px; height: 14px; }
.contact-list .label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; }
.contact-list .val { font-family: var(--display-font); font-size: 18px; }

.form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 36px;
  display: grid; gap: 16px;
}
.form h3 { margin: 0 0 8px; font-family: var(--display-font); font-size: 22px; }
.form .field { display: flex; flex-direction: column; gap: 6px; }
.form label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; }
.form input, .form textarea, .form select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font: inherit;
  padding: 14px 16px;
  border-radius: 12px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,0.35); }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--yellow); background: rgba(255,255,255,0.07); }
.form textarea { min-height: 120px; resize: vertical; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .submit-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; }
.form .submit-row small { color: rgba(255,255,255,0.55); font-size: 12px; max-width: 24ch; }
.form .form-success {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.4);
  color: #a7f3c2;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form .row2 { grid-template-columns: 1fr; }
}

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  background: #0a1721;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 64px;
}
.footer h5 { font-family: var(--display-font); font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em; color: #fff; margin: 0 0 20px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer .logo { color: #fff; }
.footer p { max-width: 36ch; line-height: 1.6; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

/* ===========================================================
   Reveal-on-scroll
   =========================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* ===========================================================
   Image placeholders (subtle stripes + label)
   =========================================================== */
.placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(16,45,65,0.04) 0 12px, rgba(16,45,65,0.0) 12px 24px),
    linear-gradient(180deg, var(--bone), #d8cfb9);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-ink);
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.placeholder small { display: block; font-size: 10px; opacity: .55; margin-top: 6px; letter-spacing: 0.18em; }

/* ===========================================================
   Bold direction overrides (inverse colors / motion)
   =========================================================== */
[data-direction="bold"] body { background: var(--paper); }
[data-direction="bold"] .topbar { background: #050d15; }
[data-direction="bold"] .nav-shell { background: rgba(13,31,45,0.7); }
[data-direction="bold"] .stats { background: var(--paper); border-block-color: var(--line); }
[data-direction="bold"] .stat { border-right-color: var(--line); }
[data-direction="bold"] .testimonials { background: var(--paper); }
[data-direction="bold"] .blog { background: var(--paper-2); }
[data-direction="bold"] .t-card, [data-direction="bold"] .blog-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: var(--ink);
}
[data-direction="bold"] .t-card blockquote { color: var(--ink); }
[data-direction="bold"] .t-head .t-rating { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
[data-direction="bold"] .svc-card { color: var(--ink); }
[data-direction="bold"] .svc-icon { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); color: var(--yellow); }
[data-direction="bold"] .placeholder {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, #1a3247, #0d1f2d);
  color: var(--yellow);
}
[data-direction="bold"] .why-headline { font-style: italic; }
[data-direction="bold"] h1.display, [data-direction="bold"] h2.display { letter-spacing: -0.04em; }

[data-direction="bold"] .hero h1 { font-size: clamp(56px, 9vw, 160px); }
[data-direction="bold"] .hero h1 em {
  font-style: italic;
  color: var(--yellow);
  font-family: "Inter Tight", serif;
}

/* Demo experiment fix: make .reveal elements visible without IntersectionObserver JS */
.reveal { opacity: 1 !important; transform: none !important; }

/* === end injected lazuli-react-port.css === *//* End custom CSS */