/* ==================== VARIABLES ==================== */
:root {
  --copper: #a45200;
  --copper-light: #c06a10;
  --copper-bright: #d47a1a;
  --copper-glow: rgba(164, 82, 0, 0.3);
  --copper-dark: #7a3d00;
  --gray-accent: #a6a6a6;
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --text-primary: #f0f0f0;
  --text-secondary: #888888;
  --text-muted: #555555;
  --border: #222222;
  --border-hover: #333333;
}

/* ==================== RESET ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ==================== NAV ==================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
nav.scrolled { padding: 0.75rem 3rem; }

.logo img { height: 36px; width: auto; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--copper-light); }

.nav-cta {
  background: var(--copper) !important;
  color: #fff !important; padding: 0.6rem 1.5rem;
  border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--copper-light) !important;
  box-shadow: 0 2px 12px rgba(164, 82, 0, 0.25);
}

.mobile-menu {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-menu span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); transition: 0.3s;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 10rem 3rem 6rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Diagonal accent line instead of grid */
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--copper) 40%, var(--copper) 60%, transparent);
  right: clamp(30%, 40vw, 45%);
  opacity: 0.15;
}

.hero-content {
  max-width: 680px; position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--copper-light); margin-bottom: 2.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.12em;
  border-left: 2px solid var(--copper);
  border-radius: 0;
  background: none;
  border-top: none; border-bottom: none; border-right: none;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper-light);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.hero h1 .copper { color: var(--copper-light); }

.hero p {
  font-size: 1.15rem; color: var(--text-secondary);
  max-width: 520px; line-height: 1.8; margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  padding: 0.9rem 2rem; border-radius: 6px;
  background: var(--copper);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--copper-light);
  box-shadow: 0 4px 20px rgba(164, 82, 0, 0.2);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  padding: 0.9rem 2rem; border-radius: 6px;
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text-primary); font-weight: 600; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--text-secondary);
  color: #fff;
}

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat .number {
  font-size: 2rem; font-weight: 800;
  color: var(--text-primary);
  font-family: 'Barlow Condensed', sans-serif;
}
.hero-stat .label {
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ==================== SECTIONS (shared) ==================== */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; color: var(--copper);
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 540px; margin-bottom: 3rem;
}

/* ==================== SERVICES ==================== */
.services {
  padding: 7rem 3rem 6rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.services-list {
  max-width: 900px; margin-top: 3rem;
  display: flex; flex-direction: column; gap: 0;
}

.service-row {
  display: flex; align-items: baseline; gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
  will-change: transform, opacity;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { padding-left: 1rem; }

.service-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--copper);
  flex-shrink: 0; width: 32px;
  letter-spacing: 0.05em;
}

