/* ============================================================
   ARROX GLOBAL LLC — DEEP FOREST EMERALD THEME
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Deep Forest Emerald Theme */
  --ink: #0A1C16;
  --ink-2: #142E25;
  --paper: #FAF9F6;
  --paper-2: #F0EFEB;
  --accent: #D4AF37;
  --accent-light: #E5C765;
  --slate: #4A5D54;
  --slate-2: #8AA397;
  --line: rgba(212, 175, 55, 0.3);
  --line-dark: rgba(212, 175, 55, 0.15);
  
  /* Fallbacks for legacy inline styles */
  --steel-300: var(--slate-2);
  --steel-500: var(--slate);
  --navy-800: var(--ink);
}

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

body {
  margin: 0;
  font-family: 'Lora', serif;
  color: var(--slate);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 em,
h2 em,
h3 em {
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.mono {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

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

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

.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--ink); /* Default dark text for light backgrounds */
}

.hero .btn-ghost, 
.page-hero .btn-ghost, 
.service-hero .btn-ghost,
#cookie-banner .btn-ghost {
  color: var(--paper); /* White text for dark backgrounds */
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--accent);
}

.btn-dark:hover {
  background: var(--accent);
  color: var(--ink);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--accent);
}

/* HEADER & NAV */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
  height: 85px;
  box-sizing: border-box;
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px !important;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 32px;
}

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

.brand img {
  height: 40px;
  width: auto;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0.05em;
  display: grid;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  white-space: nowrap;
}

.brand-name span {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--slate-2);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.nav-link {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 500;
}

.nav-link .chevron {
  font-size: 0.5rem;
  margin-left: 2px;
  color: var(--ink);
  opacity: 0.6;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ink);
  min-width: 240px;
  border-top: 2px solid var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 16px 0;
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 24px;
  color: var(--paper);
  font-family: 'Lora', serif;
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background: var(--ink-2);
  color: var(--accent-light);
}

.nav-cta {
  background: var(--ink);
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 12px 24px;
  transition: background 0.3s ease;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--ink);
}

/* HERO BAND */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

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

.hero h1 {
  color: var(--paper);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 900px;
  margin-bottom: 32px;
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--slate-2);
  max-width: 700px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.signature-mark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.1;
  pointer-events: none;
  animation: fadeScaleIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.95) rotate(-10deg);
  }

  to {
    opacity: 0.1;
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
}

/* STATS STRIP */
.stats-strip {
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  background: var(--paper-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-col {
  border-left: 1px solid var(--line);
  padding: 0 32px;
}

.stat-col:first-child {
  border-left: none;
  padding-left: 0;
}

.stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 2.5rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.15em;
}

/* SECTION STRUCTURE */
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: var(--paper-2);
}

.div-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
}

.roman-numeral {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--line);
  line-height: 0.8;
  margin-right: 48px;
}

.div-content h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.div-content p {
  font-size: 1.15rem;
  max-width: 600px;
}

/* SERVICE GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--paper);
  padding: 48px 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section.alt .service-card {
  background: var(--paper-2);
}

.service-card:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(10, 28, 22, 0.15);
}

.service-card:hover h4 {
  color: var(--paper);
}

.service-card:hover p {
  color: var(--slate-2);
}

.service-num {
  font-family: 'Space Mono', monospace;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.service-card h4 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 32px;
}

.service-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  font-weight: 700;
}

/* PROCESS TIMELINE */
.process-timeline {
  display: flex;
  margin-top: 64px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-right: 24px;
}

.process-node {
  width: 32px;
  height: 32px;
  background: var(--paper);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 700;
}

.process-step h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* PILL TAGS */
.pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.pill {
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 4px;
  /* subtle rounding instead of full pill for a more structured look */
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  font-weight: 700;
}

/* FAQ ACCORDION */
.faq-accordion {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  max-width: 800px;
  font-size: 1.1rem;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
}

.testimonials-section .eyebrow {
  color: var(--accent-light);
}

.testimonials-section h2 {
  color: var(--paper);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.testimonial-card {
  border: 1px solid var(--line-dark);
  padding: 48px 32px;
  background: var(--ink-2);
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--slate-2);
  margin-bottom: 32px;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 4px;
  font-family: 'Lora', serif;
}

.testimonial-author-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
}

/* FOOTER */
.site-footer {
  background: var(--ink-2);
  color: var(--paper);
  padding: 80px 0 32px;
}

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

.footer-brand .brand-name {
  color: var(--paper);
}

.footer-brand p {
  color: var(--slate-2);
  margin-top: 24px;
  max-width: 300px;
}

.footer-col h5 {
  font-family: 'Space Mono', monospace;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 24px;
}

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

.footer-col li {
  margin-bottom: 12px;
  color: var(--slate-2);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--slate-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  color: var(--paper);
}

