/* ============================================================
   OTOPARK PLUS — styles.css
   Direction: Light-premium, logo-aligned. White / light-gray
   surfaces, brand navy structure, brand red CTAs, brand blue
   accents, color-coded floor badges. Disciplined depth & shadows.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* surfaces */
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --line: rgba(20, 40, 90, 0.10);
  --line-strong: rgba(20, 40, 90, 0.17);

  /* text */
  --text: #233049;
  --text-dim: #5a6781;
  --text-faint: #67738c;

  /* brand */
  --navy: #1b3a8f;
  --navy-deep: #14296a;
  --blue: #2f6fd6;
  --red: #e2231a;
  --red-dark: #be1610;
  --wa: #25d366;
  --wa-deep: #0f7a41;

  /* floor colors (tuned for light surfaces) */
  --floor-sari: #eaa400;
  --floor-turuncu: #ef7c1a;
  --floor-mavi: #2f6fd6;
  --floor-kirmizi: #e2231a;
  --floor-mor: #8a4fd6;
  --floor-teras: #14a877;

  /* type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --text-lg: clamp(1.12rem, 1rem + 0.5vw, 1.3rem);
  --h3: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem);
  --h2: clamp(1.9rem, 1.4rem + 2.2vw, 3.1rem);
  --h1: clamp(2.5rem, 1.5rem + 4.8vw, 5.2rem);

  /* spacing */
  --shell: min(92vw, 1200px);
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --header-h: 74px;

  /* motion */
  --dur: 240ms;
  --dur-slow: 620ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-soft: 0 10px 28px -16px rgba(20, 40, 90, 0.22);
  --shadow-card: 0 26px 60px -34px rgba(20, 40, 90, 0.30);
  --shadow-lg: 0 44px 90px -44px rgba(20, 40, 90, 0.34);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--space-section); position: relative; scroll-margin-top: 90px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 600; transition: top var(--dur);
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.4rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  letter-spacing: 0.01em; white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), background var(--dur), color var(--dur), border-color var(--dur);
}
.btn svg { transition: transform var(--dur) var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: var(--red); color: #fff;
  box-shadow: 0 14px 28px -14px rgba(226, 35, 26, 0.6);
}
.btn-accent:hover { background: var(--red-dark); box-shadow: 0 20px 36px -14px rgba(226, 35, 26, 0.7); }
.btn-accent:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: #fff; color: var(--navy);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--surface-2); }

