:root {
  --bg: #f5efe2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffdf7;
  --line: rgba(24, 54, 45, 0.12);
  --text: #16322c;
  --muted: #58706a;
  --brand: #0f6a52;
  --brand-strong: #0a4c3b;
  --accent: #d7a94b;
  --danger: #a34b3c;
  --shadow: 0 24px 60px rgba(17, 40, 35, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 169, 75, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 106, 82, 0.16), transparent 26%),
    linear-gradient(180deg, #faf6ed 0%, #f4efe4 100%);
  font-family: "Manrope", sans-serif;
}

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

img {
  max-width: 100%;
  display: block;
}

.public-shell {
  min-height: 100vh;
}

.shell-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(250, 246, 237, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-badge {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, #1c9473 100%);
  box-shadow: 0 10px 24px rgba(15, 106, 82, 0.28);
}

.brand-logo {
  object-fit: contain;
  background: white;
  padding: 0.35rem;
}

.brand-mark strong,
.hero-copy h1,
.section-heading h2,
.content-hero h1,
.detail-title,
.family-name,
.list-card h3,
.hero-stat strong {
  font-family: "Spectral", serif;
}

.brand-mark small {
  display: block;
  color: var(--muted);
}

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

.nav-link {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: rgba(15, 106, 82, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, #1f8266 100%);
  box-shadow: 0 14px 28px rgba(15, 106, 82, 0.22);
}

.button-secondary {
  color: white;
  background: linear-gradient(135deg, rgba(17, 126, 99, 0.9) 0%, rgba(28, 154, 123, 0.82) 100%);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 28px rgba(11, 91, 71, 0.18);
}

.button-ghost {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--line);
}

.site-main {
  padding: 2rem 0 4rem;
}

.public-flash-stack {
  position: sticky;
  top: 1rem;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 0.75rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1rem;
  pointer-events: none;
}

.public-flash-stack .message {
  pointer-events: auto;
  position: relative;
  width: min(100%, 30rem);
  padding: 1rem 1.2rem 1rem 3.4rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(24, 54, 45, 0.12);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 44px rgba(17, 40, 35, 0.16);
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.public-flash-stack .message::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  transform: translateY(-50%);
}

.public-flash-stack .message.success {
  border-color: rgba(20, 136, 109, 0.22);
  background: linear-gradient(135deg, rgba(241, 255, 250, 0.99), rgba(255, 255, 255, 0.98));
}

.public-flash-stack .message.success::before {
  background: linear-gradient(135deg, #14886d 0%, #1fa27f 100%);
  box-shadow: 0 0 0 0.28rem rgba(20, 136, 109, 0.12);
}

.public-flash-stack .message.warning,
.public-flash-stack .message.error {
  border-color: rgba(217, 119, 6, 0.22);
  background: linear-gradient(135deg, rgba(255, 247, 241, 0.99), rgba(255, 255, 255, 0.98));
}

.public-flash-stack .message.warning::before,
.public-flash-stack .message.error::before {
  background: linear-gradient(135deg, #d97706 0%, #ef4444 100%);
  box-shadow: 0 0 0 0.28rem rgba(239, 68, 68, 0.1);
}

.public-flash-stack .message.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.45rem);
}

.hero-panel,
.section-panel,
.list-card,
.feature-card,
.detail-panel,
.family-panel,
.search-panel,
.callout-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel {
  overflow: hidden;
  border-radius: 36px;
}

.hero-backdrop {
  position: relative;
  min-height: 33rem;
  background: linear-gradient(135deg, rgba(8, 62, 48, 0.92) 0%, rgba(10, 89, 70, 0.76) 52%, rgba(215, 169, 75, 0.4) 100%);
}

.hero-backdrop.has-image {
  background-size: cover;
  background-position: center;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 33, 26, 0.84) 0%, rgba(7, 33, 26, 0.52) 55%, rgba(7, 33, 26, 0.18) 100%),
    radial-gradient(circle at top right, rgba(215, 169, 75, 0.28), transparent 32%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: end;
  padding: 4rem 0;
}

