/* ============================================================
   CYCO PRO MEDIA — Editorial Motion / Dark Neon Cyberpunk
   Palette: exact tokens from previous cycopromedia.com build
   ============================================================ */

:root {
  --bg-deep: #0A0A0F;
  --bg-card: rgba(10, 10, 20, 0.65);
  --bg-card-hover: rgba(15, 15, 30, 0.8);
  --cyan: #00F0FF;
  --cyan-dim: rgba(0, 240, 255, 0.15);
  --magenta: #B8B0D0;
  --magenta-dim: rgba(184, 176, 208, 0.12);
  --silver: #D8D8E8;
  --silver-dim: rgba(216, 216, 232, 0.1);
  --silver-glow: rgba(200, 196, 220, 0.4);
  --green: #00FF88;
  --green-dim: rgba(0, 255, 136, 0.1);
  --metallic: linear-gradient(120deg, #C8C0D8 0%, #F0ECF8 22%, #B8B0CC 45%, #00F0FF 60%, #D8D4E4 78%, #B8B0D0 100%);
  --metallic-soft: linear-gradient(120deg, rgba(200,192,216,0.9), rgba(0,240,255,0.85), rgba(184,176,208,0.9));
  --white: #F0F0F5;
  --text-primary: #E0E0EA;
  --text-secondary: #9999AA;
  --text-muted: #666680;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 240, 255, 0.3);
  --glass-blur: 18px;
  --radius: 18px;
  --radius-sm: 10px;
  --font-sans: 'Inter Tight', 'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

::selection { background: var(--cyan); color: var(--bg-deep); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Type scale ---------- */
.label-mono {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.display-xl {
  font-size: clamp(2.75rem, 9vw, 8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
}

.display-lg {
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
}

.display-md {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.accent { color: var(--cyan); }

/* metallic silver-purple shimmer text */
.shimmer, .display-lg, .display-md, .pillar__name,
.hero__title .line > span {
  background: var(--metallic);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerMove 7s linear infinite;
}
@keyframes shimmerMove {
  to { background-position: 220% center; }
}
/* keep the cyan accent + hero em vivid on top of shimmer */
.display-lg .accent, .display-md .accent, .shimmer .accent,
.hero__title em {
  -webkit-text-fill-color: var(--cyan);
  color: var(--cyan);
  background: none;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg-deep); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s var(--ease-expo);
}
.preloader.is-done { transform: translateY(-100%); }
.preloader__inner { text-align: center; }
.preloader__count {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  color: var(--cyan);
  text-shadow: 0 0 40px var(--cyan-dim);
}
.preloader__brand {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-secondary);
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.cursor-dot { width: 6px; height: 6px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(0, 240, 255, 0.35);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background 0.3s, border-color 0.3s;
}
.cursor-ring.is-active {
  width: 64px; height: 64px;
  background: var(--cyan-dim);
  border-color: var(--cyan);
}
@media (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(10,10,15,0.85), transparent);
}
.header__brand {
  display: flex; align-items: center; gap: 0.65rem;
  font-weight: 700; letter-spacing: -0.02em; font-size: 1rem;
}
.header__brand:hover .header__name { color: var(--cyan); }
.header__logo {
  width: 44px; height: 44px; object-fit: contain;
  filter: drop-shadow(0 0 6px var(--cyan-dim));
  animation: logoGlow 2.4s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  from { filter: drop-shadow(0 0 4px rgba(0,240,255,0.25)); }
  to   { filter: drop-shadow(0 0 14px rgba(0,240,255,0.6)); }
}
.header__name { transition: color 0.3s; }
@media (max-width: 520px) { .header__name { display: none; } }
.header__clock {
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
}
.header__menu-btn {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.header__menu-btn:hover { color: var(--cyan); }
.header__menu-btn .bars {
  display: inline-block; width: 22px; height: 10px; position: relative;
}
.header__menu-btn .bars::before, .header__menu-btn .bars::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: currentColor; transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out);
}
.header__menu-btn .bars::before { top: 0; }
.header__menu-btn .bars::after { top: 8px; }
body.menu-open .header__menu-btn .bars::before { top: 4px; transform: rotate(45deg); }
body.menu-open .header__menu-btn .bars::after { top: 4px; transform: rotate(-45deg); }

/* ---------- Fullscreen nav overlay ---------- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 2rem 3rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease-expo);
  visibility: hidden;
}
body.menu-open .nav-overlay { clip-path: inset(0 0 0% 0); visibility: visible; }
.nav-overlay__list { list-style: none; }
.nav-overlay__list li { overflow: hidden; }
.nav-overlay__list a {
  display: inline-flex; align-items: baseline; gap: 1.25rem;
  font-size: clamp(2rem, 6.5vw, 5rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -0.03em;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease-expo), color 0.3s, text-shadow 0.3s;
}
body.menu-open .nav-overlay__list a { transform: translateY(0); }
.nav-overlay__list a:hover { color: var(--cyan); text-shadow: 0 0 30px var(--cyan-dim); }
.nav-overlay__list .idx {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.18em;
  color: var(--text-muted);
}
.nav-overlay__meta {
  margin-top: auto; display: flex; gap: 2.5rem; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}
.nav-overlay__meta a:hover { color: var(--cyan); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 2rem 4.5rem;
  position: relative;
  background:
    radial-gradient(ellipse 70% 45% at 75% 18%, var(--cyan-dim), transparent 65%),
    radial-gradient(ellipse 55% 40% at 15% 80%, var(--magenta-dim), transparent 70%);
}
.hero__grid {
  flex: 1; display: grid; grid-template-columns: 1.4fr 1fr;
  align-items: center; gap: 3rem; padding-top: var(--nav-height, 80px);
}
.hero__col { align-self: center; }
.hero__logo {
  display: flex; align-items: center; justify-content: center;
}
.hero__logo img {
  width: 100%; max-width: 420px; height: auto; object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.25));
  animation: heroLogoFloat 6s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate;
  opacity: 0; transform: scale(0.9);
  transition: opacity 1.2s var(--ease-expo) 0.4s, transform 1.2s var(--ease-expo) 0.4s;
}
.is-loaded .hero__logo img { opacity: 1; transform: scale(1); }
@keyframes heroLogoFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}
.hero__kicker { margin-bottom: 1.5rem; color: var(--text-secondary); }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block; transform: translateY(110%);
  transition: transform 1.1s var(--ease-expo);
}
.is-loaded .hero__title .line > span { transform: translateY(0); }
.is-loaded .hero__title .line:nth-child(2) > span { transition-delay: 0.08s; }
.is-loaded .hero__title .line:nth-child(3) > span { transition-delay: 0.16s; }
.hero__title em {
  font-style: normal; color: var(--cyan);
  text-shadow: 0 0 60px rgba(0, 240, 255, 0.45);
}
.hero__slogan {
  position: relative; display: inline-block;
  margin-top: 1.75rem;
  font-size: clamp(1.25rem, 2.6vw, 2rem); font-weight: 600;
  letter-spacing: -0.01em; color: var(--white);
  font-style: italic;
}
.hero__slogan::before {
  content: ""; position: absolute; inset: -30% -12%;
  background: radial-gradient(ellipse at center, var(--cyan-dim), rgba(184,176,208,0.10) 45%, transparent 72%);
  filter: blur(14px); z-index: -1;
  animation: sloganGlow 4s ease-in-out infinite alternate;
}
@keyframes sloganGlow {
  from { opacity: 0.55; }
  to   { opacity: 1; }
}
.hero__sub { max-width: 30rem; margin-top: 2rem; color: var(--text-secondary); font-size: 0.9375rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; right: 2rem;
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 2.5rem; background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-dim);
  animation: scrollPulse 1.8s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
  overflow: hidden; padding: 1.1rem 0; white-space: nowrap;
  background: var(--bg-card);
}
.marquee__track {
  display: inline-flex; gap: 3rem;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-size: 1rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 3rem;
  color: var(--silver);
}
.marquee__track span::after { content: "◆"; font-size: 0.5rem; color: var(--cyan); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Glowing slogan bar */
.marquee--glow {
  background:
    linear-gradient(90deg, rgba(184,176,208,0.10), rgba(0,240,255,0.08), rgba(216,216,232,0.12), rgba(0,240,255,0.08), rgba(184,176,208,0.10));
  background-size: 200% 100%;
  animation: sheenSlide 9s linear infinite;
  border-color: var(--border-glow);
  box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.08), 0 0 24px rgba(0, 240, 255, 0.06);
}
@keyframes sheenSlide { to { background-position: 200% 0; } }
.marquee--glow .marquee__track span {
  color: var(--silver);
  text-shadow: 0 0 18px rgba(184, 176, 208, 0.3);
}
.marquee--glow .marquee__track span:nth-child(5n+1) {
  background: var(--metallic);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmerMove 6s linear infinite;
}

/* ---------- Sections ---------- */
.section { padding: clamp(6rem, 12vw, 11rem) 2rem; position: relative; }
.section__head {
  display: flex; align-items: baseline; gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section--glow {
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, var(--cyan-dim), transparent 70%);
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Manifesto (scroll-driven words) ---------- */
.manifesto { min-height: 140vh; }
.manifesto__sticky {
  position: sticky; top: 0; min-height: 100svh;
  display: flex; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.manifesto__text {
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  font-weight: 500; line-height: 1.25; letter-spacing: -0.02em;
  color: var(--white);
}
.manifesto__text .w { opacity: 0.12; transition: opacity 0.25s linear; }
.manifesto__text .w.lit { opacity: 1; }

/* ---------- Pillars ---------- */
.pillars { border-top: 1px solid var(--border-subtle); }
.pillar {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
  padding: 2.5rem 0; border-bottom: 1px solid var(--border-subtle);
  position: relative; cursor: pointer;
}
.pillar__num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }
.pillar__name {
  font-size: clamp(1.75rem, 5vw, 4rem); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--white);
  transition: transform 0.5s var(--ease-out), color 0.3s, text-shadow 0.3s;
}
.pillar:hover .pillar__name {
  transform: translateX(1.25rem);
  background: none;
  -webkit-text-fill-color: var(--cyan);
  color: var(--cyan);
  text-shadow: 0 0 40px var(--cyan-dim);
}
.pillar__tag { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); text-align: right; }
.pillar__desc {
  grid-column: 2 / 4; max-width: 34rem; color: var(--text-secondary); font-size: 0.9375rem;
  max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease-out), margin 0.6s var(--ease-out);
}
.pillar:hover .pillar__desc, .pillar.is-open .pillar__desc { max-height: 6rem; margin-top: 0.75rem; }
.pillar__desc .price { color: var(--green); font-family: var(--font-mono); font-size: 0.8125rem; }

