@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  /* Palette */
  --c-bg: #FDFCF8;
  --c-surface: #FFFFFF;
  --c-surface-hover: #F7F5F0;
  --c-text-main: #1A2433;
  --c-text-muted: #5D6675;
  --c-primary: #2B4C7E; /* Deep Graphite/Blue hue ~234 */
  --c-accent: #C0563F; /* Terracotta */
  --c-gold: #C5A065; /* Muted Gold */
  --c-border: #E5E2DA;
  
  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;
  
  /* Typography */
  --font-sans: 'Manrope', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Layout */
  --container-width: 1120px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--c-bg);
  color: var(--c-text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
ul { list-style: none; }

/* Typography Scale */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--c-text-main); }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; margin-bottom: var(--sp-md); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--sp-sm); }
h3 { font-size: 1.5rem; margin-bottom: var(--sp-xs); font-weight: 600; }
p { margin-bottom: var(--sp-sm); color: var(--c-text-muted); max-width: 65ch; }
.eyebrow {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}

/* Utilities & Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: var(--c-primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--c-accent);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: var(--c-text-main);
  color: var(--c-text-main);
}
.btn-outline:hover {
  background-color: var(--c-text-main);
  color: #fff;
}

/* Header / Nav */
.site-header {
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text-main);
  letter-spacing: -0.02em;
}
.brand-logo span { color: var(--c-accent); }
.nav-links {
  display: flex;
  gap: var(--sp-md);
}
.nav-link {
  font-size: 0.95rem;
  color: var(--c-text-main);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--c-accent);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--c-accent); }
.nav-link:hover::after { width: 100%; }
.contact-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-primary);
}

/* Hero Section */
.hero-section {
  padding: var(--sp-xl) 0;
  background-color: var(--c-bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-lg);
  align-items: center;
}
.hero-content {
  max-width: 600px;
}
.hero-image-wrap {
  position: relative;
  height: 500px;
  background-color: #EBE7E0; /* Placeholder color */
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-decor {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--c-gold);
  z-index: -1;
}

/* Cards Grid */
.card-grid-section {
  padding: var(--sp-xl) 0;
  background-color: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.card {
  background: var(--c-bg);
  padding: var(--sp-md);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: var(--c-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transform: translateY(-5px);
}
.card-icon {
  width: 40px;
  height: 40px;
  background-color: var(--c-primary);
  margin-bottom: var(--sp-sm);
  border-radius: 4px;
}
.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Stats Row */
.stats-section {
  padding: var(--sp-lg) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
  text-align: center;
}
.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--c-primary);
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-weight: 300;
}
.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 auto;
  margin-top: 0.5rem;
}

/* CTA Band */
.cta-section {
  padding: var(--sp-xl) 0;
  background-color: var(--c-text-main);
  color: #fff;
}
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-content h2 { color: #fff; }
.cta-content p { color: #A0AAB8; font-size: 1.1rem; margin-bottom: var(--sp-md); }

/* FAQ */
.faq-section {
  padding: var(--sp-xl) 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-sm) 0;
}
.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--c-accent); }
.faq-answer {
  margin-top: var(--sp-sm);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background-color: #111824;
  color: #fff;
  padding: var(--sp-lg) 0;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-lg);
}
.footer-brand { margin-bottom: var(--sp-sm); }
.footer-brand h4 { color: #fff; margin-bottom: var(--sp-sm); font-family: var(--font-serif); font-size: 1.5rem; }
.footer-col h5 {
  color: var(--c-gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-sm);
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: #A0AAB8; }
.footer-col a:hover { color: #fff; }
.copyright {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #5D6675;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { height: 350px; order: -1; }
  .card-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; } /* Simplified mobile handling */
} img,svg,video{max-width:100%;height:auto} *{box-sizing:border-box} 