/* =============================================================
   JJD-Build-03 | johndegaetano.com
   KEY FIXES:
   - Background image paths: ../images/ (relative to CSS file)
   - No GSAP-based content hiding — CSS handles all animations
   - Content always visible — animations enhance, never block
   ============================================================= */

/* -------------------------------------------------------------
   TOKENS
   ------------------------------------------------------------- */
:root {
  --color-void:        #080808;
  --color-forge:       #141618;
  --color-gunmetal:    #1E2124;
  --color-steel:       #2C3035;
  --color-gold:        #C9A84C;
  --color-gold-bright: #E5C96A;
  --color-gold-dim:    #8A6E32;
  --color-white:       #F5F5F5;
  --color-silver:      #A8AAAD;
  --color-ghost:       #545658;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  --max-w:    1280px;
  --max-w-md: 860px;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  0.2s;
  --dur-med:   0.45s;

  --border-gold: 1px solid var(--color-gold-dim);
}

/* -------------------------------------------------------------
   RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--color-void);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* -------------------------------------------------------------
   AMBIENT BODY GLOW
   Soft light shapes fading in and out on pitch black
   Pure CSS — no JS — no click blocking
   ------------------------------------------------------------- */
.ambient-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-glow__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  pointer-events: none;
}

/* Shape 1 — warm gold, upper left drift */
.ambient-glow__shape:nth-child(1) {
  width: 500px;
  height: 500px;
  top: 10%;
  left: -5%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  animation: glowPulse1 12s ease-in-out infinite;
}

/* Shape 2 — cool gunmetal blue, center right */
.ambient-glow__shape:nth-child(2) {
  width: 600px;
  height: 600px;
  top: 30%;
  right: -8%;
  background: radial-gradient(circle, rgba(120,140,165,0.05) 0%, transparent 70%);
  animation: glowPulse2 16s ease-in-out 3s infinite;
}

/* Shape 3 — deep gold, lower left */
.ambient-glow__shape:nth-child(3) {
  width: 450px;
  height: 450px;
  bottom: 25%;
  left: 5%;
  background: radial-gradient(circle, rgba(138,110,50,0.06) 0%, transparent 70%);
  animation: glowPulse3 14s ease-in-out 6s infinite;
}

/* Shape 4 — warm amber, mid-page right */
.ambient-glow__shape:nth-child(4) {
  width: 550px;
  height: 550px;
  top: 55%;
  right: 5%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  animation: glowPulse4 18s ease-in-out 2s infinite;
}

/* Shape 5 — steel grey, deep bottom */
.ambient-glow__shape:nth-child(5) {
  width: 500px;
  height: 500px;
  bottom: 5%;
  left: 30%;
  background: radial-gradient(circle, rgba(160,170,173,0.04) 0%, transparent 70%);
  animation: glowPulse5 20s ease-in-out 8s infinite;
}

@keyframes glowPulse1 {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
  50% { opacity: 1; transform: translate(40px, 30px) scale(1.15); }
}

@keyframes glowPulse2 {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.9); }
  50% { opacity: 1; transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes glowPulse3 {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(1.05); }
  50% { opacity: 1; transform: translate(20px, -25px) scale(1.2); }
}

@keyframes glowPulse4 {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.95); }
  50% { opacity: 1; transform: translate(-35px, -15px) scale(1.1); }
}

