/* ANT Manufacturing - Design System */

/* ========================================
   CSS Variables - Dark Theme
   ======================================== */
:root {
  /* Colors */
  --color-bg: #0a0a0a;
  --color-surface: #1a1a1a;
  --color-surface-elevated: #222222;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-subtle: rgba(255, 255, 255, 0.06);

  --color-text-primary: #f0ece4;
  --color-text-secondary: rgba(255, 255, 255, 0.55);
  --color-text-muted: rgba(255, 255, 255, 0.35);

  --color-accent: #B87333;
  --color-accent-hover: #CD853F;
  --color-accent-muted: rgba(184, 115, 51, 0.12);

  /* Typography */
  --font-sans: 'Libre Baskerville', 'Georgia', serif;
  --font-display: 'Libre Baskerville', 'Georgia', serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--color-text-secondary);
}

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

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

/* ========================================
   Layout
   ======================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

section {
  padding: var(--space-2xl) 0;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-lg) 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.nav.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.4s ease;
}

.nav__logo span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  transition: color 0.4s ease;
}

.nav--scrolled .nav__logo {
  color: #f0ece4;
}

.nav--scrolled .nav__logo span {
  color: rgba(255, 255, 255, 0.5);
}

.nav__links {
  display: flex;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.4s ease;
}

.nav__link:hover {
  color: #fff;
}

.nav__link--cta {
  color: #fff;
  font-weight: 500;
}

.nav__link--cta:hover {
  color: #fff;
}

.nav--scrolled .nav__link {
  color: rgba(255, 255, 255, 0.6);
}

.nav--scrolled .nav__link:hover {
  color: #fff;
}

.nav--scrolled .nav__link--cta {
  color: #f0ece4;
}

.nav--scrolled .nav__link--cta:hover {
  color: #fff;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.4s ease;
}

.nav--scrolled .nav__toggle span {
  background: #fff;
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
  }

  .nav__links--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__link {
    display: block;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border-subtle);
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 40px;
  position: relative;
  overflow: visible;
  background: #0a0a0a;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 620px;
}

.hero__image {
  position: absolute;
  right: -5%;
  top: 80px;
  bottom: -150px;
  width: 50%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
}

.hero__image img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.hero__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-xl);
}

.hero__title {
  margin-bottom: var(--space-xl);
  color: rgba(240, 236, 228, 0.55);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
}

.hero__accent {
  color: #B87333;
  font-weight: 500;
  text-shadow:
    2px 0 0 rgba(0,0,0,0.4),
    4px 0 0 rgba(0,0,0,0.2),
    1px 2px 0 rgba(0,0,0,0.3),
    3px 2px 0 rgba(0,0,0,0.2),
    0 4px 0 rgba(0,0,0,0.25);
}

.hero__subtitle {
  color: rgba(240, 236, 228, 0.85);
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  font-family: var(--font-display);
  font-weight: 300;
}

.hero__cta {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-3xl);
}

/* Gold CTA button */
.btn--gold {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 3px), #B87333;
  background-size: 100% 3px, 100% 100%;
  color: #0a0a0a;
  padding: 0.85rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 3px;
  transition: all var(--transition-base);
}

.btn--gold:hover {
  background: #CD853F;
}

.btn--learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: var(--space-lg);
  transition: color var(--transition-base);
}

.btn--learn-more:hover {
  color: var(--color-text-primary);
}

/* Hero responsive */
@media (max-width: 1023px) {
  .hero__image {
    position: absolute;
    right: 0;
    top: 80px;
    bottom: auto;
    transform: none;
    width: 30%;
    height: auto;
    opacity: 1;
  }

  .hero__content {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero__image {
    width: 90%;
    right: -25%;
    height: 45vh;
    opacity: 1;
  }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.btn--primary {
  background: #f0ece4;
  color: #0a0a0a;
}

.btn--primary:hover {
  background: #ffffff;
}

.btn--secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-text-secondary);
  background: var(--color-surface-elevated);
}

/* Hero-specific button overrides */
.hero .btn--primary {
  background: #fff;
  color: #1a1a1a;
}

