/* ═══════════════════════════════════════════════════════
   HELLO MARKETING — style.css
   Aesthetic: Luxury Italian Editorial · Dark & Gold
   ═══════════════════════════════════════════════════════ */

/* ── Variables — Dark Theme (default) ── */
:root {
  --bg-primary:   #0a0a0a;
  --bg-secondary: #111111;
  --bg-card:      #1c1c1c;
  --gold:         #c9a84c;
  --gold-lt:      #e2c97e;
  --text-primary: #f5f0e8;
  --text-heading: #ffffff;
  --text-muted:   #888888;
  --border:       rgba(201,168,76,.2);

  /* Legacy aliases so existing code doesn't break */
  --black:    var(--bg-primary);
  --off-black:var(--bg-secondary);
  --charcoal: var(--bg-card);
  --cream:    var(--text-primary);
  --white:    var(--text-heading);
  --muted:    var(--text-muted);

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-serif:   'Cormorant Garamond', serif;
  --ff-body:    'DM Sans', sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --theme-transition: background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;

  --nav-h: 80px;
  --section-gap: clamp(80px, 12vw, 160px);
}

/* ── Light Theme ── */
[data-theme="light"] {
  --bg-primary:   #f9f6f0;
  --bg-secondary: #ffffff;
  --bg-card:      #ede8df;
  --gold:         #a8782a;
  --gold-lt:      #c9922f;
  --text-primary: #2a2218;
  --text-heading: #0f0c07;
  --text-muted:   #776b58;
  --border:       rgba(168,120,42,.25);

  --black:    var(--bg-primary);
  --off-black:var(--bg-secondary);
  --charcoal: var(--bg-card);
  --cream:    var(--text-primary);
  --white:    var(--text-heading);
  --muted:    var(--text-muted);
}

/* ── Theme transitions on key containers ── */
.nav, .hero, .stats-bar, .work, .services,
.about, .testimonials, .contact, .footer,
.work-card, .service-item, .mobile-menu,
input, textarea, select { transition: var(--theme-transition); }

/* ══════════════════════════════
   THEME TOGGLE BUTTON
══════════════════════════════ */
.theme-toggle {
  display: flex;
  align-items: center;
  padding: 4px;
  margin-right: .5rem;
}
.theme-toggle__track {
  position: relative;
  display: flex;
  align-items: center;
  width: 56px;
  height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  transition: background .35s, border-color .35s;
  overflow: hidden;
}
.theme-toggle__thumb {
  position: absolute;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform .4s var(--ease-out), background .35s;
  z-index: 1;
}
[data-theme="light"] .theme-toggle__thumb {
  transform: translateX(28px);
}
.theme-toggle__icon {
  position: absolute;
  font-size: .75rem;
  line-height: 1;
  transition: opacity .3s;
  z-index: 2;
  pointer-events: none;
}
.theme-toggle__icon--dark  { left: 7px;  opacity: 1; }
.theme-toggle__icon--light { right: 7px; opacity: .4; }

[data-theme="light"] .theme-toggle__icon--dark  { opacity: .4; }
[data-theme="light"] .theme-toggle__icon--light { opacity: 1; }

/* ── Light theme specific overrides ── */
[data-theme="light"] .noise-overlay { opacity: .15; }

[data-theme="light"] .hero__bg-text {
  -webkit-text-stroke: 1px rgba(168,120,42,.08);
}

[data-theme="light"] .services__bg-number {
  -webkit-text-stroke: 1px rgba(168,120,42,.05);
}

