@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400&family=Rubik:wght@400&display=swap");

:root,
[data-theme="dark"] {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  --bg: #f0ebdd;
  --surface: rgba(240, 235, 221, 0.74);
  --surface-soft: rgba(255, 184, 1, 0.1);
  --text: #302f2c;
  --muted: #5e594f;
  --line: #302f2c;
  --accent: #ffb801;
  --chip-bg: rgba(48, 47, 44, 0.05);
  --shadow: none;
  --modal-bg: rgba(48, 47, 44, 0.92);
  --status-error: #8a2d21;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --sunbeam: radial-gradient(
    41.33% 41.33% at 50% 18%,
    rgb(255, 199, 56) 0,
    rgba(248, 233, 226, 0) 100%
  );
}

* {
  box-sizing: border-box;
}

img:not([src*=".svg"]) {
  object-fit: cover;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  background: var(--sunbeam), var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.41;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.intro-loader.is-hidden {
  pointer-events: none;
}

.intro-mark {
  font-size: clamp(2.3rem, 7vw, 4rem);
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.9);
}

.intro-loader.fallback-run .intro-mark {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.intro-loader.fallback-exit {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 14%, transparent);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 30px) 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  text-decoration: none;
}

.brand img {
  height: clamp(2rem, 5vw, 3.25rem);
  width: auto;
  display: block;
}

.topbar-actions {
  align-items: center;
  background: color-mix(in srgb, var(--text) 4.5%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 12%, transparent);
  border-radius: 999px;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.15rem;
  justify-content: flex-end;
  max-width: 100%;
  overflow-x: auto;
  padding: 0.3rem;
  scrollbar-width: none;
}

.topbar-actions::-webkit-scrollbar {
  display: none;
}

.topbar-actions a {
  border: 0;
  border-radius: 999px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.62rem 0.95rem;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}

.topbar-actions a:hover {
  background: color-mix(in srgb, var(--bg) 88%, var(--text));
  text-decoration: none;
}

.topbar-actions a[aria-current="page"] {
  background: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  color: var(--bg);
}

.topbar-actions a[aria-current="page"]:hover {
  background: var(--text);
  color: var(--bg);
}

.search-input {
  min-width: 190px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.52rem 0.75rem;
  font: inherit;
  border-radius: 40px;
}

.theme-toggle,
.contact-link {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  text-decoration: none;
  font-size: 0.8125rem;
  padding: 0.52rem 0.75rem;
  border-radius: 40px;
  cursor: pointer;
}

.theme-toggle:hover,
.contact-link:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 35%, var(--line));
}

.chip-row {
  display: flex;
  gap: 0.4rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem 1rem;
  overflow-x: auto;
}

.chip {
  border: 1px solid var(--line);
  background: var(--chip-bg);
  color: var(--text);
  font: inherit;
  font-size: 0.8125rem;
  padding: 0.45rem 0.75rem;
  border-radius: 40px;
  cursor: pointer;
  white-space: nowrap;
}

.chip.active {
  color: var(--text);
  background: rgba(255, 184, 1, 0.22);
}

.feed-page {
  padding: 1.9rem 1rem 2rem;
}

.page-hero-banner {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  min-height: clamp(280px, 42vw, 460px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.page-hero-banner-media {
  inset: 0;
  position: absolute;
}

.page-hero-banner-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.page-hero-banner-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.42) 58%,
    rgba(0, 0, 0, 0.18) 100%
  );
  inset: 0;
  position: absolute;
}

.page-hero-banner-inner {
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(2.5rem, 8vw, 4.5rem) clamp(1rem, 4vw, 30px) clamp(2rem, 5vw, 3rem);
  position: relative;
  width: 100%;
  z-index: 1;
}

.page-hero-banner-inner .eyebrow,
.page-hero-banner-inner h1,
.page-hero-banner-inner p {
  color: #ffffff;
  margin-left: 0;
  margin-right: 0;
  max-width: 52rem;
  text-align: left;
}

.page-hero-banner-inner .eyebrow {
  opacity: 0.92;
}

.page-hero-banner-inner h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0.55rem 0 0.9rem;
}

