:root {
  --bg: #0c0c0c;
  --bg2: #111111;
  --line: #222222;
  --line2: #1a1a1a;
  --blue: #1a4fff;
  --blue2: #0f35cc;
  --fog: #3a3a3a;
  --muted: #555555;
  --dim: #888888;
  --light: #bbbbbb;
  --white: #f2f2f2;
  --red: #ff2b2b;
}

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

html { height: 100%; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100%;
}

/* ── CURSOR ── */
*, *::before, *::after { cursor: none !important; }
#c {
  position: fixed; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: screen;
}
#cr {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid rgba(26,79,255,0.35);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; padding: 0 40px;
  height: 56px; display: flex;
  align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(12,12,12,0.96);
  backdrop-filter: blur(8px);
}
.nav-id {
  display: flex; align-items: center; gap: 16px;
}
.nav-dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nav-name {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.nav-right {
  display: flex; align-items: center; gap: 0;
}
.nav-link {
  color: var(--muted); text-decoration: none;
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0 20px; height: 56px;
  display: flex; align-items: center;
  border-left: 1px solid var(--line);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--white); background: var(--line2); }
.nav-link.cta {
  background: var(--blue); color: #fff;
  font-weight: 700;
  border-left: none;
}
.nav-link.cta:hover { background: var(--blue2); }

/* ── MAIN WRAPPER ── */
main { padding-top: 56px; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 79px,
    var(--line2) 79px,
    var(--line2) 80px
  );
  pointer-events: none; z-index: 0;
}
.hero-top {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 1;
}
.hero-main {
  padding: 56px 40px 40px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.hero-tag {
  font-size: 10px; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--blue);
  font-weight: 700;
}
.hero-headline {
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-headline .stroke {
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  color: transparent;
  display: block;
}
.hero-headline .filled { display: block; }
.hero-headline .blue { color: var(--blue); display: block; }
.hero-meta {
  display: flex; align-items: flex-end;
  justify-content: space-between;
}
.hero-desc {
  max-width: 360px; color: var(--dim);
  font-size: 13px; line-height: 1.85;
  font-weight: 400;
}
.hero-cta-group { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.btn-main {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue); color: #fff;
  padding: 14px 28px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, gap 0.2s;
}
.btn-main:hover { background: var(--blue2); gap: 18px; }
.btn-line {
  color: var(--muted); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-line:hover { color: var(--white); }

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  border-bottom: 1px solid var(--line);
  min-height: 520px;
}
.about-index {
  border-right: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.about-index-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 9px; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--muted);
}
.about-left {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.section-label {
  font-size: 9px; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 32px; font-weight: 700;
}
.about-h {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900; line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.02em;
}
.about-ig {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; color: var(--dim);
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.about-ig:hover { color: var(--blue); border-color: var(--blue); }
.about-right {
  padding: 56px 48px;
  display: flex; flex-direction: column; gap: 40px;
}
.about-body {
  color: var(--dim); font-size: 14px; line-height: 2;
}
.about-body p + p { margin-top: 16px; }
.about-body strong { color: var(--light); font-weight: 700; }

/* ── BOOKING ── */
.booking {
  display: grid;
  grid-template-columns: 380px 1fr;
  border-bottom: 1px solid var(--line);
  min-height: 100vh;
}
.booking-index { display: none; }
.booking-index-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 9px; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--muted);
}
.booking-left {
  border-right: 1px solid var(--line);
  padding: 56px 40px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}
.book-h {
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.88; letter-spacing: -0.02em;
}
.book-h span { display: block; color: var(--blue); }
.book-sub {
  color: var(--muted); font-size: 13px;
  line-height: 1.85;
}
.book-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line);
}
.book-list-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em;
}
.book-list-item:last-child { border-bottom: none; }
.book-list-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
  flex-shrink: 0;
}
.booking-cal {
  padding: 0;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
}
.calendly-inline-widget {
  width: 100%;
  flex: 1;
  min-height: 700px;
}
.cal-header {
  height: 56px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  padding: 0 32px; gap: 12px;
}
.cal-header-dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s infinite;
}
.cal-header-label {
  font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--dim);
}

/* ── FOOTER ── */
footer {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr;
  height: 56px;
  border-top: 1px solid var(--line);
}
.footer-idx { border-right: 1px solid var(--line); }
.footer-cell {
  display: flex; align-items: center;
  padding: 0 32px;
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted);
  border-right: 1px solid var(--line);
}
.footer-cell:last-child { border-right: none; justify-content: flex-end; }
.footer-cell a {
  color: var(--muted); text-decoration: none;
  transition: color 0.2s; margin-left: 24px;
}
.footer-cell a:first-child { margin-left: 0; }
.footer-cell a:hover { color: var(--blue); }

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.rv.in { opacity: 1; transform: none; }

/* ── HERO LOAD ANIMS ── */
.hero-tag    { opacity:0; animation: up 0.6s 0.1s forwards; }
.hero-headline { opacity:0; animation: up 0.8s 0.25s forwards; }
.hero-meta   { opacity:0; animation: up 0.6s 0.5s forwards; }
nav          { opacity:0; animation: fadein 0.5s 0.15s forwards; }
@keyframes up { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes fadein { from { opacity:0; } to { opacity:1; } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about-index { display: none; }
  .about-left, .about-right { padding: 40px 24px; }
  .booking { grid-template-columns: 1fr; }
  .booking-index { display: none; }
  .booking-left { padding: 40px 24px; }
  footer { grid-template-columns: 1fr; height: auto; padding: 20px 24px; }
  .footer-idx { display: none; }
  .footer-cell { border: none; padding: 6px 0; }
  nav { padding: 0 20px; }
  .nav-link:not(.cta) { display: none; }
  .hero-main { padding: 40px 24px; }
}