[data-theme="light"] .about__img-placeholder {
  background: linear-gradient(160deg, var(--bg-card) 0%, #e8d5b5 100%);
}

[data-theme="light"] .about__floating-quote {
  background: var(--bg-secondary);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

[data-theme="light"] .nav.scrolled {
  background: rgba(249,246,240,.95);
  box-shadow: 0 1px 0 var(--border);
}

[data-theme="light"] .mobile-menu {
  background: var(--bg-secondary);
}

[data-theme="light"] .work-card {
  background: var(--bg-card);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .form-group select {
  color: var(--text-primary);
}

[data-theme="light"] .form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

[data-theme="light"] .cursor { mix-blend-mode: normal; background: var(--gold); }
[data-theme="light"] .cursor-follower { border-color: var(--gold); }

[data-theme="light"] .hero__scroll-line {
  background: linear-gradient(to bottom, var(--gold), transparent);
}

[data-theme="light"] .testimonials {
  background: var(--bg-card);
}

[data-theme="light"] .stats-bar {
  background: var(--bg-card);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  transition: var(--theme-transition);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: var(--ff-body);
  color: var(--cream);
  background: transparent;
}

/* ── Selection ── */
::selection { background: var(--gold); color: var(--black); }

/* ── Noise Overlay ── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  opacity: .4;
}

/* ══════════════════════════════
   CUSTOM CURSOR
══════════════════════════════ */
.cursor {
  position: fixed; z-index: 10000;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .1s, background .2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed; z-index: 9999;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .4s var(--ease-out), width .3s, height .3s, opacity .3s;
  opacity: .6;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor,
button:hover ~ .cursor { transform: translate(-50%,-50%) scale(2.5); }

/* ══════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════ */
.section-label {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: .02em;
  color: var(--white);
}
.section-title em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1em;
  color: var(--gold-lt);
}
.section-pad { padding: var(--section-gap) clamp(1.5rem, 6vw, 8rem); }

/* ══════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: color .3s, background .3s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}
.btn-primary:hover { color: var(--gold); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  height: var(--nav-h);
  transition: background .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .05em;
}
.nav__logo-hello { color: var(--white); }
.nav__logo-dot   { color: var(--gold); margin: 0 .3rem; }
.nav__logo-mkt   { color: var(--gold); }

.nav__links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav__link {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  border: 1px solid var(--border);
  padding: .5rem 1.2rem;
  color: var(--gold) !important;
  transition: background .3s, color .3s, border-color .3s;
}
.nav__link--cta:hover { background: var(--gold); color: var(--black) !important; border-color: var(--gold); }
.nav__link--cta::after { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px; padding: 8px;
}
.nav__burger span {
  display: block; width: 24px; height: 1px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--off-black);
  z-index: 999;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-link {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 10vw, 5rem);
  letter-spacing: .05em;
  color: var(--cream);
  padding: .3rem 0;
  transition: color .2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-menu__tagline {
  position: absolute; bottom: 3rem;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1.5rem, 6vw, 8rem);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Large decorative background word */
.hero__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(20vw, 35vw, 42vw);
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: bgPulse 6s ease-in-out infinite;
}
@keyframes bgPulse {
  0%,100% { opacity: .5; }
  50%      { opacity: 1; }
}

/* Diagonal accent line */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 15%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .2;
}

.hero__content { position: relative; z-index: 1; max-width: 900px; }

.hero__pre {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: .95;
  letter-spacing: .01em;
  color: var(--white);
  margin-bottom: 3rem;
}
.hero__headline .line--italic {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold-lt);
  font-size: clamp(4.5rem, 12vw, 11rem);
  display: block;
}

.hero__meta {
  display: flex; align-items: center; gap: 3rem;
  flex-wrap: wrap;
}

.hero__stat { border-left: 1px solid var(--border); padding-left: 1.5rem; }
.hero__stat strong { display: block; font-family: var(--ff-display); font-size: 2rem; color: var(--gold); }
.hero__stat span   { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute; bottom: 3rem; left: clamp(1.5rem, 6vw, 8rem);
  display: flex; flex-direction: column; align-items: flex-start; gap: .8rem;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-indicator span {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
@keyframes scrollBounce {
  0%,100% { transform: scaleY(1); transform-origin: top; }
  50%      { transform: scaleY(.6); transform-origin: top; }
}

/* Ticker */
.hero__ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  overflow: hidden;
  background: var(--gold);
  padding: .6rem 0;
  z-index: 2;
}
.ticker-track {
  display: flex; gap: 2rem;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-track span {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem clamp(1.5rem, 6vw, 8rem);
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item {
  display: flex; flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.stat-item strong, .stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
}
.stat-item span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  color: var(--border);
  font-size: 1.5rem;
}

/* ══════════════════════════════
   WORK
══════════════════════════════ */
.work { background: var(--black); }
.section-header { margin-bottom: clamp(3rem, 5vw, 6rem); }

.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.work-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--charcoal);
  transition: transform .4s var(--ease-out);
}
.work-card:hover { transform: translateY(-6px); }

.work-card--large { grid-row: span 1; }

.work-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.work-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  transition: transform .6s var(--ease-out);
}
.work-card:hover .work-card__placeholder { transform: scale(1.05); }

.work-card__info {
  padding: 1.5rem;
}
.work-card__cat {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.work-card__info h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .4rem;
}
.work-card__info p { font-size: .875rem; color: var(--muted); }

.work-card__hover-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.work-card:hover .work-card__hover-arrow { opacity: 1; transform: scale(1); }

