/* ============================================================
   STEELHOUSE VISUALS — style.css  (v2 — Flyer-Faithful Edition)
   ============================================================
   Design direction: Maximum cinematic darkness, electric cobalt
   blue borrowed directly from the flyer. Every glow, border and
   shadow references the paint-drip / neon-blue aesthetic.
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --blue:        #1098d4;   /* Primary electric blue  */
  --blue-bright: #22d3ff;   /* Highlight / glow tip   */
  --blue-dark:   #0a6fa0;   /* Deep blue for shadows  */
  --blue-dim:    rgba(16,152,212,.14);
  --black:       #060709;   /* True near-black bg     */
  --dark:        #0c0e13;   /* Section alt bg         */
  --card-bg:     #101218;   /* Card surfaces          */
  --border:      rgba(16,152,212,.22);
  --silver:      #b8c4cc;   /* Secondary text         */
  --white:       #edf0f3;
  --font-display:'Bebas Neue', sans-serif;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Montserrat', sans-serif;
  --glow-sm:     0 0 18px rgba(16,152,212,.45);
  --glow-md:     0 0 40px rgba(16,152,212,.55);
  --glow-lg:     0 0 80px rgba(16,152,212,.4);
  --radius:      10px;
  --transition:  0.35s cubic-bezier(.25,.46,.45,.94);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── LOGO IMAGE SIZES ───────────────────────────────────── */
/* Navbar logo — compact, fits the sticky bar */
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(16,152,212,.5));
  transition: filter var(--transition);
}
.nav-logo-img:hover {
  filter: drop-shadow(0 0 18px rgba(34,211,255,.8));
}

/* Hero logo — large centrepiece */
.hero-logo-img {
  width: min(480px, 82vw);
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(16,152,212,.55));
  animation: heroLogoIn 1s ease .3s both;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Footer logo — medium, sits above the tagline */
.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(16,152,212,.4));
  transition: filter var(--transition);
}
.footer-logo-img:hover {
  filter: drop-shadow(0 0 20px rgba(34,211,255,.6));
}

/* ── GRAIN / NOISE OVERLAY ──────────────────────────────── */
/* Adds that cinematic film grain matching the flyer texture  */
.grain-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.038'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  mix-blend-mode: overlay;
}

/* ── CURSOR GLOW ─────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,152,212,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%,-50%);
  transition: left .06s linear, top .06s linear;
}

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 110px 0; }
.section-alt { background: var(--dark); }
.blue { color: var(--blue-bright); }

/* Section headers */
.section-header { margin-bottom: 60px; }
.label-tag {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.label-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blue-bright);
  box-shadow: var(--glow-sm);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: .03em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.section-desc {
  font-size: .96rem;
  color: var(--silver);
  max-width: 480px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all var(--transition);
}
.btn-solid {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--glow-sm);
}
.btn-solid:hover {
  background: var(--blue-bright);
  box-shadow: var(--glow-md);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}
.btn-sm { padding: 10px 22px; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; margin-top: 6px; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
/* JS adds .visible when element enters viewport */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .75s ease, transform .75s ease;
}
.reveal       { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 18px 0;
  background: transparent;
  transition: background .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
#nav.solid {
  background: rgba(6,7,9,.9);
  backdrop-filter: blur(18px);
  padding: 12px 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand wordmark (kept for any remaining text references) */
.nav-brand, .footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .06em;
  line-height: 1;
}
.brand-steel { color: var(--white); }
.brand-house { color: var(--blue-bright); text-shadow: var(--glow-sm); }
.brand-visuals {
  display: block;
  font-family: var(--font-head);
  font-size: .62rem;
  letter-spacing: .28em;
  color: var(--silver);
  margin-top: 1px;
}