.page-hero-banner-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  margin: 0;
}

.page-hero-banner + .feed-page {
  padding-top: 1.5rem;
}

.home-page {
  display: grid;
  gap: 3.75rem;
}

.landing-layout {
  display: grid;
  gap: 1.9rem;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 0;
}

.profile-panel,
.section-index {
  min-width: 0;
}

.profile-panel {
  border-right: 1px solid var(--line);
  padding: 1.15rem;
}

.panel-kicker {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-size: 1.375rem;
  line-height: 1.25;
}

.profile-panel p:not(.panel-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.profile-roles {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.profile-roles span {
  border-top: 1px solid var(--line);
  padding-top: 0.45rem;
  font-family: var(--serif);
  font-size: 1rem;
}

.hero-card,
.copy-card {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  margin: 0 auto 1.9rem;
  padding: clamp(1.4rem, 4vw, 3.75rem);
}

.hero-card {
  max-width: 1180px;
}

.landing-layout .hero-card {
  border: 0;
  margin: 0;
  max-width: none;
  min-height: 0;
  padding: clamp(3.75rem, 11vw, 6.5rem) 1rem clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.hero-card h1 {
  font-family: var(--serif);
  font-size: clamp(3.1rem, 8vw, 5.8rem);
  font-weight: 300;
  line-height: 1.02;
  margin: 0.55rem auto 0.9rem;
  max-width: 980px;
}

.hero-card p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.5;
}

.bio-hero {
  align-items: center;
  display: grid;
  gap: clamp(1.75rem, 5vw, 3.25rem);
  grid-template-columns: minmax(200px, 0.42fr) minmax(0, 1fr);
  max-width: 1180px;
}

.bio-photo {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
}

.bio-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.bio-hero-copy {
  min-width: 0;
  text-align: left;
}

.bio-hero-copy h1 {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.bio-hero-copy p {
  margin-left: 0;
  margin-right: 0;
  max-width: 36rem;
}

.bio-hero-copy .bio-tagline {
  font-size: clamp(0.78rem, 2.5vw, 1.1rem);
  letter-spacing: -0.01em;
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .bio-hero {
    grid-template-columns: 1fr;
  }

  .bio-photo {
    justify-self: center;
    max-width: min(320px, 100%);
  }
}

.eyebrow {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.25;
}

.legacy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 1.7rem;
}

.legacy-nav a {
  border-right: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  font-family: var(--serif);
  padding: 0 0.7rem;
  text-decoration: none;
}

.legacy-nav a:first-child {
  padding-left: 0;
}

.legacy-nav a:last-child {
  border-right: 0;
}

.section-index {
  align-self: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-index a {
  align-content: center;
  border-right: 1px solid var(--line);
  color: var(--text);
  display: grid;
  gap: 0.35rem;
  min-height: 150px;
  padding: 1.15rem;
  text-decoration: none;
}

.section-index a:last-child {
  border-right: 0;
}

.section-index a:hover {
  background: rgba(255, 184, 1, 0.13);
}

.section-index span {
  color: var(--muted);
  font-size: 0.8125rem;
}

.section-index strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.12;
}

.section-index em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.3;
}

.section-grid {
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto 2rem;
  border-top: 1px solid var(--line);
}

.section-card {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  color: var(--text);
  padding: 1.05rem 0;
  text-decoration: none;
  transition: background 0.2s ease;
}

.section-card:hover {
  background: rgba(255, 184, 1, 0.12);
}

.section-card span {
  color: var(--muted);
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.4rem;
}

.section-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.25;
}

.section-header {
  border-top: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 auto 1rem;
  max-width: 1180px;
  padding-top: 1.5rem;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 400;
  margin: 0.25rem 0;
}

.section-header p {
  color: var(--muted);
  margin: 0;
}

.compact-header {
  align-items: start;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
}

.media-controls {
  align-items: flex-end;
  display: grid;
  gap: 0.6rem;
  justify-items: end;
}

.media-section .chip-row {
  margin: 0;
  max-width: none;
  padding: 0;
}

