/* =============================================================
   RESET & BASE
============================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg: #fafffd;
  --surface: #ffffff;
  --text: #201c21;
  --text-muted: #5b5660; /* darkened for AA contrast over the rose sky */
  --accent: #c24812;        /* darkened orange — text/icons on light bg (AA compliant) */
  --accent-bright: #f95a10; /* vivid orange — fills, buttons, glows, gradients */
  --accent-strong: #f95a10; /* solid button fills (paired with dark text) */
  --accent-hover: #ff7431;
  --blue: #1a6fae;          /* darkened blue — sparing use, text-safe */
  --blue-bright: #70c1ff;   /* vivid blue — sparing decorative use only */
  --shadow-grey: 32, 28, 33; /* rgb triplet of --text, used for neutral drop shadows */
  --border: rgba(var(--shadow-grey), 0.13);
  --border-soft: rgba(var(--shadow-grey), 0.08);
  --glass-bg: rgba(255, 255, 255, 0.42);
  --glass-bg-strong: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 24px 60px rgba(var(--shadow-grey), 0.16);
  --blur: 20px;
  --radius: 20px;
  --max-width: 1100px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', var(--font);
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Bold blurred glows — vivid orange dominant, a whisper of blue, a nod to film color grading */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  z-index: -2;
  pointer-events: none;
}

body::before {
  width: 620px;
  height: 620px;
  top: -180px;
  left: -160px;
  background: rgba(249, 90, 16, 0.22);
}

body::after {
  width: 560px;
  height: 560px;
  bottom: -200px;
  right: -180px;
  background: rgba(112, 193, 255, 0.14);
}

/* Subtle film-grain texture over the whole page */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Sky backdrop — dusty rose up top, warm peach middle, pale sand below,
   softened toward white so text and glass keep their contrast */
.bg-blobs::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: linear-gradient(180deg, #ecc9c1 0%, #f0d5c2 38%, #f6e6cf 72%, #f9f2e2 100%);
}

/* Bright haze low in the sky — the sun glowing behind the cloud bank */
.bg-blobs::after {
  content: '';
  position: fixed;
  top: 52%;
  left: 42%;
  width: 780px;
  height: 320px;
  z-index: -3;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.55);
  filter: blur(80px);
}

/* Floating color blobs — fixed behind the page so frosted panels always have color to blur */
.bg-blobs span {
  position: fixed;
  border-radius: 50%;
  filter: blur(95px);
  z-index: -2;
  pointer-events: none;
}

.bg-blobs span:nth-child(1) {
  width: 460px;
  height: 460px;
  top: 32%;
  right: -140px;
  background: rgba(249, 90, 16, 0.16);
}

.bg-blobs span:nth-child(2) {
  width: 380px;
  height: 380px;
  top: 58%;
  left: -120px;
  background: rgba(112, 193, 255, 0.14);
}

.bg-blobs span:nth-child(3) {
  width: 420px;
  height: 420px;
  top: 82%;
  left: 38%;
  background: rgba(249, 90, 16, 0.12);
}

/* Cloud puffs — soft white masses like the reference sky */
.bg-blobs span:nth-child(4) {
  width: 420px;
  height: 180px;
  top: 5%;
  left: 6%;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(55px);
}

.bg-blobs span:nth-child(5) {
  width: 540px;
  height: 210px;
  top: 13%;
  left: 36%;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(60px);
}

.bg-blobs span:nth-child(6) {
  width: 400px;
  height: 170px;
  top: 8%;
  right: 10%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(55px);
}

/* Faint cool patch — a whisper of blue high in the sky */
.bg-blobs span:nth-child(7) {
  width: 380px;
  height: 300px;
  top: 3%;
  right: -70px;
  background: rgba(112, 193, 255, 0.13);
  filter: blur(70px);
}

/* Small "+" registration marks — quiet crop-mark details */
.plus {
  position: absolute;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.05rem;
  color: rgba(var(--shadow-grey), 0.3);
  pointer-events: none;
  user-select: none;
}

