:root {
  --bg: #f6f4f1;
  --surface: #ffffff;
  --surface-alt: #efeae4;
  --text: #1a1714;
  --muted: #5c534a;
  --line: #ddd5cb;
  --accent: #0d5c4a;
  --accent-dark: #094339;
  --accent-soft: #e8f5f1;
  --gold: #b8860b;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(26, 23, 20, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, 92%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--accent);
}

.menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.menu a:hover {
  color: var(--accent);
}

.section {
  padding: 80px 0;
}

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

.hero {
  background: linear-gradient(165deg, #faf8f5 0%, #e8f0ec 45%, #f0ebe4 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}

.lead {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--muted);
}

.lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border-top: 4px solid var(--accent);
}

.hero-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.glance-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.glance-list li {
  margin: 14px 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.glance-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.glance-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  line-height: 1.2;
}

.section-lead {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.7;
}

.story-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(26, 23, 20, 0.04);
}

.story-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-dark);
}

.story-card p {
  margin: 0;
  color: var(--muted);
}

.principles {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.principles li {
  counter-increment: step;
  position: relative;
  padding: 18px 18px 18px 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
}

.principles li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.principles strong {
  color: var(--text);
}

.expertise-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.reach-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.reach-block {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reach-block.highlight {
  background: var(--accent-soft);
  border-color: #c5e0d6;
}

.reach-block h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
}

.reach-block p {
  margin: 0;
  color: var(--muted);
}

.cta-block {
  margin-top: 36px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cta-text {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1rem;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent-dark);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  color: var(--accent-dark);
  background: var(--surface);
  border-color: #a8cfc3;
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.btn-ghost {
  color: #c8e6dc;
  background: transparent;
  border-color: rgba(200, 230, 220, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 230, 220, 0.55);
}

.footer {
  background: #141210;
  color: #e8e4df;
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
}

.footer-tag {
  margin: 6px 0 0;
  color: #9a928a;
  font-size: 0.92rem;
}

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(13, 92, 74, 0.45);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .principles li {
    padding-left: 52px;
  }
}