.media-section {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.content-page {
  max-width: 980px;
  margin: 0 auto;
}

.copy-card {
  max-width: 760px;
}

.copy-card h2 {
  margin: 0 0 0.7rem;
}

.copy-card p {
  color: var(--muted);
  line-height: 1.65;
}

.tweets-intro {
  margin: 0.85rem 0 0;
  max-width: 42ch;
}

.tweets-profile-cta {
  margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
}


.tweets-status {
  margin: 0 0 1rem;
  text-align: center;
}

.tweets-status.is-error {
  color: #8b2f2f;
}

.tweets-featured {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 3.5vw, 2.25rem);
  margin-inline: auto;
  max-width: min(100%, 560px);
  width: 100%;
}

.tweet-skeleton,
.tweet-embed-skeleton {
  width: 100%;
}

.tweet-skeleton {
  border: 1px solid color-mix(in srgb, var(--line) 22%, transparent);
  padding: 1.1rem 1.15rem 1.2rem;
}

.tweet-embed-slot.is-loading {
  min-height: 240px;
  opacity: 1;
  position: relative;
  transform: none;
}

.tweet-embed-slot.is-loading .tweet-embed-skeleton {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.tweet-skeleton-header,
.tweet-skeleton-line,
.tweet-skeleton-media {
  animation: tweet-skeleton-shimmer 1.45s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--line) 7%, transparent) 0%,
    color-mix(in srgb, var(--line) 14%, transparent) 45%,
    color-mix(in srgb, var(--line) 7%, transparent) 100%
  );
  background-size: 220% 100%;
  border-radius: 4px;
}

.tweet-skeleton-header {
  height: 2.4rem;
  margin-bottom: 1rem;
  width: 42%;
}

.tweet-skeleton-line {
  height: 0.72rem;
  margin-bottom: 0.62rem;
  width: 100%;
}

.tweet-skeleton-line-short {
  width: 68%;
}

.tweet-skeleton-media {
  height: 7.5rem;
  margin-top: 0.35rem;
  width: 100%;
}

