/* ==========================================================================
   Verdance — Regenerative Leadership Consulting
   Design System & Global Styles
   ========================================================================== */

/* Variables */
:root {
  --forest: #1a2e1a;
  --moss: #2d4a2d;
  --sage: #7a9e7a;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --bark: #4a3728;
  --mist: #e8e2d6;
  --error: #a83232;
  --success-bg: #e8f5e8;
  --success-text: #2d4a2d;
}

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

/* Base */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--forest);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.35;
}

a {
  color: var(--moss);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold);
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}

.nav--transparent {
  background: transparent;
}

.nav--transparent.scrolled {
  background: rgba(26, 46, 26, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav--solid {
  background: var(--forest);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.nav-logo:hover {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.75);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream);
}

.nav-link--cta {
  background: var(--gold);
  color: var(--forest) !important;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  margin-left: 8px;
}

.nav-link--cta:hover {
  background: #d4b45a;
  color: var(--forest) !important;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--forest);
  border: 1px solid rgba(122,158,122,0.15);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.88rem;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-item:hover {
  background: rgba(122,158,122,0.12);
  color: var(--gold);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Hero Section (Home page)
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  background: linear-gradient(165deg, var(--forest) 0%, #1f3a1f 40%, #243524 100%);
  color: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(122, 158, 122, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 740px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 560px;
  color: rgba(245, 240, 232, 0.75);
  font-weight: 300;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-location {
  margin-top: 60px;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Page Hero (non-home pages)
   ========================================================================== */

.page-hero {
  padding: 160px 40px 80px;
  background: linear-gradient(165deg, var(--forest) 0%, #1f3a1f 40%, #243524 100%);
  color: var(--cream);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(122, 158, 122, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.page-hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
}

/* ==========================================================================
   Shared Section Styles
   ========================================================================== */

.section {
  padding: 100px 40px;
}

.section--cream {
  background: var(--warm-white);
}

.section--mist {
  background: var(--mist);
}

.section--forest {
  background: var(--forest);
  color: var(--cream);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}

.section--forest .section-header h2 {
  color: var(--cream);
}

.section-header p {
  color: var(--bark);
  font-weight: 300;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section--forest .section-header p {
  color: rgba(245, 240, 232, 0.7);
}

/* Divider strip */
.strip {
  padding: 20px 40px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

/* ==========================================================================
   Philosophy (Home)
   ========================================================================== */

.philosophy {
  padding: 120px 40px;
  background: var(--warm-white);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.philosophy-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--forest);
}

.philosophy-left p {
  color: var(--bark);
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
}

.philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.principle {
  padding-left: 28px;
  border-left: 2px solid var(--sage);
  transition: border-color 0.3s;
}

.principle:hover {
  border-left-color: var(--gold);
}

.principle h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--forest);
}

.principle p {
  font-size: 0.95rem;
  color: var(--bark);
  font-weight: 300;
  line-height: 1.8;
}

/* ==========================================================================
   Services Grid (Home)
   ========================================================================== */

.services {
  padding: 100px 40px;
  background: var(--mist);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}

.services-header p {
  color: var(--bark);
  font-weight: 300;
  max-width: 500px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--warm-white);
  padding: 40px 32px;
  border-radius: 2px;
  border-top: 3px solid var(--forest);
  transition: border-top-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
}

.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--sage);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--bark);
  font-weight: 300;
  line-height: 1.75;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  transition: color 0.3s, gap 0.3s;
}

.service-card-link:hover {
  color: var(--gold);
  gap: 12px;
}

.service-card-link::after {
  content: '\2192';
}

/* ==========================================================================
   Quote Section
   ========================================================================== */

.quote-section {
  padding: 100px 40px;
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}

.quote-section blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.85);
}

.quote-section .attribution {
  margin-top: 24px;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   Closing CTA (Home)
   ========================================================================== */

.closing {
  padding: 120px 40px;
  background: var(--warm-white);
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--forest);
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.05rem;
  color: var(--bark);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn--gold {
  background: var(--gold);
  color: var(--forest);
}

.btn--gold:hover {
  background: #d4b45a;
  color: var(--forest);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
}

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

.btn--forest {
  background: var(--forest);
  color: var(--cream);
}

.btn--forest:hover {
  background: var(--moss);
  color: var(--cream);
}

.btn--large {
  padding: 18px 40px;
  font-size: 0.88rem;
}

/* ==========================================================================
   Service Detail Pages
   ========================================================================== */

.service-detail {
  padding: 100px 40px;
}

.service-detail-inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 20px;
  margin-top: 60px;
}

