/* ============================================
   Toledo Technologies LLC — Editorial Website
   Dark luxury aesthetic inspired by reference
   mockups: massive serif type, dusty pink
   accents, warm cream on near-black, grain
   texture, architectural grid lines.
   ============================================ */

:root {
  --bg: #050505;
  --bg-elevated: #0d0d0d;
  --bg-card: #121212;
  --text-primary: #f2ede4; /* Brighter cream for primary info */
  --text-secondary: #d4cfc7; /* Original primary becomes secondary */
  --text-muted: #a8a096;
  --accent: #e5a9b6; /* Slightly more vibrant pink */
  --accent-light: #f7ced7;
  --accent-dark: #c07b8a;
  --silver: #d8d0c8;
  --silver-light: #f8f0e8;
  --border: #222222;
  --border-light: #333333;

  --font-display: 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

button {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hide native cursor only once the enhanced cursor system is fully ready.
   This keeps the default cursor as a safe fallback if the decorative layer
   is deferred or fails to initialize. */
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor [role="button"] { cursor: none; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

/* ============================================
   SPATIAL ARCHITECTURE
   ============================================ */
.spatial-world {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  perspective: 1500px; /* Reduced for less extreme distortion */
  perspective-origin: 50% 50%;
  overflow: hidden;
  background: var(--bg);
  z-index: 1;
  isolation: isolate;
}

/* Optimized procedural texture */
.spatial-world::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(216, 153, 167, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.spatial-scenic {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
}

.spatial-scene {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  pointer-events: auto;
  overflow: clip;
  contain: layout paint style;
}

@supports (content-visibility: auto) {
  .spatial-scene:not(#hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 100vh;
  }
}

.spatial-scene.active {
  pointer-events: auto;
}

.spatial-scene::before {
  content: '';
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at var(--scene-accent-x, 50%) var(--scene-accent-y, 50%), rgba(216, 153, 167, calc(0.035 + var(--scene-presence, 0) * 0.035)) 0%, transparent 42%),
    linear-gradient(90deg, transparent, rgba(200, 192, 184, 0.018), transparent);
  opacity: calc(0.6 + var(--scene-presence, 0) * 0.4);
  pointer-events: none;
  transform: translateZ(-1px);
  z-index: 0;
}

.hero-inner,
.section-inner,
.footer-inner {
  transform-style: preserve-3d;
  transition: transform 0.14s linear;
  will-change: transform;
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   CUSTOM CURSOR (Warm Monolith Update)
   ============================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: transform, width, height, opacity;
  contain: layout paint style;
  transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo), background 0.4s, border-color 0.4s;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 0 0 25px 5px rgba(216, 153, 167, 0.4); /* Ambient light source */
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 153, 167, 0.24);
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 184, 196, 0.11) 0%, rgba(216, 153, 167, 0.07) 45%, rgba(216, 153, 167, 0.02) 70%, transparent 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px -10px rgba(216, 153, 167, 0.4);
}

body.hovering .cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--accent-light);
  box-shadow: 0 0 35px 10px rgba(239, 184, 196, 0.6);
}

body.hovering .cursor-ring {
  width: 72px;
  height: 72px;
  border-color: var(--accent-light);
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 184, 196, 0.15) 0%, rgba(216, 153, 167, 0.1) 48%, rgba(216, 153, 167, 0.03) 74%, transparent 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 0 40px -10px rgba(239, 184, 196, 0.5);
}

@media (pointer: coarse) {
  body { cursor: auto; overflow-y: auto; }
  .spatial-world { min-height: 100vh; perspective: none; overflow: hidden; }
  .spatial-scenic { position: relative; transform: none !important; }
  .spatial-scene { position: relative; min-height: auto; transform: none !important; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 32px 0; /* More breathing room */
  transition: background 0.5s var(--ease-out-expo), backdrop-filter 0.5s, padding 0.5s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px 0;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px; /* More breathing room */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo picture,
.footer-center picture {
  display: block;
  line-height: 0;
}

.tt-mark {
  height: 42px;
  width: auto;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
  object-fit: contain;
}

.nav-logo:hover .tt-mark {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 0 10px rgba(216, 153, 167, 0.3));
}

.nav-logo-text-img {
  height: 38px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  object-fit: contain;
}

.nav-logo:hover .nav-logo-text-img {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.4s var(--ease-out-expo);
  position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent);
}