@keyframes glowPulse5 {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
  50% { opacity: 1; transform: translate(15px, -30px) scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-glow__shape { animation: none !important; opacity: 0.5 !important; }
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* -------------------------------------------------------------
   CSS SCROLL ANIMATIONS
   Pure CSS — no JS dependency. Content always visible.
   @keyframes fade in from below, triggered by scroll via
   animation-play-state or intersection (modern approach).
   We use a simple animation on class .reveal added by
   a tiny IntersectionObserver in main.js — but elements
   START VISIBLE as fallback.
   ------------------------------------------------------------- */

/* animation system removed — all content always visible */

/* Hero elements — CSS animation on load, no JS required */
.hero__eyebrow {
  animation: fadeSlideUp 0.6s var(--ease) 0.2s both;
}
.hero__line:nth-child(1) { animation: stampIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.35s both; }
.hero__line:nth-child(2) { animation: stampIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.45s both; }
.hero__line:nth-child(3) { animation: stampIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.55s both; }
.hero__line:nth-child(4) { animation: stampIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.65s both; }
.hero__sub   { animation: fadeSlideUp 0.6s var(--ease) 0.75s both; }
.hero__body  { animation: fadeSlideUp 0.6s var(--ease) 0.88s both; }
.hero__cta-group { animation: fadeSlideUp 0.5s var(--ease) 1.0s both; }
.hero__micro { animation: fadeIn 0.6s ease 1.15s both; }

@keyframes stampIn {
  from { opacity: 0; transform: translateY(80%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Card hover animations — CSS only */
.system-card,
.why-card,
.client-sector,
.portfolio-card {
  transition: border-color var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease),
              background var(--dur-med) var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal].animate-ready { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------- */
.text-gold { color: var(--color-gold); }

.section-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.link-gold {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-gold-dim);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: var(--space-md);
  transition: color var(--dur-fast) var(--ease-fast), border-color var(--dur-fast) var(--ease-fast);
}
.link-gold:hover { color: var(--color-gold-bright); border-color: var(--color-gold-bright); }

/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85em 1.8em;
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--color-gold); color: var(--color-void); }
.btn--primary:hover { background: var(--color-gold-bright); }
.btn--ghost { background: transparent; color: var(--color-gold); border: 1px solid var(--color-gold-dim); }
.btn--ghost:hover { border-color: var(--color-gold); color: var(--color-gold-bright); background: rgba(201,168,76,0.06); }
.btn--lg { padding: 1.1em 2.4em; font-size: 17px; }
.btn--sm { padding: 0.65em 1.3em; font-size: 13px; }

.cta-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }

/* -------------------------------------------------------------
   NAVIGATION
   ------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--space-md);
  height: 68px;
  display: flex;
  align-items: center;
  transition: background var(--dur-med) var(--ease), backdrop-filter var(--dur-med) var(--ease);
}
.nav.is-scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-steel);
}
.nav__inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
}
.nav__logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.nav__logo img { width: 40px; height: 40px; object-fit: contain; }
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
  color: var(--color-white);
}
.nav__links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav__link {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--color-silver);
  padding: 0.5em 0.75em; border-radius: 2px;
  transition: color var(--dur-fast) var(--ease-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: 2px; left: 0.75em; right: 0.75em;
  height: 1px; background: var(--color-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--color-white); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__cta {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-void);
  background: var(--color-gold); padding: 0.55em 1.2em;
  border-radius: 2px; margin-left: 0.5rem;
  transition: background var(--dur-fast) var(--ease-fast);
}
.nav__cta:hover { background: var(--color-gold-bright); }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; z-index: 1002; position: relative;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-white);
  transition: all var(--dur-fast) var(--ease-fast);
  transform-origin: center;
}

/* -------------------------------------------------------------
   HERO
   CORRECT: background-image path is ../images/ 
   (relative to assets/css/style.css)
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-void);
  background-image: url('../images/b2b-digital-marketing-strategist-hero.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.58);
  z-index: 1; pointer-events: none;
}
/* Static particle field — pure CSS, no JS, no canvas, no click blocking */
.hero__particles-static {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

/* Ambient gold dots via radial gradients */
.hero__particles-static::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 15%, rgba(201,168,76,0.55) 50%, transparent 50%),
    radial-gradient(1px 1px at 25% 35%, rgba(201,168,76,0.40) 50%, transparent 50%),
    radial-gradient(2px 2px at 40% 8%, rgba(229,201,106,0.50) 50%, transparent 50%),
    radial-gradient(1px 1px at 55% 42%, rgba(201,168,76,0.38) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(245,245,245,0.30) 50%, transparent 50%),
    radial-gradient(1px 1px at 85% 55%, rgba(201,168,76,0.42) 50%, transparent 50%),
    radial-gradient(2px 2px at 15% 65%, rgba(229,201,106,0.45) 50%, transparent 50%),
    radial-gradient(1px 1px at 35% 80%, rgba(201,168,76,0.35) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 60% 72%, rgba(201,168,76,0.48) 50%, transparent 50%),
    radial-gradient(1px 1px at 78% 85%, rgba(245,245,245,0.28) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 92% 30%, rgba(201,168,76,0.40) 50%, transparent 50%),
    radial-gradient(1px 1px at 48% 52%, rgba(229,201,106,0.16) 50%, transparent 50%),
    radial-gradient(2px 2px at 5% 90%, rgba(201,168,76,0.44) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 12%, rgba(201,168,76,0.38) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 65% 48%, rgba(245,245,245,0.10) 50%, transparent 50%),
    radial-gradient(1px 1px at 88% 72%, rgba(201,168,76,0.42) 50%, transparent 50%);
  background-size: 600px 600px;
  animation: particleDrift 80s linear infinite;
  pointer-events: none;
}

