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

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  /* Earth Tone Palette */
  --cream: #FAF8F3;
  --warm-white: #FFFDF9;
  --mist: #F0E8D8;
  --beige: #E4D5BF;
  --tan: #C8A882;
  --sage: #7B9B6E;
  --sage-dark: #5E7D52;
  --sage-light: #A8C49C;
  --terracotta: #C06946;
  --terracotta-dark: #A5573A;
  --gold: #C8985E;
  --brown-light: #9A7A63;
  --brown: #6B4C35;
  --espresso: #2E1F14;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

  /* Space Scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* Layout */
  --max-width: 1200px;
  --content-width: 780px;
  --padding-x: 1.25rem;

  /* Effects */
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-s: 0 1px 3px rgba(46, 31, 20, 0.08);
  --shadow-m: 0 4px 20px rgba(46, 31, 20, 0.10);
  --shadow-l: 0 12px 40px rgba(46, 31, 20, 0.13);
  --transition: 240ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--espresso);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { flex: 1; }

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

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

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input, textarea, select { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--espresso);
}

p { max-width: 65ch; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--padding-x);
}

.container--narrow { max-width: var(--content-width); }

/* ===========================
   SKIP LINK
   =========================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: var(--s-3) var(--s-6);
  background-color: var(--sage);
  color: white;
  font-weight: 600;
  z-index: 200;
  border-bottom-right-radius: var(--radius-s);
  transition: top var(--transition);
}

.skip-link:focus { top: 0; }

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-s); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon { flex-shrink: 0; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

.nav-logo-tagline {
  font-size: 0.6875rem;
  color: var(--sage);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--s-8);
}

.nav-links a {
  font-size: 0.9375rem;
  color: var(--brown);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background-color: var(--sage);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--sage); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: none; }

/* Hamburger Toggle */
.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-s);
  transition: background-color var(--transition);
}

.nav-toggle:hover { background-color: var(--mist); }

.nav-toggle-bar {
  width: 20px;
  height: 1.5px;
  background-color: var(--espresso);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 4rem 0 0;
  background-color: var(--cream);
  z-index: 99;
  padding: var(--s-6) var(--padding-x);
  border-top: 1px solid var(--beige);
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--brown);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--beige);
  transition: color var(--transition);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--sage); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.625rem var(--s-6);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-m);
}

.btn-sage {
  background-color: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.btn-sage:hover, .btn-sage:focus-visible {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-m);
}

.btn-outline {
  background-color: transparent;
  color: var(--espresso);
  border-color: var(--beige);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background-color: var(--mist);
  border-color: var(--tan);
}

.btn-lg {
  padding: 0.875rem var(--s-8);
  font-size: 1rem;
}

/* ===========================
   BADGE
   =========================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-1) var(--s-4);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-sage {
  background-color: rgba(123, 155, 110, 0.15);
  color: var(--sage-dark);
  border: 1px solid rgba(123, 155, 110, 0.3);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--sage);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===========================
   HERO SECTION (Home)
   =========================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--s-20);
  padding-bottom: var(--s-20);
  background: linear-gradient(155deg, var(--cream) 0%, var(--mist) 55%, #E8D8C0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 155, 110, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 105, 70, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge { margin-bottom: var(--s-6); }

.hero-tagline {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
}

.hero-tagline-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--sage);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin-bottom: var(--s-6);
}

.hero-headline em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-mission {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: var(--s-10);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

.hero-brand-mark {
  position: absolute;
  right: var(--padding-x);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  width: min(280px, 30vw);
  pointer-events: none;
}

/* ===========================
   PILLARS SECTION
   =========================== */
.pillars {
  padding-block: var(--s-20);
}

.section-header { margin-bottom: var(--s-12); }

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--s-3);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--brown-light);
  line-height: 1.7;
  max-width: 520px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

.pillar-card {
  background-color: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: var(--s-8);
  border: 1px solid var(--beige);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
  border-color: var(--tan);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
}

.pillar-icon--sage { background-color: rgba(123, 155, 110, 0.15); }
.pillar-icon--terracotta { background-color: rgba(192, 105, 70, 0.12); }
.pillar-icon--gold { background-color: rgba(200, 152, 94, 0.14); }

.pillar-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--s-3);
}

.pillar-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--brown-light);
  max-width: 100%;
}

/* ===========================
   COMING SOON SECTION
   =========================== */