.hero-copy {
  color: white;
  padding: 0 0 0 1.4rem;
}

.hero-logo {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.hero-copy h1,
.content-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
}

.hero-copy p {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-actions,
.stack-inline,
.filter-row,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions .button {
  min-width: 17rem;
  min-height: 4.2rem;
  padding: 1rem 1.6rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-actions .button-primary {
  background: linear-gradient(135deg, #14886d 0%, #1fa27f 100%);
  box-shadow: 0 18px 36px rgba(14, 108, 84, 0.3);
}

.hero-actions .button-secondary {
  background:
    linear-gradient(135deg, rgba(26, 146, 114, 0.94) 0%, rgba(23, 118, 93, 0.9) 100%);
  border-color: rgba(182, 241, 224, 0.38);
  backdrop-filter: blur(10px);
}

.hero-actions .button-secondary:hover,
.hero-actions .button-primary:hover {
  box-shadow: 0 22px 40px rgba(11, 91, 71, 0.26);
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.hero-stat {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
}

.hero-stat strong {
  display: block;
  font-size: 2.2rem;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  margin-top: 2rem;
}

.section-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.section-panel--glance {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(111, 214, 197, 0.2), transparent 24%),
    radial-gradient(circle at bottom left, rgba(244, 198, 92, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 251, 255, 0.86) 48%, rgba(255, 249, 240, 0.9) 100%);
}

.section-panel--glance::before,
.section-panel--glance::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.section-panel--glance::before {
  width: 18rem;
  height: 18rem;
  top: -7.5rem;
  right: -3rem;
  background: radial-gradient(circle, rgba(66, 203, 173, 0.24) 0%, rgba(66, 203, 173, 0) 72%);
}

.section-panel--glance::after {
  width: 16rem;
  height: 16rem;
  bottom: -7rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(249, 188, 73, 0.24) 0%, rgba(249, 188, 73, 0) 74%);
}

.section-panel--glance .section-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 0.95;
  background: linear-gradient(135deg, #0d5f4b 0%, #14886d 45%, #d7982f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-panel--glance .section-heading p {
  max-width: 48rem;
  font-size: 1.22rem;
  line-height: 1.55;
  color: #4e6b64;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-heading h2,
.content-hero h1,
.detail-title,
.family-name {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.section-heading p,
.lede,
.meta-copy,
.empty-state,
.footer-copy,
.filter-copy {
  color: var(--muted);
}

.feature-grid,
.cards-grid,
.poster-grid,
.stats-grid,
.detail-grid,
.family-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.cards-grid .section-panel {
  min-width: 0;
}

.cards-grid .section-heading {
  align-items: flex-start;
}

.cards-grid .section-heading > div {
  min-width: 0;
}

.cards-grid .section-heading h2 {
  font-size: clamp(1.8rem, 2vw, 2.7rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cards-grid .button {
  flex-shrink: 0;
}

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

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

.stats-grid--vivid {
  position: relative;
  z-index: 1;
}

.feature-card,
.list-card,
.callout-panel,
.family-panel,
.detail-panel,
.search-panel {
  border-radius: var(--radius-md);
}

.feature-card,
.list-card {
  overflow: hidden;
}

.card-media,
.poster-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #dce8dd 0%, #efe1c2 100%);
}

.card-media img,
.poster-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-copy,
.poster-copy,
.detail-copy,
.family-copy,
.search-panel,
.callout-panel {
  padding: 1.2rem;
}

.card-copy,
.poster-copy,
.detail-copy {
  display: grid;
  gap: 0.85rem;
}

.callout-panel {
  position: relative;
  overflow: hidden;
}

.callout-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.95;
}

.callout-panel > * {
  position: relative;
  z-index: 1;
}

.callout-panel strong {
  display: block;
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.callout-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.callout-panel--emerald::before {
  background:
    linear-gradient(135deg, rgba(7, 108, 84, 0.18) 0%, rgba(7, 108, 84, 0.04) 100%),
    radial-gradient(circle at top right, rgba(58, 196, 154, 0.28), transparent 40%);
}

.callout-panel--emerald .callout-badge {
  color: #0b5c47;
  background: rgba(16, 132, 102, 0.18);
}

.callout-panel--sky::before {
  background:
    linear-gradient(135deg, rgba(39, 95, 177, 0.16) 0%, rgba(39, 95, 177, 0.03) 100%),
    radial-gradient(circle at top right, rgba(92, 171, 255, 0.26), transparent 42%);
}

.callout-panel--sky .callout-badge {
  color: #21599b;
  background: rgba(92, 171, 255, 0.22);
}

.callout-panel--gold::before {
  background:
    linear-gradient(135deg, rgba(180, 124, 17, 0.16) 0%, rgba(180, 124, 17, 0.03) 100%),
    radial-gradient(circle at top right, rgba(240, 194, 84, 0.28), transparent 40%);
}

.callout-panel--gold .callout-badge {
  color: #966714;
  background: rgba(240, 194, 84, 0.26);
}

.callout-panel--rose::before {
  background:
    linear-gradient(135deg, rgba(166, 62, 100, 0.14) 0%, rgba(166, 62, 100, 0.03) 100%),
    radial-gradient(circle at top right, rgba(227, 127, 176, 0.24), transparent 42%);
}

.callout-panel--rose .callout-badge {
  color: #8a3758;
  background: rgba(227, 127, 176, 0.22);
}

.section-panel--glance .callout-panel strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 2.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-panel--glance .callout-panel .meta-copy {
  font-size: 1rem;
  color: #5f7871;
}

.section-panel--glance .callout-panel {
  min-width: 0;
}

.section-panel--glance .callout-badge {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.list-card h3,
.feature-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.5rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 106, 82, 0.08);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.82rem;
}

.pill.is-warm {
  background: rgba(215, 169, 75, 0.18);
}

.content-hero {
  padding: 2rem 1.5rem 1rem;
}

.search-panel {
  margin-top: 1rem;
}

.filter-row input,
.filter-row select {
  flex: 1 1 15rem;
  min-height: 3rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 1rem;
  color: var(--text);
}

.detail-grid,
.family-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  align-items: start;
}

.detail-panel,
.family-panel {
  overflow: hidden;
}

.detail-copy h1,
.family-copy h1 {
  margin-top: 0.3rem;
}

.rich-copy {
  color: #25443d;
  line-height: 1.8;
}

.rich-copy p {
  margin: 0 0 1rem;
}

.side-panel {
  display: grid;
  gap: 1rem;
  align-self: start;
  align-content: start;
}

.side-panel .button {
  justify-self: start;
}

.side-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.side-card h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.side-list {
  display: grid;
  gap: 0.9rem;
}

.side-list a {
  display: block;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(24, 54, 45, 0.08);
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pulse-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.pulse-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.97;
}

.pulse-card > * {
  position: relative;
  z-index: 1;
}

.pulse-card--announcements::before {
  background:
    linear-gradient(180deg, rgba(255, 249, 231, 0.98) 0%, rgba(255, 244, 207, 0.95) 100%),
    radial-gradient(circle at top right, rgba(255, 184, 76, 0.3), transparent 38%);
}

.pulse-card--events::before {
  background:
    linear-gradient(180deg, rgba(233, 249, 247, 0.98) 0%, rgba(214, 244, 238, 0.95) 100%),
    radial-gradient(circle at top right, rgba(29, 177, 143, 0.25), transparent 40%);
}

.pulse-card--posters::before {
  background:
    linear-gradient(180deg, rgba(243, 241, 255, 0.98) 0%, rgba(233, 228, 255, 0.95) 100%),
    radial-gradient(circle at top right, rgba(116, 102, 255, 0.24), transparent 40%);
}

.pulse-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.pulse-card__head h2 {
  margin: 0.2rem 0 0.35rem;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 0.98;
}

.pulse-card__head p {
  margin: 0;
  color: rgba(22, 50, 44, 0.72);
}

.pulse-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(22, 50, 44, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse-list {
  display: grid;
  gap: 0.8rem;
}

.pulse-item,
.pulse-empty {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 50, 44, 0.08);
  box-shadow: 0 10px 24px rgba(17, 40, 35, 0.05);
}

.pulse-item__main {
  display: block;
  color: inherit;
}

.pulse-item strong {
  display: block;
  margin: 0.2rem 0 0.35rem;
  font-size: 1rem;
  line-height: 1.35;
}

.pulse-item p,
.pulse-empty {
  margin: 0;
  color: rgba(22, 50, 44, 0.72);
}

.pulse-item p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pulse-item .share-strip {
  margin-top: 0.8rem;
}

.share-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.share-strip--compact {
  gap: 0.35rem;
}

.share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 50, 44, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: #1f4b42;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.share-link__icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.share-link__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.share-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(17, 40, 35, 0.08);
}

.share-link--wa {
  color: #0b7b4e;
  background: rgba(37, 211, 102, 0.12);
}

.share-link--fb {
  color: #1f4fbb;
  background: rgba(24, 119, 242, 0.12);
}

.share-link--x {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.08);
}

.share-link--ig {
  color: #a22872;
  background: rgba(225, 48, 108, 0.12);
}

.share-link--copy {
  color: #0d5f4b;
  background: rgba(20, 136, 109, 0.1);
}

.share-link.is-copied {
  color: white;
  background: #14886d;
  border-color: #14886d;
}

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

.pulse-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(22, 50, 44, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-ribbon {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top left, rgba(255, 203, 88, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(12, 140, 109, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-ribbon__copy h2 {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.contact-ribbon__copy p {
  margin: 0;
  color: var(--muted);
}

.contact-ribbon__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.9rem;
}

.contact-chip {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 50, 44, 0.08);
}

.contact-chip strong {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-chip span {
  color: rgba(22, 50, 44, 0.74);
  line-height: 1.45;
}

.member-list {
  display: grid;
  gap: 0.8rem;
}

.member-card {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2.2rem;
}

.footer-title {
  margin: 0 0 0.3rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.pagination {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pagination .page-link,
.pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
}

.pagination .current {
  color: white;
  background: var(--brand);
  border-color: var(--brand);
}

@media (max-width: 1024px) {
  .feature-grid,
  .cards-grid,
  .poster-grid,
  .pulse-grid,
  .stats-grid,
  .detail-grid,
  .family-grid,
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-ribbon {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .header-inner,
  .footer-inner,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .feature-grid,
  .cards-grid,
  .poster-grid,
  .pulse-grid,
  .stats-grid,
  .detail-grid,
  .family-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .site-main {
    padding-top: 1rem;
  }

  .hero-backdrop {
    min-height: auto;
  }

  .pulse-card__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-panel {
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(24, 153, 122, 0.12), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(226, 177, 48, 0.14), transparent 28rem);
  pointer-events: none;
}

.contact-page-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.9fr);
  gap: 1.5rem;
  z-index: 1;
}

.contact-form-card,
.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 224, 215, 0.95);
  border-radius: 1.75rem;
  box-shadow: 0 24px 54px rgba(12, 64, 46, 0.08);
}

.contact-form-card {
  padding: 1.5rem;
}

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

.contact-info-card {
  padding: 1.4rem 1.5rem;
}

.contact-info-card--soft {
  background: linear-gradient(180deg, rgba(239, 248, 244, 0.96), rgba(255, 250, 237, 0.96));
}

.contact-info-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 102, 78, 0.1);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.contact-field--wide {
  grid-column: 1 / -1;
}

.contact-form .input {
  margin: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(170, 198, 185, 0.95);
  border-radius: 1rem;
  background: rgba(252, 255, 253, 0.98);
  padding: 0.95rem 1rem;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(15, 102, 78, 0.45);
  box-shadow: 0 0 0 4px rgba(24, 153, 122, 0.12);
  transform: translateY(-1px);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-turnstile {
  min-height: 65px;
}

.contact-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-steps {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-steps li + li {
  margin-top: 0.65rem;
}

.contact-followup-copy {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