/* Hero logotype now uses img; keep wrapper for glow-ring positioning */
.logo-line-1, .logo-line-2 { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .3s;
}
.nav-links a:hover { color: var(--blue-bright); }
.nav-book {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 4px;
  box-shadow: var(--glow-sm);
  transition: background .3s, box-shadow .3s !important;
}
.nav-book:hover {
  background: var(--blue-bright) !important;
  box-shadow: var(--glow-md) !important;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 9100;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* Rich dark gradient base — matches flyer bg depth */
  background: radial-gradient(ellipse 120% 80% at 50% 40%, #071523 0%, var(--black) 72%);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Layered atmosphere matching flyer bokeh/ink splash */
.hero-bg-layer { position: absolute; pointer-events: none; border-radius: 50%; }
.hero-bg-1 {
  width: 70vw; height: 40vw;
  background: radial-gradient(ellipse, rgba(16,152,212,.09), transparent 65%);
  top: -10%; left: 50%; transform: translateX(-50%);
  filter: blur(60px);
  z-index: 0;
}
.hero-bg-2 {
  width: 40vw; height: 60vw;
  background: radial-gradient(ellipse, rgba(16,152,212,.05), transparent 70%);
  bottom: 0; right: -10%;
  filter: blur(80px);
  z-index: 0;
}
.hero-bg-3 {
  width: 30vw; height: 50vw;
  background: radial-gradient(ellipse, rgba(16,152,212,.04), transparent 70%);
  bottom: 10%; left: -8%;
  filter: blur(80px);
  z-index: 0;
}

/* Scan lines — subtle CRT / cinematic grade texture */
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0,0,0,.06) 3px,
    rgba(0,0,0,.06) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 24px;
}

/* Eyebrow row — matches flyer top text */
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: clamp(.65rem, 1.5vw, .82rem);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(184,196,204,.55);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp 1s ease .2s both;
}
.hero-eyebrow .dot { color: var(--blue-bright); opacity: .6; }

/* Hero logotype — the marquee element */
.hero-logotype {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  animation: fadeUp 1s ease .4s both;
}
.logo-glow-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 100px 30px rgba(16,152,212,.2), 0 0 200px 60px rgba(16,152,212,.08);
  animation: glowPulse 3s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glowPulse {
  from { box-shadow: 0 0 60px 20px rgba(16,152,212,.15), 0 0 120px 40px rgba(16,152,212,.06); }
  to   { box-shadow: 0 0 120px 40px rgba(34,211,255,.35), 0 0 240px 80px rgba(16,152,212,.12); }
}

.hero-logotype h1 {
  line-height: 1;
}
.logo-line-1 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  letter-spacing: .04em;
  color: var(--white);
  text-shadow: 0 0 60px rgba(16,152,212,.3);
}
/* "VISUALS" — matches flyer banner style */
.logo-line-2 {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: .45em;
  color: var(--blue-bright);
  text-shadow: var(--glow-md);
  border: 2px solid var(--blue);
  border-left: none; border-right: none;
  padding: 4px 0;
  margin-top: 6px;
}

/* Subtext */
.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(.9rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--silver);
  margin-bottom: 40px;
  animation: fadeUp 1s ease .6s both;
}
.hero-sub em { color: var(--blue-bright); font-style: normal; }

/* CTA row */
.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease .8s both;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-bar {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--blue-bright), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { transform: scaleY(0) translateY(0); opacity: 0; transform-origin: top; }
  50%      { transform: scaleY(1) translateY(0); opacity: 1; transform-origin: top; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TIKTOK PORTFOLIO CTA ────────────────────────────────── */
.tiktok-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 80px 40px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tiktok-cta:hover {
  border-color: rgba(16,152,212,.55);
  box-shadow: var(--glow-lg);
}

/* Ambient glow ring behind the icon */
.tiktok-glow-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,152,212,.1), transparent 65%);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

.tiktok-icon {
  font-size: 4rem;
  color: var(--blue-bright);
  text-shadow: var(--glow-md);
  position: relative;
  z-index: 1;
}