/* floating hover image */
.float-img {
  position: fixed; z-index: 50; width: 300px; aspect-ratio: 4 / 3;
  pointer-events: none; overflow: hidden; border-radius: var(--radius-sm);
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.18);
  opacity: 0; transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.float-img.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.float-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Ecosystem canvas ---------- */
.eco { text-align: center; }
.eco__canvas-wrap { position: relative; max-width: 900px; margin: 0 auto; }
#eco-canvas { width: 100%; height: auto; display: block; touch-action: manipulation; }
.eco__hint {
  margin-top: 1.5rem; font-family: var(--font-mono);
  font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Portfolio slideshow grid ---------- */
.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.port-card {
  position: relative; outline: none;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.5s var(--ease-out);
}
.port-card:hover, .port-card:focus-visible {
  border-color: var(--border-glow);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0, 240, 255, 0.1);
  transform: translateY(-6px);
}
.port-card__media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at center, rgba(20,20,32,0.6), #06060a 80%);
}
.port-card__media .slide-img {
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity 0.3s var(--ease-out);
}
.port-card__info {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1rem 1.15rem;
}
.port-card__info h3 {
  font-size: 1rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em;
}
.port-tag {
  font-family: var(--font-mono); font-size: 0.625rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan);
  text-align: right;
}

