:root {
  --ink: #06111f;
  --ink-soft: #0e2236;
  --paper: #f4efe5;
  --paper-bright: #fffdf8;
  --gold: #d4a94f;
  --gold-light: #f2d899;
  --rust: #a65432;
  --sage: #729083;
  --line: rgba(245, 239, 227, 0.16);
  --muted: #b9c2c8;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 8%, rgba(49, 95, 118, 0.25), transparent 30%),
    radial-gradient(circle at 10% 70%, rgba(166, 84, 50, 0.14), transparent 32%),
    linear-gradient(135deg, #06111f 0%, #081827 46%, #06111f 100%);
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-bright);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: rgba(6, 17, 31, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(212, 169, 79, 0.7);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.brand-mark::before {
  inset: 8px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(212, 169, 79, 0.62);
}

.brand-mark::after {
  inset: -4px 13px;
  border: 1px solid rgba(242, 216, 153, 0.55);
}

.nav-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: #d8dee2;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper-bright);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  place-items: center;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 17px;
  height: 1px;
  content: "";
  background: currentColor;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -5px;
}

.menu-toggle span::after {
  position: absolute;
  top: 5px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: auto -8vw -24vw auto;
  width: 52vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(212, 169, 79, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(212, 169, 79, 0.025), 0 0 0 19vw rgba(212, 169, 79, 0.018);
}

.hero-shell,
.section-shell,
.page-hero-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  z-index: 2;
  padding: 72px 0 92px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 6vw;
}

.eyebrow {
  margin: 0 0 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 7.3vw, 7.4rem);
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 34px;
  color: #c5cdd2;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold);
  border-radius: 99px;
  color: var(--ink);
  background: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button.secondary {
  color: var(--paper);
  border-color: rgba(244, 239, 229, 0.35);
  background: transparent;
}

.button.secondary:hover {
  border-color: rgba(244, 239, 229, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary.light-ink {
  color: var(--ink);
  border-color: rgba(6, 17, 31, 0.3);
}

.button-row.top-space {
  margin-top: 34px;
}

.section-heading.large-top-space {
  margin-top: 100px;
}

.feature-title-large {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.solar-visual {
  position: relative;
  width: min(430px, 88vw);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.orbit,
.sun,
.tree-line,
.world-line {
  position: absolute;
}

.orbit {
  inset: 3%;
  border: 1px solid rgba(242, 216, 153, 0.28);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.orbit::before,
.orbit::after {
  position: absolute;
  content: "";
  border: inherit;
  border-radius: inherit;
}

.orbit::before {
  inset: 15%;
  transform: rotate(68deg) scaleX(0.62);
}

.orbit::after {
  inset: 30%;
  border-color: rgba(242, 216, 153, 0.18);
  transform: rotate(-34deg) scaleY(0.58);
}

.sun {
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #fff4c8 0 4%, #e8c068 23%, #a65432 72%, #4f1f22 100%);
  box-shadow: 0 0 70px rgba(212, 169, 79, 0.34);
}

.tree-line {
  bottom: 18%;
  left: 50%;
  width: 1px;
  height: 30%;
  background: rgba(6, 17, 31, 0.88);
  transform: translateX(-50%);
}

.tree-line::before,
.tree-line::after {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 68px;
  height: 1px;
  content: "";
  background: rgba(6, 17, 31, 0.72);
  transform-origin: left;
}

.tree-line::before {
  transform: rotate(34deg);
}

.tree-line::after {
  transform: rotate(146deg);
}

.world-line {
  right: 2%;
  bottom: 0;
  left: 2%;
  height: 36%;
  border-top: 1px solid rgba(244, 239, 229, 0.22);
  border-radius: 50%;
}

.visual-caption {
  position: absolute;
  bottom: 2%;
  color: rgba(244, 239, 229, 0.68);
  font-family: var(--display);
  font-size: 0.84rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.light-section {
  color: var(--ink);
  background: var(--paper);
}

.section-shell {
  padding: 112px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 680px;
  color: #52616a;
  font-size: 1.06rem;
}

.dark-section .section-heading p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(6, 17, 31, 0.14);
  background: rgba(6, 17, 31, 0.14);
}

.feature-card {
  min-height: 260px;
  padding: 34px;
  background: var(--paper-bright);
}

.feature-number {
  margin-bottom: 48px;
  display: block;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: 1.7rem;
}

.feature-card p {
  color: #59676f;
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) 1.28fr;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.book-cover {
  position: relative;
  width: min(330px, 80vw);
  aspect-ratio: 0.66;
  margin: 0 auto;
  padding: 34px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  border: 1px solid rgba(242, 216, 153, 0.35);
  background:
    radial-gradient(circle at 78% 27%, rgba(212, 169, 79, 0.72) 0 2%, transparent 20%),
    radial-gradient(circle at 52% 48%, rgba(112, 144, 131, 0.26), transparent 30%),
    linear-gradient(155deg, #0d2940, #06111f 58%, #24151d);
  box-shadow: -16px 22px 52px rgba(0, 0, 0, 0.28), inset 12px 0 22px rgba(255, 255, 255, 0.025);
}

.book-cover-image {
  width: min(330px, 80vw);
  height: auto;
  margin: 0 auto;
  display: block;
  border: 1px solid rgba(242, 216, 153, 0.35);
  box-shadow: -16px 22px 52px rgba(0, 0, 0, 0.28);
}

.book-cover-frame {
  width: min(330px, 80vw);
  aspect-ratio: 1838 / 2775;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(242, 216, 153, 0.35);
  background: #071b61;
  box-shadow: -16px 22px 52px rgba(0, 0, 0, 0.28);
}

.book-cover-frame .book-cover-image {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  box-shadow: none;
}

.book-cover::after {
  position: absolute;
  top: 35%;
  right: -25%;
  width: 90%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(212, 169, 79, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(212, 169, 79, 0.035), 0 0 0 62px rgba(212, 169, 79, 0.024);
}

.book-kicker,
.book-author {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.book-title {
  position: relative;
  z-index: 1;
  margin: auto 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 0.94;
}

.book-title small {
  margin-top: 15px;
  display: block;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.book-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.book-copy p {
  max-width: 680px;
  color: var(--muted);
}

.quote-band {
  padding: 110px 20px;
  color: var(--ink);
  background: var(--gold-light);
  text-align: center;
}

.quote-band blockquote {
  max-width: 920px;
  margin: 0 auto 28px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.quote-band cite {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-hero-shell {
  position: relative;
  z-index: 2;
  min-height: 500px;
  padding: 110px 0 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 7vw, 7rem);
  letter-spacing: -0.055em;
}

.page-hero .intro {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.prose-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 9vw, 140px);
}

.profile-monogram {
  position: sticky;
  top: 130px;
  width: min(340px, 100%);
  aspect-ratio: 0.82;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(6, 17, 31, 0.16);
  background:
    linear-gradient(rgba(6, 17, 31, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 17, 31, 0.07) 1px, transparent 1px),
    var(--paper-bright);
  background-size: 24px 24px;
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 9rem);
  letter-spacing: -0.12em;
  text-shadow: 2px 2px 0 var(--rust);
}

.profile-monogram::after {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px solid rgba(166, 84, 50, 0.26);
  border-radius: 50% 50% 44% 56%;
}

.prose h2 {
  margin: 0 0 30px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.prose h3 {
  margin: 54px 0 16px;
  font-size: 1.8rem;
}

.prose p {
  color: #43535c;
  font-size: 1.05rem;
}

.prose p.lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  line-height: 1.3;
}

.publication-list {
  display: grid;
  gap: 32px;
}

.publication-card {
  padding: clamp(30px, 5vw, 62px);
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  align-items: center;
  gap: clamp(35px, 7vw, 88px);
  border: 1px solid rgba(6, 17, 31, 0.14);
  background: var(--paper-bright);
}

.publication-card .book-cover {
  width: min(250px, 100%);
}

.publication-card .book-cover-image {
  width: min(250px, 100%);
}

.publication-card .book-cover-frame {
  width: min(250px, 100%);
}

.publication-card .book-cover-frame .book-cover-image {
  width: 100%;
}

.letter-cover {
  position: relative;
  width: min(250px, 100%);
  aspect-ratio: 0.66;
  padding: 30px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper-bright);
  border: 1px solid rgba(6, 17, 31, 0.24);
  background:
    radial-gradient(circle at 72% 26%, rgba(242, 216, 153, 0.28), transparent 22%),
    linear-gradient(155deg, #17364e, #081827 56%, #401f23);
  box-shadow: var(--shadow);
}

.letter-cover::before,
.letter-cover::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(242, 216, 153, 0.22);
  border-radius: 50%;
}

.letter-cover::before {
  top: 12%;
  right: -28%;
  width: 88%;
  aspect-ratio: 1;
}

.letter-cover::after {
  top: 20%;
  right: -11%;
  width: 50%;
  aspect-ratio: 1;
}

.letter-cover > * {
  position: relative;
  z-index: 1;
}

.letter-cover p,
.letter-cover > span:last-child {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.letter-cover h3 {
  margin: auto 0;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.letter-cover-orbit {
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(242, 216, 153, 0.74);
}

.publication-meta {
  margin-bottom: 16px;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.publication-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.publication-copy p {
  color: #4a5961;
}

.future-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.future-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(6, 17, 31, 0.14);
}

.future-card span {
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.future-card h3 {
  margin: 60px 0 12px;
  font-size: 1.6rem;
}

.future-card p {
  color: #5b686e;
  font-size: 0.94rem;
}

.letter-reading {
  width: min(790px, 100%);
  margin: 0 auto;
}

.letter-reading .letter-salutation {
  margin-bottom: 38px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
}

.letter-reading > p:not(.letter-salutation) {
  color: #43535c;
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  line-height: 1.85;
}

.letter-signoff {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(6, 17, 31, 0.16);
}

.letter-signoff strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.letter-reading > p.letter-editorial-note {
  margin-top: 54px;
  padding: 24px 0 0;
  color: #68757b;
  border-top: 1px solid rgba(6, 17, 31, 0.16);
  font-size: 0.86rem;
  line-height: 1.65;
}

.artwork-stage {
  position: relative;
  min-height: 620px;
  padding: 40px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--paper);
  border: 12px solid #221810;
  outline: 1px solid rgba(244, 239, 229, 0.18);
  background:
    radial-gradient(circle at 20% 22%, rgba(245, 210, 122, 0.75) 0 3%, transparent 18%),
    radial-gradient(circle at 76% 68%, rgba(166, 84, 50, 0.62), transparent 23%),
    linear-gradient(150deg, #152f44, #0b1b2a 52%, #291b20);
  box-shadow: var(--shadow);
}

.artwork-stage::before,
.artwork-stage::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.artwork-stage::before {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(242, 216, 153, 0.23);
  box-shadow: 0 0 0 90px rgba(242, 216, 153, 0.025), 0 0 0 180px rgba(242, 216, 153, 0.018);
}

.artwork-stage::after {
  right: -15%;
  bottom: -58%;
  width: 130%;
  aspect-ratio: 1;
  border-top: 1px solid rgba(244, 239, 229, 0.28);
}

.artwork-placeholder {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 38px;
  border: 1px solid rgba(244, 239, 229, 0.28);
  background: rgba(6, 17, 31, 0.66);
  backdrop-filter: blur(12px);
  text-align: center;
}

.artwork-placeholder strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
}

.artwork-placeholder span {
  margin-top: 12px;
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artwork-stage.actual-artwork {
  min-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  background: #000;
}

.artwork-stage.actual-artwork::before,
.artwork-stage.actual-artwork::after {
  display: none;
}

.artwork-image {
  width: 100%;
  height: auto;
  display: block;
}

.artwork-info {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 110px);
}

.artwork-info h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.artwork-info p {
  color: var(--muted);
}

.details-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.details-list li {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.details-list span {
  color: var(--muted);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid rgba(6, 17, 31, 0.13);
  background: rgba(6, 17, 31, 0.13);
}

.principle {
  min-height: 340px;
  padding: clamp(30px, 5vw, 58px);
  background: var(--paper-bright);
}

.principle .roman {
  color: var(--rust);
  font-family: var(--display);
  font-size: 1rem;
}

.principle h2 {
  margin: 70px 0 16px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.principle p {
  color: #536169;
}

.newsletter-wrap,
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
}

.form-card {
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.form-card > p {
  color: #59676e;
}

.form-grid {
  display: grid;
  gap: 20px;
}

.field label {
  margin-bottom: 7px;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(6, 17, 31, 0.35);
  border-radius: 0;
  outline: none;
  background: transparent;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--rust);
  box-shadow: 0 1px 0 var(--rust);
}

.form-card .button {
  width: fit-content;
  margin-top: 6px;
  color: var(--paper-bright);
  border-color: var(--ink);
  background: var(--ink);
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 2px 0 0;
  color: #66737a;
  font-size: 0.8rem;
}

.form-status {
  min-height: 24px;
  color: #335f50;
  font-weight: 700;
}

.aside-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.aside-copy > p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.06rem;
}

.aside-copy > p a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.aside-points {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.aside-points li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.aside-points strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.aside-points span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 34px;
}

.footer-top {
  margin-bottom: 65px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-statement {
  max-width: 590px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.16;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 11px 34px;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7f8c94;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .menu-toggle { display: grid; }

  .nav-links {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    padding: 26px 20px 34px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 17, 31, 0.98);
  }

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

  .hero-shell,
  .book-feature,
  .artwork-info,
  .newsletter-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-shell { gap: 70px; }
  .solar-visual { width: min(390px, 80vw); }
  .feature-grid, .future-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .feature-number { margin-bottom: 30px; }
  .artwork-stage { min-height: 520px; }
}

@media (max-width: 720px) {
  .nav-shell,
  .hero-shell,
  .section-shell,
  .page-hero-shell,
  .footer-shell {
    width: min(100% - 28px, 1180px);
  }

  .brand { font-size: 0.94rem; }
  .hero { min-height: auto; }
  .hero-shell { padding: 66px 0 80px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .section-shell { padding: 82px 0; }
  .page-hero-shell { min-height: 420px; padding: 80px 0 70px; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .prose-layout, .publication-card { grid-template-columns: 1fr; }
  .profile-monogram { position: relative; top: 0; width: 100%; max-height: 420px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .principle { min-height: 280px; }
  .principle h2 { margin-top: 46px; }
  .artwork-stage { min-height: 420px; padding: 18px; border-width: 8px; }
  .artwork-placeholder { padding: 25px 18px; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-links { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
