@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Palette: Deep Charcoal, Muted Sand, Oxidized Copper, Cold Grey */
  --color-bg: #F9F8F6;
  --color-bg-surface: #FFFFFF;
  --color-text-main: #1A1B1E;
  --color-text-muted: #5A5D63;
  --color-primary: #2B2D31; /* Deep Charcoal */
  --color-accent: #B07D62; /* Oxidized Copper/Terracotta */
  --color-accent-hover: #96664E;
  --color-border: #EBE9E5;
  --color-border-focus: #B07D62;

  /* Spacing Scale (Fluid) */
  --space-xs: clamp(0.5rem, 0.8vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 1.5rem);
  --space-lg: clamp(1.5rem, 4vw, 2.5rem);
  --space-xl: clamp(2rem, 6vw, 4rem);
  --space-xxl: clamp(4rem, 10vw, 8rem);

  /* Typography */
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --text-xs: clamp(0.7rem, 0.9vw, 0.75rem);
  --text-sm: clamp(0.8rem, 1vw, 0.9rem);
  --text-base: clamp(0.9rem, 1.2vw, 1rem);
  --text-lg: clamp(1.1rem, 1.5vw, 1.25rem);
  --text-xl: clamp(1.5rem, 3vw, 2.25rem);
  --text-2xl: clamp(2rem, 4.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 6vw, 5rem);

  /* UI Language */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.06);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  font-size: var(--text-base);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Container System - CRITICAL */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

h1 { font-size: var(--text-3xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-2xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-xl); }

p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

/* Layout & Sections */
section {
  padding-block: var(--space-xxl);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Header / Nav */
.hdr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-block: var(--space-md);
  background: rgba(249, 248, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

.hdr__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

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

.hdr__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
}

.hdr__link:hover, .hdr__link--active {
  color: var(--color-primary);
}

.hdr__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
}

/* Mobile Nav Toggle (Simple CSS Implementation) */
.hdr__toggle { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 2em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text-main);
}

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

.btn--text {
  background: none;
  padding: 0;
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}

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

/* Hero Component */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(176, 125, 98, 0.05), transparent 40%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__content {
  max-width: 600px;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background: var(--color-bg-surface);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent);
}

.card__title {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

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

.faq-question {
  padding: var(--space-md) 0;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.faq-answer {
  padding-bottom: var(--space-md);
  display: none; /* Would need JS to toggle, showing basic structure */
}

/* CTA Band */
.cta-band {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: var(--space-xxl) var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.7); margin-inline: auto; }

/* Footer */
.ftr {
  background-color: #111111;
  color: #888;
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xl);
  font-size: var(--text-sm);
}

.ftr__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-xl);
}

.ftr__brand h4 { color: #fff; margin-bottom: var(--space-sm); }
.ftr__col h5 { color: #fff; font-size: var(--text-sm); margin-bottom: var(--space-md); }
.ftr__link { display: block; margin-bottom: var(--space-sm); color: #888; }
.ftr__link:hover { color: #fff; }
.ftr__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content { margin-inline: auto; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
  .hdr__nav { display: none; } /* Simplified for raw CSS/HTML demo */
}

@media (max-width: 600px) {
  .ftr__grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: var(--space-lg); }
} *{box-sizing:border-box} html{-webkit-text-size-adjust:100%} img,svg,video{max-width:100%;height:auto} 