@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-elevated: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-dark-surface: #1e293b;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --text-light: #f8fafc;
  --border-light: #e2e8f0;
  --border-dark: #334155;
  --accent-copper: #c2410c;
  --accent-copper-hover: #9a3412;
  --accent-blue: #0284c7;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.site-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  height: 42px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background-color: var(--accent-copper);
  color: var(--text-light);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, transform 0.1s ease;
  cursor: pointer;
}

.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--accent-copper-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background-color: transparent;
  color: var(--text-main);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--text-main);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
  padding: 40px 0 56px;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-copper);
  background-color: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.125rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.hero-description {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item strong {
  color: var(--text-main);
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background-color: var(--bg-dark);
}

.hero-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* Sections Common */
.section-padding {
  padding: 72px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-copper);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services Disciplines */
.disciplines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.disciplines-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discipline-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.discipline-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 6px;
  display: inline-block;
}

.discipline-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.discipline-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.disciplines-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.disciplines-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

/* Workflow Steps */
.workflow-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.workflow-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.workflow-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.workflow-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.workflow-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  background-color: var(--bg-page);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-copper);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-copper);
}

.step-body h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Technical Specs Table */
.specs-section {
  background-color: var(--bg-page);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.specs-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.specs-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.specs-table-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.specs-table th {
  background-color: var(--bg-elevated);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
}

.specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table td.spec-name {
  font-weight: 600;
  color: var(--text-main);
  width: 32%;
}

.specs-table td.spec-deliverable {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent-copper);
}

/* Studio & Operator Philosophy */
.philosophy-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.philosophy-text p {
  font-size: 0.9688rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.philosophy-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.philosophy-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.studio-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.fact-box {
  background-color: var(--bg-page);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.fact-box .label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-subtle);
  display: block;
  margin-bottom: 4px;
}

.fact-box .value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Rates & Pilot Section */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rate-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.rate-card.featured {
  border: 2px solid var(--accent-copper);
  box-shadow: var(--shadow-lg);
}

.rate-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background-color: var(--accent-copper);
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.rate-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.rate-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.rate-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 18px;
}

.rate-price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-subtle);
}

.rate-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.rate-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.rate-features li::before {
  content: '✓';
  color: var(--accent-copper);
  font-weight: 700;
}

/* FAQ Accordion */
.faq-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--bg-page);
  overflow: hidden;
}

.faq-card details {
  width: 100%;
}

.faq-card summary {
  padding: 18px 24px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.15s ease;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-copper);
  transition: transform 0.2s ease;
}

.faq-card details[open] summary::after {
  content: '−';
}

.faq-card details[open] summary {
  background-color: #f1f5f9;
}

.faq-answer {
  padding: 18px 24px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-surface);
}

/* Intake & Contact Form */
.intake-section {
  background-color: var(--bg-page);
}

.intake-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
}

.intake-info p {
  font-size: 0.9688rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-meta {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
}

.meta-row {
  margin-bottom: 14px;
}

.meta-row:last-child {
  margin-bottom: 0;
}

.meta-row .label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-subtle);
  display: block;
}

.meta-row .val {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
}

.intake-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-main);
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-copper);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
  background-color: var(--bg-surface);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--accent-copper);
  width: 16px;
  height: 16px;
}

.checkbox-group label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.checkbox-group label a {
  color: var(--accent-copper);
  text-decoration: underline;
}

.statutory-notice {
  font-size: 0.75rem;
  color: var(--text-subtle);
  line-height: 1.45;
  background-color: var(--bg-page);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.status-message {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  display: none;
}

.status-message.success {
  display: block;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.status-message.error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Footer */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 380px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  color: var(--accent-copper);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

.footer-links a:hover, .footer-links a:focus-visible {
  color: var(--text-light);
}

.footer-address {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  font-style: normal;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #64748b;
}

.footer-legal-row {
  display: flex;
  gap: 20px;
}

.footer-legal-row a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-legal-row a:hover {
  color: var(--text-light);
}

/* Secondary Page Layouts */
.legal-page-header {
  padding: 48px 0 32px;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.legal-content {
  padding: 56px 0;
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 32px 0 12px;
  color: var(--text-main);
}

.legal-content p, .legal-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.disclosure-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.disclosure-table th, .disclosure-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9375rem;
}

.disclosure-table th {
  background-color: var(--bg-elevated);
  text-align: left;
  width: 32%;
  color: var(--text-main);
  font-weight: 700;
}

.disclosure-table td {
  color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .disciplines-grid, .workflow-layout, .specs-grid, .philosophy-grid, .intake-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .rates-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .disciplines-media img, .workflow-media img, .specs-media img, .philosophy-media img {
    height: 320px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: auto;
  }
  .nav-wrapper {
    height: 64px;
  }
  .desktop-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background-color: var(--bg-surface);
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
    align-items: flex-start;
  }
  .desktop-nav.is-active {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-section {
    padding: 24px 0 40px;
  }
  .hero-title {
    font-size: 1.875rem;
  }
  .hero-image-card img {
    height: 240px;
  }
  .hero-trust-bar {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}