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

:root {
  --bg: #eef2f6;
  --bg-deep: #dfe6ee;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-alt: rgba(243, 247, 251, 0.9);
  --ink: #18212b;
  --ink-soft: #5d6978;
  --ink-muted: #8693a2;
  --ink-inverse: #f5f8fb;
  --navy: #1d2a39;
  --navy-soft: #33475c;
  --line: rgba(24, 33, 43, 0.1);
  --line-strong: rgba(24, 33, 43, 0.2);
  --line-inverse: rgba(245, 248, 251, 0.14);
  --gold: #6f87a3;
  --gold-soft: rgba(111, 135, 163, 0.12);
  --gold-strong: #9eb3ca;
  --shadow: 0 24px 72px rgba(17, 28, 39, 0.14);
  --shadow-soft: 0 14px 30px rgba(17, 28, 39, 0.09);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(119, 150, 186, 0.18), transparent 22%),
    radial-gradient(circle at top right, rgba(62, 93, 128, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, var(--bg) 42%, #e8eef4 100%);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(40, 60, 82, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 60, 82, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 56%);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

button {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
}

.container-narrow {
  width: min(calc(100% - 2.5rem), 760px);
  margin: 0 auto;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink);
}

h1 { font-size: clamp(3.7rem, 7vw, 7rem); }
h2 { font-size: clamp(2.35rem, 4vw, 4.4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.95rem); }

h4 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

p:last-child { margin-bottom: 0; }

.lead {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.95;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.centered { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

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

.btn-primary {
  background: var(--navy);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover { background: #342c24; }

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.09);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.text-link::after {
  content: "->";
  font-size: 0.84rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(238, 242, 246, 0.82);
  border-bottom: 1px solid rgba(24, 33, 43, 0.08);
}

.nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.logo-text {
  white-space: nowrap;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.logo-footer .logo-text {
  color: var(--ink-inverse);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a,
.footer-static {
  font-size: 0.9rem;
}

.site-nav a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink-muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.site-nav .nav-secondary {
  color: var(--gold);
}

.site-nav .nav-apply {
  background: var(--navy);
  color: var(--ink-inverse);
}

.site-nav .nav-apply:hover {
  background: #342c24;
  color: var(--ink-inverse);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

main > section + section {
  margin-top: 1.25rem;
}

main > section:not(.hero):not(.page-hero) {
  border-top: 1px solid rgba(24, 33, 43, 0.05);
  border-bottom: 1px solid rgba(24, 33, 43, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
}

main > section:nth-of-type(odd):not(.hero):not(.page-hero) {
  background: linear-gradient(180deg, rgba(243, 247, 251, 0.92), rgba(235, 241, 247, 0.72));
}

main > section:nth-of-type(even):not(.hero):not(.page-hero) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 251, 0.72));
}

.section-framed {
  position: relative;
}

.section-framed::before {
  content: "";
  position: absolute;
  inset: 1.25rem auto 1.25rem 50%;
  width: min(calc(100% - 2.5rem), var(--max));
  transform: translateX(-50%);
  border: 1px solid rgba(24, 33, 43, 0.07);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(243, 247, 251, 0.24)),
    linear-gradient(135deg, rgba(111, 135, 163, 0.08), transparent 42%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  z-index: -1;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(142, 166, 197, 0.15), transparent 32%),
    linear-gradient(180deg, rgba(14, 20, 30, 0.98), rgba(8, 13, 21, 0.98));
  color: var(--ink-inverse);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .lead { color: var(--ink-inverse); }

.section-dark .eyebrow,
.section-dark .panel-label,
.section-dark .portfolio-label { color: #c8d9f0; }

.section-meaning {
  position: relative;
}

.section-meaning::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(142, 166, 197, 0.12), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(142, 166, 197, 0.08), transparent 26%);
  pointer-events: none;
}

.section-header { margin-bottom: 3.25rem; }

.section-header.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  padding: 7.5rem 0 5rem;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(111, 135, 163, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-shell-simple {
  display: block;
}

.hero-copy {
  position: relative;
  padding: 2.8rem 0 2rem;
}

.hero-copy h1 {
  max-width: 10ch;
  text-wrap: balance;
}

.hero-shell-simple .hero-copy {
  max-width: 100%;
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.hero-shell-simple .hero-copy h1 {
  max-width: none;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-shell-simple .hero-copy .lead {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  color: var(--ink-soft);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-strip span,
.portfolio-meta span {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-aside-card,
.cta-box,
.contact-form-wrap,
.feature-panel,
.detail-card,
.card,
.principles-panel,
.portfolio-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.94));
  border: 1px solid rgba(24, 33, 43, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-aside-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(142, 166, 197, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(21, 31, 44, 0.98), rgba(10, 16, 25, 0.98));
  color: var(--ink-inverse);
  border-color: var(--line-inverse);
}

.hero-aside-card::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 233, 0.08);
}

.hero-aside-card p,
.hero-aside-card span {
  color: rgba(245, 241, 233, 0.76);
}

.hero-aside-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(245, 241, 233, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--ink-inverse);
}

.hero-year {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-label,
.portfolio-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.intro-grid,
.simple-grid,
.split-section,
.about-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.intro-grid { align-items: end; }

.grid-3,
.grid-2,
.detail-grid,
.platform-grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2,
.detail-grid,
.platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card,
.feature-panel,
.detail-card,
.portfolio-card,
.meaning-panel,
.stack-item,
.cta-box,
.contact-form-wrap,
.principles-panel {
  position: relative;
  padding: 1.9rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.card:hover,
.feature-panel:hover,
.detail-card:hover,
.portfolio-card:hover,
.meaning-panel:hover,
.stack-item:hover,
.cta-box:hover,
.contact-form-wrap:hover,
.principles-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(111, 135, 163, 0.28);
}

.card::before,
.portfolio-card::before,
.cta-box::before,
.contact-form-wrap::before,
.principles-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(111, 135, 163, 0.22), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.section-dark .card,
.section-dark .feature-panel,
.section-dark .detail-card {
  background: linear-gradient(180deg, rgba(24, 34, 48, 0.96), rgba(13, 20, 30, 0.96));
  border-color: rgba(245, 241, 233, 0.12);
}

.section-dark .card p { color: rgba(245, 241, 233, 0.72); }

.card-icon,
.contact-item-icon,
.form-success-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section-dark .card-icon {
  background: rgba(142, 166, 197, 0.12);
  color: #c8d9f0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.portfolio-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: space-between;
  padding: 1.5rem;
}

.portfolio-card-top h3 {
  margin-bottom: 0;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.portfolio-card-placeholder {
  background:
    linear-gradient(180deg, rgba(24, 33, 46, 0.92), rgba(16, 24, 35, 0.88)),
    linear-gradient(135deg, rgba(142, 166, 197, 0.08), transparent 42%);
  border-style: dashed;
}

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

.principle-row {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.principle-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.principle-row strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--ink);
}

.page-hero {
  position: relative;
  padding: 7.5rem 0 4.75rem;
  text-align: center;
}

.page-hero-refined::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 135, 163, 0.14), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero .lead {
  margin: 0 auto;
}

.about-hero-narrow {
  width: min(calc(100% - 2.5rem), 980px);
}

.about-hero-narrow h1 {
  max-width: none;
}

.principles-panel {
  position: relative;
  padding: 1.75rem;
}

.principle-item + .principle-item {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.principle-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
  color: var(--ink);
}

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

.stack-item {
  padding: 1.3rem 1.4rem;
  border-top: 1px solid rgba(181, 197, 220, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.stack-item p {
  color: var(--ink);
  font-weight: 600;
}

.cta-band { padding: 5rem 0 6.25rem; }

.cta-box {
  position: relative;
  padding: 3.8rem;
  text-align: center;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: auto auto -90px -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 166, 197, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-box .lead {
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-item-body strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-item-body span { color: var(--ink); }

.contact-form-wrap {
  position: relative;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7c838e;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(142, 166, 197, 0.52);
  box-shadow: 0 0 0 4px rgba(142, 166, 197, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.form-note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.82rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.show { display: block; }

.site-footer {
  padding-top: 4rem;
  background:
    linear-gradient(180deg, #202c39 0%, #17212b 100%);
  border-top: 1px solid rgba(245, 248, 251, 0.08);
}

.footer-grid {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(181, 197, 220, 0.1);
}

.footer-grid-simple {
  align-items: end;
}

.footer-tagline {
  max-width: 42ch;
}

.footer-links {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-col a,
.footer-static {
  color: var(--ink-soft);
}

.footer-col a:hover { color: var(--ink); }

.footer-static {
  padding-top: 0.25rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.35rem 0 2rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-note { color: var(--ink); }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1024px) {
  .hero-shell,
  .simple-grid,
  .intro-grid,
  .split-section,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-grid-three { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(238, 242, 246, 0.98);
    border: 1px solid rgba(24, 33, 43, 0.08);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }

  .hero,
  .page-hero { padding-top: 5.5rem; }

  .section { padding: 5rem 0; }

  .grid-3,
  .grid-2,
  .detail-grid,
  .platform-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; }

  .cta-box,
  .contact-form-wrap,
  .hero-aside-card,
  .portfolio-card { padding: 1.5rem; }

  .footer-links,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container,
  .container-narrow {
    width: calc(100% - 1.5rem);
  }

  h1 { font-size: 3.05rem; }
  h2 { font-size: 2.3rem; }
}