.plus--1 { top: 16%; left: 47%; }
.plus--2 { bottom: 10%; left: 5%; }
.plus--3 { top: 24%; right: 7%; color: rgba(26, 111, 174, 0.4); }

img { max-width: 100%; display: block; }

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

ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrow — small monospace "timecode" style label above section titles */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px 1px rgba(249, 90, 16, 0.5);
  flex: none;
}

.eyebrow--hero {
  color: var(--blue);
}

.eyebrow--hero::before {
  background: var(--blue-bright);
  box-shadow: 0 0 8px 1px rgba(112, 193, 255, 0.5);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--accent-strong);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 10px 26px rgba(var(--shadow-grey), 0.28);
}

/* Focus states — visible ring on light surfaces */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.work-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =============================================================
   HEADER
============================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(var(--shadow-grey), 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  color: var(--accent-bright);
  flex: none;
  display: inline-flex;
}

.brand-mark svg { width: 20px; height: 20px; }

.header-cta {
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* =============================================================
   INTRO / ABOUT
============================================================== */
.intro {
  position: relative;
  padding: 4.5rem 0 2rem;
}

.intro-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1 1 380px;
}

.intro-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.accent-text {
  color: var(--accent);
}

.intro-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0;
}

.intro-photo-wrap {
  position: relative;
  flex: 0 0 260px;
  width: 260px;
  max-width: 100%;
}

.intro-photo {
  position: relative;
  z-index: 1;
  padding: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--glass-shadow);
}

.intro-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

/* =============================================================
   SERVICES
============================================================== */
.services {
  padding: 3rem 0 4rem;
  background: radial-gradient(ellipse 700px 420px at 10% 0%, rgba(249, 90, 16, 0.09), transparent 65%);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-block {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-block:hover {
  border-color: var(--accent-bright);
  box-shadow: 0 20px 48px rgba(var(--shadow-grey), 0.20);
  transform: translateY(-2px);
}

.service-text {
  flex: 1 1 240px;
  max-width: 280px;
  margin: 0;
}

.service-block--solo .service-text {
  max-width: 480px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.9rem;
  border-radius: 10px;
  background: rgba(249, 90, 16, 0.12);
  color: var(--accent);
}

.service-block--audio .service-icon {
  background: rgba(112, 193, 255, 0.16);
  color: var(--blue);
}

.service-icon svg { width: 20px; height: 20px; }

.service-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.service-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Cuts & Pacing: before/after images, to the right of the text --- */
.wide-compare {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wide-figure {
  margin: 0;
}

.wide-figure img {
  width: 100%;
  aspect-ratio: 87 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
}

.wide-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Color & Audio Cleanup: before/after comparison slider, to the right of the text --- */
.waveform {
  display: block;
  width: 100px;
  height: 18px;
  color: var(--blue);
  opacity: 0.9;
  margin: 0.9rem 0 0;
}

.compare-slider {
  position: relative;
  flex: 1 1 300px;
  max-width: 380px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  touch-action: pan-y;
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.compare-before {
  clip-path: inset(0 50% 0 0);
}

.compare-label {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(var(--shadow-grey), 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  pointer-events: none;
}

.label-before { left: 1rem; }
.label-after { right: 1rem; }

.compare-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--blue-bright);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(var(--shadow-grey), 0.3);
}

.compare-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(var(--shadow-grey), 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid var(--blue-bright);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.compare-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 36px;
  height: 36px;
  opacity: 0;
}

.compare-range::-moz-range-thumb {
  width: 36px;
  height: 36px;
  opacity: 0;
  border: none;
}

.compare-range::-moz-range-track {
  background: transparent;
  border: none;
}

/* =============================================================
   SELECTED WORK
============================================================== */
.work {
  padding: 4rem 0;
  background: radial-gradient(ellipse 700px 420px at 90% 0%, rgba(249, 90, 16, 0.08), transparent 65%);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.work-item {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.work-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-bright);
  box-shadow: 0 22px 50px rgba(var(--shadow-grey), 0.22);
}

.work-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Viewfinder-style corner brackets on hover — camera-focus motif */
.work-item::before,
.work-item::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-bright);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.work-item::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 4px;
}

.work-item::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 4px;
}