.tiktok-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: .04em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.tiktok-cta p {
  font-size: 1rem;
  color: var(--silver);
  max-width: 480px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.tiktok-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}
.btn-tiktok {
  font-size: 1rem;
  padding: 16px 40px;
  gap: 12px;
}
.btn-tiktok i { font-size: 1.1rem; }

/* ── PORTFOLIO ───────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.port-card.wide { grid-column: span 2; }

.port-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(16,152,212,.12);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.port-card:hover {
  border-color: rgba(16,152,212,.5);
  box-shadow: var(--glow-sm);
}

.port-img {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
  filter: brightness(.75) contrast(1.1);
}
.port-card:hover .port-img { transform: scale(1.07); }

/* Gradient overlay */
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,7,9,.92) 0%, rgba(6,7,9,.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  opacity: 0;
  transition: opacity .4s ease;
}
.port-card:hover .port-overlay { opacity: 1; }

.port-cat {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 4px;
  display: block;
}
.port-meta h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.port-meta p {
  font-size: .82rem;
  color: var(--silver);
  margin-bottom: 16px;
}
.port-link {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s;
}
.port-link:hover { gap: 14px; }

/* Blue animated border-glow on card edge */
.port-glow-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: linear-gradient(#060709, #060709) padding-box,
              linear-gradient(135deg, transparent 40%, var(--blue-bright) 100%) border-box;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.port-card:hover .port-glow-border { opacity: 1; }

/* ── SERVICES ────────────────────────────────────────────── */
/* Category tab switcher */
.svc-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.svc-tab {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--silver);
  background: transparent;
  transition: all .3s;
}
.svc-tab:hover { border-color: var(--blue); color: var(--blue-bright); }
.svc-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--glow-sm);
}

/* Service cards grid — hidden by default, JS shows active */
.svc-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 60px;
}
.svc-grid.active { display: grid; }

/* Individual card — inspired by flyer pricing boxes */
.svc-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.svc-card:hover {
  border-color: rgba(16,152,212,.5);
  transform: translateY(-8px);
  box-shadow: var(--glow-md);
}
/* Featured (most popular) highlight */
.svc-card.featured {
  border-color: var(--blue);
  box-shadow: var(--glow-sm);
}
.featured-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 var(--radius) 0 var(--radius);
}

.svc-card-top { margin-bottom: 24px; }
.svc-tier {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 10px;
}
.price-from {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  color: var(--silver);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--white);
  text-shadow: 0 0 30px rgba(16,152,212,.2);
}

.svc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.svc-features li {
  font-size: .88rem;
  color: var(--silver);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.svc-features i {
  color: var(--blue-bright);
  font-size: .7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Glow light behind card */
.svc-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(16,152,212,.06), transparent 60%);
  pointer-events: none;
}
/* Bottom border glow line */
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.svc-card:hover::after { opacity: 1; }

/* Trust strip — matches flyer bottom icons */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--silver);
  transition: background .3s, color .3s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--blue-dim); color: var(--blue-bright); }
.trust-item i {
  font-size: 1.4rem;
  color: var(--blue-bright);
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.8) contrast(1.1) grayscale(20%);
  transition: filter .5s;
}
.about-img-frame:hover .about-img { filter: brightness(.9) contrast(1.1) grayscale(0%); }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,152,212,.08), transparent 60%);
  pointer-events: none;
}

/* Vertical text accent */
.about-accent-text {
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(6,7,9,.88);
  padding: 10px 16px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: .03em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.about-text p {
  font-size: .95rem;
  color: var(--silver);
  margin-bottom: 18px;
}
.about-text strong { color: var(--white); }

.about-stats {
  display: flex;
  gap: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 28px 0;
}
.astat { text-align: center; }
.astat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--blue-bright);
  line-height: 1;
  text-shadow: var(--glow-sm);
}
.astat-suf {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blue);
}
.astat-label {
  display: block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 6px;
}