/* Faint gold connecting lines via SVG pattern */
.hero__particles-static::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='40' y1='60' x2='160' y2='120' stroke='%23C9A84C' stroke-width='0.3' opacity='0.18'/%3E%3Cline x1='160' y1='120' x2='280' y2='80' stroke='%23C9A84C' stroke-width='0.3' opacity='0.28'/%3E%3Cline x1='280' y1='80' x2='360' y2='200' stroke='%23C9A84C' stroke-width='0.3' opacity='0.16'/%3E%3Cline x1='60' y1='240' x2='200' y2='300' stroke='%23C9A84C' stroke-width='0.3' opacity='0.25'/%3E%3Cline x1='200' y1='300' x2='340' y2='260' stroke='%23C9A84C' stroke-width='0.3' opacity='0.28'/%3E%3Cline x1='100' y1='340' x2='260' y2='370' stroke='%23C9A84C' stroke-width='0.3' opacity='0.22'/%3E%3Ccircle cx='40' cy='60' r='1.5' fill='%23C9A84C' opacity='0.30'/%3E%3Ccircle cx='160' cy='120' r='1' fill='%23C9A84C' opacity='0.25'/%3E%3Ccircle cx='280' cy='80' r='1.5' fill='%23E5C96A' opacity='0.22'/%3E%3Ccircle cx='360' cy='200' r='1' fill='%23C9A84C' opacity='0.28'/%3E%3Ccircle cx='60' cy='240' r='1.5' fill='%23C9A84C' opacity='0.24'/%3E%3Ccircle cx='200' cy='300' r='1' fill='%23E5C96A' opacity='0.20'/%3E%3Ccircle cx='340' cy='260' r='1.5' fill='%23C9A84C' opacity='0.26'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  opacity: 1;
  pointer-events: none;
}

@keyframes particleDrift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-30px, -20px); }
  50%  { transform: translate(-15px, -40px); }
  75%  { transform: translate(-45px, -15px); }
  100% { transform: translate(0, 0); }
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 25%, rgba(8,8,8,0.5) 100%),
    linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, transparent 20%, transparent 75%, rgba(8,8,8,0.9) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 4;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(68px + 5rem) var(--space-md) 5rem;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: var(--space-md); display: block;
}
.hero__headline {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg); max-width: 14ch;
}
.hero__line { display: block; overflow: hidden; }
.hero__line--gold { color: var(--color-gold); }
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px); font-weight: 500;
  line-height: 1.65; color: var(--color-white);
  max-width: 65ch; margin-bottom: var(--space-md);
}
.hero__body {
  font-size: clamp(14px, 1.1vw, 17px); color: var(--color-silver);
  max-width: 65ch; margin-bottom: var(--space-lg);
}
.hero__cta-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.hero__micro {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-ghost);
}
.hero__scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 4;
}
.hero__scroll-indicator span {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* -------------------------------------------------------------
   AUTHORITY BAR
   ------------------------------------------------------------- */
.authority {
  background: var(--color-forge);
  border-top: var(--border-gold); border-bottom: var(--border-gold);
  padding: var(--space-xl) var(--space-md);
}
.authority__inner { max-width: var(--max-w); margin: 0 auto; }
.authority__inner > .section-eyebrow { text-align: center; }
.authority__stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: var(--space-md); margin-bottom: var(--space-lg); text-align: center;
}
.authority__stat {
  padding: var(--space-md); border: var(--border-gold);
  background: rgba(201,168,76,0.03); border-radius: 2px;
}
.stat__number {
  display: block; font-family: var(--font-display);
  font-weight: 900; font-size: clamp(48px, 5vw, 80px);
  line-height: 1; color: var(--color-gold); margin-bottom: 0.3em;
}
.stat__label {
  display: block; font-family: var(--font-display);
  font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--color-silver); line-height: 1.5;
}
.authority__marquee-wrap {
  overflow: hidden; border-top: var(--border-gold); border-bottom: var(--border-gold);
  padding: 1.2rem 0; margin-bottom: var(--space-lg); position: relative;
}
.authority__marquee-wrap::before,
.authority__marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1;
}
.authority__marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--color-forge), transparent); }
.authority__marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--color-forge), transparent); }
.authority__marquee { display: flex; width: max-content; animation: marqueeScroll 45s linear infinite; }
.authority__marquee:hover { animation-play-state: paused; }
.marquee__track {
  display: block; padding-right: 2rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-silver); white-space: nowrap;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.authority__sub {
  text-align: center; color: var(--color-silver);
  max-width: 70ch; margin: 0 auto;
  font-size: clamp(14px, 1.1vw, 17px);
}

