:root {
  --ink: #15211c;
  --muted: #5e6a63;
  --line: #d9ddd4;
  --paper: #f7f8f3;
  --white: #ffffff;
  --sage: #8aa394;
  --teal: #1b6b6f;
  --wine: #7e3150;
  --gold: #b6863b;
  --shadow: 0 18px 50px rgba(21, 33, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 243, 0.92);
  border-bottom: 1px solid rgba(21, 33, 28, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: white;
  background: var(--white);
  border: 1px solid rgba(27, 107, 111, 0.24);
  border-radius: 8px;
  font-weight: 800;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.topbar.compact {
  position: relative;
}

.lang-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.lang-switch button {
  width: 42px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.lang-switch button.active {
  color: white;
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  padding: clamp(80px, 11vw, 160px) clamp(20px, 6vw, 80px) clamp(54px, 8vw, 86px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24vh;
  min-height: 110px;
  background: linear-gradient(to bottom, rgba(247, 248, 243, 0), var(--paper));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 28, 25, 0.9), rgba(16, 28, 25, 0.6) 50%, rgba(16, 28, 25, 0.16)),
    url("/assets/dolphin-therapy-hero.jpg");
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.03);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: white;
}

.eyebrow,
.label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--wine);
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.button.outline {
  color: var(--teal);
  border-color: var(--teal);
  background: transparent;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: 34px clamp(20px, 6vw, 80px) 52px;
}

.intro-text {
  font-size: clamp(20px, 2.4vw, 30px);
  font-family: Georgia, "Times New Roman", serif;
}