.nav-link:focus-visible,
.btn:focus-visible,
.nav-logo:focus-visible,
.nav-toggle:focus-visible,
.contact-link:focus-visible {
  outline: 2px solid rgba(216, 153, 167, 0.72);
  outline-offset: 5px;
}

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 40px; /* Warm Monolith rounding */
  margin-left: 12px;
  font-weight: 600;
  padding: 10px 24px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh;
  padding: 124px 60px 96px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto auto;
  align-content: center;
  min-height: calc(100svh - 220px);
  gap: 32px 40px;
}

.hero-typography {
  grid-column: 1 / 11;
  grid-row: 2;
  position: relative;
  z-index: 2;
  min-width: 0;
  margin-bottom: 12px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem); /* Massive editorial scale */
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--text-primary);
}

.hero-headline .line {
  display: block;
}

.hero-monogram {
  position: absolute;
  top: 15%; /* Higher up to clear subtext lane */
  right: clamp(16px, 4vw, 60px);
  width: clamp(140px, 20vw, 280px);
  opacity: 0.18; /* Significant reduction to ensure text cuts through */
  pointer-events: none;
  z-index: 1; /* Lowest priority */
  transform: translateZ(-80px) rotate(-4deg); /* Deep spatial push */
  filter: grayscale(1) brightness(0.8);
}

.hero-monogram picture,
.hero-monogram img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-subtext {
  grid-column: 7 / 13;
  grid-row: 3;
  align-self: start;
  justify-self: start;
  max-width: 480px;
  position: relative;
  z-index: 10;
  min-width: 0;
}

.hero-subtext p {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 32px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 1);
}

.hero-cta {
  grid-column: 7 / 12;
  grid-row: 4;
  justify-self: start;
  position: relative;
  z-index: 10;
  min-width: 0;
  margin-top: 12px;
}

.hero-meta {
  grid-column: 1 / 7;
  grid-row: 4;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  z-index: 3;
  min-width: 0;
}

.hero-seal {
  position: absolute;
  right: 0;
  bottom: -24px;
  width: clamp(108px, 11vw, 160px);
  opacity: 0.72;
  pointer-events: none;
  z-index: 2;
}

.hero-seal picture,
.hero-seal img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================
   BUTTONS (Warm Monolith Update)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 80px; /* Maximum kindness */
  transition: 
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), /* Spring physics */
    box-shadow 0.8s var(--ease-out-expo),
    background 0.5s var(--ease-out-expo);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 
    0 10px 40px -10px rgba(216, 153, 167, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-6px) scale(1.03); /* Physical travel */
  box-shadow: 
    0 20px 60px -15px rgba(216, 153, 167, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98); /* Compression on click */
  transition: transform 0.1s var(--ease-out-expo);
}

/* Ambient glow source inside button */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.8s var(--ease-out-expo);
  pointer-events: none;
}

.btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Soft Architecture Glows */
.spatial-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(216, 153, 167, 0.03) 0%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
  position: relative;
  padding: 160px 40px;
  width: 100%;
}