.tweet-embed-slot {
  display: flex;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.tweet-embed-slot.is-loaded {
  animation: tweet-embed-fade-in 0.5s ease both;
  animation-delay: var(--tweet-delay, 0ms);
}

@keyframes tweet-embed-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tweet-skeleton-shimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

.tweets-featured iframe {
  max-width: 100% !important;
}

.tweets-embed-fallback-msg {
  margin: 0;
  padding: 1rem 0;
}

.tweets-fallback.muted-help {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 1.15rem;
  text-align: center;
}

.tweets-fallback.muted-help a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.op-ed-section {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.op-ed-list {
  border-top: 1px solid var(--line);
}

.op-ed-item {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.op-ed-item h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.18;
  margin: 0;
}

.op-ed-item h2 a {
  color: var(--text);
  text-decoration: none;
}

.op-ed-item h2 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.op-ed-item p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0.65rem 0 0;
}

.op-ed-meta {
  color: var(--muted);
  font-size: 0.8125rem;
  margin: 0 0 0.45rem;
}

.empty-state {
  border-style: dashed;
}

.page-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.page-header h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.page-header p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.feed-meta {
  margin: 1rem 0 0.75rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.meta-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.status {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.status.is-error {
  color: var(--status-error);
}

.video-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: none;
  margin: 0;
}

.video-card {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  display: grid;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.22s ease;
}

.video-card:hover {
  background: rgba(255, 184, 1, 0.1);
}

.thumb-wrap {
  position: relative;
  overflow: hidden;
}

.thumb-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .thumb-wrap img {
  transform: scale(1.03);
}

.duration-badge {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  padding: 0.2rem 0.38rem;
}

.video-content {
  padding: 0.75rem 0.8rem 0.9rem;
}

.video-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  margin: 0.38rem 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.scroll-sentinel {
  height: 30px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 1rem;
  background: var(--modal-bg);
}

.video-modal.open {
  display: grid;
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid #555;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  cursor: pointer;
}

.video-modal-content {
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-wrap {
  margin-top: 1rem;
}

.contact-form {
  max-width: 720px;
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  border-radius: 10px;
  padding: 0.55rem 0.62rem;
}

.contact-form button {
  justify-self: start;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 10px;
  font: inherit;
  font-size: 0.75rem;
  padding: 0.45rem 0.68rem;
  cursor: pointer;
}

.contact-page .feed-page {
  max-width: 980px;
  margin: 0 auto;
}

.contact-page .page-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-page .page-header p {
  margin-left: auto;
  margin-right: auto;
}

.contact-page .contact-wrap {
  max-width: 520px;
  margin: 2rem auto 0;
}

.minimal-form-wrap {
  font-family: "Lato", sans-serif;
}

.minimal-form-title {
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: 0.35em;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: var(--muted);
  font-weight: 300;
}

.contact-form-minimal {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.contact-form-minimal input,
.contact-form-minimal textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.875rem;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.contact-form-minimal input {
  height: 3rem;
  padding: 0 0.95rem;
}

.contact-form-minimal input + input {
  border-top: 0;
}

.contact-form-minimal textarea {
  min-height: 7.2rem;
  max-height: 12rem;
  resize: vertical;
  padding: 0.9rem 0.95rem;
}

.contact-form-minimal #submit {
  border-top: 0;
  cursor: pointer;
}

.contact-form-minimal input::placeholder,
.contact-form-minimal textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 70%, var(--line));
  letter-spacing: 0.05em;
}

.contact-form-minimal input:hover,
.contact-form-minimal textarea:hover {
  background: rgba(255, 184, 1, 0.1);
  color: var(--text);
}

.contact-form-minimal input:hover::placeholder,
.contact-form-minimal textarea:hover::placeholder {
  color: color-mix(in srgb, var(--text) 55%, var(--line));
}

.contact-honeypot {
  display: none !important;
}

.contact-status {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0 0 1rem;
  min-height: 1.25rem;
  text-align: center;
}

.contact-status.is-error {
  color: var(--status-error);
}

.contact-status.is-success {
  color: var(--text);
}

.contact-success {
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
}

.contact-success-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.contact-success p:last-child {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

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

.site-footer.compact {
  margin-top: 0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.site-footer-simple .footer-inner {
  justify-content: center;
}

.site-footer-simple .footer-inner a {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.875rem;
  text-decoration: none;
}

.site-footer-simple .footer-inner a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.footer-socials {
  display: flex;
  gap: 0.45rem;
}

.social-icon {
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid var(--line);
  border-radius: 40px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.social-icon:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 35%, var(--line));
}

/* Orson-inspired homepage structure */
.brand-mark {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.05rem;
  height: 2.7rem;
  justify-content: center;
  width: 2.7rem;
}

.home-page {
  display: grid;
  gap: clamp(6rem, 13vw, 11rem);
  padding: clamp(4rem, 9vw, 7.5rem) 1rem 4rem;
}

.home-page > section {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.home-hero {
  min-height: min(820px, 82vh);
  padding-top: clamp(2.5rem, 8vw, 6rem);
}

.home-hero h1,
.focus-section h2,
.editorial-split h2,
.expertise-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-hero h1 {
  font-size: clamp(4.4rem, 14vw, 11rem);
  max-width: 1080px;
  margin: 0.5rem 0 1.1rem;
}

.home-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
  max-width: 620px;
}

.home-page > section.cooper-vision-story {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  width: 100vw;
}

.cooper-vision-story {
  border-bottom: 1px solid var(--line);
}

.cooper-vision-section {
  color: #f6f3ea;
  overflow: hidden;
  padding: clamp(4.5rem, 12vw, 7.75rem) clamp(1.25rem, 5vw, 3rem);
  position: relative;
}

.cooper-vision-backdrop {
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.12) 48%,
      rgba(0, 0, 0, 0.38) 100%
    ),
    linear-gradient(
      105deg,
      rgba(55, 14, 10, 0.22) 0%,
      transparent 40%,
      transparent 60%,
      rgba(255, 186, 88, 0.12) 100%
    ),
    url("./assets/perspective-mars-mainland.png");
  background-position: center, center, center center;
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  inset: 0;
  position: absolute;
  transform: scale(1.03);
  z-index: 0;
}