.btn-whatsapp { background: var(--wa); color: #06351c; box-shadow: 0 14px 28px -14px rgba(37, 211, 102, 0.55); }
.btn-whatsapp:hover { background: #1fc35d; box-shadow: 0 20px 36px -14px rgba(37, 211, 102, 0.7); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur), background var(--dur);
}
.site-header.scrolled { box-shadow: var(--shadow-soft); background: rgba(255, 255, 255, 0.96); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 40px; width: auto; display: block; }

.primary-nav { display: flex; gap: 0.3rem; }
.nav-link {
  position: relative; padding: 0.5rem 0.85rem; font-size: var(--text-sm);
  color: var(--text-dim); font-weight: 500; border-radius: var(--radius-sm);
  transition: color var(--dur);
}
.nav-link::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.32rem; height: 2px;
  background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.social-cluster { display: flex; gap: 0.35rem; }
.icon-btn {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  color: var(--text-dim); border: 1px solid var(--line-strong);
  transition: color var(--dur), border-color var(--dur), transform var(--dur), background var(--dur);
}
.icon-btn:hover { color: var(--navy); border-color: var(--navy); transform: translateY(-2px); background: var(--surface-2); }

.hamburger {
  display: none; width: 44px; height: 44px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong); flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.hamburger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; top: var(--header-h); right: 0; z-index: 99;
  width: min(86vw, 340px); height: calc(100dvh - var(--header-h));
  background: #fff; border-left: 1px solid var(--line);
  padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: 1.2rem;
  transform: translateX(105%); transition: transform var(--dur-slow) var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-link {
  padding: 1rem 0.4rem; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  border-bottom: 1px solid var(--line); color: var(--navy);
  transition: color var(--dur), padding-left var(--dur);
}
.mobile-link:hover { color: var(--red); padding-left: 0.9rem; }
.mobile-cta { justify-content: center; margin-top: auto; }
.menu-backdrop { position: fixed; inset: 0; z-index: 98; background: rgba(20, 30, 50, 0.4); backdrop-filter: blur(2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 90px; overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg, #ffffff 0%, #eef3fa 100%);
  scroll-margin-top: 0;
}
.hero-atmos { position: absolute; inset: 0; z-index: -1; }
.hero-glow {
  position: absolute; top: -12%; right: -8%; width: 60vw; height: 60vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgba(47, 111, 214, 0.16), transparent 62%);
  filter: blur(10px); pointer-events: none;
}
.hero-atmos::after {
  content: ""; position: absolute; bottom: -10%; left: -6%; width: 42vw; height: 42vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, rgba(226, 35, 26, 0.08), transparent 60%); filter: blur(10px);
}
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center; width: var(--shell);
}
/* allow grid/flex children to shrink below their min-content width (prevents 320px overflow) */
.hero-inner > *, .hero-copy { min-width: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  padding: 0.4rem 0.85rem; border: 1px solid var(--line-strong); border-radius: 999px;
  background: #fff; box-shadow: var(--shadow-soft);
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37,211,102,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 9px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.hero-title { font-size: var(--h1); font-weight: 800; margin-top: 1.3rem; max-width: 14ch; color: var(--navy); }
.title-accent { color: var(--red); position: relative; white-space: nowrap; }
.title-accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.12em;
  background: linear-gradient(90deg, var(--red), rgba(226,35,26,0.15)); border-radius: 4px;
}
.hero-sub { margin-top: 1.4rem; max-width: 48ch; color: var(--text-dim); font-size: var(--text-lg); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.hero-stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.6rem; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; position: relative; padding-left: 1rem; }
.hero-stats div::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; border-radius: 3px; background: var(--red); }
.hero-stats dt { font-family: var(--font-display); font-size: clamp(1.6rem, 1rem + 2vw, 2.4rem); font-weight: 800; color: var(--navy); }
.hero-stats dd { font-size: var(--text-xs); color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hero-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-photo-tag {
  position: absolute; left: 1rem; bottom: 1rem; font-family: var(--font-mono); font-size: var(--text-xs);
  background: rgba(255,255,255,0.92); color: var(--navy); padding: 0.4rem 0.8rem; border-radius: 999px;
  box-shadow: var(--shadow-soft); letter-spacing: 0.04em;
}
.hero-ticket {
  position: relative; margin: -2.6rem 1.5rem 0 auto; max-width: 290px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.3rem; box-shadow: var(--shadow-card);
}
.hero-ticket::before, .hero-ticket::after {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  background: #eef3fa; top: 50%; transform: translateY(-50%);
}
.hero-ticket::before { left: -10px; }
.hero-ticket::after { right: -10px; }
.ticket-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.1em; color: var(--text-faint); padding-bottom: 0.9rem; border-bottom: 1px dashed var(--line-strong); }
.ticket-code { color: var(--red); }
.floor-strip { display: flex; flex-direction: column; gap: 0.5rem; padding-block: 1rem; }
.floor-strip li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; font-size: var(--text-sm); color: var(--text); transition: transform var(--dur) var(--ease); }
.floor-strip li:hover { transform: translateX(5px); }
.floor-strip .dot { width: 14px; height: 14px; border-radius: 4px; background: var(--c); box-shadow: 0 0 0 3px color-mix(in srgb, var(--c) 18%, transparent); flex-shrink: 0; }
.ticket-foot { font-size: var(--text-xs); color: var(--text-faint); border-top: 1px dashed var(--line-strong); padding-top: 0.85rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-faint); font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue-track { width: 22px; height: 36px; border: 1px solid var(--line-strong); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-cue-dot { width: 4px; height: 8px; border-radius: 2px; background: var(--red); animation: cue 1.7s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Section heads ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.kicker {
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.7rem;
  display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.section-title { font-size: var(--h2); font-weight: 700; }
.section-lead { margin-top: 0.9rem; color: var(--text-dim); font-size: var(--text-lg); }

/* ---------- Features (bento) ---------- */
.features { background: var(--bg-alt); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.feat {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.feat::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red);
  transform: scaleY(0); transform-origin: top; transition: transform var(--dur) var(--ease);
}
.feat:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.feat:hover::before { transform: scaleY(1); }
.feat-lg { grid-row: span 2; display: flex; flex-direction: column; background: linear-gradient(165deg, #fff, #f3f6fc); }
.feat-wide { grid-column: span 2; }
.feat-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--navy) 8%, #fff); color: var(--navy); margin-bottom: 1.1rem;
  border: 1px solid color-mix(in srgb, var(--navy) 16%, transparent);
}
.feat-lg .feat-icon { width: 58px; height: 58px; background: color-mix(in srgb, var(--red) 9%, #fff); color: var(--red); border-color: color-mix(in srgb, var(--red) 18%, transparent); }
.feat h3 { font-size: var(--h3); margin-bottom: 0.5rem; }
.feat p { color: var(--text-dim); font-size: var(--text-sm); }
.feat p strong { color: var(--navy); }
.feat-lg p { margin-bottom: auto; }
.feat-tag {
  display: inline-block; margin-top: 1.1rem; font-family: var(--font-mono);
  font-size: var(--text-xs); color: var(--navy);
  padding: 0.3rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface-2);
}

/* ---------- About ---------- */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); border: 1px solid var(--line); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-card); }
.about-badge {
  position: absolute; bottom: -22px; right: -10px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.3rem;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.about-badge-num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--red); }
