/* ============================================================
   Daniel Okonek — Style Sheet v3
   Foundation: dark charcoal · amber · cream · diamond
   Layout: editorial rows · left-aligned hero · minimal swim.art energy
   ============================================================ */

/* ------------------------------------------------------------
   Custom Fonts
   ------------------------------------------------------------ */
@font-face {
  font-family: 'That That New Pixel';
  src: url('fonts/That-That-New-Pixel-Square.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ingram Mono';
  src: url('fonts/Ingram-Mono-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('fonts/sf-pro-text-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:          #16140f;
  --bg-raised:   #1d1b14;
  --bg-card:     #222019;
  --accent:      #c8784a;
  --accent-dim:  #9e5e35;
  --teal:        #4d8c87;
  --text:        #e8e3d8;
  --text-muted:  #a8a090;
  --text-faint:  #3a3830;
  --border:      #272420;
  --border-mid:  #332f28;

  --glow-amber:  rgba(200, 120, 74, 0.09);
  --glow-violet: rgba(100, 60, 140, 0.05);

  --font-display: 'Cormorant Garamond', Georgia, serif;  /* pull quote, about name, contact */
  --font-pixel:   'That That New Pixel', monospace;      /* hero name, brand marks */
  --font-mono:    'Ingram Mono', 'Space Grotesk', monospace; /* nav, labels, prices, UI */
  --font-body:    'SF Pro Text', system-ui, sans-serif;  /* body text, service names */

  --max-w:        1120px;
  --pad-x:        clamp(1.5rem, 5vw, 4rem);
  --section-py:   clamp(5rem, 10vw, 8rem);

  /* Player height — used to offset body bottom */
  --player-h:     48px;
}

/* ------------------------------------------------------------
   Reset
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--player-h);
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

/* ------------------------------------------------------------
   Grain
   ------------------------------------------------------------ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ------------------------------------------------------------
   Atmospheric orbs
   ------------------------------------------------------------ */
.atmos {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.atmos-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orb-breathe 16s ease-in-out infinite;
}
.atmos-orb--amber {
  width: 700px; height: 700px;
  top: -15%; left: -15%;
  background: radial-gradient(circle, var(--glow-amber) 0%, transparent 70%);
  animation-delay: 0s;
}
.atmos-orb--violet {
  width: 500px; height: 500px;
  bottom: 5%; right: -10%;
  background: radial-gradient(circle, var(--glow-violet) 0%, transparent 70%);
  animation-delay: 8s;
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.18) translate(15px, -15px); }
}

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ------------------------------------------------------------
   Reveal
   ------------------------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ------------------------------------------------------------
   Section Headers
   ------------------------------------------------------------ */
.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.section-rule {
  flex: 1;
  height: 1px;
  background-color: var(--border);
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem var(--pad-x);
  transition: background-color 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background-color: rgba(22, 20, 15, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.1rem var(--pad-x);
  border-bottom-color: var(--border);
}
.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mark { display: flex; align-items: center; }
.nav-name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-mark:hover .nav-name { color: var(--text); }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

/* ------------------------------------------------------------
   Hero — left-aligned, large, architectural
   ------------------------------------------------------------ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Centered radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 65% at 35% 55%, rgba(200, 120, 74, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Large faint background diamond — right side */
.hero-bg-mark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 55vw);
  color: var(--text);
  opacity: 0.03;
  pointer-events: none;
}
.hero-bg-mark svg { width: 100%; height: auto; }

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad-x) clamp(4rem, 8vw, 7rem);
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

/* Eyebrow: small diamond + tagline */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.diamond-sm {
  width: 18px; height: 26px;
  color: var(--accent);
  animation: float 7s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.hero-eyebrow span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(10, 9, 6, 0.9);
}

/* Name — large, left-aligned */
.hero-name {
  position: relative;
  font-family: var(--font-pixel);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 3rem;
  text-shadow: 0 2px 24px rgba(10, 9, 6, 0.7), 0 1px 4px rgba(10, 9, 6, 0.9);
}

