:root {
  --hct-bg: #f4f0e8;
  --hct-surface: #fffdf8;
  --hct-surface-warm: #ece5d9;
  --hct-surface-cool: #e8edf2;
  --hct-ink: #1d2936;
  --hct-muted: #606a74;
  --hct-navy: #24344c;
  --hct-navy-deep: #18263a;
  --hct-wine: #84354a;
  --hct-wine-deep: #642638;
  --hct-gold: #aa8748;
  --hct-gold-soft: #d5bf92;
  --hct-line: rgba(36, 52, 76, 0.16);
  --hct-line-strong: rgba(36, 52, 76, 0.28);
  --hct-white-line: rgba(255, 253, 248, 0.22);
  --hct-shadow-sm: 0 14px 38px rgba(29, 41, 54, 0.10);
  --hct-shadow: 0 28px 74px rgba(29, 41, 54, 0.16);
  --hct-display: Baskerville, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --hct-body: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--hct-bg);
}

body {
  margin: 0;
  color: var(--hct-ink);
  background:
    radial-gradient(circle at 86% 6%, rgba(170, 135, 72, 0.12), transparent 28rem),
    radial-gradient(circle at 9% 32%, rgba(132, 53, 74, 0.07), transparent 30rem),
    var(--hct-bg);
  font-family: var(--hct-body);
  font-size: 17px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(36, 52, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 52, 76, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

::selection {
  color: var(--hct-surface);
  background: var(--hct-wine);
}

.wp-site-blocks,
.wp-site-blocks > * {
  margin: 0;
  padding: 0;
}

.wp-site-blocks {
  min-height: 100vh;
  background: transparent;
}

.hct-site-header,
.hct-site-footer,
.hct-home {
  color: var(--hct-ink);
  font-family: var(--hct-body);
}

.hct-site-header *,
.hct-site-footer *,
.hct-home * {
  box-sizing: border-box;
}

.hct-site-header a,
.hct-site-footer a,
.hct-home a {
  color: inherit;
}

.hct-shell {
  width: min(1180px, calc(100vw - 48px));
  margin-inline: auto;
}

.hct-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hct-line);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 5px 24px rgba(29, 41, 54, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.admin-bar .hct-site-header {
  top: 32px;
}

.hct-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hct-brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
  text-decoration: none;
}

.hct-brand-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}

.hct-brand-primary {
  color: var(--hct-navy-deep);
  font-family: var(--hct-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hct-brand-secondary {
  color: var(--hct-wine);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hct-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 21px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hct-nav a {
  position: relative;
  color: var(--hct-muted);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.hct-nav a:not(.hct-nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--hct-wine);
  transition: right 170ms ease;
}

.hct-nav a:hover,
.hct-nav a:focus-visible {
  color: var(--hct-navy-deep);
  transform: translateY(-1px);
}

.hct-nav a:not(.hct-nav-cta):hover::after,
.hct-nav a:not(.hct-nav-cta):focus-visible::after {
  right: 0;
}

.hct-nav .hct-nav-cta {
  color: var(--hct-surface);
  background: var(--hct-wine);
  border-radius: 999px;
  padding: 11px 16px;
  box-shadow: 0 9px 24px rgba(132, 53, 74, 0.18);
}

.hct-home {
  overflow: clip;
}

.hct-section,
.hct-project-index {
  position: relative;
  padding: 100px 0;
  border-top: 1px solid var(--hct-line);
}

.hct-display {
  margin: 0;
  color: var(--hct-navy-deep);
  font-family: var(--hct-display);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.95;
}

.hct-h2 {
  font-size: clamp(45px, 6vw, 76px);
}

.hct-h3 {
  font-size: clamp(38px, 5vw, 62px);
}

.hct-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--hct-muted);
  font-size: clamp(20px, 2.05vw, 27px);
  line-height: 1.46;
}

.hct-copy {
  max-width: 720px;
  color: var(--hct-muted);
}

.hct-copy p:last-child {
  margin-bottom: 0;
}

.hct-eyebrow,
.hct-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--hct-wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hct-eyebrow::before,
.hct-hero-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hct-actions-center {
  justify-content: center;
}

.hct-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.hct-button:hover,
.hct-button:focus-visible {
  transform: translateY(-2px);
}

.hct-button-primary {
  color: var(--hct-surface) !important;
  background: var(--hct-wine);
  box-shadow: 0 12px 28px rgba(132, 53, 74, 0.19);
}

.hct-button-primary:hover,
.hct-button-primary:focus-visible {
  background: var(--hct-wine-deep);
  box-shadow: 0 16px 34px rgba(132, 53, 74, 0.24);
}

.hct-button-secondary,
.hct-button-paper {
  color: var(--hct-navy-deep) !important;
  border-color: var(--hct-line-strong);
  background: rgba(255, 253, 248, 0.72);
}

.hct-button-secondary:hover,
.hct-button-secondary:focus-visible,
.hct-button-paper:hover,
.hct-button-paper:focus-visible {
  border-color: var(--hct-navy);
  background: var(--hct-surface);
}

.hct-button-wine {
  color: var(--hct-surface) !important;
  background: var(--hct-wine);
}

.hct-section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.hct-section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.hct-section-heading-center .hct-eyebrow {
  justify-content: center;
}

/* Brand hero */
.hct-brand-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 76px 0 90px;
  border-bottom: 1px solid var(--hct-line);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 253, 248, 0.96) 0 18rem, rgba(236, 229, 217, 0.82) 36rem, transparent 52rem),
    linear-gradient(135deg, #f7f2e9, #ece5d9);
}