/* -------------------------------------------------------------
   PROBLEM SECTION
   ------------------------------------------------------------- */
.problem { padding: var(--space-2xl) var(--space-md); background: var(--color-void); }
.problem__inner { max-width: var(--max-w-md); margin: 0 auto; }
.problem__body { margin-bottom: var(--space-lg); }
.problem__body p { color: var(--color-silver); margin-bottom: 1.2em; }
.problem__body p:first-child { font-size: clamp(16px,1.3vw,19px); color: var(--color-white); font-weight: 500; }
.problem__list { margin-bottom: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-md); }
.problem__item {
  display: flex; gap: 1.2rem; padding: var(--space-md);
  border-left: 2px solid var(--color-gold-dim);
  background: rgba(255,255,255,0.02);
  transition: border-color var(--dur-fast) var(--ease-fast), background var(--dur-fast) var(--ease-fast);
}
.problem__item:hover { border-color: var(--color-gold); background: rgba(201,168,76,0.04); }
.problem__arrow { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--color-gold); line-height: 1.4; flex-shrink: 0; }
.problem__item-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--color-white); margin-bottom: 0.4em; }
.problem__item p { color: var(--color-silver); font-size: 15px; }
.problem__close { font-size: clamp(16px,1.3vw,20px); color: var(--color-white); margin-bottom: var(--space-md); line-height: 1.6; }

/* -------------------------------------------------------------
   ORIGIN STORY
   CORRECT PATH: ../images/ (from assets/css/)
   ------------------------------------------------------------- */
.origin {
  padding: var(--space-2xl) var(--space-md);
  border-top: var(--border-gold); position: relative;
  background-color: var(--color-forge);
  background-image: url('../images/john-degaetano-34-years-marketing-legacy.webp');
  background-size: cover; background-position: center center;
  background-repeat: no-repeat; background-attachment: fixed;
}
/* overlay handled by inline div */
.origin__inner { position: relative; z-index: 1; max-width: var(--max-w-md); margin: 0 auto; }
.origin__intro { font-size: clamp(16px,1.3vw,19px); color: var(--color-silver); margin-bottom: var(--space-xl); line-height: 1.7; }
.origin__chapters { display: flex; flex-direction: column; }
.chapter {
  display: grid; grid-template-columns: 160px 1fr;
  gap: var(--space-md); padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-steel);
}
.chapter:last-child { border-bottom: none; }
.chapter__marker { display: flex; flex-direction: column; align-items: flex-start; padding-top: 4px; }
.chapter__year {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold);
  margin-bottom: 0.75rem; white-space: nowrap;
}
.chapter__line { width: 1px; flex: 1; min-height: 60px; background: linear-gradient(to bottom, var(--color-gold-dim), transparent); }
.chapter__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px,2vw,28px); color: var(--color-white); margin-bottom: var(--space-sm); }
.chapter__content p { color: var(--color-silver); margin-bottom: 1em; font-size: 15px; }
.chapter__content p:last-child { margin-bottom: 0; }
.chapter__content strong { color: var(--color-white); }
.origin__cta-block { padding: var(--space-xl) 0 var(--space-md); border-top: var(--border-gold); margin-top: var(--space-lg); }
.origin__cta-line { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,2vw,30px); color: var(--color-white); margin-bottom: var(--space-md); }
.origin__byline { font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-ghost); margin-top: var(--space-md); }

/* -------------------------------------------------------------
   DDM MARKETING SYSTEM
   ------------------------------------------------------------- */