/* slide arrows */
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,6,12,0.55); color: var(--white);
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem; opacity: 0;
  transition: opacity 0.3s, background 0.3s, border-color 0.3s;
  backdrop-filter: blur(6px);
}
.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }
.port-card:hover .slide-btn, .port-card:focus-within .slide-btn,
.about__media:hover .slide-btn { opacity: 1; }
.slide-btn:hover { background: var(--cyan); color: var(--bg-deep); border-color: var(--cyan); }

/* dots */
.slide-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 6px; max-width: 80%; flex-wrap: wrap;
  justify-content: center;
}
.slide-dot {
  width: 6px; height: 6px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,0.35); transition: background 0.3s, transform 0.3s;
}
.slide-dot.active { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); transform: scale(1.3); }

/* video cards */
.port-card--video video { cursor: pointer; }
.vid-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,6,12,0.35); transition: opacity 0.3s;
}
.vid-play {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cyan-dim); border: 1px solid var(--cyan);
  box-shadow: 0 0 30px var(--cyan-dim);
}
.vid-play svg { width: 22px; height: 22px; fill: var(--cyan); margin-left: 3px; }
.vid-mute {
  position: absolute; bottom: 10px; right: 10px; z-index: 5;
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(6,6,12,0.6); color: #fff; font-size: 0.85rem;
  border: 1px solid var(--border-subtle);
}
.web-visit {
  position: absolute; top: 10px; left: 10px; z-index: 4;
  background: var(--cyan-dim); color: var(--cyan);
  border: 1px solid var(--border-glow); border-radius: 6px;
  padding: 4px 12px; font-family: var(--font-mono);
  font-size: 0.625rem; letter-spacing: 0.08em;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.port-card:hover .web-visit { opacity: 1; }

.work__more { margin-top: clamp(3rem, 7vw, 6rem); text-align: center; }

/* underline link */
.link-line {
  position: relative; display: inline-block; padding-bottom: 0.2rem;
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan);
}
.link-line::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform-origin: right;
  transition: transform 0.5s var(--ease-expo);
}
.link-line:hover::after { transform: scaleX(0); transform-origin: left; }