.hct-brand-hero::before,
.hct-brand-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hct-brand-hero::before {
  width: min(76vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(170, 135, 72, 0.30);
  box-shadow:
    0 0 0 72px rgba(170, 135, 72, 0.055),
    0 0 0 144px rgba(132, 53, 74, 0.026);
}

.hct-brand-hero::after {
  width: min(62vw, 660px);
  aspect-ratio: 1;
  border: 1px solid rgba(36, 52, 76, 0.10);
}

.hct-brand-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hct-brand-hero .hct-hero-kicker {
  justify-content: center;
  margin-bottom: 20px;
}

.hct-title-orbit {
  position: relative;
  width: min(100%, 1080px);
  min-height: 250px;
  display: grid;
  place-items: center;
}

.hct-brand-title {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  color: var(--hct-navy-deep);
  font-size: clamp(68px, 11vw, 150px);
  line-height: 0.88;
  text-align: center;
}

.hct-brand-deck {
  margin: 24px 0 0;
  color: var(--hct-wine-deep);
  font-family: var(--hct-display);
  font-size: clamp(25px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hct-brand-summary {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--hct-muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hct-created-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 38px 0 0;
  color: var(--hct-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hct-created-by::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--hct-gold);
}

.hct-created-by-centered {
  justify-content: center;
}

/* Project index */
.hct-project-index {
  background: var(--hct-surface);
}

.hct-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hct-project-card {
  position: relative;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--hct-line);
  background: var(--hct-surface);
  box-shadow: var(--hct-shadow-sm);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hct-project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 42% 0;
  z-index: 0;
  opacity: 0.80;
  transition: transform 260ms ease, opacity 180ms ease;
}

.hct-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--hct-surface) 32%, rgba(255,253,248,0.93) 53%, rgba(255,253,248,0.08) 82%);
}

.hct-project-card > * {
  position: relative;
  z-index: 2;
}

.hct-project-card:hover,
.hct-project-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(132, 53, 74, 0.34);
  box-shadow: 0 28px 64px rgba(29, 41, 54, 0.16);
}

.hct-project-card:hover::before,
.hct-project-card:focus-visible::before {
  transform: scale(1.03);
  opacity: 0.92;
}

.hct-project-podcasts::before {
  background: url("https://halfcockedtales.com/wp-content/uploads/2026/04/HCTLogo-1.jpeg") center 34% / cover no-repeat;
}

.hct-project-book::before {
  background: url("https://halfcockedtales.com/wp-content/uploads/2026/04/ServiceUnscripted.webp") center 25% / cover no-repeat;
}

.hct-project-chess::before {
  background: url("https://halfcockedtales.com/wp-content/uploads/2026/05/OpeningsLong-scaled.png") center / cover no-repeat;
}

.hct-project-stage::before {
  background:
    linear-gradient(to right, rgba(255,253,248,0.12), rgba(255,253,248,0.02)),
    url("https://halfcockedtales.com/wp-content/uploads/2026/08/DanLeesonHeadshot1-819x1024.jpeg") center 24% / cover no-repeat;
}