.service-text { flex: 1; }
.service-text h3 {
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.service-row:hover .service-text h3 { color: var(--copper-light); }
.service-text p {
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7;
}

/* ==================== PROCESS TIMELINE ==================== */
.process { padding: 7rem 3rem 5rem; }

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}
.process-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--copper-dark), var(--copper-light));
  transition: width 3s ease;
}
.process-timeline.line-active .process-line::after {
  width: 100%;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.process-step:hover .process-icon {
  border-color: var(--copper);
  box-shadow: 0 0 20px rgba(164, 82, 0, 0.2);
}

.process-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  color: var(--copper);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.process-step h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-top: 0.4rem; margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.process-step:hover h3 { color: var(--copper-light); }

.process-step p {
  font-size: 0.85rem; color: var(--text-secondary);
  line-height: 1.6; max-width: 200px;
}

/* ==================== PROJECT MAP ==================== */
.map-section {
  padding: 5rem 3rem 6rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.map-header { margin-bottom: 2rem; }
.map-container {
  position: relative;
  width: 100%; max-width: 1100px; margin: 0 auto;
  aspect-ratio: 2.2 / 1;
  border-radius: 12px; overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.map-container canvas { width: 100%; height: 100%; display: block; }
.map-tooltip {
  position: absolute; pointer-events: none;
  background: rgba(10,10,10,0.95); border: 1px solid var(--copper);
  border-radius: 4px; padding: 0.4rem 0.7rem;
  font-size: 0.75rem; font-family: 'Barlow Condensed', sans-serif;
  color: var(--copper-light); white-space: nowrap;
  opacity: 0; transition: opacity 0.15s;
  letter-spacing: 0.03em;
}
.map-tooltip.visible { opacity: 1; }
.map-stats {
  display: flex; justify-content: center; gap: 5rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.map-stat { text-align: center; }
.map-stat-number {
  font-size: 2.25rem; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--text-primary);
}
.map-stat-label {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ==================== ABOUT ==================== */
.about { padding: 7rem 3rem 5rem; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
  margin-bottom: 5rem;
}

.about-image {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  position: sticky; top: 6rem;
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-grid.in-view .about-image {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-orientation: from-image;
}

.about-story .section-label,
.about-story .section-title,
.story-content > p {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-grid.in-view .about-story .section-label { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.about-grid.in-view .about-story .section-title { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.about-grid.in-view .story-content > p:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.about-grid.in-view .story-content > p:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
.about-grid.in-view .story-content > p:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }

.about-story .section-title { margin-bottom: 2rem; }
.about-story .copper { color: var(--copper-light); }

.story-content { display: flex; flex-direction: column; gap: 1.25rem; }
.story-lead {
  font-size: 1.15rem; color: var(--text-secondary);
  line-height: 1.8; font-weight: 500;
}
.story-content p {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.8;
}

.values-title {
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: 2rem; letter-spacing: -0.02em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  perspective: 800px;
}

.flip-card {
  aspect-ratio: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) rotateX(15deg);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.values-grid.in-view .flip-card { opacity: 1; transform: translateY(0) rotateX(0); }
.values-grid.in-view .flip-card:nth-child(1) { transition-delay: 0.15s; }
.values-grid.in-view .flip-card:nth-child(2) { transition-delay: 0.45s; }
.values-grid.in-view .flip-card:nth-child(3) { transition-delay: 0.75s; }
.values-grid.in-view .flip-card:nth-child(4) { transition-delay: 1.05s; }

.flip-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-style: preserve-3d;
}

@media (hover: hover) {
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
}
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  transform-style: preserve-3d;
}

.flip-card-front {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.flip-card-front h4 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary);
}

.flip-card-back {
  background: var(--copper);
  border: 1px solid var(--copper-light);
  transform: rotateY(180deg);
}

.flip-card-back p {
  font-size: 0.95rem; color: #fff;
  line-height: 1.7; font-weight: 500;
}

/* Floating content that hovers above the card surface */
.flip-float {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem;
  transform: translateZ(80px);
}

.flip-float svg {
  filter: drop-shadow(0 12px 25px rgba(0,0,0,0.6));
}

.flip-float h4 {
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

.flip-card-back .flip-float {
  transform: translateZ(60px);
  padding: 0 0.5rem;
}
.flip-card-back .flip-float h4 {
  font-weight: 700; font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.flip-card-back .flip-float p {
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ==================== CTA ==================== */
.cta {
  padding: 5rem 3rem; text-align: center; position: relative;
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  max-width: 700px; margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
}
.cta-inner::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--copper);
}
.cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; margin-bottom: 1rem;
}
.cta p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; }

/* ==================== FOOTER ==================== */
footer {
  border-top: 1px solid var(--border);
  padding: 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 3rem 3rem;
}
.footer-brand { max-width: 280px; }
.footer-logo { height: 32px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; color: var(--text-secondary);
  margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-col a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--copper-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 3rem; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--copper-light); }

/* ==================== BACK TO TOP ====================*/
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-card); color: var(--copper-light);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
  z-index: 99;
}
.back-to-top.visible {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--bg-card-hover); border-color: var(--copper);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
  .process-step p { font-size: 0.8rem; max-width: 160px; }
  .process-step h3 { font-size: 1rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .mobile-menu { display: flex; }

  .hero { padding: 7rem 1.5rem 4rem; }
  .hero::after { display: none; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }

  .services, .process, .about, .cta { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { position: static; aspect-ratio: 16/10; }
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .process-line { display: none; }
  .process-snake {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .process-snake .snake-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 2;
    stroke-linecap: round;
  }
  .process-snake .snake-fill {
    fill: none;
    stroke: var(--copper);
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(164, 82, 0, 0.4));
  }
  .process-step { z-index: 1; }
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
  }
  .process-step p { max-width: 320px; }
  .values-grid { grid-template-columns: 1fr; }
  .service-row { flex-direction: row; text-align: left; }
  .service-number { font-size: 0.8rem; width: 28px; }
  .map-section { padding: 4rem 1.5rem; }
  .map-container { aspect-ratio: 1.5 / 1; }
  .map-stats { gap: 2rem; }
  .map-stat-number { font-size: 1.75rem; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
  .cta-inner { padding: 2.5rem 1rem; }
}