/* ---------- Booking button ---------- */
.btn-book {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem; border-radius: 99px;
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, background 0.3s, color 0.3s;
}
.btn-book--cyan {
  background: var(--cyan); color: var(--bg-deep);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}
.btn-book--cyan:hover {
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.55);
  transform: translateY(-3px);
}
.hero__col .btn-book { margin-top: 2.5rem; }

/* ---------- Work preview row ---------- */
.work-preview { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.section__head { justify-content: space-between; }
.work-preview__row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.wp-item {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-sm); border: 1px solid var(--border-subtle);
  aspect-ratio: 3 / 4; transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.wp-item:hover {
  border-color: var(--border-glow); transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.12);
}
.wp-item img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform 1s var(--ease-out);
}
.wp-item:hover img { transform: scale(1); }
.wp-item__tag {
  position: absolute; bottom: 8px; left: 8px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
  background: rgba(6,6,12,0.6); padding: 3px 8px; border-radius: 4px;
  backdrop-filter: blur(6px);
}

/* ---------- Booking process ---------- */
.process__list {
  list-style: none; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  counter-reset: step; max-width: 1100px;
}
.process__step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.process__step:hover {
  border-color: var(--border-glow); transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.08);
}
.process__num {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--cyan); letter-spacing: 0.1em;
}
.process__step h3 {
  font-size: 1.25rem; font-weight: 600; color: var(--white);
  margin-top: 0.75rem; letter-spacing: -0.01em;
}
.process__step p { color: var(--text-secondary); font-size: 0.875rem; margin-top: 0.75rem; }
.process__cta { margin-top: 3rem; }