.about-badge-txt { font-size: var(--text-xs); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.about-copy p { color: var(--text-dim); margin-bottom: 1.1rem; }
.about-copy p strong { color: var(--navy); }

.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.counter { border-top: 2px solid var(--line-strong); padding-top: 1rem; position: relative; }
.counter::before { content: ""; position: absolute; top: -2px; left: 0; width: 36px; height: 2px; background: var(--red); }
.count { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 1rem + 2vw, 2.6rem); color: var(--navy); line-height: 1; }
.counter dd { font-size: var(--text-xs); color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 0.4rem; }

/* ---------- Locations ---------- */
.locations { background: var(--bg-alt); }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.loc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.loc-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.loc-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.loc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.loc-card:hover .loc-media img { transform: scale(1.06); }
.loc-chip {
  position: absolute; top: 0.9rem; left: 0.9rem; font-family: var(--font-mono); font-size: var(--text-xs);
  background: rgba(255,255,255,0.95); border: 1px solid var(--line); color: var(--wa-deep);
  padding: 0.3rem 0.7rem; border-radius: 999px; box-shadow: var(--shadow-soft); font-weight: 700;
}
.loc-media-soon {
  display: grid; place-items: center; gap: 0; background:
    repeating-linear-gradient(135deg, #eef2f8 0 18px, #e7edf6 18px 36px);
  color: var(--navy);
}
.soon-mark { display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: #fff; color: var(--navy); box-shadow: var(--shadow-soft); }
.loc-chip-soon { color: var(--red); border-color: color-mix(in srgb, var(--red) 30%, transparent); }
.loc-body { padding: 1.5rem; }
.loc-body h3 { font-size: var(--h3); margin-bottom: 0.5rem; }
.loc-body > p { color: var(--text-dim); font-size: var(--text-sm); margin-bottom: 1rem; }
.loc-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.loc-meta li { font-size: var(--text-xs); color: var(--text-dim); padding: 0.3rem 0.7rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-2); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-display);
  font-weight: 600; font-size: var(--text-sm); color: var(--red);
  transition: gap var(--dur) var(--ease);
}
.link-arrow svg { transition: transform var(--dur) var(--ease); }
.link-arrow:hover { gap: 0.75rem; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Gallery ---------- */
.gallery { background: #fff; }
.floor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.floor-card {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); display: block; padding: 0; text-align: left;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  --c: var(--navy);
}
.floor-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 25, 45, 0.82));
  transition: opacity var(--dur);
}
.floor-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.floor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.floor-card:hover img { transform: scale(1.08); }
.floor-tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2; display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); color: #fff;
}
.floor-tag .dot { width: 14px; height: 14px; border-radius: 4px; background: var(--c); box-shadow: 0 0 0 3px rgba(255,255,255,0.25); }
.floor-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3; background: var(--c);
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.floor-card:hover::before { transform: scaleX(1); }