/* ==================== CONTACT PAGE ==================== */
.contact-hero {
  padding: 10rem 3rem 4rem;
  position: relative; overflow: hidden;
}
.contact-content { max-width: 700px; position: relative; z-index: 2; }
.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.contact-hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 500px; line-height: 1.7; }
.copper { color: var(--copper-light); }

.contact-section { padding: 0 3rem 6rem; }

.contact-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto;
}

.contact-form {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.8rem; font-weight: 600; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.85rem 1rem;
  color: var(--text-primary); font-size: 0.95rem;
  font-family: inherit; transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--copper);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
.checkbox-item {
  display: flex; align-items: center; gap: 0.6rem;
  cursor: pointer; font-size: 0.9rem; color: var(--text-primary);
  padding: 0.65rem 0.85rem; border-radius: 6px;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  text-transform: none; font-weight: 400; letter-spacing: 0;
}
.checkbox-item:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.checkbox-item input[type="checkbox"] { display: none; }
.checkbox-item .checkmark {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid var(--border-hover); border-radius: 4px;
  background: transparent; transition: all 0.2s;
  position: relative;
}
.checkbox-item input[type="checkbox"]:checked ~ .checkmark {
  background: var(--copper); border-color: var(--copper);
}
.checkbox-item input[type="checkbox"]:checked ~ .checkmark::after {
  content: '';
  position: absolute; left: 5px; top: 2px;
  width: 5px; height: 9px;
  border: solid var(--text-primary); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
}
.info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.info-item { margin-bottom: 1rem; }
.info-label {
  display: block; font-size: 0.7rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.25rem;
}
.info-item a { color: var(--copper-light); font-size: 0.95rem; transition: color 0.2s; }
.info-item a:hover { color: var(--copper-bright); }

.timeline { display: flex; flex-direction: column; gap: 1.25rem; }
.timeline-item { display: flex; gap: 1rem; align-items: flex-start; }
.timeline-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--copper); flex-shrink: 0; margin-top: 7px;
}
.timeline-item strong { font-size: 0.9rem; }
.timeline-item p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.15rem; }

.form-status {
  font-size: 0.9rem; padding: 0.75rem 1rem; border-radius: 6px;
  display: none;
}
.form-status.success {
  display: block; background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3); color: #22c55e;
}
.form-status.error {
  display: block; background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3); color: #ef4444;
}

@media (max-width: 768px) {
  .contact-hero { padding: 7rem 1.5rem 3rem; }
  .contact-section { padding: 0 1.5rem 4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

/* ==================== CAREERS PAGE ==================== */
.careers-why {
  padding: 0 3rem 5rem;
}
.careers-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.careers-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s;
}
.careers-why-card:hover { border-color: var(--copper); }
.careers-why-card svg { margin-bottom: 1rem; }
.careers-why-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.careers-why-card p {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.6;
}

.careers-positions {
  padding: 5rem 3rem 6rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.positions-list {
  max-width: 800px;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.position-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.position-card:hover { border-color: var(--border-hover); }

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
}
.position-header:hover { background: var(--bg-card-hover); }

.position-info h3 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.5rem;
}

.position-meta {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.position-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(164, 82, 0, 0.1);
  border: 1px solid rgba(164, 82, 0, 0.2);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--copper-light);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.position-chevron {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.position-card.open .position-chevron {
  transform: rotate(180deg);
}

.position-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
}
.position-card.open .position-details {
  max-height: 1200px;
  padding: 0 2rem 2rem;
}

.position-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.position-closing {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--copper-light);
  margin-top: 1.5rem;
}

.position-details h4 {
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.75rem; margin-top: 1.25rem;
  color: var(--copper-light);
}

.position-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.position-details li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.position-details li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

.careers-general {
  max-width: 800px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.careers-general p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.careers-general a {
  color: var(--copper-light);
  transition: color 0.2s;
}
.careers-general a:hover { color: var(--copper-bright); }

.no-positions {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.no-positions a { color: var(--copper-light); }

@media (max-width: 768px) {
  .careers-why { padding: 0 1.5rem 4rem; }
  .careers-positions { padding: 4rem 1.5rem; }
  .position-header { padding: 1.25rem 1.25rem; }
  .position-card.open .position-details { padding: 0 1.25rem 1.5rem; }
}

/* ==================== 404 PAGE ==================== */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.error-page h1 {
  font-size: 8rem; font-weight: 900; color: var(--copper);
  font-family: 'Barlow Condensed', sans-serif; line-height: 1;
}
.error-page h2 { font-size: 1.5rem; margin: 1rem 0; }
.error-page p { color: var(--text-secondary); margin-bottom: 2rem; }
