:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --surface-alt: #f5f4f2;
  --text: #111111;
  --muted: #757575;
  --border: #e5e3df;
  --accent: #2d5a3d;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --radius: 10px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1f4029;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(224, 222, 173, 0.5);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}

.nav nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav nav a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  color: #555555;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav nav a:hover {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 5.5rem 0 3.5rem;
  background: linear-gradient(135deg, #faf9f7 0%, #f8f7f5 100%);
}

.hero-inner {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #888888;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #000000;
}

.hero h2 {
  margin: 1.2rem 0 1.8rem;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.38;
  font-weight: 600;
  color: #1a1a1a;
  max-width: 840px;
}

.lead {
  max-width: 900px;
  font-size: 1.04rem;
  color: #2a2a2a;
  margin: 0 0 1.2rem;
  line-height: 1.75;
  font-weight: 450;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  border-radius: 7px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.button:hover {
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.15);
}

.button-primary:hover {
  background: #1f4029;
  box-shadow: 0 10px 28px rgba(45, 90, 61, 0.25);
  transform: translateY(-3px);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.image-section {
  padding-top: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-label {
  margin: 0 0 0.6rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.section-heading h3 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: #000000;
}

.section-heading p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1.01rem;
  font-weight: 450;
}

.feature-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--surface);
}

.section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
}

.image-caption {
  margin: 0 0 2.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card,
.approach-card {
  background: var(--surface);
  border: 1px solid #f0ede8;
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.035);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover,
.approach-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #e8e5df;
  transform: translateY(-3px);
}

.card h4,
.approach-card h4 {
  margin: 0 0 0.9rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #000000;
}

.card p,
.approach-card p {
  margin: 0;
  color: #2c2c2c;
  line-height: 1.7;
  font-weight: 450;
}

.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.text-block {
  max-width: 860px;
}

.text-block p {
  margin: 0 0 1.1rem;
  font-size: 1.04rem;
  color: #2a2a2a;
  line-height: 1.75;
  font-weight: 450;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
  align-items: start;
}

.approach-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.approach-card li {
  margin-bottom: 0.55rem;
}

.narrow {
  margin-top: 1.5rem;
}

.fees-note {
  margin-top: 0.85rem !important;
  font-style: italic;
}

.contact-form {
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid #f0ede8;
  border-radius: var(--radius);
  padding: 2.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.035);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

label {
  margin-bottom: 0.55rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.89rem;
  font-weight: 700;
  color: #1a1a1a;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border: 1.5px solid #e8e5df;
  border-radius: 7px;
  font: inherit;
  background: #ffffff;
  color: var(--text);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.12);
  background: #fafaf9;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.site-footer p {
  margin: 0;
  color: #6a6a6a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 450;
}

@media (max-width: 900px) {
  .about-layout,
  .cards,
  .approach-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 0;
  }

  .hero {
    padding-top: 4.7rem;
  }
}