:root {
  color-scheme: light;
  --espresso: #2b2018;
  --espresso-2: #3a2a20;
  --clay: #7d5d47;
  --sand: #f3eadc;
  --cream: #fbf7ef;
  --ivory: #fffdf8;
  --sage: #9a9f85;
  --gold: #d9b978;
  --ink: #221a15;
  --muted: #6f6258;
  --line: rgba(43, 32, 24, 0.14);
  --shadow: 0 24px 80px rgba(43, 32, 24, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 185, 120, 0.32), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(154, 159, 133, 0.28), transparent 24rem),
    linear-gradient(135deg, var(--cream), var(--sand) 48%, #eadbc8);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(43, 32, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 32, 24, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.74);
  box-shadow: 0 16px 48px rgba(43, 32, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-header__actions,
.nav-links,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand__mark {
  display: block;
  width: 52px;
  height: auto;
}

.site-header__actions {
  gap: 0.75rem;
}

.nav-links {
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--espresso);
  background: rgba(43, 32, 24, 0.07);
}

.language-switcher {
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.58);
}

.language-switcher__button {
  min-width: 2.4rem;
  min-height: 2.3rem;
  padding: 0.35rem 0.6rem;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-switcher__button:hover {
  color: var(--espresso);
}

.language-switcher__button[aria-pressed="true"] {
  color: var(--ivory);
  background: var(--espresso);
  box-shadow: 0 8px 22px rgba(43, 32, 24, 0.16);
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: 2rem;
  min-height: calc(100svh - 92px);
  padding: clamp(4rem, 8vw, 7.75rem) 0 4rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
blockquote {
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.45rem;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8.5vw, 7.9rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

h2 {
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--espresso);
  font-size: 1.22rem;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero__lede {
  max-width: 680px;
  margin-bottom: 2rem;
  color: #574a41;
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
}

.hero__actions,
.contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--ivory);
  background: var(--espresso);
  box-shadow: 0 16px 34px rgba(43, 32, 24, 0.22);
}

.button--ghost {
  border-color: var(--line);
  color: var(--espresso);
  background: rgba(255, 253, 248, 0.45);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  color: var(--ivory);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), transparent 32%),
    linear-gradient(145deg, var(--espresso), var(--espresso-2) 58%, #5d4332);
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  inset: auto -38% -26% 12%;
  height: 58%;
  content: "";
  border-radius: 999px;
  background: rgba(217, 185, 120, 0.22);
  filter: blur(14px);
  transform: rotate(-9deg);
}

.hero-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card p {
  position: absolute;
  right: 2rem;
  bottom: 1.8rem;
  left: 2rem;
  z-index: 1;
  max-width: 27rem;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.82);
}

.family-orbit {
  position: absolute;
  inset: 20% 5% 18%;
}

.orbit,
.dot {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.orbit {
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.orbit--large {
  inset: 8% 0 0 7%;
  transform: rotate(-18deg);
}

.orbit--mid {
  inset: 23% 17% 16% 12%;
  transform: rotate(19deg);
}

.dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(217, 185, 120, 0.13);
}

.dot--one {
  top: 18%;
  left: 20%;
  width: 56px;
  height: 56px;
  background: var(--ivory);
}

.dot--two {
  top: 28%;
  right: 22%;
  width: 42px;
  height: 42px;
  background: #ccb394;
}

.dot--three {
  right: 32%;
  bottom: 28%;
}

.dot--four {
  bottom: 36%;
  left: 28%;
  width: 18px;
  height: 18px;
  background: #bfc5a4;
}

.dot--five {
  top: 48%;
  right: 12%;
  width: 18px;
  height: 18px;
  background: #f2dca5;
}

.intro,
.focus,
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.intro p:last-child,
.contact p {
  margin-bottom: 0;
  font-size: 1.12rem;
}

.people {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.people-card {
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.47);
  box-shadow: 0 16px 50px rgba(43, 32, 24, 0.08);
  backdrop-filter: blur(10px);
}

.people-card p {
  margin-bottom: 0;
}

.approach {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.principle-card,
.focus__panel,
.focus-item,
.quote {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 253, 248, 0.47);
  box-shadow: 0 16px 50px rgba(43, 32, 24, 0.08);
  backdrop-filter: blur(10px);
}

.principle-card {
  min-height: 270px;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.card-number,
.focus-item span {
  display: inline-flex;
  margin-bottom: 4rem;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.principle-card p,
.focus-item p {
  margin-bottom: 0;
}

.focus {
  align-items: stretch;
}

.focus__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  padding: 1.65rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(43, 32, 24, 0.18), rgba(43, 32, 24, 0.18)),
    radial-gradient(circle at 25% 25%, rgba(217, 185, 120, 0.45), transparent 18rem),
    linear-gradient(145deg, var(--espresso), #6d523f);
}

.focus__panel h2,
.focus__panel .section-kicker {
  color: var(--ivory);
}

.focus-list {
  display: grid;
  gap: 1rem;
}

.focus-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.focus-item span {
  margin-bottom: 0;
}

.quote {
  margin-top: 1rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
}

.quote blockquote {
  max-width: 900px;
  margin: 0 auto;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.contact {
  align-items: center;
  margin-bottom: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.55);
  box-shadow: 0 16px 50px rgba(43, 32, 24, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .hero,
  .intro,
  .focus,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card,
  .focus__panel {
    min-height: 420px;
  }

  .principles-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 2rem;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 22px, 1120px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .focus-item {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
