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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #e8e0d0;
  background: #050505;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
  color: #f0ece4;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; font-family: 'DM Sans', sans-serif; font-weight: 500; }
h4 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 500; }

em { font-style: italic; color: #a8884e; }

p { color: #888; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a8884e;
  margin-bottom: 0.75rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

.section-alt { background: #0a0a0a; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-top: 0.25rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: transparent;
  color: #a8884e;
  border: 1px solid #a8884e;
}
.btn-primary:hover {
  background: #a8884e;
  color: #050505;
}

.btn-ghost {
  background: transparent;
  color: #888;
  border: none;
  padding-left: 0;
  letter-spacing: 0.04em;
  text-transform: none;
}
.btn-ghost:hover { color: #a8884e; }

.btn-outline {
  background: transparent;
  color: #666;
  border: 1px solid #222;
  font-size: 0.8rem;
}
.btn-outline:hover {
  border-color: #a8884e;
  color: #a8884e;
}

.btn-full { width: 100%; text-align: center; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  height: 68px;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #141414;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #f0ece4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo .em { color: #a8884e; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: #a8884e; }

.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8884e;
  border: 1px solid #a8884e;
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: #a8884e;
  color: #050505;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #a8884e;
  margin-left: auto;
}

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #141414;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 520px;
  height: 520px;
  border: 1px solid #141414;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 40px;
  right: 0px;
  width: 340px;
  height: 340px;
  border: 1px solid #111;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
}

.hero-heading {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin: 0.5rem 0 1.25rem;
  max-width: 14ch;
  line-height: 1.05;
  color: #f0ece4;
}

.hero-sub {
  max-width: 52ch;
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-ticker {
  margin-top: auto;
  padding: 1rem 2rem;
  border-top: 1px solid #141414;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.dot { color: #222; }

/* ===== STATS ===== */
.stats {
  border-bottom: 1px solid #141414;
  padding: 3.5rem 0;
  background: #080808;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: #a8884e;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 1px solid #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
  background: #1a1a1a;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1.75rem;
  background: #050505;
  transition: background 0.2s;
}
.card:hover { background: #0a0a0a; }

.card-icon {
  font-size: 1.2rem;
  color: #a8884e;
  margin-bottom: 0.25rem;
}

.card h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; color: #e8e0d0; }
.card p { font-size: 0.88rem; color: #555; margin: 0; }

.card-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a8884e;
  margin-top: auto;
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #1e1e1e;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.process-step h4 { margin-bottom: 0.4rem; color: #c8bea8; }
.process-step p { font-size: 0.88rem; color: #555; }

/* ===== CTA BAND ===== */
.cta-band {
  padding: 5rem 0;
  background: #080808;
  border-top: 1px solid #141414;
  border-bottom: 1px solid #141414;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #f0ece4;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 40ch;
}

.cta-band .btn-primary {
  background: transparent;
  color: #a8884e;
  border-color: #a8884e;
  white-space: nowrap;
}
.cta-band .btn-primary:hover {
  background: #a8884e;
  color: #050505;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid #141414;
  background: #050505;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-inner .nav-logo {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.footer-descriptor {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  margin: 0;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  transition: color 0.15s;
}
.footer-nav a:hover { color: #a8884e; }

.footer-divider {
  width: 32px;
  height: 1px;
  background: #1a1a1a;
  margin: 0.25rem 0;
}

.footer-copy {
  font-size: 0.72rem;
  color: #2a2a2a;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #141414;
}

.page-hero h1 { margin: 0.5rem 0 1rem; }

.page-hero-sub {
  max-width: 56ch;
  font-size: 1.05rem;
  color: #666;
  margin: 0;
}

/* ===== ABOUT PAGE ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.two-col h2 { margin: 0.5rem 0 1.25rem; }
.two-col > div:first-child p { color: #666; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  font-size: 1.1rem;
  color: #a8884e;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.value-item h4 { margin-bottom: 0.2rem; color: #c8bea8; }
.value-item p { font-size: 0.88rem; color: #555; }

/* ===== SERVICES PAGE ===== */
.service-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid #111;
}
.service-block:first-child { padding-top: 0; }
.service-block:last-child { border-bottom: none; }

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.4rem;
}

.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  line-height: 1;
}

.service-content h2 { margin: 0 0 1rem; }
.service-content p { color: #666; }

.service-list {
  list-style: none;
  margin: 1.25rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.92rem;
  color: #666;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #a8884e;
  font-size: 0.85rem;
}

/* ===== SERVICE PILLARS ===== */
.service-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin-bottom: 4rem;
  background: #141414;
  border: 1px solid #141414;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem;
  background: #050505;
}

.pillar-icon {
  font-size: 1.1rem;
  color: #a8884e;
  margin-bottom: 0.25rem;
}

.pillar h4 { margin-bottom: 0.2rem; color: #c8bea8; font-size: 0.9rem; letter-spacing: 0.04em; }
.pillar p { font-size: 0.85rem; color: #444; margin: 0; }

.section-divider {
  border: none;
  border-top: 1px solid #111;
  margin-bottom: 4rem;
}

/* ===== SERVICE TAGS ===== */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.25rem 0;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: transparent;
  color: #a8884e;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 1px;
  border: 1px solid #2a2218;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.contact-form-wrap h2,
.contact-info h2 { margin-bottom: 2rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid #1a1a1a;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: #e8e0d0;
  background: #0a0a0a;
  transition: border-color 0.15s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #333; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #a8884e; }

.form-group select option { background: #0a0a0a; color: #e8e0d0; }
.form-group textarea { resize: vertical; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 4rem 2rem;
  border: 1px solid #1a1a1a;
  border-radius: 2px;
}

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0e0b07;
  color: #a8884e;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a2218;
}

.form-success h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: #f0ece4; }
.form-success p { color: #555; font-size: 0.92rem; }

.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1rem;
  color: #a8884e;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-block h4 { margin-bottom: 0.3rem; color: #c8bea8; font-size: 0.85rem; letter-spacing: 0.04em; }
.info-block p { font-size: 0.88rem; color: #555; line-height: 1.6; }
.info-block a { color: #a8884e; }
.info-block a:hover { text-decoration: underline; }

.response-pledge {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #0a0a0a;
  border-left: 2px solid #a8884e;
}
.response-pledge p { font-size: 0.88rem; color: #555; margin: 0; }
.response-pledge strong { color: #c8bea8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .service-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-heading { font-size: 2.8rem; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 4rem 0; }
}
