/* ═══════════════════════════════════════════
   KASH ARTS — STYLESHEET
   Fonts: Bricolage Grotesque
   Accent: #60f6ac
═══════════════════════════════════════════ */

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

:root {
  --black: #060606;
  --white: #f0f0ed;
  --muted: #8a8a86;
  --dim: #4a4a46;
  --accent: #60f6ac;
  --accent-soft: rgba(96, 246, 172, 0.14);
  --glass: rgba(255, 255, 255, 0.035);
  --glass-strong: rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-soft: rgba(255, 255, 255, 0.05);
  --heading: 'Bricolage Grotesque', sans-serif;
  --body: 'Bricolage Grotesque', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #042916; }

/* film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.045;
  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.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* scroll progress bar */
#progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 999;
  box-shadow: 0 0 12px rgba(96,246,172,0.6);
}

h1, h2, h3, .ghost-title, .pricing-tier, .pricing-price,
.cat-name, .service-name, .about-heading, .contact-heading,
.work-page-heading, .stat-number, .nav-drawer a {
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ── BACKGROUND BLOBS ── */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 35% at 80% 8%, rgba(96,246,172,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 8% 45%, rgba(96,246,172,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 75% 95%, rgba(96,246,172,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 30% 100%, rgba(30,60,45,0.35) 0%, transparent 70%);
}

/* ── ENTRANCE / SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-blur {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1),
              filter 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-blur.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* line-mask reveal for hero heading */
.line { display: block; overflow: hidden; }
.line-inner {
  display: inline-block;
  transform: translateY(115%);
  animation: line-up 1s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes line-up { to { transform: translateY(0); } }

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

/* animated link underline */
.u-link { position: relative; }
.u-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.u-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── NAV (no strip — floating) ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1280px;
  z-index: 200;
  padding: 24px 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  pointer-events: none;
}

nav.site-nav > * { pointer-events: auto; }

.nav-logo { display: flex; align-items: center; }

.nav-logo img {
  height: 90px;
  width: auto;
  display: block;
  transition: height 0.18s ease-out;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.6));
}

.nav-trigger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 201;
}

.nav-trigger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  height: 100vh;
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-left: 1px solid var(--glass-border);
  z-index: 199;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}

.nav-drawer.open { transform: translateX(0); pointer-events: auto; }

@media (hover: hover) {
  .nav-trigger:hover ~ .nav-drawer,
  .nav-drawer:hover { transform: translateX(0); pointer-events: auto; }
}

.nav-drawer a {
  font-family: var(--heading);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border-soft);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--accent); padding-left: 8px; }

/* ── GLASS PANEL ── */
.panel {
  position: relative;
  max-width: 1280px;
  margin: 28px auto;
  padding: 72px 56px;
  background: var(--glass);
  backdrop-filter: blur(26px) saturate(135%);
  -webkit-backdrop-filter: blur(26px) saturate(135%);
  border: 1px solid var(--glass-border-soft);
  border-radius: 32px;
  overflow: hidden;
}

.panel::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(96, 246, 172, 0.10) 0%, transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(60, 140, 240, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 60% 20%, rgba(240, 120, 90, 0.06) 0%, transparent 40%);
  filter: blur(50px);
  animation: panel-drift 26s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes panel-drift {
  0%   { transform: translate(0%, 0%) rotate(0deg) scale(1); }
  50%  { transform: translate(6%, -5%) rotate(4deg) scale(1.08); }
  100% { transform: translate(-6%, 5%) rotate(-4deg) scale(1.04); }
}

.panel > *:not(.ghost-title):not(.hero-art) { position: relative; z-index: 2; }

/* ── GHOST TITLES ── */
.ghost-title {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--heading);
  font-size: clamp(90px, 16vw, 210px);
  text-transform: capitalize;
  color: rgba(240, 240, 237, 0.06);
  filter: blur(3px);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

/* ── SHARED ── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--glass-border);
  display: block;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #042916;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.25s;
  flex-shrink: 0;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(96, 246, 172, 0.35);
}

/* ── HERO (art-directed) ── */
.hero {
  min-height: 92vh;
  margin-top: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 78% 22%, rgba(96, 246, 172, 0.30) 0%, rgba(20, 90, 60, 0.18) 38%, transparent 68%),
    radial-gradient(ellipse 50% 45% at 12% 85%, rgba(96, 246, 172, 0.12) 0%, transparent 60%);
}

.hero-signature {
  position: absolute;
  width: 130%;
  left: -18%;
  top: 36%;
  opacity: 0.10;
  filter: blur(1.5px);
  transform: rotate(-7deg);
  animation: signature-drift 22s ease-in-out infinite alternate;
}

.hero-portrait-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 56%;
  overflow: hidden;
}

.hero-portrait-wrap::before {
  content: '';
  position: absolute;
  right: 6%;
  top: 8%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(96,246,172,0.28) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 0;
}

