:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #59625d;
  --paper: #f8f7f2;
  --surface: #ffffff;
  --line: #d9d5cb;
  --accent: #956d2b;
  --accent-dark: #634718;
  --blue: #1e336b;
  --blue-soft: #dce6fb;
  --shadow: 0 24px 60px rgba(23, 32, 29, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(248, 247, 242, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-size: 1.05rem;
  font-weight: 750;
}

nav {
  color: var(--muted);
  display: flex;
  font-size: 0.95rem;
  gap: clamp(18px, 3vw, 36px);
}

nav a:hover {
  color: var(--accent-dark);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 88px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.company-hero {
  min-height: calc(76vh - 72px);
}

.hero-copy,
.section-heading {
  max-width: 1080px;
}

.principle > p {
  color: var(--blue-soft);
}

.section-heading > p {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  margin-bottom: 28px;
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 0;
  max-width: 860px;
}

.portrait-block {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
}

.portrait-block img {
  aspect-ratio: 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.portrait-block div {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: space-between;
  padding-top: 18px;
}

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

.portrait-block strong {
  font-size: 1.05rem;
}

.principle {
  background: var(--blue);
  color: white;
  padding: clamp(44px, 7vw, 76px) clamp(20px, 5vw, 72px);
}

blockquote {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.14;
  margin: 0;
  max-width: 1100px;
}

.content-band,
.support-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.content-band {
  background: var(--surface);
}

.section-copy {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 28px clamp(28px, 5vw, 80px);
  margin-top: 36px;
  max-width: 760px;
  padding-top: 34px;
}

.section-copy.single {
  max-width: 920px;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.support-section {
  align-items: start;
  display: grid;
  gap: 28px clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    padding-bottom: 14px;
    padding-top: 14px;
    position: static;
  }

  nav {
    gap: 18px;
  }

  .hero,
  .support-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }
}