.hct-project-label {
  color: var(--hct-wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hct-project-card h3 {
  max-width: 620px;
  margin: 14px 0 10px;
  color: var(--hct-navy-deep);
  font-family: var(--hct-display);
  font-size: clamp(34px, 4vw, 53px);
  line-height: 0.98;
  letter-spacing: -0.043em;
}

.hct-project-card p {
  max-width: 560px;
  margin: 0;
  color: var(--hct-muted);
  font-size: 15px;
}

.hct-project-link {
  margin-top: 20px;
  color: var(--hct-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hct-project-link::after {
  content: " →";
}

/* Podcasts */
.hct-podcast-section {
  background: var(--hct-surface-cool);
}

.hct-podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}

.hct-podcast-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--hct-line);
  background: var(--hct-surface);
  box-shadow: var(--hct-shadow-sm);
}

.hct-podcast-card-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.hct-podcast-card h3 {
  margin: 0 0 14px;
  color: var(--hct-navy-deep);
  font-family: var(--hct-display);
  font-size: clamp(37px, 4vw, 57px);
  line-height: 0.97;
  letter-spacing: -0.043em;
}

.hct-podcast-card p {
  color: var(--hct-muted);
}

.hct-podcast-logo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 40% 0;
  background:
    linear-gradient(to top, rgba(255,253,248,1), rgba(255,253,248,0.12)),
    url("https://halfcockedtales.com/wp-content/uploads/2026/04/HCTLogo-1.jpeg") center 25% / cover no-repeat;
  filter: saturate(0.83) contrast(1.02);
}

.hct-podcast-ghosts {
  color: var(--hct-surface);
  background:
    radial-gradient(circle at 18% 14%, rgba(213,191,146,0.30) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 29%, rgba(255,253,248,0.20) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 59%, rgba(213,191,146,0.18) 0 1px, transparent 2px),
    linear-gradient(145deg, #344660, var(--hct-navy-deep) 72%);
  background-size: 130px 130px, 170px 170px, 190px 190px, auto;
}

.hct-podcast-ghosts h3,
.hct-podcast-ghosts p {
  color: var(--hct-surface);
}

.hct-ghost-quote {
  position: absolute;
  top: 38px;
  left: 38px;
  right: 38px;
  z-index: 2;
  margin: 0;
  color: var(--hct-surface);
  font-family: var(--hct-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.043em;
}

.hct-status {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(132, 53, 74, 0.38);
  color: var(--hct-wine);
  background: rgba(255,253,248,0.70);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hct-podcast-ghosts .hct-status {
  color: var(--hct-gold-soft);
  border-color: rgba(213,191,146,0.48);
  background: rgba(255,255,255,0.04);
}

.hct-platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
  margin-top: 20px;
}

.hct-platform-links a {
  color: var(--hct-wine);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  border-bottom: 1px solid rgba(132, 53, 74, 0.34);
}

/* Book */
.hct-paper-section {
  color: var(--hct-ink);
  background:
    radial-gradient(circle at 92% 18%, rgba(132,53,74,0.08), transparent 25rem),
    var(--hct-surface-warm);
}

.hct-book-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.hct-book-cover-wrap {
  position: relative;
  max-width: 410px;
  margin-inline: auto;
}

.hct-book-cover-wrap::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  z-index: 0;
  border: 2px solid rgba(132, 53, 74, 0.55);
}

.hct-book-cover {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  background: var(--hct-surface);
  box-shadow: 0 32px 70px rgba(29, 41, 54, 0.20);
}

.hct-book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--hct-line);
  color: var(--hct-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Chessferatu */
.hct-chess-section {
  background: var(--hct-surface-cool);
}

.hct-chess-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border: 1px solid var(--hct-line);
  background: var(--hct-surface);
  box-shadow: var(--hct-shadow);
}

.hct-chess-image {
  min-height: 500px;
  background: url("https://halfcockedtales.com/wp-content/uploads/2026/05/OpeningsLong-scaled.png") center / cover no-repeat;
}

.hct-chess-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 72px);
}

/* Performance */
.hct-performance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}

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

.hct-credit {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--hct-line-strong);
}

.hct-credit-year {
  color: var(--hct-wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hct-credit-role {
  margin: 0;
  color: var(--hct-navy-deep);
  font-family: var(--hct-display);
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.hct-credit-production {
  margin: 8px 0 0;
  color: var(--hct-muted);
}

/* About */
.hct-about-section {
  background: var(--hct-surface-warm);
}

.hct-about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.2fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: center;
}

.hct-about-portrait-wrap {
  max-width: 350px;
  padding: 12px;
  border: 1px solid var(--hct-line-strong);
  background: rgba(255,253,248,0.62);
  box-shadow: var(--hct-shadow-sm);
}

.hct-about-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
}

.hct-about-roleline {
  margin: 20px 0 22px;
  color: var(--hct-wine);
  font-size: 15px;
  font-weight: 800;
}

/* Contact */
.hct-contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: end;
  padding: clamp(38px, 6vw, 72px);
  color: var(--hct-surface);
  border: 1px solid rgba(36, 52, 76, 0.20);
  background:
    radial-gradient(circle at 100% 0%, rgba(213,191,146,0.20), transparent 24rem),
    linear-gradient(135deg, var(--hct-wine), var(--hct-wine-deep));
  box-shadow: var(--hct-shadow);
}