/* Glitch — fires rarely */
.hero-name::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--accent);
  clip-path: inset(100% 0 0 0);
  animation: name-glitch 14s steps(1) infinite;
  pointer-events: none;
}
@keyframes name-glitch {
  0%, 91%, 100% { clip-path: inset(100% 0 0 0); transform: none; opacity: 0; }
  92%  { clip-path: inset(12% 0 80% 0); transform: translateX(-3px); opacity: 0.55; }
  93%  { clip-path: inset(65% 0 20% 0); transform: translateX(3px);  opacity: 0.55; }
  94%  { clip-path: inset(40% 0 48% 0); transform: translateX(-2px); opacity: 0.4; }
  95%  { clip-path: inset(100% 0 0 0);  transform: none; opacity: 0; }
}

/* Hero photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-bg-img[src]:not([src=""]) { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22, 20, 15, 0.55) 0%,
    rgba(22, 20, 15, 0.35) 40%,
    rgba(22, 20, 15, 0.72) 75%,
    rgba(22, 20, 15, 0.97) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Scroll indicator line */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: var(--pad-x);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scroll-pulse 2.5s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6) translateY(12px); }
}

/* CTA — minimal, with arrow */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  transition: gap 0.25s ease, color 0.25s ease;
  text-shadow: 0 1px 8px rgba(10, 9, 6, 0.8);
}
.hero-cta svg { width: 18px; height: 18px; transition: transform 0.25s ease; }
.hero-cta:hover { color: var(--accent); gap: 0.9rem; }
.hero-cta:hover svg { transform: translateY(3px); }

/* ------------------------------------------------------------
   Marquee
   ------------------------------------------------------------ */
.marquee-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  background-color: var(--bg-raised);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 1.5rem;
  white-space: nowrap;
}
.marquee-track .msep {
  color: var(--accent);
  padding: 0;
  letter-spacing: 0;
  font-size: 0.48rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ------------------------------------------------------------
   Image glitch effect
   ------------------------------------------------------------ */
@keyframes img-glitch {
  0%   { transform: translate(0,0);      clip-path: none;               filter: none; }
  8%   { transform: translate(-6px, 1px); clip-path: inset(8% 0 78% 0);  filter: hue-rotate(80deg) brightness(1.25); }
  14%  { transform: translate(6px, -1px); clip-path: inset(62% 0 18% 0); filter: hue-rotate(-60deg) saturate(2); }
  18%  { transform: translate(-3px, 0);  clip-path: none;               filter: brightness(1.4) saturate(0.5); }
  24%  { transform: translate(5px, 2px); clip-path: inset(38% 0 44% 0);  filter: hue-rotate(160deg); }
  30%  { transform: translate(0,0);      clip-path: none;               filter: brightness(1.1); }
  36%  { transform: translate(-4px, 0);  clip-path: inset(75% 0 8% 0);  filter: hue-rotate(30deg) brightness(0.85); }
  42%  { transform: translate(3px, -2px);clip-path: none;               filter: saturate(3) brightness(1.2); }
  50%  { transform: translate(-2px, 1px);clip-path: inset(22% 0 60% 0); filter: hue-rotate(-90deg); }
  58%  { transform: translate(0,0);      clip-path: none;               filter: none; }
  68%  { transform: translate(2px, 0);   filter: hue-rotate(20deg); }
  80%  { transform: translate(0,0);      filter: none; }
  100% { transform: translate(0,0);      clip-path: none;               filter: none; }
}

/* Applied to hero bg img */
.hero-bg-img.is-glitching {
  animation: img-glitch 0.55s steps(1) forwards;
}

/* Applied to work-item container — img inside gets the glitch */
.work-item.is-glitching .work-fig img {
  animation: img-glitch 0.45s steps(1) forwards;
}

/* Brief scan-line flash overlay during glitch */
.work-item.is-glitching::after,
.hero-bg.is-glitching-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.18) 3px,
    rgba(0,0,0,0.18) 4px
  );
  pointer-events: none;
  z-index: 2;
  animation: scanline-flash 0.55s steps(1) forwards;
}
@keyframes scanline-flash {
  0%, 60%, 100% { opacity: 0; }
  8%, 24%, 42%  { opacity: 1; }
}

/* ------------------------------------------------------------
   Work — editorial video grid
   ------------------------------------------------------------ */
.work {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
}

/* Asymmetric 3-panel grid: large left + 2 stacked right */
.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--bg-card);
  outline: none;
}