.hero .btn--primary:hover {
  background: rgba(255, 255, 255, 0.85);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header--center {
  text-align: center;
}

.section-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  max-width: 600px;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* ========================================
   Problem Section
   ======================================== */
.problem {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding-top: var(--space-md);
  padding-bottom: var(--space-2xl);
}

.problem__content {
  display: grid;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .problem__content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.problem__text h2 {
  margin-bottom: var(--space-xl);
}

.problem__text p {
  margin-bottom: var(--space-lg);
}

.problem__text p:last-child {
  margin-bottom: 0;
}

.problem__typer {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  min-height: 1.4em;
  font-family: inherit;
}

.typer-cursor {
  animation: blink 0.8s step-end infinite;
  color: var(--color-text-muted);
  font-weight: 300;
}

@keyframes blink {
  50% { opacity: 0; }
}

.problem__visual img {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* ========================================
   Showcase Section
   ======================================== */
.showcase {
  padding: var(--space-2xl) 0;
}

.showcase__figure {
  margin: 0;
}

.showcase__figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

.showcase__figure figcaption {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ========================================
   Services / What We Do
   ======================================== */
.services--dark {
  background: #0a0a0a;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.services__intro {
  background: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: var(--space-2xl) calc(50vw - 50%);
  padding-bottom: var(--space-lg);
  margin-bottom: 0;
}

.services--dark .section-label {
  color: #B87333;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  margin-bottom: var(--space-xl);
  opacity: 1 !important;
  filter: none !important;
  animation: none !important;
  transform: none !important;
  font-weight: 500;
  font-family: var(--font-sans);
  text-align: left;
}

.services--dark .section-title {
  color: rgba(240, 236, 228, 0.85) !important;
  font-weight: 300;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.01em;
  line-height: 1.5;
  max-width: 650px;
  text-align: left;
}

.services__grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);  gap: var(--space-xl);
  }
}

.services__pillars-label {
  color: #B87333;
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: left;
  margin-top: 0;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
  font-family: var(--font-sans);
  margin-bottom: var(--space-lg);
}

.service-item {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item--no-border {
  border-top: none;
  padding-top: 0;
}

.service-item__number {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  font-family: var(--font-mono);
}

.service-item__title {
  color: rgba(240, 236, 228, 0.9);
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
  font-weight: 500;
}

.service-item p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
}

a.service-item {
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

a.service-item:hover {
  border-color: #B87333;
}

a.service-item:hover .service-item__title {
  color: #B87333;
  transition: color 0.3s ease;
}

a.service-item:hover .service-item__number {
  color: #B87333;
  transition: color 0.3s ease;
}

/* ========================================
   How We Work / Process
   ======================================== */
.process--refined {
  background: #111;
  padding: var(--space-3xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.process--refined .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process--refined .section-header .btn--learn-more {
  align-self: center;
}

.process--refined .section-subtitle {
  color: rgba(240, 236, 228, 0.95);
}

.process--refined .section-label {
  color: #B87333;
  font-size: 1rem;
  letter-spacing: 0.4em;
  font-weight: 500;
  font-family: var(--font-sans);
  margin-bottom: var(--space-md);
}

.process--refined .section-title {
  color: rgba(240, 236, 228, 0.85);
  font-weight: 300;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.process__headline {
  max-width: 680px;
}

.process--refined .btn--learn-more {
  display: inline-block;
  margin-top: var(--space-3xl);
  background: transparent;
  color: #B87333;
  border: 1px solid #B87333;
  padding: 0.7rem 1.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s, background 0.3s ease, color 0.3s ease;
}

.process--refined .btn--learn-more.visible {
  opacity: 1;
  transform: translateY(0);
}

.process--refined .btn--learn-more:hover {
  background: #B87333;
  color: #0a0a0a;
}

.process__list {
  display: grid;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .process__list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl) var(--space-4xl);
  }
}

.process-item {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-subtle);
}

.process-item__number {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
}

.process-item__title {
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
  font-weight: 500;
}

/* ========================================
   Industries Section
   ======================================== */
.industries--dark {
  background: #111;
  padding: var(--space-2xl) 0;
}

.industries--dark .section-label {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: var(--space-md);
}

.industries--dark .section-title {
  margin-bottom: var(--space-4xl);
}

.industries__grid {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .industries__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl) var(--space-3xl);
  }
}