.hct-contact-panel .hct-display,
.hct-contact-panel .hct-lead,
.hct-contact-panel .hct-eyebrow {
  color: var(--hct-surface);
}

.hct-contact-panel .hct-eyebrow::before {
  background: var(--hct-gold-soft);
}

.hct-contact-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.hct-contact-links a {
  color: var(--hct-surface);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,253,248,0.35);
}

/* Footer */
.hct-site-footer {
  color: var(--hct-surface);
  border-top: 1px solid rgba(255,253,248,0.10);
  background: var(--hct-navy-deep);
}

.hct-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: start;
  padding: 46px 0 54px;
}

.hct-footer-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hct-footer-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(213,191,146,0.40);
  border-radius: 50%;
}

.hct-footer-title {
  margin: 0 0 7px;
  color: var(--hct-surface);
  font-family: var(--hct-display);
  font-size: 25px;
}

.hct-footer-copy {
  max-width: 600px;
  margin: 0;
  color: rgba(255,253,248,0.70);
  font-size: 13px;
}

.hct-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hct-footer-links a {
  color: rgba(255,253,248,0.72);
  text-decoration: none;
}

.hct-footer-links a:hover,
.hct-footer-links a:focus-visible {
  color: var(--hct-gold-soft);
}

/* Responsive */
@media (max-width: 1060px) {
  .hct-nav {
    gap: 14px;
    font-size: 10px;
  }

  .hct-brand-hero::before {
    width: min(86vw, 760px);
  }

  .hct-brand-hero::after {
    width: min(70vw, 620px);
  }

  .hct-title-orbit {
    min-height: 220px;
  }

  .hct-book-grid,
  .hct-performance-grid,
  .hct-about-grid,
  .hct-contact-panel {
    grid-template-columns: 1fr;
  }

  .hct-chess-card {
    grid-template-columns: 1fr;
  }

  .hct-chess-image {
    min-height: 380px;
  }

  .hct-about-portrait-wrap {
    width: min(78vw, 350px);
  }
}

@media (max-width: 782px) {
  .admin-bar .hct-site-header {
    top: 46px;
  }
}

@media (max-width: 780px) {
  .hct-shell {
    width: min(100% - 30px, 1180px);
  }

  .hct-header-inner {
    min-height: auto;
    padding: 15px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hct-brand {
    min-width: 0;
  }

  .hct-brand-primary {
    font-size: 25px;
  }

  .hct-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .hct-nav::-webkit-scrollbar {
    display: none;
  }

  .hct-nav a {
    white-space: nowrap;
  }

  .hct-section,
  .hct-project-index {
    padding: 74px 0;
  }

  .hct-brand-hero {
    min-height: auto;
    padding: 64px 0 76px;
  }

  .hct-brand-hero::before {
    width: 112vw;
    box-shadow:
      0 0 0 48px rgba(170, 135, 72, 0.045),
      0 0 0 96px rgba(132, 53, 74, 0.022);
  }

  .hct-brand-hero::after {
    width: 88vw;
  }

  .hct-title-orbit {
    min-height: 190px;
  }

  .hct-brand-title {
    font-size: clamp(58px, 18vw, 94px);
  }

  .hct-project-grid,
  .hct-podcast-grid {
    grid-template-columns: 1fr;
  }

  .hct-project-card {
    min-height: 345px;
  }

  .hct-podcast-card {
    min-height: 470px;
  }

  .hct-credit {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hct-contact-panel {
    padding: 32px 25px;
  }

  .hct-footer-inner {
    grid-template-columns: 1fr;
  }

  .hct-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hct-actions .hct-button {
    width: 100%;
  }

  .hct-title-orbit {
    min-height: 150px;
  }

  .hct-brand-title {
    font-size: clamp(52px, 17vw, 78px);
  }

  .hct-brand-deck {
    font-size: 26px;
  }

  .hct-project-card {
    padding: 28px 24px;
  }

  .hct-podcast-card-inner {
    padding: 28px 24px;
  }

  .hct-ghost-quote {
    top: 28px;
    left: 24px;
    right: 24px;
  }

  .hct-footer-brand-block {
    align-items: flex-start;
  }

  .hct-footer-logo {
    width: 58px;
    height: 58px;
  }
}

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

  .hct-button,
  .hct-project-card,
  .hct-project-card::before,
  .hct-nav a,
  .hct-nav a::after {
    transition: none;
  }
}