.system { padding: var(--space-2xl) var(--space-md); background: var(--color-void); border-top: var(--border-gold); }
.system__inner { max-width: var(--max-w); margin: 0 auto; }
.system__intro { color: var(--color-silver); max-width: 72ch; font-size: clamp(15px,1.2vw,18px); margin-bottom: var(--space-xl); line-height: 1.7; }

/* Watch movement image */
.system__hero-image {
  width: 100%; max-height: 460px; overflow: hidden;
  position: relative; margin-bottom: var(--space-xl);
  border-radius: 2px; border: var(--border-gold);
}
.system__hero-image img {
  width: 100%; height: 460px; object-fit: cover;
  object-position: center; display: block;
  transition: transform 0.8s var(--ease);
}
.system__hero-image:hover img { transform: scale(1.02); }
.system__hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,8,0.9) 100%);
  pointer-events: none;
}

.system__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-bottom: var(--space-xl);
}
.system-card {
  background: var(--color-gunmetal); border: var(--border-gold);
  border-radius: 2px; padding: var(--space-lg) var(--space-md);
  position: relative;
}
.system-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 0 32px rgba(201,168,76,0.1);
  transform: translateY(-3px);
}
.system-card--featured {
  grid-column: span 3; border-color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-gunmetal) 0%, rgba(201,168,76,0.05) 100%);
}
.system-card__number {
  position: absolute; top: var(--space-md); right: var(--space-md);
  font-family: var(--font-display); font-weight: 900; font-size: 56px;
  line-height: 1; color: rgba(201,168,76,0.07);
  pointer-events: none; user-select: none;
}
.system-card__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(17px,1.5vw,22px); color: var(--color-white); margin-bottom: 0.4em; }
.system-card__sub { font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--space-sm); display: block; }
.system-card p { color: var(--color-silver); font-size: 14px; line-height: 1.7; }
.system-card__ctas { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--space-md); }

.system__summary { background: var(--color-gunmetal); border: var(--border-gold); padding: var(--space-lg) var(--space-xl); border-radius: 2px; }
.system__summary-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(18px,1.5vw,24px); color: var(--color-white); margin-bottom: var(--space-md); }
.system__summary-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.system__summary-list li { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--color-silver); }

/* -------------------------------------------------------------
   CLIENTS
   ------------------------------------------------------------- */
.clients { padding: var(--space-2xl) var(--space-md); background: var(--color-forge); border-top: var(--border-gold); }
.clients__inner { max-width: var(--max-w); margin: 0 auto; }
.clients__intro { color: var(--color-silver); max-width: 72ch; font-size: clamp(15px,1.2vw,18px); margin-bottom: var(--space-xl); }
.clients__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: var(--space-xl); }
.client-sector { padding: var(--space-md); border: var(--border-gold); background: rgba(8,8,8,0.4); border-radius: 2px; }
.client-sector:hover { border-color: var(--color-gold); background: rgba(201,168,76,0.04); }
.client-sector__label { font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 0.5em; }
.client-sector__names { font-family: var(--font-display); font-weight: 800; font-size: clamp(14px,1.1vw,17px); color: var(--color-white); margin-bottom: 0.75em; line-height: 1.3; }
.client-sector p { color: var(--color-silver); font-size: 13px; line-height: 1.65; }
.clients__context { background: var(--color-gunmetal); border: var(--border-gold); padding: var(--space-lg) var(--space-xl); margin-bottom: var(--space-lg); border-radius: 2px; }
.clients__context-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(18px,1.5vw,24px); color: var(--color-white); margin-bottom: var(--space-sm); }
.clients__context p { color: var(--color-silver); font-size: 15px; line-height: 1.75; }
.clients__geo { font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-ghost); text-align: center; margin-bottom: var(--space-md); }
.clients__close-line { font-family: var(--font-display); font-weight: 900; font-size: clamp(12px,1vw,15px); letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold-dim); text-align: center; }

/* -------------------------------------------------------------
   WHY JOHN
   CORRECT PATH: ../images/
   ------------------------------------------------------------- */