.work__cta { margin-top: 3rem; text-align: center; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
  background: var(--off-black);
  position: relative;
  overflow: hidden;
}
.services__bg-number {
  position: absolute;
  top: 50%; right: -2%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 30vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.04);
  pointer-events: none;
  user-select: none;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(3rem, 5vw, 6rem);
  border-top: 1px solid var(--border);
}

.service-item {
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  transition: background .3s;
  position: relative;
}
.service-item::before {
  content: '';
  position: absolute;
  left: -8rem; right: -8rem;
  top: 0; bottom: 0;
  background: rgba(201,168,76,.03);
  opacity: 0;
  transition: opacity .3s;
}
.service-item:hover::before { opacity: 1; }

.service-item__top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.service-item__num {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--gold);
  opacity: .5;
  min-width: 2ch;
}
.service-item__top h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  flex: 1;
  transition: color .2s;
}
.service-item:hover .service-item__top h3 { color: var(--gold-lt); }

.service-item__arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s, transform .3s;
}
.service-item:hover .service-item__arrow { opacity: 1; transform: translateX(0); }

.service-item p {
  font-size: .9rem;
  color: var(--muted);
  max-width: 500px;
  padding-left: calc(2ch + 1.5rem);
}
.service-item ul {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  padding-left: calc(2ch + 1.5rem);
}
.service-item li {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: .25rem .7rem;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--black); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.about__image-block {
  position: relative;
  overflow: visible;
}
.about__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--charcoal) 0%, #1a1208 100%);
  position: relative;
  overflow: hidden;
}
.about__img-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(201,168,76,.1), transparent);
}

.about__tag {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .6rem 1.2rem;
}

.about__floating-quote {
  position: absolute;
  top: 2.5rem;
  right: -3rem;
  font-family: var(--ff-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--gold);
  opacity: .95;
  line-height: 1.6;
  background: var(--off-black);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.4rem;
  max-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  z-index: 2;
}

.about__text { display: flex; flex-direction: column; gap: 1.5rem; }

.about__body { color: rgba(245,240,232,.75); font-size: .95rem; line-height: 1.8; }

.about__team-row {
  display: flex; align-items: center; gap: .8rem;
  margin-top: .5rem;
}
.team-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal), var(--gold));
  border: 2px solid var(--black);
  margin-left: -12px;
  animation: fadeIn .5s var(--delay, 0s) both;
}
.team-avatar:first-child { margin-left: 0; }
.team-count {
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--muted);
  margin-left: .5rem;
}
@keyframes fadeIn { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: scale(1); } }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials {
  background: var(--charcoal);
  text-align: center;
}
.testimonials__track { position: relative; min-height: 180px; }

.testimonial-card {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s var(--ease-out);
  pointer-events: none;
}
.testimonial-card.active {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.testimonial-card blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  max-width: 780px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial-card cite {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials__dots {
  display: flex; justify-content: center; gap: .8rem;
  margin-top: 3rem;
}
.dot {
  width: 24px; height: 2px;
  background: var(--border);
  transition: background .3s, width .3s;
}
.dot.active { background: var(--gold); width: 40px; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact { background: var(--off-black); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}
.contact__sub { color: var(--muted); margin-top: 1rem; font-size: .9rem; }

.contact__form {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group {
  display: flex; flex-direction: column; gap: .5rem;
}
.form-group label {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: .7rem 0;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  background: transparent;
  color: var(--cream);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,136,136,.5); }
.form-group select option { background: var(--charcoal); }

textarea { resize: vertical; }

.btn-submit { width: 100%; justify-content: center; margin-top: .5rem; font-size: .875rem; }
.form-note {
  font-size: .75rem;
  text-align: center;
  color: var(--muted);
  letter-spacing: .05em;
}
.form-success {
  background: rgba(201,168,76,.1);
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  text-align: center;
  padding: 1rem;
  font-size: .875rem;
  letter-spacing: .05em;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 8rem) 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__logo {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer__logo em { font-style: italic; color: var(--gold); }
.footer__brand p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
}
.footer__brand a { transition: color .2s; }
.footer__brand a:hover { color: var(--gold); }

.footer__links { display: flex; gap: 4rem; }
.footer__col h4 {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col li + li { margin-top: .6rem; }
.footer__col a {
  font-size: .85rem;
  color: var(--muted);
  transition: color .2s;
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: .8rem; color: var(--muted); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: .8rem; color: var(--muted); transition: color .2s; }
.footer__legal a:hover { color: var(--gold); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 500px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .work__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar__inner { justify-content: center; }
  .stat-divider { display: none; }
  .hero__bg-text { font-size: 45vw; }
  .footer__links { flex-direction: column; gap: 2rem; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero__stat { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 1rem; }
}