.section-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-num { color: var(--accent); }
.section-slash { opacity: 0.4; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title .line {
  display: block;
}

.section-title--massive {
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.6;
}

.highlight {
  color: var(--accent);
  font-style: italic;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-services {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.services-header {
  margin-bottom: 80px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 100px;
}

.service-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  opacity: 0.6;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.service-arrow {
  color: var(--accent);
  margin: 0 8px;
}

.services-motto {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.motto-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.motto-dash {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

/* ============================================
   DIFFERENCE SECTION
   ============================================ */
.section-difference {
  border-top: 1px solid var(--border);
}

.difference-header {
  margin-bottom: 80px;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.diff-col {
  padding-top: 40px;
}

.diff-label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.diff-x {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1.3;
}

.diff-col--center {
  padding: 0;
}

.diff-center-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 48px 40px;
  position: relative;
}

.diff-center-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--accent);
}

.diff-center-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1;
}

.diff-center-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.diff-center-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.diff-center-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.diff-arrow {
  color: var(--accent);
  font-family: var(--font-mono);
}

.diff-center-seal {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-primary);
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.section-process {
  border-top: 1px solid var(--border);
}

.process-header {
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 24px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.process-arrow {
  display: none;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.section-pricing {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.pricing-header {
  margin-bottom: 80px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.pricing-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}

.pricing-row:hover {
  background: rgba(216, 153, 167, 0.02);
}

.pricing-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1;
}

.pricing-name h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.2;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
}

.pricing-price {
  text-align: right;
}

.price-from {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.flagship-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 12px;
  vertical-align: middle;
}

.pricing-footnote {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footnote-star {
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.pricing-footnote p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section-faq {
  border-top: 1px solid var(--border);
}

.faq-header {
  margin-bottom: 80px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 28px 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.4s var(--ease-out-expo);
  flex-shrink: 0;
  margin-left: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 28px;
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 720px;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.section-contact {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 160px 40px 100px;
}

.contact-main {
  text-align: center;
  margin-bottom: 120px;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-bottom: 48px;
}

.contact-headline .line {
  display: block;
}

.contact-headline .highlight {
  color: var(--accent);
  font-style: italic;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-link, .contact-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-est, .footer-email {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-mark {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

/* ============================================
   ANIMATIONS — ENTRANCE STATES
   ============================================ */
.js-loaded .spatial-scene:not(.is-revealed) .line,
.js-loaded .spatial-scene:not(.is-revealed) .step-num,
.js-loaded .spatial-scene:not(.is-revealed) .service-num,
.js-loaded .spatial-scene:not(.is-revealed) .pricing-num,
.js-loaded .spatial-scene:not(.is-revealed) .diff-label,
.js-loaded .spatial-scene:not(.is-revealed) .diff-center-name,
.js-loaded .spatial-scene:not(.is-revealed) .section-subtitle,
.js-loaded .spatial-scene:not(.is-revealed) .hero-cta,
.js-loaded .spatial-scene:not(.is-revealed) .hero-meta,
.js-loaded .spatial-scene:not(.is-revealed) .hero-monogram,
.js-loaded .spatial-scene:not(.is-revealed) .hero-label,
.js-loaded .spatial-scene:not(.is-revealed) .service-content,
.js-loaded .spatial-scene:not(.is-revealed) .diff-list li,
.js-loaded .spatial-scene:not(.is-revealed) .diff-center-list li,
.js-loaded .spatial-scene:not(.is-revealed) .process-step,
.js-loaded .spatial-scene:not(.is-revealed) .pricing-row,
.js-loaded .spatial-scene:not(.is-revealed) .faq-item,
.js-loaded .spatial-scene:not(.is-revealed) .services-motto,
.js-loaded .spatial-scene:not(.is-revealed) .contact-info,
.js-loaded .spatial-scene:not(.is-revealed) .pricing-footnote,
.js-loaded .spatial-scene:not(.is-revealed) .section-label {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(7px);
}

.js-loaded .spatial-scene:not(.is-revealed) .hero-seal {
  opacity: 0;
}

.js-loaded .spatial-scene.is-revealed .line,
.js-loaded .spatial-scene.is-revealed .step-num,
.js-loaded .spatial-scene.is-revealed .service-num,
.js-loaded .spatial-scene.is-revealed .pricing-num,
.js-loaded .spatial-scene.is-revealed .diff-label,
.js-loaded .spatial-scene.is-revealed .diff-center-name,
.js-loaded .spatial-scene.is-revealed .section-subtitle,
.js-loaded .spatial-scene.is-revealed .hero-subtext,
.js-loaded .spatial-scene.is-revealed .hero-cta,
.js-loaded .spatial-scene.is-revealed .hero-meta,
.js-loaded .spatial-scene.is-revealed .hero-monogram,
.js-loaded .spatial-scene.is-revealed .hero-label,
.js-loaded .spatial-scene.is-revealed .service-content,
.js-loaded .spatial-scene.is-revealed .diff-list li,
.js-loaded .spatial-scene.is-revealed .diff-center-list li,
.js-loaded .spatial-scene.is-revealed .process-step,
.js-loaded .spatial-scene.is-revealed .pricing-row,
.js-loaded .spatial-scene.is-revealed .faq-item,
.js-loaded .spatial-scene.is-revealed .services-motto,
.js-loaded .spatial-scene.is-revealed .contact-info,
.js-loaded .spatial-scene.is-revealed .pricing-footnote,
.js-loaded .spatial-scene.is-revealed .section-label,
.js-loaded .spatial-scene.is-revealed .hero-seal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s var(--ease-out-expo) var(--reveal-delay, 0ms),
    transform 0.75s var(--ease-out-expo) var(--reveal-delay, 0ms),
    filter 0.75s var(--ease-out-expo) var(--reveal-delay, 0ms);
  filter: blur(0);
}

.js-loaded #hero.is-revealed .grid-line {
  opacity: 0.3;
  transform: scaleY(1);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.js-loaded #hero.is-revealed .scroll-indicator {
  opacity: 1;
  transition: opacity 0.8s var(--ease-out-expo) 0.8s;
}

.js-loaded #hero.is-revealed .hero-monogram {
  opacity: 0.18;
  transform: translateZ(-80px) rotate(-4deg);
}

.js-loaded #hero.is-revealed .hero-label:not(.hero-label--right) { --reveal-delay: 80ms; }
.js-loaded #hero.is-revealed .hero-label--right { --reveal-delay: 160ms; }
.js-loaded #hero.is-revealed .hero-headline .line:nth-child(1) { --reveal-delay: 240ms; }
.js-loaded #hero.is-revealed .hero-headline .line:nth-child(2) { --reveal-delay: 315ms; }
.js-loaded #hero.is-revealed .hero-headline .line:nth-child(3) { --reveal-delay: 390ms; }
.js-loaded #hero.is-revealed .hero-headline .line:nth-child(4) { --reveal-delay: 465ms; }
.js-loaded #hero.is-revealed .hero-subtext { --reveal-delay: 560ms; }
.js-loaded #hero.is-revealed .hero-cta { --reveal-delay: 640ms; }
.js-loaded #hero.is-revealed .hero-meta { --reveal-delay: 720ms; }

.js-loaded .spatial-scene:target .line,
.js-loaded .spatial-scene:target .step-num,
.js-loaded .spatial-scene:target .service-num,
.js-loaded .spatial-scene:target .pricing-num,
.js-loaded .spatial-scene:target .diff-label,
.js-loaded .spatial-scene:target .diff-center-name,
.js-loaded .spatial-scene:target .section-subtitle,
.js-loaded .spatial-scene:target .service-content,
.js-loaded .spatial-scene:target .diff-list li,
.js-loaded .spatial-scene:target .diff-center-list li,
.js-loaded .spatial-scene:target .process-step,
.js-loaded .spatial-scene:target .pricing-row,
.js-loaded .spatial-scene:target .faq-item,
.js-loaded .spatial-scene:target .services-motto,
.js-loaded .spatial-scene:target .contact-info,
.js-loaded .spatial-scene:target .pricing-footnote,
.js-loaded .spatial-scene:target .section-label {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ============================================
   MISSING COMPONENT STYLES & FIXES
   ============================================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.4s;
}


.hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  grid-column: 1 / 6;
  grid-row: 1;
  margin-bottom: 14px;
  position: relative;
  z-index: 3;
}

.hero-label--right {
  justify-content: flex-end;
  grid-column: 8 / 13;
  grid-row: 1;
}

.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--border-light);
}

.label-text {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  padding: 7px 16px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.tag-sep {
  color: var(--accent);
  font-size: 0.6rem;
  opacity: 1;
  text-shadow: 0 0 10px rgba(229, 169, 182, 0.3);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
  opacity: 0;
  transform: scaleY(0.72);
  transform-origin: center;
}

.gl-1 { left: 20%; }
.gl-2 { left: 40%; }
.gl-3 { left: 60%; }
.gl-4 { left: 80%; }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite ease-in-out;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 0.3; }
}

.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 184, 196, 0.11) 0%, rgba(216, 153, 167, 0.055) 34%, rgba(216, 153, 167, 0.02) 54%, transparent 72%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  will-change: transform, opacity;
  contain: paint;
  transition: opacity 0.5s;
}