.cooper-overlay {
  background: radial-gradient(
    circle at 50% 38%,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(0, 0, 0, 0.28) 52%,
    rgba(0, 0, 0, 0.52) 100%
  );
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.cooper-frontier-line {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 204, 110, 0.16) 35%,
    rgba(255, 236, 210, 0.45) 50%,
    rgba(255, 204, 110, 0.16) 65%,
    transparent 100%
  );
  bottom: 7%;
  box-shadow: 0 0 32px rgba(255, 200, 110, 0.28);
  left: 50%;
  opacity: 0.86;
  pointer-events: none;
  position: absolute;
  top: 7%;
  transform: translateX(-50%);
  width: 2px;
  z-index: 2;
}

.cooper-content {
  margin: 0 auto;
  max-width: 52rem;
  position: relative;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 18px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.cooper-vision-eyebrow {
  color: rgba(246, 243, 234, 0.82) !important;
  letter-spacing: 0.1em;
  margin: 0 0 1rem !important;
  text-transform: uppercase;
}

.cooper-content h2 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4.6vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.cooper-content h2.cooper-vision-headline {
  font-size: clamp(2.35rem, 6vw, 3.25rem);
  margin-bottom: 1.15rem;
}

.cooper-content h2.cooper-vision-subhead {
  margin-top: 2.15rem;
}

.cooper-content > p {
  color: rgba(246, 243, 234, 0.93);
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.68;
  margin: 0 0 1.25rem;
}

.cooper-content blockquote {
  border-left: 3px solid rgba(255, 184, 1, 0.92);
  color: rgba(255, 252, 245, 0.97);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-style: italic;
  line-height: 1.55;
  margin: 2rem 0 0;
  padding: 0.35rem 0 0 1.35rem;
}

.cooper-content blockquote p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  line-height: inherit;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .cooper-vision-backdrop {
    transform: none;
  }
}

.expertise-section > p,
.editorial-note p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.focus-section h2 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  margin: 0.7rem 0 clamp(2.6rem, 7vw, 5rem);
  max-width: 900px;
}

.focus-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.focus-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  padding: clamp(2.6rem, 6vw, 4.8rem) 0;
  border-bottom: 1px solid var(--line);
}

.focus-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

.focus-item p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 560px;
}

.focus-item a:not(.home-feed-more-link),
.editorial-note a,
.expertise-links a {
  color: var(--text);
  text-decoration: none;
}

.focus-item a:not(.home-feed-more-link):hover,
.editorial-note a:hover,
.expertise-links a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.focus-item .home-feed-more-link {
  margin-top: 0;
}

.abstract-visual {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  margin: 0;
  min-height: 230px;
  overflow: hidden;
}

.abstract-visual img,
.editorial-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 8vw, 7rem);
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}

.editorial-split h2 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  margin: 0.6rem 0 0;
}

.editorial-note {
  border-top: 1px solid var(--line);
  padding-top: clamp(1.4rem, 4vw, 2.7rem);
}

.editorial-image {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  margin: 0 0 clamp(1.4rem, 4vw, 2.4rem);
  overflow: hidden;
}

.editorial-note a {
  display: inline-block;
  margin-top: 1.2rem;
}

.home-feed-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 0.5rem;
}

.home-feed-list-videos {
  margin-bottom: 1.5rem;
}