.intro-text p {
  margin: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.stats div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats dt {
  font-size: 30px;
  font-weight: 900;
  color: var(--teal);
}

.stats dd {
  margin: 0;
  color: var(--muted);
}

.profile-band {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: 0 clamp(20px, 6vw, 80px) 54px;
}

.profile-portrait {
  width: 190px;
  aspect-ratio: 287 / 330;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.profile-copy {
  max-width: 820px;
}

.profile-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.profile-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section {
  padding: clamp(54px, 8vw, 94px) clamp(20px, 6vw, 80px);
}

.section.muted {
  background: #edf1ea;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.podcast-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.podcast-card img {
  width: 126px;
  height: 126px;
  object-fit: cover;
  border-radius: 8px;
  background: #d9ddd4;
}

.podcast-card h3,
.topic-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.podcast-card p:not(.label) {
  margin: 0;
  color: var(--muted);
}

.link-row a {
  color: var(--teal);
  font-weight: 800;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.topic-grid article {
  padding: 20px;
  min-height: 190px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.topic-grid p {
  color: var(--muted);
}

.visual-archive {
  background: var(--paper);
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.archive-layout figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.archive-layout img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.archive-feature {
  min-height: 540px;
}

.archive-stack {
  display: grid;
  gap: 18px;
}

.archive-stack figure:first-child img {
  padding: 18px;
  object-fit: contain;
  background: #f8faf6;
}

.archive-layout figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  color: white;
  background: rgba(21, 33, 28, 0.78);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.episodes {
  background: var(--ink);
  color: white;
}

.episodes .eyebrow {
  color: #d5a653;
}

.episode-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.episode-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.episode-list span {
  color: #d5a653;
  font-weight: 900;
}

.episode-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.episode-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  background: var(--white);
}

.question-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.question-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.question-form .full,
.question-form .disclaimer,
.question-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.consent {
  display: flex !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  color: var(--ink);
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal);
  font-weight: 700;
}

.article-main {
  padding: clamp(38px, 7vw, 80px) clamp(20px, 6vw, 80px);
}

.article-hero,
.episode-article {
  max-width: 980px;
  margin: 0 auto;
}

.article-hero h1,
.episode-article h1 {
  margin: 0;
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.article-hero p,
.article-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.search-input {
  width: min(720px, 100%);
  min-height: 48px;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.episode-directory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 38px auto 0;
}

.book-grid,
.book-detail-grid {
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 38px auto 0;
}

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

.book-card,
.book-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.book-card {
  display: grid;
  grid-template-columns: minmax(132px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
}

.book-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #d9ddd4;
}

.book-card h2,
.book-panel h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.book-card p,
.book-panel p,
.book-panel li {
  color: var(--muted);
}

.book-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(27, 107, 111, 0.28);
  border-radius: 8px;
  color: var(--teal);
  background: rgba(27, 107, 111, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.book-panel {
  padding: clamp(22px, 4vw, 34px);
}

.book-detail-grid {
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  align-items: start;
}

.book-detail-grid .book-cover {
  max-width: 360px;
}

.directory-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.directory-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.directory-card h2 a {
  text-decoration: none;
}

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

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.article-meta span {
  padding: 7px 10px;
  color: var(--teal);
  background: #e5efea;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.episode-article audio {
  width: 100%;
  margin: 18px 0 28px;
}

.episode-article section {
  margin-top: 34px;
}

[hidden] {
  display: none !important;
}

.episode-article h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.english-article {
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.english-article p {
  max-width: 860px;
  margin: 0 0 16px;
}

.english-article p:last-child {
  margin-bottom: 0;
}

.transcript {
  max-height: 520px;
  overflow: auto;
  padding: 18px;
  white-space: pre-wrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pending,
.article-cta {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.press-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 20%, rgba(182, 134, 59, 0.22), transparent 34%),
    var(--ink);
}

.press-preview h2 {
  margin: 0;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.press-preview-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.press-preview .button.outline {
  margin-top: 12px;
  color: white;
  border-color: rgba(255, 255, 255, 0.48);
}

.press-preview-documents {
  position: relative;
  min-height: 520px;
}

.press-preview-documents img {
  position: absolute;
  display: block;
  width: min(58%, 360px);
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  object-fit: cover;
}

.press-preview-documents img:first-child {
  inset: 2% auto auto 2%;
  height: 88%;
  object-position: 50% 12%;
  transform: rotate(-4deg);
}

.press-preview-documents img:last-child {
  right: 0;
  bottom: 8%;
  width: min(68%, 440px);
  aspect-ratio: 16 / 9;
  transform: rotate(3deg);
}

.press-main {
  padding: clamp(42px, 7vw, 92px) clamp(20px, 6vw, 80px);
}

.press-hero,
.press-entry,
.press-books-bridge {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.press-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  padding-bottom: clamp(54px, 8vw, 92px);
}

.press-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.press-lede {
  max-width: 790px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 25px);
}

.archive-note {
  padding: 24px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  background: rgba(182, 134, 59, 0.08);
}

.archive-note span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-note p {
  margin: 10px 0 0;
}

.press-entry {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(46px, 8vw, 94px) 0;
  border-top: 1px solid var(--line);
}

.press-entry-letter {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.press-document {
  margin: 0;
}

.press-document img {
  display: block;
  width: 100%;
  border: 10px solid white;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.press-document-newspaper img {
  max-height: 760px;
  object-fit: cover;
  object-position: 50% 7%;
}

.press-document-letter img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.press-document figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.press-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.press-meta span,
.press-meta time {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(27, 107, 111, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.press-copy h2,
.press-books-bridge h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.03;
}

.press-copy > p:not(.source-status, .quote-attribution),
.press-books-bridge p {
  color: var(--muted);
  font-size: 18px;
}

.press-copy blockquote {
  margin: 28px 0 14px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3vw, 34px);
  font-style: italic;
  line-height: 1.22;
}

.press-summary {
  margin: 28px 0 14px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  color: var(--ink) !important;
  background: rgba(182, 134, 59, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.4vw, 25px) !important;
}

.quote-attribution {
  margin-top: 0;
  color: var(--ink);
  font-weight: 800;
}

.source-status {
  margin-top: 26px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: white;
  font-size: 14px;
}

.press-books-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: clamp(30px, 6vw, 70px);
  padding: clamp(28px, 5vw, 50px);
  border-radius: 8px;
  color: white;
  background: var(--teal);
  box-shadow: var(--shadow);
}

.press-books-bridge .eyebrow {
  color: #f3d39c;
}

.press-books-bridge p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.press-book-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 250px;
}

.press-books-bridge .button.primary {
  background: var(--wine);
}

.press-books-bridge .button.outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.56);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
}

.footer p {
  margin: 6px 0 0;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 680px;
  }

  .intro-band,
  .profile-band,
  .podcast-grid,
  .topic-grid,
  .archive-layout,
  .question-form,
  .book-grid,
  .book-detail-grid,
  .press-preview,
  .press-hero,
  .press-entry,
  .press-entry-letter,
  .press-books-bridge {
    grid-template-columns: 1fr;
  }

  .press-preview-documents {
    min-height: 440px;
  }

  .press-entry-letter .press-copy {
    order: 2;
  }

  .press-entry-letter .press-document {
    order: 1;
  }

  .press-book-links {
    min-width: 0;
  }

  .archive-feature {
    min-height: 380px;
  }

  .book-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

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

  .profile-portrait {
    width: min(190px, 54vw);
  }

  .podcast-card {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 16px;
  }

  .podcast-card img {
    width: 92px;
    height: 92px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding-top: 64px;
  }

  .archive-layout figure,
  .archive-feature {
    min-height: 320px;
  }

  .press-preview-documents {
    min-height: 330px;
  }

  .press-preview-documents img:first-child {
    width: 58%;
  }

  .press-preview-documents img:last-child {
    width: 70%;
  }

  .press-document img {
    border-width: 6px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

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

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

  .book-card .book-cover {
    max-width: 220px;
  }

  .button {
    width: 100%;
  }
}