.coming-soon {
  background: linear-gradient(145deg, var(--espresso) 0%, #4A2E1E 100%);
  padding-block: var(--s-20);
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 155, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.coming-soon-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.coming-soon-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background-color: rgba(123, 155, 110, 0.18);
  border: 1px solid rgba(123, 155, 110, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: var(--s-6);
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--s-5);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.coming-soon-text {
  font-size: 1.0625rem;
  color: var(--tan);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--s-10);
  line-height: 1.75;
}

.coming-soon-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: rgba(250, 248, 243, 0.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.625rem var(--s-5);
  border: 1px solid rgba(250, 248, 243, 0.2);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  text-decoration: none;
}

.email-link:hover {
  color: var(--cream);
  background-color: rgba(250, 248, 243, 0.08);
  border-color: rgba(250, 248, 243, 0.4);
}

/* ===========================
   PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  background: linear-gradient(155deg, var(--cream) 0%, var(--mist) 100%);
  padding-top: var(--s-16);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid var(--beige);
}

.page-hero-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--s-3);
}

.page-hero-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
}

.page-hero-subtitle {
  font-size: 1.0625rem;
  color: var(--brown-light);
  line-height: 1.7;
}

.page-hero-meta {
  margin-top: var(--s-5);
  font-size: 0.875rem;
  color: var(--brown-light);
}

/* ===========================
   LEGAL CONTENT
   =========================== */
.legal-content { padding-block: var(--s-16); }

.legal-body {
  max-width: var(--content-width);
}

.legal-body h2 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: var(--s-12);
  margin-bottom: var(--s-4);
  padding-top: var(--s-8);
  border-top: 1px solid var(--beige);
  color: var(--espresso);
}

.legal-body h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
  color: var(--brown);
}

.legal-body p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: var(--s-4);
  max-width: 100%;
}

.legal-body ul, .legal-body ol {
  padding-left: var(--s-6);
  margin-bottom: var(--s-5);
}

.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }

.legal-body li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: var(--s-2);
}

.legal-body a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover { color: var(--sage); }

.legal-body strong {
  color: var(--espresso);
  font-weight: 600;
}

.legal-notice {
  background-color: rgba(192, 105, 70, 0.08);
  border: 1px solid rgba(192, 105, 70, 0.2);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-m);
  padding: var(--s-5) var(--s-6);
  margin-bottom: var(--s-8);
}

.legal-notice p {
  color: var(--brown) !important;
  margin-bottom: 0 !important;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-notice strong { color: var(--terracotta-dark) !important; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { padding-block: var(--s-16); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: var(--s-4);
}

.contact-info-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--brown-light);
  margin-bottom: var(--s-8);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background-color: var(--mist);
  border-radius: var(--radius-m);
  border: 1px solid var(--beige);
  text-decoration: none;
  transition: all var(--transition);
}

.contact-detail:hover {
  background-color: var(--beige);
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background-color: var(--sage);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-light);
  display: block;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--espresso);
  font-weight: 500;
  display: block;
  margin-top: 1px;
}

/* Contact Form */
.contact-form-card {
  background-color: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: var(--s-8);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-m);
}

.form-group { margin-bottom: var(--s-5); }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: var(--s-2);
  letter-spacing: 0.01em;
}

.form-label .required { color: var(--terracotta); }

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem var(--s-4);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-m);
  background-color: var(--cream);
  color: var(--espresso);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123, 155, 110, 0.15);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--tan); }

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

.form-submit {
  width: 100%;
  padding: var(--s-4);
  font-size: 1rem;
  margin-top: var(--s-2);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--brown-light);
  text-align: center;
  margin-top: var(--s-4);
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: var(--s-10) var(--s-6);
}

.form-success.active { display: block; }

.form-success-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(123, 155, 110, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-5);
}

.form-success h3 {
  font-size: 1.375rem;
  margin-bottom: var(--s-3);
}

.form-success p {
  color: var(--brown-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-inline: auto;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background-color: var(--espresso);
  padding-top: var(--s-12);
  padding-bottom: var(--s-8);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-10);
}

.footer-brand {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  text-decoration: none;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--sage-light);
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--brown-light);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
}

.footer-nav-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: var(--s-4);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer-nav-links a {
  font-size: 0.9rem;
  color: var(--brown-light);
  transition: color var(--transition);
}

.footer-nav-links a:hover { color: var(--sage-light); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(250, 248, 243, 0.1);
  margin-bottom: var(--s-6);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--brown-light);
}

.footer-legal {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--brown-light);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--sage-light); }

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ===========================
   FOCUS STYLES
   =========================== */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===========================
   RESPONSIVE — 480px+
   =========================== */
@media (min-width: 480px) {
  .coming-soon-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===========================
   RESPONSIVE — 768px+
   =========================== */
@media (min-width: 768px) {
  :root { --padding-x: 2rem; }

  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }

  .hero {
    padding-top: var(--s-24);
    padding-bottom: var(--s-24);
  }

  .hero-headline {
    font-size: clamp(2.75rem, 5vw, 4rem);
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.6fr;
    align-items: start;
  }

  .form-row { grid-template-columns: 1fr 1fr; }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ===========================
   RESPONSIVE — 1024px+
   =========================== */
@media (min-width: 1024px) {
  :root { --padding-x: 2.5rem; }

  .pillars-grid { gap: var(--s-8); }

  .pillar-card { padding: var(--s-10); }

  .contact-form-card { padding: var(--s-10); }
}

/* ===========================
   PRINT
   =========================== */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .badge,
  .hero-brand-mark,
  .mobile-menu { display: none !important; }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .legal-body p,
  .legal-body li { color: #333; }
}