/* ---------- Booking form ---------- */
.booking {
  margin-top: clamp(3rem, 7vw, 5.5rem);
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  border-radius: var(--radius); scroll-margin-top: 90px;
  transition: box-shadow 0.5s;
}
.booking--flash { box-shadow: 0 0 0 1px var(--border-glow), 0 0 60px rgba(0,240,255,0.12); }
.booking__intro h3 { margin: 1rem 0; }
.booking__intro p { color: var(--text-secondary); font-size: 0.9375rem; max-width: 26rem; }
.booking__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono); font-size: 0.625rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary);
}
.field label .opt { color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  color: var(--text-primary); font-family: var(--font-sans); font-size: 0.9375rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--border-glow);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300F0FF' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem;
}
.field select:disabled { opacity: 0.5; cursor: not-allowed; }
.field select option { background: #0E0E18; color: var(--text-primary); }
.booking__note { margin-top: 0.85rem; font-size: 0.8125rem; color: var(--cyan); min-height: 1.1em; }

/* ---------- "Starting at" label ---------- */
.price-from {
  display: block; font-family: var(--font-mono);
  font-size: 0.625rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.75rem;
}

/* ---------- Contact booking ---------- */
.contact__book { margin-top: 2.5rem; }

/* ---------- Glass pricing cards ---------- */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1100px;
}
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s, box-shadow 0.5s;
}
/* metallic sheen sweep on glass cards */
.glass-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(216,216,232,0.07) 48%, rgba(0,240,255,0.05) 52%, transparent 70%);
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position 0.9s var(--ease-out);
  pointer-events: none;
}
.glass-card:hover::before { background-position: -50% 0; }
.glass-card > * { position: relative; z-index: 1; }
.glass-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.08);
}
.glass-card.featured { border-color: var(--border-glow); }
.glass-card.featured::after {
  content: "Most Popular";
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.625rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--cyan); color: var(--bg-deep);
  padding: 0.25rem 0.9rem; border-radius: 99px; white-space: nowrap;
}
.glass-card h3 {
  font-size: 1.125rem; font-weight: 600; color: var(--white);
  letter-spacing: -0.01em;
}
.glass-card .price {
  font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 600;
  letter-spacing: -0.02em; color: var(--cyan); margin-top: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.glass-card .price small { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }
.glass-card .price-desc { color: var(--text-muted); font-size: 0.8125rem; margin-top: 0.2rem; }
.glass-card ul { list-style: none; margin-top: 1.5rem; }
.glass-card ul li {
  padding: 0.45rem 0 0.45rem 1.4rem; position: relative;
  color: var(--text-secondary); font-size: 0.875rem;
  border-bottom: 1px solid var(--border-subtle);
}
.glass-card ul li:last-child { border-bottom: 0; }
.glass-card ul li::before {
  content: "◆"; position: absolute; left: 0; top: 0.55rem;
  font-size: 0.5rem; color: var(--green);
}
.glass-card .btn {
  display: flex; justify-content: center; align-items: center;
  margin-top: 1.75rem; padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--border-glow); color: var(--cyan);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.glass-card .btn:hover { background: var(--cyan); color: var(--bg-deep); box-shadow: 0 0 30px var(--cyan-dim); }
.glass-card.featured .btn { background: var(--cyan); color: var(--bg-deep); }
.glass-card.featured .btn:hover { box-shadow: 0 0 40px rgba(0, 240, 255, 0.35); }
.price-note { margin-top: 2rem; color: var(--text-muted); font-size: 0.8125rem; }

/* ---------- About ---------- */
.about__grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 2.5rem;
  align-items: center;
}
.about__media {
  position: relative;
  grid-column: 1 / 6; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(ellipse at center, rgba(20,20,32,0.6), #06060a 80%);
}
.about__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: contain;
  transition: opacity 0.3s var(--ease-out);
}
.about__body { grid-column: 7 / 13; }
.about__body p { color: var(--text-secondary); margin-top: 1.25rem; max-width: 34rem; }
.about__stats {
  margin-top: 2.5rem; display: flex; gap: 3rem; flex-wrap: wrap;
}
.about__stats .stat b {
  display: block; font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  color: var(--cyan);
}
.about__stats .stat span { font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

/* ---------- Mission ---------- */
.mission {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.mission__quote {
  max-width: 1000px; margin: 0 auto;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 500; line-height: 1.3; letter-spacing: -0.02em;
  color: var(--silver); text-align: center;
}

/* ---------- Contact ---------- */
.contact { text-align: left; }
.contact__email {
  display: block; margin-top: 2rem;
  font-size: clamp(1.5rem, 5.5vw, 4.5rem);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
  word-break: break-all;
  color: var(--white);
  transition: color 0.3s, text-shadow 0.3s;
}
.contact__email:hover { color: var(--cyan); text-shadow: 0 0 50px var(--cyan-dim); }
.contact__meta {
  margin-top: 3rem; display: flex; gap: 2.5rem; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}
.contact__meta a:hover { color: var(--cyan); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.625rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted);
}
.footer a:hover { color: var(--cyan); }

/* ---------- Footer CTA ---------- */
.footer-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
  border-top: 1px solid var(--border-subtle);
  background: radial-gradient(ellipse 60% 100% at 50% 100%, var(--cyan-dim), transparent 70%);
}
.footer-cta__text {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600;
  letter-spacing: -0.02em; color: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
  .glass-card.featured { order: -1; }
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .booking { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__logo { order: -1; }
  .hero__logo img { max-width: 180px; }
  .hero { justify-content: center; min-height: auto; padding-top: 6rem; padding-bottom: 3rem; }
  .port-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .header { padding: 1rem 1.25rem; }
  .header__clock { display: none; }
  .hero, .section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .pillar { grid-template-columns: auto 1fr; }
  .pillar__tag { display: none; }
  .pillar__desc { grid-column: 1 / 3; }
  .about__media, .about__body { grid-column: 1 / 13; }
  .float-img { display: none; }
  .process__list { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}
@media (max-width: 560px) {
  .port-grid { grid-template-columns: 1fr; }
  .booking__form { grid-template-columns: 1fr; }
  .section { padding-top: clamp(4rem, 14vw, 6rem); padding-bottom: clamp(4rem, 14vw, 6rem); }
  .display-xl { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .footer-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .btn-book { width: 100%; justify-content: center; }
  .slide-btn { opacity: 1; width: 32px; height: 32px; } /* always visible on touch */
  .about__stats { gap: 1.5rem; }
  .contact__meta { gap: 1.25rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__title .line > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .manifesto__text .w { opacity: 1; }
  .marquee__track { animation: none; }
  .cursor-dot, .cursor-ring { display: none !important; }
}