.why {
  padding: var(--space-2xl) var(--space-md);
  border-top: var(--border-gold); position: relative;
  background-color: var(--color-void);
  background-image: url('../images/b2b-marketing-expert-cleveland-ohio.webp');
  background-size: cover; background-position: center top; background-repeat: no-repeat;
}
/* overlay handled by inline div */
.why__inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.why__intro { color: var(--color-silver); max-width: 72ch; font-size: clamp(15px,1.2vw,18px); margin-bottom: var(--space-xl); line-height: 1.7; }
.why__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: var(--space-xl); }
.why-card {
  padding: var(--space-lg) var(--space-md);
  border-top: 2px solid var(--color-gold-dim);
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-radius: 0 0 2px 2px;
}
.why-card:hover { border-top-color: var(--color-gold); background: rgba(8,8,8,0.78); }
.why-card__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(16px,1.3vw,21px); color: var(--color-white); margin-bottom: 0.75em; line-height: 1.2; }
.why-card p { color: var(--color-silver); font-size: 14px; line-height: 1.7; }
.why__statement {
  background: rgba(14,16,18,0.92); border-left: 3px solid var(--color-gold);
  padding: var(--space-lg) var(--space-xl); margin-bottom: var(--space-md);
  border-radius: 0 2px 2px 0; backdrop-filter: blur(4px);
}
.why__statement p { font-size: clamp(15px,1.2vw,19px); color: var(--color-white); line-height: 1.75; margin-bottom: 1em; }
.why__statement p:last-child { margin-bottom: 0; }
.why__close-line { font-family: var(--font-display); font-weight: 900; font-size: clamp(12px,1vw,15px); letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold-dim); text-align: center; }

/* -------------------------------------------------------------
   PORTFOLIO
   ------------------------------------------------------------- */
.portfolio { padding: var(--space-2xl) var(--space-md); background: var(--color-forge); border-top: var(--border-gold); }
.portfolio__inner { max-width: var(--max-w); margin: 0 auto; }
.portfolio__intro { color: var(--color-silver); max-width: 72ch; font-size: clamp(15px,1.2vw,18px); margin-bottom: var(--space-xl); }
.portfolio__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: var(--space-xl); }
.portfolio-card { background: var(--color-gunmetal); border: var(--border-gold); border-radius: 2px; padding: var(--space-lg) var(--space-md); display: flex; flex-direction: column; gap: 0.75rem; }
.portfolio-card:hover { border-color: var(--color-gold); transform: translateY(-3px); }
.portfolio-card--featured { border-color: var(--color-gold); background: linear-gradient(135deg, var(--color-gunmetal) 0%, rgba(201,168,76,0.06) 100%); }
.portfolio-card__num { font-family: var(--font-display); font-weight: 900; font-size: 10px; letter-spacing: 0.2em; color: var(--color-gold); text-transform: uppercase; }
.portfolio-card__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(17px,1.4vw,22px); color: var(--color-white); line-height: 1.2; }
.portfolio-card__url { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--color-gold); }
.portfolio-card p { color: var(--color-silver); font-size: 14px; line-height: 1.7; flex: 1; }
.portfolio-card__ctas { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.portfolio__gallery-placeholder { border: 1px dashed var(--color-steel); padding: var(--space-xl) var(--space-md); text-align: center; margin-bottom: var(--space-xl); border-radius: 2px; }
.portfolio__gallery-note { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.1em; color: var(--color-ghost); text-transform: uppercase; }
.portfolio__close { color: var(--color-silver); font-size: clamp(15px,1.2vw,18px); max-width: 68ch; margin-bottom: var(--space-md); line-height: 1.7; }
.portfolio__close-line { font-family: var(--font-display); font-weight: 900; font-size: clamp(11px,0.9vw,14px); letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold-dim); text-align: center; }

/* -------------------------------------------------------------
   FAQ
   ------------------------------------------------------------- */
.faq { padding: var(--space-2xl) var(--space-md); background: var(--color-void); border-top: var(--border-gold); }
.faq__inner { max-width: var(--max-w-md); margin: 0 auto; }
.faq__list { margin: var(--space-xl) 0; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--color-steel); }
.faq-item__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-md); padding: var(--space-md) 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(15px,1.2vw,19px); color: var(--color-white);
  text-align: left; line-height: 1.3;
  transition: color var(--dur-fast) var(--ease-fast);
}
.faq-item__question:hover { color: var(--color-gold); }
.faq-item__icon {
  font-size: 22px; font-weight: 300; color: var(--color-gold);
  flex-shrink: 0; line-height: 1;
  transition: transform var(--dur-fast) var(--ease);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  display: none;
  padding-bottom: 1rem;
}
.faq-item__answer p { color: var(--color-silver); font-size: 15px; line-height: 1.75; margin-bottom: 1em; padding: 0 0.25em; }
.faq-item__answer p:last-child { margin-bottom: var(--space-md); }
.faq__close { font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-ghost); text-align: center; }