/* First item spans both rows on left */
.work-item:first-child {
  grid-row: 1 / 3;
}

/* The right-side two are stacked */
.work-item:nth-child(2),
.work-item:nth-child(3) {
  grid-row: auto;
}

.work-fig {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.work-item:first-child .work-fig { aspect-ratio: unset; height: 100%; }
.work-item:nth-child(2) .work-fig,
.work-item:nth-child(3) .work-fig { aspect-ratio: 16/9; }

.work-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0, 0, 1), filter 0.4s ease;
  filter: brightness(0.8) saturate(0.85);
}

/* Hover overlay */
.work-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(22, 20, 15, 0);
  transition: background-color 0.35s ease;
}
.work-item:hover .work-hover,
.work-item:focus-visible .work-hover {
  background-color: rgba(22, 20, 15, 0.45);
}
.work-item:hover .work-fig img,
.work-item:focus-visible .work-fig img {
  transform: scale(1.04);
  filter: brightness(0.7) saturate(1);
}

/* Play button */
.work-play {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 227, 216, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.work-item:first-child .work-play { width: 70px; height: 70px; }
.work-play svg { width: 18px; height: 18px; margin-left: 3px; }
.work-item:first-child .work-play svg { width: 22px; height: 22px; }

.work-item:hover .work-play,
.work-item:focus-visible .work-play {
  opacity: 1;
  transform: scale(1);
}

/* Video lightbox modal */
.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.vid-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.vid-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 9, 6, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.vid-modal-inner {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  max-height: 90vh;
}
.vid-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.5rem;
  transition: color 0.2s ease;
}
.vid-modal-close:hover { color: var(--text); }
.vid-modal-close svg { width: 22px; height: 22px; display: block; }
.vid-modal-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #000;
}
.vid-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------
   Services — editorial rows
   ------------------------------------------------------------ */
.services {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
}

.services-block { margin-bottom: clamp(4rem, 8vw, 6rem); }
.services-block-head { margin-bottom: 2.5rem; }
.services-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.services-block-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---- Accordion layout ---- */
.svc-list { border-top: 1px solid var(--border); }

.svc-item { border-bottom: 1px solid var(--border); }

.svc-head {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 2rem 0;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: color 0.2s ease;
}
.svc-head:hover .svc-title { color: var(--accent); }

.svc-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.25s ease;
}
.svc-item.is-open .svc-num { color: var(--accent-dim); }

.svc-head-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}

.svc-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  transition: color 0.25s ease;
}
.svc-item--featured .svc-title { font-style: italic; }

.svc-head-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.svc-price {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.svc-item.is-open .svc-price,
.svc-head:hover .svc-price {
  opacity: 1;
  transform: translateX(0);
}

/* Toggle — morphs from + to × */
.svc-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.svc-toggle::before,
.svc-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--text-muted);
  transition: transform 0.3s ease, background-color 0.25s ease;
}
.svc-toggle::before {
  width: 1px; height: 100%;
  left: 50%; top: 0;
  transform: translateX(-50%);
}
.svc-toggle::after {
  width: 100%; height: 1px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}
.svc-item.is-open .svc-toggle::before {
  transform: translateX(-50%) rotate(45deg);
  background-color: var(--accent);
}
.svc-item.is-open .svc-toggle::after {
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--accent);
}

/* Panel — hidden by default, smooth open */
.svc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-item.is-open .svc-panel { max-height: 500px; }

.svc-panel-inner {
  padding: 0 0 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  border-left: 1px solid var(--accent-dim);
  padding-left: 2rem;
}

.service-royalty {
  font-size: 0.8rem;
  color: var(--text-muted);
  grid-column: span 2;
}

.service-list { display: flex; flex-direction: column; gap: 0.5rem; grid-column: span 2; }
.service-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.45;
}
.service-list li.inc::before {
  content: '+'; position: absolute; left: 0;
  color: var(--accent); font-weight: 500;
}
.service-list li.exc::before {
  content: '−'; position: absolute; left: 0;
  color: var(--text-faint);
}

.service-footnote {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.72;
  line-height: 1.5;
  grid-column: span 2;
}