.hero-portrait {
  position: absolute;
  right: -2%;
  bottom: 0;
  height: 102%;
  width: auto;
  object-fit: cover;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 98%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 98%);
}

.hero-portrait-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(115deg, transparent 45%, rgba(96,246,172,0.14) 90%),
    linear-gradient(to top, rgba(6,8,7,0.65) 0%, transparent 35%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-signature.echo {
  width: 70%;
  left: 42%;
  top: 4%;
  opacity: 0.05;
  transform: rotate(5deg) scaleX(-1);
  animation-duration: 30s;
}

@keyframes signature-drift {
  0%   { transform: rotate(-7deg) translateX(0); }
  100% { transform: rotate(-5.5deg) translateX(3%); }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-heading {
  font-family: var(--heading);
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 36px;
}

.hero-heading em { font-style: normal; color: var(--accent); }

.hero-footer {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.8;
}

/* ── TICKER ── */
.ticker {
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 0;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-soft);
  border-radius: 100px;
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 36px;
  white-space: nowrap;
}

.ticker-item span { color: var(--accent); margin-right: 36px; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PORTFOLIO CATEGORIES ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border-soft);
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.35s;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 246, 172, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 40px rgba(96,246,172,0.06);
}

.cat-card img,
.cat-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.9);
  transition: filter 0.4s, transform 0.6s;
}

.cat-card:hover img,
.cat-card:hover video {
  filter: brightness(0.72) saturate(1);
  transform: scale(1.05);
}

.cat-card-empty { border-style: dashed; border-color: var(--glass-border); }

.cat-card-body { position: relative; z-index: 2; padding: 24px; }

.cat-name {
  font-family: var(--heading);
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.cat-count {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-count::after { content: '→'; transition: transform 0.2s; }
.cat-card:hover .cat-count::after { transform: translateX(4px); }

/* ── WORK DETAIL PAGE ── */
.work-page { margin-top: 110px; min-height: 70vh; }

.work-page-heading {
  font-family: var(--heading);
  font-size: clamp(36px, 6vw, 72px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}

.work-page-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.back-link {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.back-link:hover { color: var(--accent); }

.work-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.work-detail-item {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border-soft);
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.35s;
}

.work-detail-item:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 246, 172, 0.3);
  box-shadow: 0 18px 44px rgba(0,0,0,0.4);
}

.work-detail-item img,
.work-detail-item video { width: 100%; display: block; }

.work-detail-caption {
  padding: 16px 18px;
  border-top: 1px solid var(--glass-border-soft);
}

.work-detail-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.work-detail-client {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.work-empty {
  padding: 80px 24px;
  text-align: center;
  border: 1px dashed var(--glass-border);
  border-radius: 22px;
  background: var(--glass);
}

.work-empty p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }

.cat-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }

.cat-pill {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--glass-border-soft);
  padding: 9px 18px;
  border-radius: 100px;
  transition: all 0.2s;
}

.cat-pill:hover { border-color: rgba(96,246,172,0.4); color: var(--accent); }
.cat-pill.active { background: var(--accent); color: #042916; border-color: var(--accent); font-weight: 700; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-item {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border-soft);
  border-radius: 22px;
  padding: 32px 28px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.35s;
}

.service-item:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 246, 172, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(96,246,172,0.05);
}

