:root {
  /* Base Colors */
  --bg-primary: #fcfbfa; /* Warm Off-white / Alabaster */
  --bg-secondary: #f3efe9; /* Oatmeal / Sand */
  --surface-color: #ffffff; /* Pure White */

  /* Accent Colors */
  --accent-primary: #2c3531; /* Deep Forest / Charcoal - Core Emotion: Grounded */
  --accent-secondary: #d1bfae; /* Warm Taupe / Clay - Support */
  --accent-cta: #8b7355; /* Burnished Bronze / Camel - Highlight */

  /* Typography Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-muted: #8e8e8e;

  /* Typography System */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* UI System */
  --radius-button: 16px;
  --radius-card: 20px;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.08);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Layout System */
  --container-max: 1320px;
  --section-spacing: 120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 1.125rem; font-weight: 300; }
.text-muted { color: var(--text-muted); font-size: 0.9rem; }

/* Layout & Containers */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5%;
}

section {
  padding: var(--section-spacing) 0;
}

.bg-secondary { background-color: var(--bg-secondary); }
.bg-surface { background-color: var(--surface-color); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-button);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-cta);
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: #7a6448;
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
}

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

.btn-secondary:hover {
  border-color: var(--accent-primary);
  background-color: var(--bg-secondary);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(252, 251, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-primary);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-cta);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 2px;
  background-color: var(--accent-primary);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px; /* offset for header */
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 600px;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  color: var(--accent-cta);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 500;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

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

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image-wrapper img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-primary);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

/* Core Features / Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  text-align: left;
  border: 1px solid rgba(209, 191, 174, 0.2);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-cta);
}

.service-card h3 {
  font-size: 1.5rem;
}

/* Split Image / Text Sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Social Proof / Trust */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--accent-secondary);
  border-bottom: 1px solid var(--accent-secondary);
}

.stat-item h4 {
  font-size: 3rem;
  color: var(--accent-cta);
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--accent-primary);
  margin-bottom: 2rem;
}

.testimonial-author {
  font-weight: 500;
  color: var(--text-primary);
}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--surface-color);
  padding: 4rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  margin-top: -80px; /* Overlap effect */
  position: relative;
  z-index: 10;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--accent-secondary);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--accent-cta);
}

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

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.contact-info {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: var(--radius-card);
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.info-item {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.info-value {
  font-size: 1.125rem;
  color: var(--text-primary);
}

/* Footer */
.site-footer {
  background-color: var(--accent-primary);
  color: #fff;
  padding: 6rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--bg-primary);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-secondary);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #d1bfae;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(209, 191, 174, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #d1bfae;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

/* Page Headers (for internal pages) */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  text-align: center;
}

/* Legal Pages Styling */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  margin-top: 3rem;
  font-size: 2rem;
}
.legal-content p {
  margin-bottom: 1.5rem;
}
.legal-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}
.legal-content li {
  margin-bottom: 0.5rem;
}