.footer-legal-links button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.footer-legal-links button:hover {
  color: var(--paper);
}

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

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .stat-col {
    border-left: none;
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.nav-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 85px;
    right: 0;
    left: auto;
    width: 80%;
    max-width: 320px;
    background: var(--paper);
    padding: 32px;
    height: calc(100vh - 85px);
    overflow-y: auto;
    border-left: 1px solid var(--line);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
    white-space: normal;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    margin-right: -8px; /* Shifting to the right side a little */
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    margin: 6px 0;
    transition: all 0.3s ease;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transform: none;
    border-top: none;
    background: transparent;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav-item.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 10px 0 10px 16px;
  }

  .nav-item:hover .dropdown-menu {
    /* override hover on mobile */
    opacity: 0;
    visibility: hidden;
  }

  .nav-item.active:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding: 80px 0;
  }

  .roman-numeral {
    display: none;
  }

  .service-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    flex-direction: column;
  }

  .process-timeline::before {
    left: 16px;
    top: 0;
    width: 1px;
    height: 100%;
  }

  .process-step {
    padding-left: 48px;
    padding-right: 0;
    margin-bottom: 32px;
  }

  .process-node {
    position: absolute;
    left: 0;
    top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-text p {
  margin: 0;
  color: var(--slate-2);
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    gap: 24px;
  }
}

/* ==========================================
   SUBPAGE STYLES (MAPPED TO DESIGN SYSTEM)
   ========================================== */

/* Subpage Heroes */
.page-hero, .service-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.page-hero h1, .service-hero h1 {
  color: var(--paper);
  font-size: clamp(2.5rem, 4vw, 4rem);
  max-width: 800px;
  margin-bottom: 24px;
}
.page-hero .lead, .service-hero .lead {
  color: var(--slate-2);
  font-size: 1.25rem;
  max-width: 700px;
}
.breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-2);
  margin-bottom: 32px;
}
.breadcrumb a {
  color: var(--accent);
}
.service-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--accent);
  padding: 6px 12px;
  margin-bottom: 32px;
  font-weight: 700;
}
.service-hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

/* Subpage Grids & Layouts */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.value-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.value-card, .benefit-card {
  background: var(--paper);
  padding: 48px 32px;
  transition: all 0.3s ease;
}
.section.alt .value-card, .section.alt .benefit-card {
  background: var(--paper-2);
}
.value-card h4, .benefit-card h4 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.value-card p, .benefit-card p {
  color: var(--slate);
  margin: 0;
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 24px;
}

/* Subpage Stat List */
.stat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stat .num {
  font-family: 'Space Mono', monospace;
  font-size: 3rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .lbl {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

/* Subpage Process Row */
.process-row {
  display: flex;
  margin-top: 64px;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.process-step .pstep-num {
  width: auto;
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* FAQ Grid Alternative Layout */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}
.faq-item h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* About Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}
.tl-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.tl-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

/* Responsive tweaks for subpages */
@media (max-width: 992px) {
  .about-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .value-grid, .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tl-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .value-grid, .benefits-grid {
    grid-template-columns: 1fr;
  }
  .process-row {
    flex-direction: column;
  }
  .process-row::before {
    left: 16px;
    top: 0;
    width: 1px;
    height: 100%;
  }
  .process-step {
    padding-left: 48px;
    margin-bottom: 32px;
  }
  .process-step .pstep-num {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
  }
  .process-step .pstep-num::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
  }
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.info-block {
  margin-bottom: 24px;
}
.info-block .lbl {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 4px;
}
.info-block .val {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}
.map-frame {
  margin-top: 32px;
  width: 100%;
  height: 300px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-form {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  margin-bottom: 24px;
}
.field label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 700;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.checkbox-row input[type="checkbox"] {
  margin-top: 4px;
}
.checkbox-row label {
  font-size: 0.85rem;
  color: var(--slate);
}

/* Legal Pages */
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}
.legal-toc {
  position: sticky;
  top: 120px;
}
.toc-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
}
.legal-toc ol {
  list-style: decimal inside;
  padding: 0;
  margin: 0 0 24px 0;
}
.legal-toc li {
  margin-bottom: 12px;
}
.legal-toc a {
  color: var(--slate);
  font-size: 0.9rem;
}
.legal-toc a:hover {
  color: var(--ink);
}
.legal-updated {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--slate-2);
}
.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 48px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-note {
  background: var(--line-dark);
  padding: 24px;
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 48px;
  border-left: 4px solid var(--accent);
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.legal-content th, .legal-content td {
  border: 1px solid var(--line);
  padding: 16px;
  text-align: left;
}
.legal-content th {
  background: var(--paper-2);
  font-weight: 600;
}

@media (max-width: 992px) {
  .contact-grid, .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .legal-toc {
    position: static;
  }
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 24px;
  }
}

/* About Page Specifics */
.why {
  padding: 80px 0;
  background: var(--paper-2);
}