.expertise-section .home-feed-more-link {
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.home-feed-item {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.home-feed-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.home-feed-meta {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0.45rem 0 0;
}

.home-feed-card-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.home-feed-card-link {
  align-items: flex-start;
  color: var(--text);
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 112px minmax(0, 1fr);
  text-decoration: none;
}

.home-feed-op-ed .home-feed-card-link {
  grid-template-columns: minmax(0, 1fr);
}

.home-feed-card-link:hover {
  text-decoration: none;
}

.home-feed-card-link:hover h3 {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.home-feed-thumb {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  display: block;
  object-fit: cover;
  width: 100%;
}

.horace-photo,
.hero-image img,
.abstract-visual img,
.bio-photo img,
.home-feed-thumb {
  object-fit: cover;
}

.horace-photo {
  object-position: center 18%;
}

.horace-photo-media {
  object-position: center 30%;
}

.horace-photo-editorial {
  object-position: center 12%;
}

.home-feed-more-link,
.tweets-profile-link {
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-top: 1.2rem;
  padding: 0.9rem 1.75rem;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.home-feed-more-link:hover,
.tweets-profile-link:hover {
  background: rgba(255, 184, 1, 0.22);
  border-color: var(--text);
  text-decoration: none;
}

.home-feed-empty {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.approach-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 5vw, 4rem);
  padding: clamp(3.2rem, 8vw, 6rem) 0;
}

.approach-section p {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  margin: 0;
}

.approach-section strong {
  color: var(--text);
}

.expertise-section {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.7rem);
}

.expertise-section h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 0.2rem 0 0;
  max-width: 920px;
}

.expertise-section > p {
  max-width: 760px;
}

.expertise-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.expertise-links a {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.4rem;
  padding: clamp(1.3rem, 4vw, 2.2rem) 1rem clamp(1.3rem, 4vw, 2.2rem) 0;
}

.expertise-links strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.expertise-links span {
  color: var(--muted);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, minmax(120px, 1fr));
  gap: 1.4rem;
  margin: clamp(4rem, 9vw, 7rem) auto 0;
  max-width: 1180px;
  padding: 1.4rem 1rem 2rem;
}

.site-footer-grid h2,
.site-footer-grid p,
.site-footer-grid a {
  font-size: 0.9rem;
}

.site-footer-grid h2 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0 0 0.55rem;
}

.site-footer-grid p,
.site-footer-grid a {
  color: var(--muted);
  display: block;
  margin: 0 0 0.35rem;
  text-decoration: none;
}

.footer-brand {
  color: var(--text) !important;
  font-family: var(--serif);
  font-size: 1.45rem !important;
  margin-bottom: 0.65rem !important;
}

@media (min-width: 700px) {
  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .video-card:first-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  }

  .video-card:first-child .video-content {
    align-self: center;
    padding: 1.4rem;
  }

  .video-card:first-child .video-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    -webkit-line-clamp: 3;
  }
}