/* -------------------------------------------------------------
   CONTACT / CTA
   CORRECT PATH: ../images/
   ------------------------------------------------------------- */
.contact {
  padding: var(--space-2xl) var(--space-md);
  border-top: var(--border-gold); position: relative;
  background-color: var(--color-forge);
  background-image: url('../images/b2b-marketing-agency-contact-degaetano.webp');
  background-size: cover; background-position: center center; background-repeat: no-repeat;
}
/* overlay handled by inline div */
.contact__inner { position: relative; z-index: 1; max-width: var(--max-w-md); margin: 0 auto; }
.contact__body { color: var(--color-silver); font-size: clamp(15px,1.2vw,18px); line-height: 1.75; margin-bottom: var(--space-md); max-width: 68ch; }
.contact__reassurances { display: flex; flex-direction: column; gap: var(--space-md); margin: var(--space-xl) 0; padding: var(--space-lg) var(--space-xl); background: rgba(20,22,24,0.92); border: var(--border-gold); border-radius: 2px; }
.reassurance { display: flex; gap: var(--space-md); align-items: flex-start; }
.reassurance__mark { color: var(--color-gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.reassurance strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--color-white); margin-bottom: 0.3em; }
.reassurance p { color: var(--color-silver); font-size: 14px; line-height: 1.65; }
.contact__strategy-day { background: rgba(8,8,8,0.88); border: 1px solid var(--color-gold); border-radius: 2px; padding: var(--space-lg) var(--space-xl); margin-bottom: var(--space-xl); }
.contact__strategy-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px,1.8vw,28px); color: var(--color-white); margin-bottom: var(--space-sm); }
.contact__strategy-day p { color: var(--color-silver); margin-bottom: var(--space-md); font-size: 15px; line-height: 1.7; }
.contact__appt-note { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-ghost); margin-top: var(--space-sm); }
.contact__primary-cta { text-align: center; margin: var(--space-xl) 0; }
.contact__secondary-ctas { text-align: center; margin-bottom: var(--space-xl); }
.contact__secondary-ctas > p { color: var(--color-silver); margin-bottom: var(--space-sm); font-size: 14px; }
.contact__secondary-ctas .cta-group { justify-content: center; margin-bottom: var(--space-sm); }
.contact__audit-note { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-ghost); }
.contact__sign-off { border-top: var(--border-gold); padding-top: var(--space-xl); margin-bottom: var(--space-lg); }
.contact__sign-off > p { color: var(--color-silver); font-size: clamp(15px,1.1vw,18px); line-height: 1.75; margin-bottom: var(--space-md); max-width: 65ch; }
.contact__signature { font-size: 14px; line-height: 1.8; }
.contact__signature strong { font-family: var(--font-display); font-size: clamp(18px,1.5vw,24px); font-weight: 800; color: var(--color-white); display: block; margin-bottom: 0.2em; }
.contact__signature span { color: var(--color-silver); display: block; }
.contact__close-line { font-family: var(--font-display); font-weight: 900; font-size: clamp(11px,0.9vw,13px); letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold-dim); text-align: center; padding-top: var(--space-md); border-top: var(--border-gold); }

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.footer { background: #050505; border-top: 1px solid var(--color-gold); padding: var(--space-xl) var(--space-md) var(--space-md); }
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 300px 1fr; gap: var(--space-xl); padding-bottom: var(--space-xl); border-bottom: 1px solid var(--color-steel); margin-bottom: var(--space-lg); }
.footer__brand { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__brand img { width: 52px; height: 52px; object-fit: contain; }
.footer__name { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--color-white); }
.footer__title, .footer__sub { font-family: var(--font-display); font-size: 11px; font-weight: 500; color: var(--color-silver); }
.footer__tagline { font-size: 13px; color: var(--color-ghost); line-height: 1.65; margin-top: 0.5rem; }
.footer__nav { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-md); }
.footer__col-title { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col li, .footer__col a { font-size: 12px; color: var(--color-ghost); transition: color var(--dur-fast) var(--ease-fast); line-height: 1.5; }
.footer__col a:hover { color: var(--color-gold); }
.footer__contact-strip { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); padding: var(--space-md) 0; border-bottom: 1px solid var(--color-steel); margin-bottom: var(--space-md); flex-wrap: wrap; }
.footer__contact-strip > p { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--color-silver); }
.footer__contact-ctas { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__legal { font-size: 11px; color: var(--color-ghost); }
.footer__domains { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.06em; color: var(--color-ghost); }
.footer__domains a { color: var(--color-gold-dim); transition: color var(--dur-fast) var(--ease-fast); }
.footer__domains a:hover { color: var(--color-gold); }
.footer__entity { font-size: 10px; color: #1a1a1a; line-height: 1.6; max-width: 90ch; margin-top: var(--space-sm); }

/* -------------------------------------------------------------
   ACCESSIBILITY
   ------------------------------------------------------------- */
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }

/* -------------------------------------------------------------
   MOBILE — fixed attachment not supported on iOS
   ------------------------------------------------------------- */
@supports (-webkit-overflow-scrolling: touch) {
  .origin { background-attachment: scroll; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .origin { background-attachment: scroll; }
  [data-reveal].animate-ready { opacity: 1 !important; transform: none !important; }
}

/* -------------------------------------------------------------
   RESPONSIVE — 1024px
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .system__grid { grid-template-columns: repeat(2,1fr); }
  .system-card--featured { grid-column: span 2; }
  .clients__grid { grid-template-columns: repeat(2,1fr); }
  .why__grid { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2,1fr); }
  .authority__stats { grid-template-columns: repeat(2,1fr); }
}

/* -------------------------------------------------------------
   RESPONSIVE — 768px
   ------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --space-xl: 4rem; --space-2xl: 5rem; }
  .nav__links { display: none; position: fixed; inset: 0; background: rgba(8,8,8,0.98); flex-direction: column; align-items: center; justify-content: center; gap: var(--space-md); z-index: 1001; }
  .nav__links.is-open { display: flex; }
  .nav__link { font-size: 20px; }
  .nav__cta { font-size: 16px; padding: 0.75em 2em; margin: 0; }
  .nav__toggle { display: flex; }
  .hero__headline { font-size: clamp(40px,10vw,68px); }
  .chapter { grid-template-columns: 1fr; }
  .chapter__marker { flex-direction: row; align-items: center; gap: 1rem; }
  .chapter__line { display: none; }
  .system__grid { grid-template-columns: 1fr; }
  .system-card--featured { grid-column: span 1; }
  .system__summary-list { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .authority__stats { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__contact-strip { flex-direction: column; align-items: flex-start; }
  .why__statement, .clients__context, .contact__reassurances, .contact__strategy-day, .system__summary { padding: var(--space-md); }
  .origin { background-attachment: scroll; }
  .system__hero-image, .system__hero-image img { max-height: 240px; height: 240px; }
}

@media (max-width: 480px) {
  .authority__stats { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
  .hero__cta-group, .cta-group { flex-direction: column; }
  .hero__cta-group .btn, .cta-group .btn { width: 100%; justify-content: center; }
}

/* =============================================================
   PORTFOLIO SCREENSHOTS — JJD-Build-04
   Live website screenshot gallery
   ============================================================= */

.portfolio__screenshots {
  margin-bottom: var(--space-xl);
}

.portfolio__screenshots-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: var(--space-md);
  display: block;
}

.portfolio__screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.screenshot-card {
  display: block;
  border: var(--border-gold);
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-gunmetal);
  transition: border-color var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
  text-decoration: none;
}

.screenshot-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px rgba(201,168,76,0.12);
}

.screenshot-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.screenshot-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.screenshot-card:hover .screenshot-card__img-wrap img {
  transform: scale(1.03);
}

/* Hover overlay with visit prompt */
.screenshot-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background var(--dur-med) var(--ease);
}

.screenshot-card:hover .screenshot-card__overlay {
  background: rgba(8, 8, 8, 0.55);
}

.screenshot-card__visit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0.65em 1.4em;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease);
}

.screenshot-card:hover .screenshot-card__visit {
  opacity: 1;
  transform: translateY(0);
}

.screenshot-card__meta {
  padding: 1rem var(--space-md);
  border-top: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.screenshot-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 1vw, 16px);
  color: var(--color-white);
  line-height: 1.3;
}

.screenshot-card__url {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .portfolio__screenshots-grid {
    grid-template-columns: 1fr;
  }
}
