/* =============================================
   URBAN VERSION MEDIA — style.css
   Brooklyn multimedia production studio
   Palette: charcoal / burgundy / warm ivory / sand
   Deliberately distinct from The East New York Times:
   no amber, no orange, no gold, no navy. Burgundy is
   the single accent; charcoal is the neutral dark.
   ============================================= */

/* Fonts — both sans. No serif anywhere. */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@300,400,500,700&display=swap');

/* =============================================
   DESIGN TOKENS
   Light is the default: warm ivory is the primary
   page background. Dark mode swaps to charcoal.
   Every pairing below is verified against WCAG AA.
   ============================================= */
:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #f4f1ec;              /* warm ivory */
  --color-surface: #d9cfc0;         /* sand — cards, quiet surfaces */
  --color-surface-2: #eae5dc;       /* soft sand — alternating sections */
  --color-border: #c9bda9;          /* decorative rules and dividers */
  --color-border-strong: #6e6459;   /* form-control outlines — 5.13:1 on ivory */

  /* Text */
  --color-text: #1f1f1f;            /* charcoal — 14.63:1 on ivory */
  --color-text-body: #343434;       /* charcoal at ~90% — long-form paragraphs */
  --color-text-muted: #545452;      /* 6.74:1 on ivory, 4.93:1 on sand */

  /* Burgundy — the single accent.
     On light backgrounds one value serves both fills and text:
     8.02:1 on ivory, 5.87:1 on sand. */
  --color-accent: #8b1e2f;
  --color-accent-text: #8b1e2f;
  --color-accent-hover: #741825;
  --color-accent-dim: rgba(139, 30, 47, 0.10);
  --color-on-accent: #f4f1ec;       /* ivory on burgundy — 8.02:1 */

  /* Logo mark — burgundy box, ivory letters */

  --shadow-sm: 0 1px 2px rgba(31, 31, 31, 0.06);
  --shadow-md: 0 4px 16px rgba(31, 31, 31, 0.08);
  --shadow-lg: 0 16px 40px rgba(31, 31, 31, 0.12);
}

[data-theme='dark'] {
  --color-bg: #1f1f1f;              /* charcoal */
  --color-surface: #2a2a2a;         /* one shade lighter than the page */
  /* Alternating sections go DARKER than the page in dark mode, not lighter.
     A lighter band would sit at the same value as the cards on top of it and
     the cards would disappear; dropping below the page keeps them raised. */
  --color-surface-2: #191919;
  --color-border: #3a3a3a;
  --color-border-strong: #949089;   /* 5.19:1 on charcoal, 4.52:1 on cards */

  --color-text: #f4f1ec;            /* warm ivory — 14.63:1 on charcoal */
  --color-text-body: #e6e2da;
  --color-text-muted: #b8b6b3;      /* 8.15:1 on charcoal, 7.09:1 on cards */

  /* Burgundy splits in dark mode. #a83346 is the specified accent and
     works as a FILL (ivory on it clears 5.78:1), but as text on charcoal
     it is only 2.53:1 — well under AA. Small burgundy text therefore uses
     a lighter tint of the same wine hue (353° vs 351°), which clears
     5.69:1 on charcoal and 4.95:1 on cards. */
  --color-accent: #a83346;
  --color-accent-text: #d2818a;
  --color-accent-hover: #be3e52;
  --color-accent-dim: rgba(168, 51, 70, 0.18);
  --color-on-accent: #f4f1ec;

  /* Logo mark inverts — ivory box, charcoal letters */

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* Fallback for visitors arriving before the theme script runs */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --color-bg: #1f1f1f;
    --color-surface: #2a2a2a;
    --color-surface-2: #191919;
    --color-border: #3a3a3a;
    --color-border-strong: #949089;
    --color-text: #f4f1ec;
    --color-text-body: #e6e2da;
    --color-text-muted: #b8b6b3;
    --color-accent: #a83346;
    --color-accent-text: #d2818a;
    --color-accent-hover: #be3e52;
    --color-accent-dim: rgba(168, 51, 70, 0.18);
    --color-on-accent: #f4f1ec;
  }
}