.work-item:hover::before { opacity: 1; transform: translate(-3px, -3px); }
.work-item:hover::after { opacity: 1; transform: translate(3px, 3px); }

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--shadow-grey), 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.work-item:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

/* =============================================================
   PROCESS
============================================================== */
.process {
  padding: 4rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

/* Dashed connector running behind the step numbers */
.process-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 3%;
  right: 3%;
  border-top: 2px dashed rgba(var(--shadow-grey), 0.18);
}

.step {
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent-bright);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.step h3 {
  margin: 0.85rem 0 0.3rem;
  font-size: 1rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .process-steps::before { display: none; }
}

/* =============================================================
   PRICING
============================================================== */
.pricing {
  position: relative;
  padding: 4rem 0;
  text-align: center;
}

.price-card {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 2rem 3rem;
}

.price-line {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.price {
  color: var(--accent);
}

.price-note {
  color: var(--text-muted);
  margin: 1rem 0 0;
}

/* =============================================================
   CONTACT
============================================================== */
.contact {
  padding: 4rem 0 5rem;
  background: radial-gradient(ellipse 700px 420px at 10% 100%, rgba(249, 90, 16, 0.07), transparent 65%);
}

.contact-intro {
  color: var(--text-muted);
  margin: -1rem 0 2rem;
}

.contact-form[hidden] {
  display: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 520px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 1.75rem;
}

.contact-success[hidden] {
  display: none;
}

.contact-success {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 520px;
  min-height: 200px;
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 1.75rem;
}

.contact-success p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(var(--shadow-grey), 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(112, 193, 255, 0.22);
}

.contact-form > button {
  margin-top: 1.25rem;
  align-self: flex-start;
}

.message-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.message-label-row label {
  margin-top: 0;
}

.quick-fill-btn {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.quick-fill-btn:hover {
  border-color: var(--accent-bright);
  color: var(--accent);
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 1.2em;
}

.contact-fallback {
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-fallback a {
  color: var(--accent);
  font-weight: 600;
}

.contact-fallback a:hover { text-decoration: underline; }

.copy-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.4rem;
  padding: 0.3rem 0.7rem;
  vertical-align: middle;
  border-radius: 999px;
  border: 1px solid rgba(112, 193, 255, 0.4);
  background: rgba(112, 193, 255, 0.12);
  color: var(--blue);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.copy-email-btn:hover {
  background: rgba(112, 193, 255, 0.2);
  border-color: var(--blue-bright);
}

.copy-email-btn:active { transform: translateY(1px); }

.copy-email-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.copy-email-btn .copy-icon,
.copy-email-btn .check-icon {
  width: 14px;
  height: 14px;
  flex: none;
}

.copy-email-btn .check-icon { display: none; }

.copy-email-btn.is-copied {
  background: rgba(112, 193, 255, 0.22);
  border-color: var(--blue-bright);
}

.copy-email-btn.is-copied .copy-icon { display: none; }
.copy-email-btn.is-copied .check-icon { display: block; }

/* =============================================================
   FOOTER
============================================================== */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer .footer-tc {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--blue);
  opacity: 0.75;
}

/* =============================================================
   LIGHTBOX
============================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(var(--shadow-grey), 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.lightbox.is-open { display: flex; }

.lightbox-inner {
  width: 100%;
  max-width: 960px;
  position: relative;
}

.lightbox-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.lightbox-video iframe,
.lightbox-video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.lightbox-close:hover { color: var(--accent-bright); }

/* =============================================================
   SCROLL REVEAL
============================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   REDUCED MOTION
============================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =============================================================
   REDUCED TRANSPARENCY
============================================================== */
@media (prefers-reduced-transparency: reduce) {
  :root {
    --glass-bg: #ffffff;
    --glass-bg-strong: #ffffff;
  }

  .bg-blobs { display: none; }
}

/* =============================================================
   RESPONSIVE
============================================================== */
@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .services, .work, .process, .pricing, .contact { padding: 3rem 0; }

  .price-card { padding: 1.75rem 2rem; }

  .plus { display: none; }
}
