:root {
  --bg:        #0a0e14;
  --bg-elev:   #10151c;
  --bg-elev-2: #161c25;
  --surface:   #1c2430;
  --border:    #232b38;
  --border-strong: #2e3847;
  --fg:        #e6edf3;
  --fg-muted:  #9aa4b2;
  --fg-dim:    #6a7481;
  --accent:    #22d3ee;
  --accent-2:  #7dd3fc;
  --warning:   #facc15;
  --caution:   #fb923c;
  --danger:    #f87171;
  --success:   #34d399;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --maxw: 1120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--fg); font-family: var(--sans);
  font-feature-settings: "cv02","cv11","ss01"; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; line-height: 1.55; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(34,211,238,0.35); color: var(--fg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.mono { font-family: var(--mono); }
.grid-bg {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* NAV */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(10,14,20,0.72); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.01em; font-size: 1.05rem; }
.brand svg, .brand-mark { display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link { color: var(--fg-muted); font-size: 0.92rem; font-weight: 500; transition: color 0.15s; }
.nav-links a.link:hover { color: var(--fg); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); font-weight: 600; font-size: 0.92rem; padding: 11px 20px; min-height: 44px; border-radius: 10px; cursor: pointer; transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn-primary { background: var(--accent); color: #04222a; border: 1px solid var(--accent); box-shadow: 0 0 0 1px rgba(34,211,238,0.3), 0 0 24px -4px rgba(34,211,238,0.45); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(34,211,238,0.5), 0 0 34px -2px rgba(34,211,238,0.6); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); }

/* PAGE HERO (sub-pages) */
.page { padding: 64px 0 80px; min-height: calc(100vh - 64px - 110px); position: relative; }
.page-glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 820px; height: 460px; pointer-events: none; background: radial-gradient(ellipse at center, rgba(34,211,238,0.13), transparent 62%); }
.page-head { position: relative; z-index: 1; max-width: 640px; margin: 0 auto 40px; text-align: center; }
.kicker { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.page-head h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.06; letter-spacing: -0.025em; font-weight: 800; margin-bottom: 14px; }
.page-head p { color: var(--fg-muted); font-size: 1.05rem; }
.back { display: inline-flex; align-items: center; gap: 7px; color: var(--fg-dim); font-size: 0.86rem; margin-bottom: 26px; transition: color 0.15s; }
.back:hover { color: var(--accent-2); }

/* BOOKING */
.embed-card { position: relative; z-index: 1; max-width: 940px; margin: 0 auto; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--bg-elev); box-shadow: 0 24px 60px -30px rgba(0,0,0,0.8); }
.embed-card iframe { display: block; width: 100%; min-height: 720px; border: none; background: var(--bg-elev); }
.embed-fallback { text-align: center; color: var(--fg-dim); font-size: 0.88rem; margin-top: 20px; }

/* FORM */
.form-card { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 16px; padding: 36px; box-shadow: 0 24px 60px -30px rgba(0,0,0,0.8); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--fg-muted); margin-bottom: 8px; }
.field label .req { color: var(--accent); }
.field input, .field textarea {
  width: 100%; background: var(--bg); color: var(--fg); font-family: var(--sans); font-size: 0.96rem;
  border: 1px solid var(--border-strong); border-radius: 9px; padding: 11px 13px; transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,211,238,0.15); }
.field textarea { resize: vertical; min-height: 110px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.submit { width: 100%; justify-content: center; font-size: 1rem; padding: 13px; margin-top: 6px; }
.status { margin-top: 18px; font-size: 0.92rem; text-align: center; border-radius: 9px; padding: 12px; display: none; }
.status.show { display: block; }
.status.ok { color: var(--success); background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.3); }
.status.err { color: var(--danger); background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.3); }
.form-aside { text-align: center; color: var(--fg-dim); font-size: 0.86rem; margin-top: 22px; }
.form-aside a { color: var(--accent-2); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 40px 0; }
.foot-col { text-align: center; }
.footer-lockup { display: block; height: 150px; width: auto; margin: 0 auto 20px; border-radius: 16px; border: 1px solid var(--border); }
.foot-meta { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.foot-inner { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.foot-inner .small { color: var(--fg-dim); font-size: 0.84rem; }
.foot-inner a.link { color: var(--fg-muted); font-size: 0.84rem; }
.foot-inner a.link:hover { color: var(--accent-2); }

.reveal { opacity: 0; transform: translateY(16px); animation: rise 0.6s ease forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 720px) {
  .nav-links .link { display: none; }
  .row2 { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
}
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } html { scroll-behavior: auto; } }