:root {
  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-prose: 74ch;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 1rem + 5.5vw, 6rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts — bold display sans for headlines, clean sans for body */
  --font-display: 'Clash Display', 'Arial Black', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-h: 72px;
}

/* =============================================
   RESET / BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Anchor targets clear the fixed header */
  scroll-padding-top: calc(var(--header-h) + var(--space-6));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--transition-interactive), color var(--transition-interactive);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-text);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
}

p { margin: 0; }

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

a {
  color: var(--color-accent-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-accent-hover); }

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

:focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 200;
  padding: var(--space-3) var(--space-5);
  background: var(--color-accent);
  color: var(--color-on-accent);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top var(--transition-fast);
}
.skip-link:focus { top: var(--space-4); color: var(--color-on-accent); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section {
  padding-block: var(--space-24);
  scroll-margin-top: var(--header-h);
}
.section--alt { background: var(--color-surface-2); }

.section-header { margin-bottom: var(--space-12); }

/* Burgundy small-caps superhead */
.superhead {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  margin-bottom: var(--space-4);
}

.section-heading {
  font-size: var(--text-2xl);
  font-weight: 600;
}

.section-intro {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 62ch;
}

.prose { max-width: var(--content-prose); }
.prose > * + * { margin-top: var(--space-5); }
.prose p { color: var(--color-text-body); }

/* =============================================
   HEADER / ANCHOR NAV
   ============================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-interactive), background-color var(--transition-interactive);
}
.header.is-scrolled { border-bottom-color: var(--color-border); }

.header-inner {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--color-text); }
.logo-text { font-size: var(--text-sm); white-space: nowrap; }

.nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding-block: var(--space-2);
  position: relative;
}
.nav a:hover { color: var(--color-text); }
/* Scrollspy: the section currently in view */
.nav a[aria-current='true'] { color: var(--color-accent-text); }
.nav a[aria-current='true']::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-accent);
}

.nav .nav-cta {
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: var(--color-on-accent);
  border-radius: var(--radius-full);
  font-weight: 600;
}
.nav .nav-cta:hover { background: var(--color-accent-hover); color: var(--color-on-accent); }
.nav .nav-cta[aria-current='true'] { color: var(--color-on-accent); }
.nav .nav-cta[aria-current='true']::after { display: none; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.theme-toggle,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.theme-toggle:hover,
.menu-toggle:hover { border-color: var(--color-accent); color: var(--color-accent-text); }

.menu-toggle { display: none; flex-direction: column; gap: 4px; }
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-6) var(--space-8);
  display: none;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:hover { color: var(--color-accent-text); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition-interactive),
              border-color var(--transition-interactive),
              color var(--transition-interactive);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-on-accent);
}
.btn-primary:hover { background: var(--color-accent-hover); color: var(--color-on-accent); }

.btn-outline {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-text);
}

.btn-full { width: 100%; }

/* Small burgundy text link with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-text);
  text-decoration: none;
}
.text-link:hover { color: var(--color-accent-hover); text-decoration: underline; }

/* =============================================
   IMAGE PLACEHOLDERS
   Dashed boxes carrying the [IMAGE: ...] label
   until real assets are dropped in.
   ============================================= */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
}
.placeholder span {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  max-width: 34ch;
  line-height: 1.5;
}

/* =============================================
   SECTION 1 — HERO
   ============================================= */
.hero {
  padding-top: calc(var(--header-h) + var(--space-20));
  padding-bottom: var(--space-24);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-16);
  align-items: center;
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  /* Runs the full container width now that the photo is gone. Balanced
     wrapping keeps the last line from being a single orphaned word. */
  text-wrap: balance;
}
/* The burgundy accent word inside the headline */
.hero-title .accent { color: var(--color-accent-text); }