.service-number {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.service-name {
  font-family: var(--heading);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-from {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: uppercase;
}

/* ── PRICING ── */
.pricing-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.pricing-card {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border-soft);
  border-radius: 26px;
  padding: 40px 30px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.35s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.pricing-card.featured {
  border-color: rgba(96, 246, 172, 0.4);
  background: linear-gradient(180deg, rgba(96,246,172,0.07) 0%, var(--glass-strong) 45%);
  box-shadow: 0 0 60px rgba(96, 246, 172, 0.07);
}

.tier-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(96, 246, 172, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pricing-tier {
  font-family: var(--heading);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 26px;
}

.pricing-tier span { color: var(--accent); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  text-align: left;
  width: 100%;
  max-width: 250px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.pricing-price {
  font-family: var(--heading);
  font-size: 44px;
  color: var(--white);
  line-height: 1;
}

.pricing-period {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin: 6px 0 26px;
  text-transform: uppercase;
}

.pricing-note {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--dim);
  background: var(--glass);
  border: 1px solid var(--glass-border-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-top: 18px;
}

/* ── ABOUT (homepage section) ── */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.about-heading {
  font-family: var(--heading);
  font-size: clamp(30px, 4.5vw, 52px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 28px;
}

.about-heading em { font-style: normal; color: var(--accent); }

.about-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border-soft);
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform 0.3s, border-color 0.3s;
}

.stat-box:hover { transform: translateY(-4px); border-color: rgba(96, 246, 172, 0.3); }

.stat-number {
  font-family: var(--heading);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* ── ABOUT ME PAGE ── */
.aboutme {
  margin-top: 110px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.aboutme-portrait {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border-soft);
  position: sticky;
  top: 110px;
}

.aboutme-portrait img { width: 100%; display: block; }

.aboutme h1 {
  font-family: var(--heading);
  font-size: clamp(36px, 5.5vw, 64px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.aboutme h1 em { font-style: normal; color: var(--accent); }

.aboutme-role {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.aboutme-bio p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.aboutme-bio strong { color: var(--white); font-weight: 600; }

.aboutme-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0;
}

.fact-box {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border-soft);
  border-radius: 16px;
  padding: 18px 20px;
}

.fact-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.fact-value { font-size: 14px; color: var(--white); }

/* ── CONTACT ── */
.contact { text-align: center; padding-top: 90px; padding-bottom: 90px; }

.contact-heading {
  font-family: var(--heading);
  font-size: clamp(36px, 7vw, 76px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.contact-heading em { font-style: normal; color: var(--accent); }

.contact-sub { font-size: 15px; color: var(--muted); margin-bottom: 40px; }

/* ── BANNER ── */
.banner {
  position: relative;
  max-width: 1280px;
  margin: 28px auto;
  border-radius: 32px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  border: 1px solid var(--glass-border-soft);
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,6,6,0.72) 0%, rgba(6,6,6,0.25) 55%, rgba(6,6,6,0.55) 100%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(96,246,172,0.10) 0%, transparent 70%);
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
}

.banner-marquee {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.banner-marquee span {
  font-family: var(--heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  padding-right: 60px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.banner-marquee em {
  font-style: normal;
  color: var(--accent);
}

/* ── BRANDS (floating, no cells) ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  align-items: center;
  justify-items: center;
  padding: 16px 0;
}

.brand-mark {
  color: #fff;
  opacity: 0.78;
  text-align: center;
  font-size: 19px;
  line-height: 1.25;
  transition: opacity 0.25s, transform 0.25s;
}

.brand-mark:hover { opacity: 1; transform: translateY(-2px); }

.brands-grid img {
  max-height: 56px;
  max-width: 170px;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.25s, transform 0.25s;
  /* uncomment next line to force any colored logo to pure white:
  filter: brightness(0) invert(1); */
}

.brands-grid img:hover { opacity: 1; transform: translateY(-2px); }

.bm-serif  { font-family: Georgia, 'Times New Roman', serif; letter-spacing: 0.04em; }
.bm-caps   { text-transform: uppercase; letter-spacing: 0.24em; font-weight: 600; font-size: 15px; }
.bm-script { font-family: Georgia, serif; font-style: italic; font-size: 23px; }
.bm-heavy  { font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; font-size: 21px; }
.bm-thin   { font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; font-size: 16px; }
.bm-mono   { font-family: 'Courier New', monospace; font-weight: 700; letter-spacing: 0.06em; font-size: 17px; }

/* ── FOOTER (no strip — floating icons) ── */
footer {
  max-width: 1280px;
  margin: 48px auto 36px;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0.55;
  transition: opacity 0.25s;
}

.footer-logo:hover img { opacity: 0.9; }

.footer-icons { display: flex; gap: 12px; }

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px solid var(--glass-border-soft);
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}

.icon-btn:hover {
  color: var(--accent);
  border-color: rgba(96, 246, 172, 0.4);
  transform: translateY(-3px);
}

.icon-btn svg { width: 18px; height: 18px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .panel { padding: 56px 32px; margin: 20px 16px; }
  nav.site-nav { width: calc(100% - 32px); }
}

@media (max-width: 768px) {
  .panel { padding: 48px 22px; margin: 16px 12px; border-radius: 24px; }
  nav.site-nav { padding: 16px 12px 8px; width: calc(100% - 24px); }
  .nav-logo img { height: 58px; }
  .hero { margin-top: 110px; min-height: 88vh; }
  .hero-portrait-wrap { width: 100%; opacity: 0.38; }
  .hero-portrait { right: -16%; }
  .banner { margin: 16px 12px; border-radius: 24px; min-height: 220px; }
  .cat-grid { grid-template-columns: 1fr; }
  .work-page { margin-top: 96px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .aboutme { grid-template-columns: 1fr; gap: 36px; }
  .aboutme-portrait { position: static; max-width: 420px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  footer { padding: 0 24px; margin: 36px auto 28px; }
  .ticker { margin: 0 12px; }
  .nav-drawer { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-inner, .panel::before, .hero-signature, .banner-marquee { animation: none; }
  .reveal, .reveal-blur { opacity: 1; transform: none; filter: none; transition: none; }
  .line-inner, .fade-up { animation: none; transform: none; opacity: 1; }
  .cat-card, .service-item, .pricing-card, .stat-box, .work-detail-item { transition: none; }
}