.service-detail h2:first-child {
  margin-top: 0;
}

.service-detail p {
  color: var(--bark);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-detail p strong {
  color: var(--forest);
  font-weight: 500;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 40px 0;
}

.detail-card {
  background: var(--mist);
  padding: 32px;
  border-radius: 3px;
  border-left: 3px solid var(--sage);
}

.detail-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}

.detail-card p {
  font-size: 0.92rem;
  color: var(--bark);
  margin-bottom: 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.detail-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--mist);
  color: var(--bark);
  font-size: 1rem;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.7;
}

.detail-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--sage);
  border-radius: 50%;
  margin-top: 10px;
}

.service-cta-section {
  margin-top: 60px;
  padding: 48px;
  background: var(--mist);
  border-radius: 3px;
  text-align: center;
}

.service-cta-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}

.service-cta-section p {
  color: var(--bark);
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-intro {
  padding: 100px 40px;
  background: var(--warm-white);
}

.about-intro-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 24px;
}

.about-intro p {
  color: var(--bark);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-values {
  padding: 100px 40px;
  background: var(--mist);
}

.about-values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-values h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-card {
  padding: 36px;
  background: var(--warm-white);
  border-radius: 3px;
  border-top: 3px solid var(--sage);
  transition: border-top-color 0.3s;
}

.value-card:hover {
  border-top-color: var(--gold);
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--bark);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-who {
  padding: 100px 40px;
  background: var(--warm-white);
}

.about-who-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-who h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 24px;
}

.about-who p {
  color: var(--bark);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */

.contact-section {
  padding: 100px 40px;
  background: var(--warm-white);
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--bark);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}

.contact-detail-value {
  color: var(--forest);
  font-weight: 400;
  font-size: 1rem;
}

.contact-detail-value a {
  color: var(--forest);
  border-bottom: 1px solid var(--sage);
  transition: border-color 0.3s;
}

.contact-detail-value a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-form {
  background: var(--mist);
  padding: 48px;
  border-radius: 3px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--forest);
  background: var(--warm-white);
  border: 1px solid rgba(45, 74, 45, 0.15);
  border-radius: 3px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 122, 0.12);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a3728' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  background: var(--success-bg);
  border: 1px solid var(--sage);
  padding: 24px;
  border-radius: 3px;
  text-align: center;
}

.form-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--success-text);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--bark);
  font-weight: 300;
}

.form-error {
  background: #fef2f2;
  border: 1px solid var(--error);
  padding: 12px 16px;
  border-radius: 3px;
  color: var(--error);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}

/* ==========================================================================
   Services Overview Page
   ========================================================================== */

.services-overview {
  padding: 100px 40px;
}

.services-overview-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-overview-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--mist);
  align-items: start;
}

.service-overview-card:last-child {
  border-bottom: none;
}

.service-overview-card .service-number {
  font-size: 0.72rem;
  color: var(--sage);
  margin-bottom: 12px;
}

.service-overview-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.service-overview-card .service-tagline {
  color: var(--sage);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
}

.service-overview-card p {
  color: var(--bark);
  font-weight: 300;
  line-height: 1.85;
  font-size: 1.02rem;
  margin-bottom: 24px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--forest);
  color: rgba(245, 240, 232, 0.5);
  padding: 60px 40px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-location {
  margin-top: 4px;
  font-size: 0.82rem !important;
  color: rgba(245, 240, 232, 0.35) !important;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-overview-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--forest);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(122,158,122,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
  }

  .nav-link {
    padding: 12px 0;
  }

  .nav-link--cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding: 120px 24px 60px;
    min-height: 85vh;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.35;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .page-hero {
    padding: 140px 24px 60px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 80px 24px;
  }

  .philosophy {
    padding: 80px 24px;
  }

  .philosophy-left h2 {
    font-size: 2.2rem;
  }

  .services {
    padding: 80px 24px;
  }

  .quote-section {
    padding: 80px 24px;
  }

  .quote-section blockquote {
    font-size: 1.25rem;
  }

  .closing {
    padding: 80px 24px;
  }

  .closing h2 {
    font-size: 2rem;
  }

  .strip {
    padding: 16px 24px;
    font-size: 0.7rem;
  }

  .contact-section {
    padding: 80px 24px;
  }

  .contact-form {
    padding: 32px 24px;
  }

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

  .about-intro, .about-values, .about-who {
    padding: 80px 24px;
  }

  .service-detail {
    padding: 80px 24px;
  }

  .services-overview {
    padding: 80px 24px;
  }

  .site-footer {
    padding: 48px 24px 0;
  }
}