/* Logo in about section */
.about-logo-frame {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}
.about-logo {
  width: 85%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(16,152,212,.5));
  transition: filter .4s;
}
.about-logo-frame:hover .about-logo {
  filter: drop-shadow(0 0 50px rgba(34,211,255,.7));
}

/* ── BOOKING ─────────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: start;
}

.booking-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .04em;
  margin-bottom: 32px;
}
.binfo-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.binfo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  font-size: .95rem;
  flex-shrink: 0;
}
.binfo-label {
  display: block;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 3px;
}
.binfo-row a, .binfo-row span {
  font-size: .94rem;
  color: var(--white);
  transition: color .3s;
}
.binfo-row a:hover { color: var(--blue-bright); }

/* Flyer-inspired CTA text block */
.booking-cta-text {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1.1;
  letter-spacing: .03em;
  text-shadow: 0 0 40px rgba(16,152,212,.3);
}
.booking-cta-text em { color: var(--silver); font-style: normal; font-size: 1.5rem; display: block; }
.booking-cta-text strong { color: var(--blue-bright); }

/* Glassmorphism form card */
.form-glass {
  background: rgba(16,18,24,.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px 38px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fg {
  margin-bottom: 18px;
}
.fg label {
  display: block;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(16,152,212,.2);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--white);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(16,152,212,.1);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(184,196,204,.3); }
.fg select option { background: #101218; }
.fg textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--blue-bright);
}
.form-success i { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.form-success p { color: var(--silver); }

/* ── SOCIAL ──────────────────────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.social-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}
.social-card:hover {
  transform: translateY(-10px);
  border-color: var(--blue);
  box-shadow: var(--glow-md);
}

.social-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-bright);
  transition: background .3s, box-shadow .3s;
}
.social-card:hover .social-icon-wrap {
  background: rgba(16,152,212,.2);
  box-shadow: var(--glow-sm);
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .04em;
}
.social-handle {
  font-size: .78rem;
  color: var(--silver);
}

.social-glow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(16,152,212,.2), transparent 70%);
  opacity: 0;
  transition: opacity .4s, bottom .4s;
  pointer-events: none;
}
.social-card:hover .social-glow { opacity: 1; bottom: -10px; }

/* Two-card variant — centered and wider */
.social-grid-two {
  grid-template-columns: repeat(2, minmax(260px, 360px));
  justify-content: center;
}

/* ── FOOTER ──────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  padding: 70px 0 0;
}
.footer-glow-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 50%, transparent 100%);
  box-shadow: var(--glow-sm);
  margin-bottom: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-top: 60px;
}

.footer-brand .footer-wordmark { margin-bottom: 14px; }
.footer-brand p {
  font-size: .86rem;
  color: var(--silver);
  line-height: 1.6;
}

.footer-links-col, .footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links-col h4, .footer-contact-col h4 {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-links-col a, .footer-contact-col a, .footer-contact-col p {
  font-size: .86rem;
  color: var(--silver);
  transition: color .3s;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links-col a:hover, .footer-contact-col a:hover { color: var(--blue-bright); }
.footer-contact-col i { color: var(--blue-bright); width: 14px; }

.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: rgba(184,196,204,.45); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .port-card.wide { grid-column: span 2; }
  .about-layout { gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(6,7,9,.97);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 9050;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .burger { display: flex; }

  .hero-eyebrow { gap: 6px; }
  .hero-cta { flex-direction: column; align-items: center; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .port-card.wide { grid-column: span 1; }
  .port-overlay { opacity: 1; }

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-img-frame { aspect-ratio: 4/3; }

  .booking-layout { grid-template-columns: 1fr; gap: 44px; }
  .frow { grid-template-columns: 1fr; }
  .form-glass { padding: 30px 22px; }

  .social-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-strip { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .svc-tabs { flex-direction: column; }
  .logo-line-2 { letter-spacing: .2em; }
}