/* Additional Services */
.additional-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
}
.additional-card {
  background-color: var(--bg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background-color 0.25s ease;
  border-left: 2px solid transparent;
}
.additional-card:hover {
  background-color: var(--bg-raised);
  border-left-color: var(--teal);
}
.additional-icon { flex-shrink: 0; color: var(--teal); margin-top: 0.2rem; }
.additional-icon svg { width: 26px; height: 26px; }
.additional-body { display: flex; flex-direction: column; gap: 0.75rem; }
.additional-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--text);
}
.additional-pricing { display: flex; flex-direction: column; gap: 0.2rem; }
.additional-desc { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

/* ------------------------------------------------------------
   About
   ------------------------------------------------------------ */
.about {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
  background-color: var(--bg-raised);
}

/* Two-column spread: photo left, text right */
.about-spread {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Photo column */
.about-photo-col { position: sticky; top: 6rem; }
.about-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--bg-card);
}
.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.about-photo-img[src]:not([src=""]) { opacity: 1; }

/* Diamond placeholder shown while no image */
.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
}
.about-photo-img[src]:not([src=""]) + .about-photo-placeholder { display: none; }
.about-photo-placeholder svg { width: 60px; opacity: 0.4; }

/* Text column */
.about-text-col { padding-top: 0.5rem; }

/* Pull quote */
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 2.25rem;
}

.about-body { display: flex; flex-direction: column; gap: 1.4rem; }
.about-body p { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.85; color: var(--text-muted); }
.about-body em     { color: var(--text); font-style: italic; }
.about-body strong { color: var(--text); font-weight: 500; }

.about-stats { display: flex; flex-direction: column; gap: 1.75rem; }
.stat {
  border-left: 1px solid var(--accent);
  padding-left: 1.25rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   Contact
   ------------------------------------------------------------ */
.contact {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.contact-atmos {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 60%, rgba(200, 120, 74, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.contact-mark { color: var(--accent); margin-bottom: 0.75rem; }
.contact-mark svg { width: 38px; height: 54px; }
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}
.contact-heading em { color: var(--accent); font-style: italic; }
.contact-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.75;
}
.contact-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  background-color: var(--accent);
  padding: 1rem 2.75rem;
  margin-top: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.contact-btn:hover {
  background-color: var(--accent-dim);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.footer-copy { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--text-faint); }

/* ------------------------------------------------------------
   Persistent Spotify Player
   ------------------------------------------------------------ */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: rgba(22, 20, 15, 0.97);
  border-top: 1px solid var(--border-mid);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.player-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem var(--pad-x);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.player-toggle:hover { color: var(--text); }

.player-diamond {
  width: 16px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.player-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex: 1;
  text-align: left;
}

.player-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Embed: hidden by default */
.player-embed {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.player-embed iframe {
  display: block;
  border-radius: 0 !important;
}

/* Open state */
.player-bar.is-open .player-embed {
  max-height: 152px;
}
.player-bar.is-open .player-chevron {
  transform: rotate(180deg);
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-item:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .work-item:nth-child(2),
  .work-item:nth-child(3) {
    grid-row: 2;
  }
  .work-item:first-child .work-fig { aspect-ratio: 16/9; height: auto; }
}

@media (max-width: 900px) {
  .about-spread {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo-col {
    position: static;
    max-width: 480px;
  }
  .about-photo-wrap { aspect-ratio: 4/5; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .stat { flex: 1; min-width: 140px; }
}

@media (max-width: 680px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-item:first-child { grid-column: auto; grid-row: auto; }
  .work-item:first-child .work-fig { aspect-ratio: 16/9; }

  .additional-grid { grid-template-columns: 1fr; }
  .svc-panel-inner { grid-template-columns: 1fr; }
  .service-royalty,
  .service-list,
  .service-footnote { grid-column: span 1; }
  .hero-bg-mark { display: none; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.72rem; }
  .about-quote { font-size: clamp(1.2rem, 4vw, 1.8rem); }
  .about-spread { padding: 0 var(--pad-x); }
  .about-photo-col { max-width: 100%; }
}

@media (max-width: 440px) {
  .nav-links { gap: 1rem; }
  .additional-card { padding: 1.5rem; }
  .service-row { padding: 2rem 0; }
  .vid-modal-close { top: -2.5rem; }
}