.industries__item {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.industries__item h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.industries__item p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   Image Background (for sections with faded image bg)
   ======================================== */
.image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.image-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.82);
  z-index: 1;
}

.image-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: blur(2px);
  opacity: 0.5;
}

/* ========================================
   Audience / Who We Serve
   ======================================== */
.audience {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.audience__content {
  display: grid;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .audience__content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.audience__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.audience__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.audience__item::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-bottom: var(--space-lg);
}

.cta-section p {
  margin-bottom: var(--space-2xl);
}

.cta-section--dark {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-2xl) 0 var(--space-3xl) 0;
}

.cta-section--dark h2 {
  color: rgba(240, 236, 228, 0.85);
  font-family: var(--font-display);
  font-weight: 400;
}

.cta-section--dark p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  line-height: 1.8;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: var(--space-2xl) 0;
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #f5f5f5;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(240, 236, 228, 0.7);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f5f5f5;
}

.footer__logo span {
  color: #a0a0a0;
  font-weight: 400;
}

.footer__location {
  font-size: 0.85rem;
  color: #a0a0a0;
  letter-spacing: 0.02em;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__contact-link {
  font-size: 0.85rem;
  color: #a0a0a0;
  transition: color var(--transition-fast);
}

.footer__contact-link:hover {
  color: #f5f5f5;
}

.footer__links {
  display: flex;
  gap: var(--space-lg);
}

.footer__link {
  font-size: 0.875rem;
  color: #a0a0a0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: #f5f5f5;
}

.footer__copy {
  width: 100%;
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: #666;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: var(--space-4xl);
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.form-group input,
.form-group textarea {
  padding: var(--space-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  padding: var(--space-2xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  height: fit-content;
}

.contact-info h3 {
  margin-bottom: var(--space-xl);
}

.contact-info__item {
  margin-bottom: var(--space-lg);
}

.contact-info__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.contact-info__value {
  color: var(--color-text-primary);
}

.contact-info__value a {
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

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

/* ========================================
   About Page
   ======================================== */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  gap: var(--space-3xl);
}

.about-section {
  padding: var(--space-3xl) 0;
}

.about-section:nth-child(even) {
  background: var(--color-surface);
}

.about-section--image {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.team-layout {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .team-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.team-layout__photos {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.team-layout__photos .team-member__photo--right {
  margin-top: -30px;
}

.team-grid {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-member {
  padding: var(--space-2xl);
  background: var(--color-surface-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.team-member__photo {
  width: 200px;
  padding: 8px 8px 32px 8px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--space-xl);
}

.team-member__photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
}

.team-member__photo--left {
  transform: rotate(-3deg);
}

.team-member__photo--right {
  transform: rotate(3deg);
}

.team-member__name {
  margin-bottom: var(--space-xs);
}

.team-member__role {
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

/* ========================================
   How It Works Page
   ======================================== */
.hiw-hero {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: var(--space-4xl);
}

.hiw-hero .container {
  position: relative;
  z-index: 2;
}

.timeline-section {
  padding-top: var(--space-4xl);
}

.timeline {
  position: relative;
  padding-left: var(--space-3xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-3xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3xl) + 8px);
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid #0a0a0a;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item h3 {
  margin-bottom: var(--space-md);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animation */
.hero__content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero__label { animation-delay: 0.1s; }
.hero__title { animation-delay: 0.15s; }
.hero__punchline { animation-delay: 0.35s; }
.hero__cta { animation-delay: 0.55s; }

/* Section label shimmer animation */
@keyframes shimmerFocus {
  0% {
    opacity: 0;
    filter: blur(16px);
    letter-spacing: 1em;
    text-shadow: none;
  }
  30% {
    opacity: 0.1;
    filter: blur(8px);
    letter-spacing: 0.6em;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  }
  50% {
    opacity: 0.3;
    filter: blur(4px);
    letter-spacing: 0.45em;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  }
  70% {
    opacity: 0.6;
    filter: blur(1px);
    letter-spacing: 0.38em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 80px rgba(255, 255, 255, 0.15);
  }
  85% {
    opacity: 0.85;
    filter: blur(0);
    letter-spacing: 0.35em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    opacity: 0.85;
    filter: blur(0);
    letter-spacing: 0.35em;
    text-shadow: none;
  }
}

.section-label.animate-on-scroll {
  opacity: 0;
  filter: blur(16px);
}

.section-label.animate-on-scroll.visible {
  animation: shimmerFocus 3.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Reframe Typewriter Effect */
.reframe-typer {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.reframe-typer__active {
  min-height: 60px;
  margin-bottom: var(--space-md);
}

.reframe-typer__negative {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm) 0;
  min-height: 1.5rem;
}

.reframe-typer__negative-text {
  transition: all 0.3s ease;
}

.reframe-typer__negative-text.struck {
  text-decoration: line-through;
  opacity: 0.5;
}

.reframe-typer__positive {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin: 0;
  min-height: 1.5rem;
  font-weight: 500;
}

.reframe-typer__cursor {
  color: var(--color-accent);
  animation: cursorBlink 0.7s step-end infinite;
  margin-left: 2px;
}

@keyframes cursorBlink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}

.reframe-typer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: opacity 0.5s ease;
}

.reframe-typer__list.fading {
  opacity: 0;
}

.reframe-typer__list-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  animation: slideDown 0.4s ease forwards;
}

.reframe-typer__list-item .negative {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.reframe-typer__list-item .positive {
  font-size: 0.875rem;
  color: var(--color-accent);
  opacity: 0.8;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Utility Classes
   ======================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Homepage - Rebuilt Feb 2026
   ======================================== */

/* Hero */
.hero-home {
  background: #0a0a0a;
  padding: 140px 0 70px;
  overflow: hidden;
}

.hero-home__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-home__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #B87333;
  margin-bottom: 1.5rem;
}

.hero-home__title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #f0ece4;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-home__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-home__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-home__phone {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.hero-home__phone:hover {
  color: #fff;
}

.hero-home__image img {
  width: 100%;
  border-radius: 0;
}

/* Copper button */
.btn--copper {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: #B87333;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn--copper:hover {
  background: #CD853F;
}

/* Capabilities */
.capabilities-home {
  background: #111;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.capabilities-home__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.capabilities-home__heading {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #f0ece4;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.capabilities-home__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cap-item {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cap-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cap-item__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f0ece4;
  margin-bottom: 0.3rem;
}

.cap-item__detail {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.capabilities-home__compliance {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #B87333;
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

.capabilities-home__image img {
  width: 100%;
  border-radius: 4px;
}

/* Metrics */
.metrics-home {
  background: #0a0a0a;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.metrics-home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.metric-item {
  text-align: center !important;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-item__number {
  display: block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #B87333;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.metric-item__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  text-align: center;
}

/* Client Proof */
.proof-home {
  background: #111;
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-home__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.proof-home__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #B87333;
  margin-bottom: 1.5rem;
}

.proof-home__title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: #f0ece4;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.proof-home__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 500px;
}

.proof-home__image img {
  width: 100%;
  border-radius: 4px;
}

/* CTA */
.cta-home {
  background: #0a0a0a;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-home__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-home__title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #f0ece4;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.cta-home__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-home__link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.cta-home__link:hover {
  color: #fff;
}

.cta-home__divider {
  color: rgba(255, 255, 255, 0.2);
}

.cta-home__guarantee {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3rem;
  font-style: italic;
}

/* Homepage responsive */
@media (max-width: 900px) {
  .hero-home__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-home {
    padding: 120px 0 60px;
  }

  .capabilities-home__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .capabilities-home__image {
    order: -1;
  }

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

  .proof-home__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .metrics-home__grid {
    grid-template-columns: 1fr;
  }

  .cta-home__contact {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-home__divider {
    display: none;
  }
}