/* gallery location tabs */
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.gal-tab {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  padding: 0.6rem 1.35rem; border-radius: 999px; color: var(--text-dim);
  background: #fff; border: 1px solid var(--line-strong);
  transition: color var(--dur), background var(--dur), border-color var(--dur), transform var(--dur) var(--ease), box-shadow var(--dur);
}
.gal-tab:hover { color: var(--navy); border-color: var(--navy); transform: translateY(-2px); }
.gal-tab.is-active { color: #fff; background: var(--navy); border-color: var(--navy); box-shadow: 0 14px 28px -16px rgba(20,40,90,0.5); }
.gal-panel[hidden] { display: none; }
.gal-note { margin-top: 1.3rem; text-align: center; color: var(--text-faint); font-size: var(--text-sm); font-family: var(--font-mono); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
/* simplified contact — WhatsApp only */
.contact-wrap { width: var(--shell); max-width: 760px; margin-inline: auto; text-align: center; }
.contact-wrap .kicker { justify-content: center; }
.contact-wrap .section-head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.wa-card-lg { max-width: 540px; margin-inline: auto; text-align: left; padding: 1.3rem 1.5rem; }

.wa-card {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem;
  background: var(--wa); color: #06351c; border-radius: var(--radius);
  padding: 1.1rem 1.3rem; box-shadow: 0 18px 36px -18px rgba(37, 211, 102, 0.6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), background var(--dur);
}
.wa-card:hover { transform: translateY(-3px); background: #1fc35d; box-shadow: 0 24px 44px -18px rgba(37, 211, 102, 0.7); }
.wa-card-ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,0.3); color: #06351c; flex-shrink: 0; }
.wa-card-text { display: flex; flex-direction: column; line-height: 1.3; }
.wa-card-text strong { font-family: var(--font-display); font-size: 1.1rem; }
.wa-card-text span { font-size: var(--text-sm); opacity: 0.85; }
.wa-card-arrow { margin-left: auto; transition: transform var(--dur) var(--ease); }
.wa-card:hover .wa-card-arrow { transform: translateX(4px); }

.contact-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.8rem; }
.contact-list li { display: flex; gap: 1rem; align-items: center; }
.ci-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: color-mix(in srgb, var(--navy) 8%, #fff); color: var(--navy); border: 1px solid color-mix(in srgb, var(--navy) 16%, transparent); }
.ci-label { display: block; font-size: var(--text-xs); color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }
.ci-val { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: var(--navy); transition: color var(--dur); }
a.ci-val:hover { color: var(--red); }

.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.map-frame img { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.map-cta {
  position: absolute; bottom: 1rem; left: 1rem; background: var(--red); border: 1px solid var(--red);
  padding: 0.6rem 1rem; border-radius: 999px; font-size: var(--text-sm); font-weight: 600; color: #fff;
  box-shadow: var(--shadow-soft); transition: transform var(--dur), background var(--dur);
}
.map-cta:hover { transform: translateY(-2px); background: var(--red-dark); }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-card);
}
.form-title { font-size: var(--h3); }
.form-sub { color: var(--text-dim); font-size: var(--text-sm); margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: 0.45rem; color: var(--navy); }
.field input, .field textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--line-strong); color: var(--text);
  padding: 0.8rem 1rem; border-radius: var(--radius-sm); font: inherit; font-size: var(--text-sm);
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,111,214,0.16); background: #fff; }
.field.invalid input, .field.invalid textarea { border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,35,26,0.14); }
.error { display: block; color: var(--red-dark); font-size: var(--text-xs); margin-top: 0.4rem; min-height: 1em; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-success { margin-top: 1rem; color: var(--wa-deep); font-size: var(--text-sm); font-weight: 500; padding: 0.8rem 1rem; background: color-mix(in srgb, var(--wa) 12%, #fff); border: 1px solid color-mix(in srgb, var(--wa) 35%, transparent); border-radius: var(--radius-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #cdd7ec; padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.brand-text-mark { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; color: #fff; }
.brand-text-mark strong { color: #f5453c; font-weight: 800; }
.footer-brand p { color: #9fb0cf; font-size: var(--text-sm); margin: 1rem 0 1.2rem; max-width: 40ch; }
.footer-brand .icon-btn { color: #cdd7ec; border-color: rgba(255,255,255,0.18); }
.footer-brand .icon-btn:hover { color: #fff; border-color: #ff6a5e; background: rgba(255,255,255,0.06); }
.footer-col h4 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.1em; color: #8ea0c2; margin-bottom: 1rem; font-weight: 600; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col span { color: #9fb0cf; font-size: var(--text-sm); transition: color var(--dur); width: fit-content; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-block: 1.4rem; border-top: 1px solid rgba(255,255,255,0.1); color: #7e90b3; font-size: var(--text-xs); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 150; display: none; place-items: center;
  background: rgba(12, 18, 32, 0.9); backdrop-filter: blur(8px); padding: 5vw;
}
.lightbox.open { display: grid; }
.lb-figure { max-width: min(92vw, 1100px); text-align: center; animation: lbIn var(--dur) var(--ease); }
@keyframes lbIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.lb-figure img { max-height: 78vh; width: auto; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.18); }
.lb-figure figcaption { margin-top: 1rem; font-family: var(--font-display); color: #fff; font-weight: 600; }
.lb-close, .lb-nav {
  position: absolute; display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); border-radius: 50%;
  transition: background var(--dur), transform var(--dur);
}
.lb-close { top: 4vw; right: 4vw; width: 48px; height: 48px; font-size: 1.8rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lb-prev { left: 3vw; }
.lb-next { right: 3vw; }
.lb-close:hover, .lb-nav:hover { background: var(--red); }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--wa); color: #06351c; box-shadow: 0 14px 34px -10px rgba(37,211,102,0.6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 20px 40px -10px rgba(37,211,102,0.75); }

/* ---------- Reveal animation (JS-gated for no-JS resilience) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .hero-ticket { margin-right: 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .feat-lg { grid-row: auto; }
  .feat-wide { grid-column: span 2; }
  .floor-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .primary-nav, .header-cta, .social-cluster { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; }
  .about-badge { right: 10px; }
  .loc-grid { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .feat-wide, .feat-lg { grid-column: auto; }
  .floor-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-ticket { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
  .lb-prev { left: 1rem; } .lb-next { right: 1rem; }
  .lb-close { top: 1rem; right: 1rem; }
  .wa-card-text strong { font-size: 1rem; }
  /* eyebrow must wrap on narrow screens, not force overflow */
  .eyebrow { white-space: normal; flex-wrap: wrap; max-width: 100%; border-radius: 14px; }
}

@media (max-width: 380px) {
  /* stack hero CTAs full-width so no-wrap buttons can't push past the viewport */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