.hero-sub {
  margin-top: var(--space-8);
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

/* =============================================
   SECTION 2 — DELIVERABLES
   Typographic tiles, no icons.
   ============================================= */
.deliverables-grid,
.work-grid {
  display: grid;
  /* Six tiles — three across fills two rows evenly */
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.deliverable {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-accent);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.deliverable:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.deliverable h3 {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  /* Two lines of the card heading (2 x line-height), so one-line and
     two-line headings start their body copy at the same y. Set in em so
     it tracks the clamped font-size instead of pinning to one viewport. */
  min-height: 2.5em;
}
.deliverable p {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Additional-services note under the grid, at card-body size */
.deliverables-note {
  margin-top: var(--space-8);
  max-width: var(--content-prose);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Burgundy tag chip on the Selected Work cards */
.work-tag {
  display: inline-block;
  margin-bottom: var(--space-4);
  padding: 0.25em 0.7em;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  /* Pure white rather than --color-on-accent. The warm ivory reads fine at body
     size but looks dull at this small uppercase weight on burgundy. */
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* =============================================
   SECTIONS 3 & 4 — ABOUT
   ============================================= */
.bio + .bio { margin-top: var(--space-20); }
.bio .section-heading { margin-bottom: var(--space-8); }

/* Portraits sit between the heading and the prose. Both are 3:4 and share a
   fixed width, so the two bios read as a matched pair rather than two
   differently-shaped photos. */
.bio-photo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

/* Credentials, burgundy bullet marks */
.cred-list {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4) var(--space-8);
  max-width: var(--content-prose);
}
.cred-list li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-body);
  line-height: 1.5;
}
.cred-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
}

/* =============================================
   SECTION 5 — CHURCH-AND-STATE NOTE
   Set apart as a formal disclosure, not marketing.
   ============================================= */
.ethics-card {
  max-width: var(--content-prose);
  margin-inline: auto;
  padding: var(--space-12);
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
}
.ethics-card h2 {
  font-size: var(--text-xl);
  font-weight: 600;
}
.ethics-card p {
  margin-top: var(--space-6);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-body);
}
.ethics-card .text-link { margin-top: var(--space-8); }

/* =============================================
   SECTION 6 — CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-block {
  margin-top: var(--space-10);
  border-top: 1px solid var(--color-border);
}
.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}
.contact-row-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.contact-row-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  word-break: break-word;
}
a.contact-row-value { color: var(--color-accent-text); text-decoration: none; }
a.contact-row-value:hover { text-decoration: underline; }

/* Form */
.contact-form {
  padding: var(--space-10);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.form-group { margin-bottom: var(--space-5); }
.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 1px;
  border-color: var(--color-accent);
}

.form-success,
.form-error {
  display: none;
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
}
.form-success.is-visible,
.form-error.is-visible { display: block; }
.form-success {
  background: var(--color-accent-dim);
  border: 1px solid var(--color-accent);
  color: var(--color-text);
}
.form-error {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text);
}

/* =============================================
   SECTION 7 — FOOTER
   ============================================= */
.footer {
  padding-block: var(--space-20) var(--space-10);
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-12);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.footer-tagline {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 34ch;
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer-list li + li { margin-top: var(--space-3); }
.footer-list a {
  font-size: var(--text-sm);
  color: var(--color-text);
  text-decoration: none;
}
.footer-list a:hover { color: var(--color-accent-text); text-decoration: underline; }
.footer-list .footer-sub {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-bottom {
  margin-top: var(--space-16);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

/* =============================================
   MOTION
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1080px) {
  .deliverables-grid,
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero-grid { gap: var(--space-12); }

  .contact-grid { grid-template-columns: 1fr; gap: var(--space-12); }
}

@media (max-width: 720px) {
  .section { padding-block: var(--space-16); }
  .hero { padding-top: calc(var(--header-h) + var(--space-12)); padding-bottom: var(--space-16); }

  .deliverables-grid,
  .work-grid { grid-template-columns: 1fr; }
  .cred-list { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: var(--space-10); }

  .contact-row { grid-template-columns: 1fr; gap: var(--space-1); }
  .ethics-card { padding: var(--space-8); }
  .contact-form { padding: var(--space-6); }

  .hero-actions .btn { width: 100%; }
}