@media (min-width: 980px) {
  .section-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section-card {
    border-right: 1px solid var(--line);
    padding: 1.05rem 1rem;
  }

  .section-card:first-child {
    padding-left: 0;
  }

  .section-card:last-child {
    border-right: 0;
  }

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

@media (min-width: 1320px) {
  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1700px) {
  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-page {
    gap: 4.25rem;
    padding-top: 2.5rem;
  }

  .home-hero {
    min-height: 0;
    padding-top: 1rem;
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .focus-item,
  .editorial-split,
  .approach-section,
  .expertise-links,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .abstract-visual {
    min-height: 180px;
  }

  .site-footer-grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .feed-page {
    padding-top: 1rem;
  }

  .landing-layout {
    grid-template-columns: 1fr;
    padding-bottom: 1rem;
  }

  .section-index {
    grid-template-columns: 1fr;
  }

  .section-index a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 108px;
  }

  .section-index a:last-child {
    border-bottom: 0;
  }

  .landing-layout .hero-card {
    padding: 1.4rem;
  }

  .section-header {
    align-items: stretch;
    flex-direction: column;
  }

  .media-controls {
    justify-items: stretch;
  }

  .topbar-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 0.85rem;
  }

  .topbar-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .search-input {
    min-width: 0;
    flex: 1 1 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Christopher Ireland Creative-inspired art-gallery override */
:root,
[data-theme="dark"] {
  --bg: #f2f1ec;
  --surface: transparent;
  --surface-soft: transparent;
  --text: #000000;
  --muted: #5d5b5b;
  --line: #000000;
  --accent: #000000;
  --chip-bg: transparent;
  --shadow: none;
  --modal-bg: rgba(0, 0, 0, 0.92);
  --status-error: #8a2d21;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Rubik", Arial, sans-serif;
  --sunbeam: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
}

.topbar {
  border-bottom: 1px solid color-mix(in srgb, var(--line) 14%, transparent);
}

.topbar-inner {
  align-items: center;
  max-width: 1240px;
  padding: 1rem 30px 0.85rem;
}

.brand {
  align-items: center;
  border: 0;
  border-radius: 0;
  color: var(--text);
  display: inline-flex;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  height: auto;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  width: auto;
}

.theme-toggle,
.contact-link {
  border: 1px solid var(--line);
  border-radius: 40px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.8125rem;
  padding: 0.52rem 0.75rem;
  text-decoration: none;
  text-transform: none;
}

.theme-toggle {
  display: none;
}

.home-page {
  gap: 48px;
  padding: 48px 30px 30px;
}

.home-page > section {
  max-width: 1240px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  min-height: 0;
  padding: 0 0 48px;
  border-bottom: 1px solid var(--line);
}

.home-hero h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0 0 14px;
  max-width: none;
  text-transform: uppercase;
}

.hero-role {
  color: var(--text) !important;
  font-family: var(--sans);
  font-size: 16px !important;
  line-height: 1.5 !important;
  margin: 0 0 11px !important;
  max-width: none !important;
}

.hero-image,
.abstract-visual,
.editorial-image {
  border: 0;
  border-radius: 0;
  margin: 0;
}

.hero-image {
  align-self: start;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero-image img,
.abstract-visual img,
.editorial-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.eyebrow {
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: normal;
  line-height: 1.5;
  text-transform: none;
}

.focus-section,
.editorial-split,
.approach-section,
.expertise-section,
.media-section {
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.focus-section h2,
.editorial-split h2,
.expertise-section h2 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 5.875rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}

.focus-section h2,
.editorial-split h2,
.expertise-section h2,
.focus-item h3,
.op-ed-item h2,
.video-title {
  color: var(--text);
}

.focus-item p,
.editorial-note p,
.expertise-section > p,
.approach-section p,
.op-ed-item p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

.focus-section h2 {
  margin: 14px 0 30px;
}

.focus-list {
  border-top: 1px solid var(--line);
}

.focus-item {
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  padding: 30px 0;
}

.focus-item h3 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 3.95rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.16;
  margin: 0 0 11px;
}

.focus-item a:not(.home-feed-more-link),
.editorial-note a,
.expertise-links a,
.site-footer-grid a {
  color: var(--text);
  font-family: var(--sans);
  text-decoration: none;
  text-underline-offset: 0.15em;
}

.focus-item a:not(.home-feed-more-link):hover,
.editorial-note a:hover,
.expertise-links a:hover,
.site-footer-grid a:hover {
  text-decoration: underline;
}

.abstract-visual {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.editorial-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
}

.editorial-note {
  border-top: 0;
  padding-top: 0;
}

.approach-section {
  border-top: 0;
}

.approach-section strong {
  color: var(--text);
}

.expertise-links {
  border-top: 1px solid var(--line);
}

.expertise-links strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.95rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.16;
}

.section-header {
  padding-top: 0;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.875rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}

.search-input,
.chip,
.video-card,
.video-modal-content,
.video-modal-close,
.social-icon,
.meta-pill,
.copy-card,
.hero-card {
  border-radius: 0;
}

.search-input,
.chip {
  border-color: var(--line);
  font-family: var(--sans);
}

.chip.active {
  background: var(--text);
  color: var(--bg);
}

.video-grid {
  gap: 30px;
}

.video-card {
  border: 0;
  border-top: 1px solid var(--line);
}

.video-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

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

.site-footer-grid {
  grid-template-columns: 1.4fr repeat(4, minmax(120px, 1fr));
  max-width: 1240px;
  padding: 30px;
}

.site-footer-grid h2,
.site-footer-grid p,
.site-footer-grid a {
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
}

.footer-brand {
  color: var(--text) !important;
  font-family: var(--serif);
  font-size: 2rem !important;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .topbar-inner,
  .home-page,
  .site-footer-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-hero,
  .focus-item,
  .editorial-split,
  .approach-section,
  .expertise-links,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar-actions a {
    font-size: 0.8125rem;
    padding: 0.55rem 0.8rem;
  }
}