/* Button enhancements */
.btn svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn--large {
  padding: 24px 48px;
  font-size: 1.125rem;
}

/* Nav active state */
.nav-link.active {
  color: var(--accent);
}

/* FAQ button reset */
body.has-custom-cursor .nav-toggle,
body.has-custom-cursor .faq-question {
  cursor: none;
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .spatial-scenic {
    transform: none !important;
  }

  .spatial-scene {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
  }

  body {
    overflow-y: auto !important;
    height: auto !important;
  }

  .spatial-world {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
    perspective: none !important;
  }

  .line, .step-num, .service-num, .pricing-num, .diff-label,
  .diff-center-name, .section-subtitle,
  .hero-subtext, .hero-cta, .hero-meta,
  .hero-monogram, .hero-label, .service-content,
  .diff-list li, .diff-center-list li, .process-step, .pricing-row, .faq-item,
  .services-motto, .contact-info,
  .pricing-footnote, .section-label,
  .grid-line, .scroll-indicator, .hero-tags, .hero-seal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .difference-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
  }
  .diff-col--center {
    grid-column: 1 / -1;
    order: -1;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }

  .section { padding: 100px 24px; }
  .hero { padding: 112px 24px 84px; }
  .nav-inner { padding: 0 24px; }
  .tt-mark { height: 32px; width: auto; }
  .nav-logo { gap: 10px; }
  .nav-logo-text-img { height: 28px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    border-left: 1px solid var(--border);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 0.875rem;
    padding: 12px 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }
  .hero-label--right { display: none; }
  .hero-label,
  .hero-typography,
  .hero-subtext,
  .hero-cta,
  .hero-meta,
  .hero-monogram {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    max-width: 100%;
    min-width: 0;
  }
  .hero-monogram {
    display: none;
  }
  .js-loaded #hero.is-revealed .hero-monogram {
    display: none;
  }
  .hero-subtext,
  .hero-typography {
    width: 100%;
  }
  .hero-cta { justify-self: start; }
  .hero-meta { justify-content: flex-start; margin-top: 8px; }
  .hero-seal { display: none; }
  .hero-headline {
    font-size: 3.05rem;
    line-height: 0.98;
    max-width: 100%;
  }
  .hero-subtext p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-num { font-size: 3rem; }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .diff-col--center { order: 0; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pricing-price { text-align: left; }

  .contact-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .hero-typography,
  .hero-subtext,
  .hero-tags,
  .hero-cta,
  .hero-meta {
    max-width: 342px;
  }
  .hero-headline {
    font-size: 2.55rem;
    line-height: 1.02;
  }
  .hero-headline .line,
  .hero-subtext p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 20px; }
  .nav-logo-text-img { height: 24px; }
  .hero-headline {
    font-size: 2.55rem;
    line-height: 1.02;
  }
  .hero-headline .line,
  .hero-subtext p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-tags {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .tag-sep { display: none; }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }
}

