:root {
  --paper: #f6f1e8;
  --paper-deep: #eee5d7;
  --ink: #292722;
  --muted: #716c62;
  --line: rgba(41, 39, 34, 0.15);
  --accent: #a04b36;
  --accent-soft: #dcb7a3;
  --green: #526658;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 3%, rgba(220, 183, 163, 0.3), transparent 28rem),
    radial-gradient(circle at 2% 80%, rgba(82, 102, 88, 0.1), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.045;
  pointer-events: none;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(160, 75, 54, 0.38);
  border-radius: 45% 45% 50% 50%;
  background: rgba(220, 183, 163, 0.12);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  overflow: visible;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.brand-mark circle {
  fill: var(--accent);
  stroke: none;
}

.company-type,
.eyebrow,
.section-label,
dt,
footer {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.company-type {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 72px;
  align-items: center;
  min-height: 650px;
  padding: 96px 5vw 88px;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--accent);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 850px;
  margin-bottom: 34px;
  font-size: clamp(3.6rem, 7.2vw, 6.8rem);
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--accent);
  font-weight: 400;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: -0.035em;
}

.intro {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}

.ira-seal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid rgba(160, 75, 54, 0.25);
  border-radius: 50%;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
}

.ira-seal svg {
  width: 65%;
  overflow: visible;
}

.orbit,
.sprout {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.orbit {
  stroke-dasharray: 2 8;
  stroke-width: 1;
  opacity: 0.48;
}

.sprout {
  stroke-width: 2.2;
}

.star-one {
  fill: var(--accent);
}

.star-two {
  fill: var(--green);
}

.purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  padding: 96px 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.purpose p:last-child {
  align-self: end;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.details {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 10vw;
  padding: 112px 5vw;
}

.details-heading > p:last-child {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.75;
}

.company-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.dedication {
  display: grid;
  max-width: 840px;
  margin: 0 auto 120px;
  padding: 78px 72px;
  border: 1px solid rgba(82, 102, 88, 0.25);
  background: rgba(82, 102, 88, 0.055);
  text-align: center;
}

.dedication-mark {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 1.2rem;
}

.dedication p {
  max-width: 620px;
  margin: 0 auto 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  line-height: 1.3;
}

.signature {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 800px) {
  .page-shell {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    min-height: 88px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
    padding: 80px 0;
  }

  .ira-seal {
    width: min(220px, 64vw);
    justify-self: center;
  }

  .purpose,
  .details {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 76px 0;
  }

  .dedication {
    margin-bottom: 80px;
    padding: 60px 30px;
  }
}

@media (max-width: 500px) {
  .company-type {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 3.7rem);
  }

  .company-facts div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  body {
    background: #fff;
  }

  body::before {
    display: none;
  }
}
