:root {
  --bg: #f3efe7;
  --bg-strong: #e6ddd0;
  --surface: rgba(255, 252, 247, 0.86);
  --surface-strong: #fffdf9;
  --ink: #1b2024;
  --muted: #53606a;
  --line: rgba(27, 32, 36, 0.12);
  --brand: #234a5a;
  --brand-soft: #d7e4e7;
  --accent: #7f6653;
  --shadow: 0 18px 60px rgba(27, 32, 36, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-sans: "Acumin Pro", "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(35, 74, 90, 0.15), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(127, 102, 83, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f3eb 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brand-tagline,
.header-link,
.lead,
.panel-label,
.panel-value,
.info-card p,
.principles p,
.contact-copy {
  color: var(--muted);
}

.brand-tagline,
.header-link,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.header-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.header-link:hover,
.header-link:focus-visible {
  color: var(--brand);
  border-color: rgba(35, 74, 90, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 36px;
}

.hero-copy,
.hero-panel,
.section {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 253, 249, 0.94), rgba(255, 248, 238, 0.9));
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(245, 241, 234, 0.9);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 34rem;
  margin-bottom: 28px;
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #f8fbfc;
}

.button-secondary {
  border: 1px solid rgba(35, 74, 90, 0.2);
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
}

.panel-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid rgba(35, 74, 90, 0.08);
}

.panel-label {
  margin-bottom: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel-value {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.panel-value a {
  color: var(--brand);
}

.section {
  margin-top: 24px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(215, 228, 231, 0.6), rgba(255, 252, 247, 0.9)),
    var(--surface);
}

.section-contact {
  background:
    linear-gradient(135deg, rgba(127, 102, 83, 0.08), rgba(255, 253, 249, 0.94)),
    var(--surface);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.card-grid,
.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.principles > div {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(27, 32, 36, 0.08);
}

.info-card p,
.principles p,
.contact-copy {
  margin-bottom: 0;
  line-height: 1.7;
}

.contact-copy {
  font-size: 1.05rem;
}

.contact-copy a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

@media (max-width: 920px) {
  .hero,
  .card-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 42px 28px;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 1160px);
    padding-top: 18px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .section,
  .hero-panel {
    padding: 20px;
  }

  .hero-copy {
    padding: 32px 20px;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 10vw, 2.4rem);
  }
}