/* ============================================
   ADDITIONS — v3.1 Truth Pass
   ============================================ */

/* Hero CTA row + ghost button */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  background: rgba(216, 153, 167, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 14px 38px -18px rgba(216, 153, 167, 0.35);
}

.btn-ghost:active {
  transform: translateY(-1px) scale(0.99);
  transition: transform 0.1s var(--ease-out-expo);
}

/* Contact CTA row + sub */
.contact-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: -8px 0 28px;
  line-height: 1.55;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ============================================
   SELECTED WORK
   ============================================ */
.section-work {
  background: linear-gradient(180deg, transparent 0%, rgba(216, 153, 167, 0.015) 50%, transparent 100%);
}

.work-header {
  margin-bottom: 80px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: transform 0.6s var(--ease-out-expo), border-color 0.5s, box-shadow 0.5s;
  min-height: 380px;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 153, 167, 0.35);
  box-shadow: 0 30px 80px -40px rgba(216, 153, 167, 0.35);
}

.work-card--featured {
  border-color: rgba(216, 153, 167, 0.25);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(216, 153, 167, 0.04) 100%);
}

.work-card--featured::before {
  content: 'Reference build';
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 9px;
  border-radius: 2px;
}

.work-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.work-card-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.work-card-year {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.work-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
}

.work-card-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.work-card-stats li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 0.8125rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.work-card-stats li span {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-footnote {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 720px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 24px;
}

.work-footnote .footnote-star {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ============================================
   PRICING — INCLUDES + AVAILABILITY
   ============================================ */
.pricing-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
}

.pricing-includes li {
  position: relative;
  padding-left: 14px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.pricing-availability {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 22px;
  border: 1px solid var(--border-light);
  border-radius: 80px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px 2px rgba(216, 153, 167, 0.5);
  animation: availability-pulse 2.4s ease-in-out infinite;
}

@keyframes availability-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .availability-dot { animation: none; }
}

/* ============================================
   RESPONSIVE — WORK + PRICING ADDITIONS
   ============================================ */
@media (max-width: 980px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .work-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .pricing-row {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }
  .pricing-price {
    grid-column: 2;
    text-align: left;
    padding-top: 4px;
  }
  .pricing-includes {
    gap: 4px 14px;
  }
  .contact-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .work-card {
    padding: 32px 26px;
  }
  .work-card-stats li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
