@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-400-900.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-latin-600-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --header-height: 94px;
  --cream: #0f172a;
  --paper: #f4f7fa;
  --mist: #ecf2f6;
  --night: #0f172a;
  --night-deep: #0a0f2a;
  --night-soft: #182033;
  --teal: #8fbdbb;
  --teal-deep: #a8d3cf;
  --sage: #b7bea6;
  --amber: #d9c08c;
  --amber-deep: #d4af37;
  --gold: #d9c08c;
  --gold-dark: #b67a1d;
  --ink: #f8fafc;
  --ink-dark: #1f2933;
  --muted: #cbd5e1;
  --muted-dark: #5f6b78;
  --line: rgba(217, 192, 140, 0.18);
  --line-light: #dce5ea;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  --night-gradient-main:
    radial-gradient(circle at 78% 22%, rgba(217, 192, 140, 0.22) 0%, rgba(217, 192, 140, 0.10) 18%, rgba(217, 192, 140, 0) 42%),
    radial-gradient(circle at 62% 48%, rgba(120, 160, 180, 0.14) 0%, rgba(120, 160, 180, 0.06) 26%, rgba(120, 160, 180, 0) 55%),
    linear-gradient(135deg, #070b1f 0%, #0a0f2a 45%, #101936 100%);
  --night-gradient-soft:
    radial-gradient(circle at 82% 18%, rgba(217, 192, 140, 0.13) 0%, rgba(217, 192, 140, 0.055) 24%, rgba(217, 192, 140, 0) 52%),
    radial-gradient(circle at 58% 70%, rgba(120, 160, 180, 0.09) 0%, rgba(120, 160, 180, 0.035) 32%, rgba(120, 160, 180, 0) 62%),
    linear-gradient(145deg, #070b1f 0%, #0f172a 52%, #0a0f2a 100%);
  --night-gradient-open:
    radial-gradient(circle at 80% 18%, rgba(217, 192, 140, 0.18) 0%, rgba(217, 192, 140, 0.075) 24%, rgba(217, 192, 140, 0) 54%),
    radial-gradient(circle at 48% 70%, rgba(80, 120, 160, 0.12) 0%, rgba(80, 120, 160, 0.045) 34%, rgba(80, 120, 160, 0) 66%),
    linear-gradient(135deg, #070b1f 0%, #0a0f2a 50%, #101936 100%);
  --radius: 8px;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

.body-video-hero {
  overflow: hidden;
}

.body-video-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.body-video-note {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(229, 197, 128, 0.35);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(229, 197, 128, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.body-video-note span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.body-video-note strong {
  display: block;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.18;
}

.body-video-note p {
  margin: 1rem 0 0;
}

.body-video-index {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.body-video-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.body-video-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(8, 22, 47, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(8, 22, 47, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.body-video-chips a:hover {
  border-color: rgba(176, 125, 34, 0.34);
  box-shadow: 0 18px 42px rgba(8, 22, 47, 0.1);
  transform: translateY(-2px);
}

.body-video-category {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.body-video-category:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.68), rgba(255, 255, 255, 0.96));
}

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

.body-video-card {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.25rem, 2.4vw, 1.85rem);
  border: 1px solid rgba(8, 22, 47, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
    radial-gradient(circle at top right, rgba(229, 197, 128, 0.16), transparent 40%);
  box-shadow: 0 18px 48px rgba(8, 22, 47, 0.07);
}

.body-video-card-head span {
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.body-video-card-head h3 {
  margin: 0.5rem 0 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  line-height: 1.15;
}

.body-video-details {
  border-top: 1px solid rgba(8, 22, 47, 0.08);
  padding-top: 0.85rem;
}

.body-video-details summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

.body-video-details summary::-webkit-details-marker {
  display: none;
}

.body-video-details summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-left: 0.65rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.body-video-details[open] summary::after {
  content: "-";
}

.body-video-frame {
  margin-top: 1rem;
}

.body-video-frame video,
.body-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(8, 22, 47, 0.16);
}

.video-part-label {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.body-video-related {
  background: var(--ink);
  color: #fff;
}

.body-video-related .section-heading h2,
.body-video-related .section-heading p {
  color: #fff;
}

@media (max-width: 900px) {
  .body-video-hero-grid,
  .body-video-index,
  .body-video-grid {
    grid-template-columns: 1fr;
  }
}

.home-authority-strip {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.authority-strip-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid rgba(217, 192, 140, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 15%, rgba(217, 192, 140, 0.16), transparent 38%),
    var(--night-gradient-soft);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.authority-strip-card h2 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.authority-strip-card p:not(.eyebrow) {
  max-width: 940px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.authority-strip-links,
.resource-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.authority-strip-links a,
.resource-filter-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.66rem 1rem;
  border: 1px solid rgba(217, 192, 140, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.resource-filter-panel {
  padding-bottom: 0;
}

.resource-filter-chips {
  justify-content: center;
}

.resource-filter-chips a {
  border-color: rgba(8, 22, 47, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-dark);
  box-shadow: 0 14px 30px rgba(8, 22, 47, 0.07);
}

.pillar-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-link-card {
  display: grid;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(8, 22, 47, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-dark);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(8, 22, 47, 0.07);
}

.pillar-link-card span {
  color: var(--amber-deep);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-link-card strong {
  color: var(--ink-dark);
  font-size: 1.05rem;
}

.pillar-link-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.96rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .pillar-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pillar-link-grid {
    grid-template-columns: 1fr;
  }
}

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

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.97), rgba(244, 247, 250, 0.94));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 14px 34px rgba(10, 15, 42, 0.08);
}

.orientation-panel,
.brief-section {
  background: var(--paper);
  color: var(--ink-dark);
}

.orientation-card-grid,
.brief-grid,
.audio-choice-grid {
  display: grid;
  gap: 16px;
}

.orientation-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.orientation-card,
.brief-card,
.audio-choice-card {
  position: relative;
  min-height: 156px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 12%, rgba(217, 192, 140, 0.22), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #eef4f7 100%);
  color: var(--ink-dark);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.orientation-card {
  padding-right: 72px;
}

.orientation-card:hover,
.audio-choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 192, 140, 0.45);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.orientation-card span,
.audio-choice-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(217, 192, 140, 0.22);
  color: #7d6232;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.orientation-card h3,
.brief-card h3,
.audio-choice-card h3 {
  margin: 14px 0 8px;
  color: var(--night-deep);
}

.orientation-card p,
.brief-card p,
.audio-choice-card p {
  margin: 0;
  color: #52606d;
  line-height: 1.55;
}

.orientation-card::after,
.audio-choice-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--night-deep);
  color: #fffaf1;
  font-weight: 900;
}

.audio-choice-card::after {
  top: auto;
  bottom: 16px;
  transform: none;
}

.orientation-support {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(24, 32, 51, 0.96));
  color: #fffaf1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.orientation-support p {
  margin: 0;
  color: rgba(255, 250, 241, 0.84);
}

.reassurance-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 192, 140, 0.18), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(143, 189, 187, 0.12), transparent 38%),
    linear-gradient(180deg, var(--paper) 0%, #eef4f8 100%);
  color: var(--ink-dark);
}

.orientation-panel + .reassurance-section {
  padding-top: 36px;
}

.reassurance-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(217, 192, 140, 0.3);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 90% 6%, rgba(217, 192, 140, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 250, 0.92));
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.reassurance-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 36%, rgba(217, 192, 140, 0.08));
}

.reassurance-heading,
.reassurance-grid,
.reassurance-actions {
  position: relative;
  z-index: 1;
}

.reassurance-heading {
  max-width: 900px;
  margin: 0 auto clamp(24px, 4vw, 38px);
  text-align: center;
}

.reassurance-heading h2 {
  margin-bottom: 14px;
  color: var(--night-deep);
}

.reassurance-heading p:last-child {
  margin: 0 auto;
  max-width: 780px;
  color: #52606d;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 22px);
}

.reassurance-card {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(217, 192, 140, 0.16), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f3f8fb 100%);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reassurance-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 192, 140, 0.48);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.reassurance-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(217, 192, 140, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 250, 241, 0.92), rgba(217, 192, 140, 0.92));
  color: var(--night-deep);
  box-shadow: 0 12px 28px rgba(217, 192, 140, 0.22);
}

.reassurance-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reassurance-card h3 {
  margin: 0 0 10px;
  color: var(--night-deep);
  font-size: clamp(1.18rem, 1.55vw, 1.38rem);
  line-height: 1.18;
}

.reassurance-card p {
  margin: 0;
  color: #52606d;
  line-height: 1.62;
}

.reassurance-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 40px);
}

.home-methods-band .split {
  align-items: stretch;
}

.home-methods-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 192, 140, 0.16), transparent 36%),
    radial-gradient(circle at 20% 80%, rgba(143, 189, 187, 0.08), transparent 42%),
    linear-gradient(135deg, #070b1f 0%, #0a0f2a 48%, #111a35 100%);
}

.home-methods-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(217, 192, 140, 0.06), transparent 18%, transparent 82%, rgba(143, 189, 187, 0.05));
}

.home-methods-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.home-methods-copy {
  max-width: 760px;
}

.home-methods-band .lead + p {
  margin-top: 18px;
  color: rgba(248, 250, 252, 0.8);
  font-size: 1.06rem;
}

.methods-showcase {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(217, 192, 140, 0.3);
  border-radius: calc(var(--radius) + 6px);
  border-color: rgba(217, 192, 140, 0.32);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.methods-showcase-header span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.methods-showcase-header h3 {
  margin: 0 0 10px;
  color: #fffaf1;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.12;
  text-wrap: balance;
}

.methods-showcase-header p,
.methods-showcase-note p {
  margin: 0;
  color: rgba(248, 250, 252, 0.76);
}

.methods-showcase-note {
  padding: 18px 20px;
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 94% 0%, rgba(217, 192, 140, 0.14), transparent 34%),
    rgba(7, 11, 31, 0.56);
}

.methods-showcase-note strong {
  display: block;
  margin-bottom: 6px;
  color: #fffaf1;
  font-size: 1.04rem;
}

.methods-showcase .btn {
  position: relative;
  justify-content: center;
  min-height: 58px;
  padding-inline: 26px;
  border-color: rgba(217, 192, 140, 0.58);
  color: var(--night-deep);
  background:
    linear-gradient(135deg, #f0d894 0%, #d9c08c 48%, #cda85d 100%);
  box-shadow:
    0 18px 42px rgba(217, 192, 140, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.methods-showcase .btn::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  border-radius: 50%;
  color: #fffaf1;
  background: var(--night-deep);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.methods-showcase .btn:hover {
  color: var(--night-deep);
  border-color: rgba(255, 250, 241, 0.72);
  background:
    linear-gradient(135deg, #f6e3ad 0%, #dfc789 48%, #d1ad63 100%);
  box-shadow:
    0 22px 54px rgba(217, 192, 140, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.methods-showcase .btn:hover::after {
  transform: translateX(3px);
}

.method-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 8px;
}

.method-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(217, 192, 140, 0.4);
  border-radius: 999px;
  color: #fffaf1;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  background:
    linear-gradient(135deg, rgba(217, 192, 140, 0.2), rgba(255, 255, 255, 0.065));
  box-shadow: 0 10px 24px rgba(10, 15, 42, 0.16);
}

.method-chip-list-premium span:first-child,
.method-chip-list-premium span:nth-child(6),
.method-chip-list-premium span:nth-child(7) {
  border-color: rgba(217, 192, 140, 0.62);
  background:
    linear-gradient(135deg, rgba(217, 192, 140, 0.34), rgba(217, 192, 140, 0.08));
}

.brief-grid {
  grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.brief-card {
  min-height: auto;
  padding: 20px;
}

.brief-card.is-primary {
  background:
    radial-gradient(circle at 82% 14%, rgba(217, 192, 140, 0.24), transparent 34%),
    linear-gradient(135deg, #0a0f2a, #182033);
  color: #fffaf1;
  border-color: rgba(217, 192, 140, 0.28);
}

.brief-card.is-primary h2,
.brief-card.is-primary p {
  color: #fffaf1;
}

.brief-card.is-primary h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  line-height: 1.05;
  text-wrap: balance;
}

.brief-card.is-primary p {
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.62;
}

.brief-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #52606d;
}

.brief-card li + li {
  margin-top: 5px;
}

.first-call-note {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(217, 192, 140, 0.32);
  border-radius: 14px;
  background:
    radial-gradient(circle at 85% 15%, rgba(217, 192, 140, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(10, 15, 42, 0.98), rgba(24, 32, 51, 0.98));
  color: #fffaf1;
}

.first-call-note h3 {
  margin-top: 0;
  color: #fffaf1;
}

.first-call-note ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255, 250, 241, 0.86);
}

.accomp-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 26px;
}

.accomp-intent-grid a {
  position: relative;
  isolation: isolate;
  min-height: 94px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(217, 192, 140, 0.2);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  color: #fffaf1;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.accomp-intent-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 242, 200, 0.18) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.accomp-intent-grid a::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -36px;
  z-index: -1;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 192, 140, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.accomp-intent-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 192, 140, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 86% 0%, rgba(217, 192, 140, 0.2), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 18px 34px rgba(0, 0, 0, 0.18),
    0 0 0 4px rgba(217, 192, 140, 0.055);
}

.accomp-intent-grid a:hover::before {
  transform: translateX(120%);
}

.accomp-intent-grid a:hover::after {
  opacity: 1;
  transform: translate(-4px, 4px);
}

.accomp-intent-grid strong {
  display: block;
  color: #fffaf1;
  line-height: 1.25;
}

.accomp-intent-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
  line-height: 1.4;
}

.audio-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 292px;
  padding: 12px 18px;
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 192, 140, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(7, 11, 31, 0.96), rgba(15, 23, 42, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(10, 15, 42, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.brand:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 192, 140, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 44px rgba(10, 15, 42, 0.22);
}

.brand img {
  position: relative;
  z-index: 1;
  width: 248px;
  max-width: 25vw;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 20px;
  font-size: 0.89rem;
  color: #243044;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0;
}

.menu a {
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
}

.site-header .menu > a[href="/contact/"] {
  display: none;
}

.menu a:hover {
  color: #9d7a3a;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: #d9c08c;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.menu a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-cta {
  position: relative;
  gap: 12px;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 9px 10px 9px 18px;
  min-height: 48px;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0.01em;
  margin-left: 0;
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: 999px;
  background: linear-gradient(135deg, #d9c08c, #e7d3a2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.nav-cta::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -38%;
  width: 42px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62), transparent);
  transform: rotate(18deg);
  opacity: 0;
  filter: blur(0.4px);
  animation: cta-scan 5.2s ease-in-out infinite;
  pointer-events: none;
}

.nav-cta:hover::before {
  animation-duration: 2.2s;
}

.nav-cta::after {
  content: "→";
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #f8fafc;
  background: radial-gradient(circle at 30% 25%, #223052, var(--night-deep));
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover::after {
  transform: translateX(2px);
  background: #111b38;
}

@keyframes cta-scan {
  0%, 48% {
    left: -42%;
    opacity: 0;
  }
  58% {
    opacity: 0.78;
  }
  74%, 100% {
    left: 118%;
    opacity: 0;
  }
}

.nav-cta,
.btn-primary {
  background: var(--amber);
  color: var(--night-deep);
  box-shadow: 0 10px 28px rgba(217, 192, 140, 0.18);
}

.btn-primary:hover {
  background: #e6cc96;
  box-shadow: 0 12px 34px rgba(217, 192, 140, 0.28);
}

.btn-secondary {
  background: rgba(248, 250, 252, 0.06);
  color: var(--amber);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(217, 192, 140, 0.54);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--night);
  margin: 5px auto;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--mist);
  color: var(--ink-dark);
}

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 62px 0 72px;
  background: var(--night-gradient-soft);
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 94px);
  padding: 0;
  display: grid;
  align-items: stretch;
  background: var(--night-gradient-main);
  overflow: hidden;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 42, 0) 0%,
    rgba(10, 15, 42, 0.68) 62%,
    #0b1226 100%
  );
  pointer-events: none;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 230, 170, 0.18), transparent 38%),
    radial-gradient(circle at 45% 65%, rgba(80, 120, 160, 0.10), transparent 55%),
    linear-gradient(90deg, rgba(10, 15, 42, 0.62) 0%, rgba(10, 15, 42, 0.34) 45%, rgba(10, 15, 42, 0.04) 82%),
    rgba(10, 15, 42, 0.12);
  z-index: 1;
}

.home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 58px;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 94px);
  max-width: 1180px;
}

.home-hero-copy {
  max-width: 640px;
  color: #fffaf1;
  padding: 34px 38px;
  border: 1px solid rgba(217, 192, 140, 0.18);
  border-radius: 14px;
  background: rgba(10, 15, 42, 0.36);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.home-hero + .section {
  background:
    radial-gradient(circle at 78% 0%, rgba(217, 192, 140, 0.08), transparent 42%),
    linear-gradient(180deg, #0b1226 0%, #0f172a 100%);
}

.home-hero .eyebrow,
.contact-band .eyebrow {
  color: var(--amber);
}

.home-hero h1 {
  color: #fffaf1;
  font-size: 3.35rem;
  line-height: 1.02;
  text-wrap: balance;
}

.home-hero .lead {
  color: rgba(255, 250, 241, 0.84);
  max-width: 680px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  color: rgba(255, 250, 241, 0.88);
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: 0;
}

h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.4vw, 3.75rem);
  font-weight: 650;
}

h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.3vw, 2.9rem);
  font-weight: 620;
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  color: var(--muted);
  max-width: 720px;
}

.section-soft .lead,
.section-paper .lead,
.section-soft > .container > .lead,
.section-paper > .container > .lead,
.section-soft .split > div > .lead,
.section-paper .split > div > .lead {
  color: #52606d;
}

.section:not(.section-soft):not(.section-paper):not(.contact-band) > .container > .lead,
.section:not(.section-soft):not(.section-paper):not(.contact-band) .split > div > .lead {
  color: rgba(248, 250, 252, 0.78);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.07);
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.92rem;
}

.hypnose-topics-section {
  background:
    radial-gradient(circle at 82% 6%, rgba(217, 192, 140, 0.12), transparent 34%),
    linear-gradient(180deg, #0b1226 0%, #101936 100%);
}

.hypnose-topics-panel {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(217, 192, 140, 0.24);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 192, 140, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hypnose-topics-heading {
  max-width: 780px;
  margin: 0 auto clamp(24px, 4vw, 34px);
  text-align: center;
}

.hypnose-topics-heading h2 {
  margin: 6px 0 10px;
  color: #fffaf1;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.05;
}

.hypnose-topics-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 1.05rem;
}

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

.hypnose-topic-grid .card-link {
  width: 100%;
  min-width: 0;
  min-height: 86px;
  margin-top: 0;
  padding: 16px 15px;
  border-radius: calc(var(--radius) - 2px);
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 82% 0%, rgba(217, 192, 140, 0.16), transparent 42%);
  border-color: rgba(217, 192, 140, 0.22);
  color: #fffdf8;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hypnose-topic-grid .card-link::after {
  width: 24px;
  height: 24px;
  font-size: 0.92rem;
}

.hypnose-topic-grid .card-link:hover {
  border-color: rgba(217, 192, 140, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 82% 0%, rgba(217, 192, 140, 0.22), transparent 42%);
}

.hypnose-topics-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 4vw, 38px);
}

.btn-premium {
  position: relative;
  overflow: hidden;
  border-color: rgba(217, 192, 140, 0.58);
  background:
    linear-gradient(135deg, rgba(217, 192, 140, 0.98), rgba(180, 139, 58, 0.98)),
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.42), transparent 42%);
  color: #101936;
  box-shadow: 0 16px 36px rgba(10, 15, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn-premium:hover {
  transform: translateY(-2px);
  color: #101936;
  filter: brightness(1.04);
  box-shadow: 0 20px 44px rgba(10, 15, 42, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-media {
  position: relative;
}

.hero-media img,
.feature-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.feature-figure {
  margin: 0;
}

.stacked-feature {
  display: grid;
  gap: 18px;
}

.feature-figure .feature-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
}

.feature-figure figcaption {
  margin-top: 12px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.section-soft .feature-figure figcaption,
.section-paper .feature-figure figcaption {
  color: #52606d;
}

.section-soft .feature-figure figcaption {
  padding-left: 14px;
  border-left: 2px solid rgba(180, 139, 58, 0.46);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.floating-note {
  position: absolute;
  left: -22px;
  bottom: 28px;
  max-width: 270px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: var(--paper);
  color: var(--ink-dark);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.article-section {
  background:
    radial-gradient(circle at 86% 0%, rgba(217, 192, 140, 0.12), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(143, 189, 187, 0.1), transparent 36%),
    linear-gradient(180deg, #f7fafc 0%, var(--paper) 42%, #edf3f7 100%);
  color: var(--ink-dark);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 760px);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.article-layout-single {
  grid-template-columns: minmax(0, 1fr);
}

.article-layout-single .article-content {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.article-aside {
  position: sticky;
  top: 118px;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  position: relative;
  max-width: 940px;
  margin-top: clamp(46px, 6vw, 74px);
  margin-bottom: 18px;
  padding-top: 28px;
  color: var(--night-deep);
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.08;
  text-wrap: balance;
}

.article-content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(180px, 42vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-deep), rgba(217, 192, 140, 0.08));
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.article-content h2:first-child::before {
  display: none;
}

.article-content h3 {
  max-width: 880px;
  margin: clamp(26px, 4vw, 38px) 0 10px;
  color: var(--night-deep);
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.24;
  text-wrap: balance;
}

.article-content p,
.article-content li {
  color: #52606d;
  font-size: clamp(1.04rem, 1.12vw, 1.14rem);
  line-height: 1.82;
}

.article-content p {
  max-width: 900px;
  margin: 0 0 18px;
}

.article-content > p:first-child,
.article-content h2 + p {
  color: #3f4d5c;
  font-size: clamp(1.08rem, 1.22vw, 1.2rem);
}

.article-content ul,
.article-content ol {
  max-width: 900px;
  margin: 24px 0 30px;
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3.5vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 94% 0%, rgba(217, 192, 140, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(247, 250, 252, 0.66));
  box-shadow: 0 18px 48px rgba(10, 15, 42, 0.07);
}

.article-content li {
  margin: 8px 0 8px 1.1em;
  padding-left: 4px;
}

.article-content li::marker {
  color: var(--amber-deep);
}

.article-content blockquote {
  position: relative;
  max-width: 900px;
  margin: clamp(28px, 4vw, 44px) 0;
  padding: clamp(24px, 4vw, 36px) clamp(26px, 4vw, 42px);
  border: 1px solid rgba(217, 192, 140, 0.28);
  border-left: 5px solid var(--amber-deep);
  border-radius: var(--radius);
  color: var(--night-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.45;
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 235, 0.7));
  box-shadow: 0 22px 58px rgba(10, 15, 42, 0.08);
}

.article-content blockquote p {
  max-width: none;
  margin: 0;
  color: inherit;
  font: inherit;
}

.article-content a:not(.btn):not(.card-link) {
  color: #8c6a20;
  font-weight: 750;
  text-decoration-color: rgba(212, 175, 55, 0.42);
  text-underline-offset: 0.18em;
}

.article-content a:not(.btn):not(.card-link):hover {
  color: var(--night-deep);
  text-decoration-color: var(--amber-deep);
}

.article-content .faq-list {
  max-width: 940px;
  margin-top: 24px;
}

.article-cta {
  margin-top: clamp(40px, 6vw, 64px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(10, 15, 42, 0.08);
}

.article-mini-grid {
  max-width: 960px;
  margin: clamp(28px, 4vw, 42px) 0;
}

.article-mini-grid .card {
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.86));
}

.tool-table-wrap {
  max-width: 960px;
  margin: clamp(24px, 4vw, 36px) 0;
  overflow-x: auto;
  border: 1px solid rgba(217, 192, 140, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(10, 15, 42, 0.08);
}

.tool-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.tool-table th,
.tool-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(10, 15, 42, 0.07);
}

.tool-table th {
  color: var(--night-deep);
  font-weight: 900;
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.18), transparent 36%),
    rgba(217, 192, 140, 0.08);
}

.tool-table td {
  color: #52606d;
  line-height: 1.55;
}

.tool-table tr:last-child td {
  border-bottom: 0;
}

.tobacco-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 192, 140, 0.16), transparent 34%),
    radial-gradient(circle at 14% 78%, rgba(120, 160, 180, 0.12), transparent 42%),
    linear-gradient(145deg, #080d22 0%, #0c132b 48%, #111b38 100%);
}

.tobacco-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.tobacco-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.32);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 82% 0%, rgba(217, 192, 140, 0.24), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tobacco-hero-card strong {
  display: block;
  margin: 10px 0 14px;
  color: #fffaf1;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.08;
}

.tobacco-hero-card span {
  color: rgba(255, 253, 248, 0.72);
}

.tobacco-page-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #f3f0ea 100%);
}

.tobacco-content-shell {
  gap: 0;
}

.tobacco-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(34px, 6vw, 64px);
}

.tobacco-feature-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(217, 192, 140, 0.26);
  border-radius: var(--radius);
  text-align: center;
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(10, 15, 42, 0.09);
}

.tobacco-feature-grid span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border: 1px solid rgba(217, 192, 140, 0.44);
  border-radius: 999px;
  color: var(--night-deep);
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.74), transparent 42%),
    linear-gradient(135deg, #f4e4b8, #d9c08c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 30px rgba(217, 192, 140, 0.26);
}

.tobacco-feature-grid strong {
  display: block;
  color: var(--night-deep);
  font-size: 1.16rem;
}

.tobacco-feature-grid p {
  margin: 8px 0 0;
  color: #5f6b78;
}

.tobacco-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tobacco-article {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.tobacco-story-block {
  margin-top: clamp(22px, 4vw, 34px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(10, 15, 42, 0.07);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 58px rgba(10, 15, 42, 0.08);
}

.tobacco-story-block:first-child {
  margin-top: 0;
}

.tobacco-story-block.is-featured {
  border-color: rgba(217, 192, 140, 0.3);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.9);
}

.tobacco-story-block h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--night-deep);
}

.tobacco-story-block .eyebrow {
  margin-bottom: 8px;
}

.tobacco-story-block p:last-child {
  margin-bottom: 0;
}

.tobacco-text-grid,
.tobacco-split-cards,
.tobacco-process-grid {
  display: grid;
  gap: 18px;
}

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

.tobacco-association-grid,
.tobacco-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.tobacco-association-grid span,
.tobacco-benefit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: 999px;
  background: rgba(217, 192, 140, 0.12);
  color: var(--night-deep);
  font-weight: 820;
  font-size: 0.93rem;
}

.tobacco-note-block {
  background:
    linear-gradient(145deg, #101936, #151f3b);
  color: #fffdf8;
  border-color: rgba(217, 192, 140, 0.26);
}

.tobacco-note-block h2,
.tobacco-note-block p {
  color: #fffdf8;
}

.tobacco-note-block p {
  color: rgba(255, 253, 248, 0.76);
}

.tobacco-split-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tobacco-split-cards article,
.tobacco-process-grid article {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(10, 15, 42, 0.08);
}

.tobacco-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.tobacco-process-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tobacco-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border: 1px solid rgba(217, 192, 140, 0.44);
  border-radius: 50%;
  color: var(--night-deep);
  font-weight: 900;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.74), transparent 42%),
    linear-gradient(135deg, #f4e4b8, #d9c08c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 30px rgba(217, 192, 140, 0.22);
}

.tobacco-process-grid strong {
  display: block;
  color: var(--night-deep);
  font-size: 1.08rem;
}

.tobacco-process-grid p {
  margin-top: 8px;
}

.tobacco-article .faq-list {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.card:has(.card-link) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section:not(.section-soft):not(.section-paper):not(.contact-band) .card {
  background: rgba(248, 250, 252, 0.07);
  color: var(--ink);
  border-color: rgba(217, 192, 140, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.section:not(.section-soft):not(.section-paper):not(.contact-band) .card p {
  color: rgba(248, 250, 252, 0.76);
}

.section:not(.section-soft):not(.section-paper):not(.contact-band) .card h3 {
  color: #fffaf1;
}

.contact-band .card {
  background: rgba(248, 250, 252, 0.96);
  color: var(--ink-dark);
  border-color: rgba(217, 192, 140, 0.24);
}

.contact-band .card p {
  color: #52606d;
}

.contact-band .btn-secondary {
  background: var(--night);
  color: var(--amber);
}

.home-card {
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 192, 140, 0.58);
  box-shadow: 0 18px 42px rgba(10, 15, 42, 0.18);
}

.blog-resources-section .section-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.blog-resources-section .section-heading h2 {
  margin: 6px 0 10px;
  color: var(--night-deep);
}

.blog-resources-section .section-heading p:last-child {
  margin: 0;
  color: #5f6b78;
}

.blog-foundation {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(217, 192, 140, 0.3);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 235, 0.72)),
    radial-gradient(circle at 12% 0%, rgba(217, 192, 140, 0.2), transparent 34%);
  box-shadow: 0 22px 58px rgba(10, 15, 42, 0.1);
}

.blog-resource-group {
  margin-top: clamp(42px, 6vw, 76px);
}

.blog-audio-spotlight {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: clamp(52px, 7vw, 88px);
  padding-top: clamp(34px, 5vw, 54px);
}

.blog-audio-spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(620px, 100%);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(180, 139, 58, 0.25), rgba(217, 192, 140, 0.9), rgba(180, 139, 58, 0.25), transparent);
}

.blog-audio-spotlight .card {
  max-width: 560px;
  text-align: center;
  align-items: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 192, 140, 0.24), transparent 46%),
    linear-gradient(135deg, #101a30 0%, #17213a 100%);
  color: #fffaf1;
  border-color: rgba(217, 192, 140, 0.4);
  box-shadow: 0 24px 60px rgba(10, 15, 42, 0.22);
}

.blog-audio-spotlight .card h3 {
  color: #fffaf1;
}

.blog-audio-spotlight .card p {
  color: rgba(255, 250, 241, 0.78);
}

.instagram-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 86px) 0 clamp(34px, 6vw, 70px);
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 189, 187, 0.16), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(217, 192, 140, 0.22), transparent 30%),
    linear-gradient(145deg, #070b1f 0%, #0f172a 58%, #111a33 100%);
}

.instagram-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(760px, 88vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(217, 192, 140, 0.8), transparent);
}

.instagram-shell {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.instagram-shell h1 {
  max-width: 780px;
  margin-inline: auto;
}

.instagram-shell .lead {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(248, 250, 252, 0.78);
}

.instagram-primary-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.instagram-link-section {
  background:
    linear-gradient(180deg, rgba(244, 247, 250, 0.98), rgba(236, 242, 246, 0.98));
  color: var(--ink-dark);
}

.instagram-link-layout {
  display: grid;
  gap: clamp(28px, 5vw, 46px);
}

.instagram-group {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 239, 0.9));
  box-shadow: 0 24px 70px rgba(10, 15, 42, 0.08);
}

.instagram-group::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(217, 192, 140, 0.2), rgba(217, 192, 140, 0.92), rgba(143, 189, 187, 0.55));
}

.instagram-main-group {
  background:
    radial-gradient(circle at 92% 12%, rgba(217, 192, 140, 0.18), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f7f2e7 100%);
}

.instagram-group .section-heading {
  max-width: 760px;
  margin: 0 0 22px;
  text-align: left;
}

.instagram-group .section-heading h2,
.instagram-audio-callout h2 {
  margin: 6px 0 10px;
  color: var(--night-deep);
}

.instagram-group .section-heading p:last-child,
.instagram-audio-callout p {
  margin: 0;
  color: #5f6b78;
}

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

.instagram-link-grid a {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  color: #fffaf1;
  font-weight: 800;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(10, 15, 42, 0.95), rgba(24, 32, 51, 0.96));
  box-shadow: 0 16px 34px rgba(10, 15, 42, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.instagram-link-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 192, 140, 0.52);
  box-shadow: 0 22px 44px rgba(10, 15, 42, 0.18);
}

.instagram-link-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--night-deep);
  background: linear-gradient(135deg, #f3e1ae, #d9c08c);
}

.instagram-group-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 3vw, 28px);
}

.instagram-group-action .btn {
  min-width: min(100%, 320px);
}

.instagram-card-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.instagram-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: 18px;
  color: var(--night-deep);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.84);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.instagram-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 192, 140, 0.55);
  box-shadow: 0 18px 42px rgba(10, 15, 42, 0.1);
}

.instagram-card span {
  color: #7b6532;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-card strong {
  font-size: 1.02rem;
  line-height: 1.35;
}

.instagram-card em {
  color: #8a6f33;
  font-style: normal;
  font-weight: 850;
}

.instagram-audio-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 34px);
  background:
    radial-gradient(circle at 88% 16%, rgba(217, 192, 140, 0.2), transparent 30%),
    linear-gradient(135deg, #0a0f2a 0%, #121b36 100%);
  color: #fffaf1;
}

.instagram-audio-callout h2 {
  color: #fffaf1;
}

.instagram-audio-callout p {
  color: rgba(255, 250, 241, 0.78);
}

.instagram-mini-actions {
  display: grid;
  gap: 12px;
}

.instagram-mini-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: 16px;
  color: #fffaf1;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.instagram-mini-actions a::after {
  content: "→";
  color: var(--amber);
}

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

.instagram-practical-grid a {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: 18px;
  color: var(--night-deep);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.82);
}

.instagram-practical-grid strong {
  font-size: 1rem;
}

.instagram-practical-grid span {
  color: #64707d;
  font-size: 0.92rem;
  line-height: 1.5;
}

.domain-grid-premium {
  gap: clamp(16px, 2vw, 24px);
}

.domain-card {
  position: relative;
  display: grid;
  min-height: clamp(260px, 24vw, 340px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: 8px;
  background: #111827;
  text-decoration: none;
  isolation: isolate;
}

.domain-card::before,
.domain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.domain-card::before {
  background:
    linear-gradient(180deg, rgba(5, 9, 24, 0.1) 0%, rgba(5, 9, 24, 0.38) 34%, rgba(5, 9, 24, 0.94) 100%),
    radial-gradient(circle at 20% 12%, rgba(217, 192, 140, 0.24), transparent 34%);
}

.domain-card::after {
  opacity: 0;
  background: linear-gradient(135deg, rgba(217, 192, 140, 0.26), rgba(10, 15, 42, 0.1));
  transition: opacity 180ms ease;
}

.domain-card:hover::after {
  opacity: 1;
}

.domain-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.domain-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}

.domain-card-content {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: clamp(20px, 2.4vw, 28px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.domain-card-content span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.domain-card h3 {
  max-width: 12ch;
  margin: 0;
  color: #fffdf8;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  text-wrap: balance;
}

.domain-card p {
  display: inline-block;
  max-width: 30ch;
  margin: 12px 0 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(10, 15, 42, 0.46), rgba(10, 15, 42, 0.24));
  color: rgba(255, 253, 248, 0.98);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.38;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(4px);
}

.domain-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 42px);
}

.domain-actions .btn {
  min-width: min(100%, 310px);
}

.accomp-hero {
  background: var(--night-gradient-main);
}

.accompagnements-hub {
  background:
    radial-gradient(circle at 82% 0%, rgba(217, 192, 140, 0.08), transparent 38%),
    linear-gradient(180deg, #0b1226 0%, #0f172a 100%);
}

.accomp-search-panel {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(34px, 5vw, 56px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(217, 192, 140, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.12), transparent 38%),
    rgba(248, 250, 252, 0.06);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

.accomp-search-panel h2 {
  color: #fffaf1;
  margin-bottom: 0;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field span {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-field input {
  min-height: 58px;
  border-color: rgba(217, 192, 140, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  font-size: 1.02rem;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filter-panel,
.quick-filter-panel {
  display: grid;
  gap: 10px;
}

.category-filter-panel p,
.quick-filter-panel p {
  margin: 0;
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.88rem;
  font-weight: 780;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.category-tab {
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 253, 248, 0.84);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.25;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-tab:hover,
.category-tab.is-active {
  color: var(--night-deep);
  background:
    linear-gradient(135deg, rgba(217, 192, 140, 0.96), rgba(236, 211, 156, 0.9));
  border-color: rgba(217, 192, 140, 0.72);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.filter-tag {
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 253, 248, 0.84);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 760;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-tag:hover,
.filter-tag.is-active {
  color: var(--night-deep);
  background: var(--amber);
  border-color: rgba(217, 192, 140, 0.7);
  transform: translateY(-1px);
}

.accomp-filter-feedback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 4px;
}

.accomp-filter-feedback[hidden] {
  display: none;
}

.accomp-filter-status {
  width: fit-content;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(217, 192, 140, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.94rem;
  font-weight: 720;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.accomp-filter-status.is-updated {
  border-color: rgba(217, 192, 140, 0.46);
  background: rgba(217, 192, 140, 0.12);
  color: #fffdf8;
  transform: translateY(-1px);
}

.filter-reset {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(217, 192, 140, 0.16), rgba(255, 255, 255, 0.055));
  color: #fffdf8;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 830;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.filter-reset::before {
  content: "↺";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: var(--night-deep);
  font-size: 0.9rem;
  line-height: 1;
}

.filter-reset:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 192, 140, 0.68);
  background:
    linear-gradient(135deg, rgba(217, 192, 140, 0.24), rgba(255, 255, 255, 0.08));
}

.accomp-results-anchor {
  height: 1px;
  scroll-margin-top: 112px;
}

.accomp-results-anchor:focus {
  outline: none;
}

.accomp-browse-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: clamp(28px, 4vw, 42px) 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(217, 192, 140, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.accomp-browse-actions[hidden] {
  display: none;
}

.accomp-browse-actions p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
}

.accomp-browse-actions strong {
  color: #fffdf8;
}

.accomp-video-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin: 34px 0 52px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(217, 192, 140, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 192, 140, 0.13), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.accomp-video-panel h2,
.accomp-video-panel p {
  color: #fffdf8;
}

.accomp-video-panel p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.78);
}

.accomp-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 192, 140, 0.24);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: #070b1f;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
  display: block;
  width: 100%;
  padding: 0;
  text-decoration: none;
  isolation: isolate;
  cursor: pointer;
}

.accomp-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(7, 11, 31, 0.2), rgba(7, 11, 31, 0.02) 44%, rgba(7, 11, 31, 0.18)),
    radial-gradient(circle at 72% 22%, rgba(217, 192, 140, 0.16), transparent 42%);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.accomp-video-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.accomp-video-frame:hover img {
  transform: scale(1.025);
}

.accomp-video-frame:hover::after {
  opacity: 0.72;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(58px, 7vw, 78px);
  height: clamp(58px, 7vw, 78px);
  border: 1px solid rgba(217, 192, 140, 0.58);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.22), transparent 48%),
    rgba(10, 15, 42, 0.72);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 0 10px rgba(217, 192, 140, 0.08);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--amber);
}

.accomp-video-frame:hover .video-play {
  transform: translate(-50%, -50%) scale(1.04);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.26), transparent 48%),
    rgba(10, 15, 42, 0.84);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 0 12px rgba(217, 192, 140, 0.12);
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 46px);
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(217, 192, 140, 0.12), transparent 42%),
    rgba(3, 7, 18, 0.78);
  backdrop-filter: blur(10px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  border: 1px solid rgba(217, 192, 140, 0.26);
  border-radius: var(--radius-lg);
  padding: clamp(14px, 2vw, 20px);
  background:
    radial-gradient(circle at 78% 16%, rgba(217, 192, 140, 0.12), transparent 38%),
    linear-gradient(135deg, #070b1f, #101936);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.video-modal-frame {
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  aspect-ratio: 16 / 9;
  background: #020617;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: 50%;
  background: rgba(10, 15, 42, 0.82);
  color: #fffdf8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.video-modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 192, 140, 0.68);
  background: rgba(10, 15, 42, 0.96);
}

.video-modal-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--amber);
  font-weight: 800;
  text-decoration: none;
}

.video-modal-link:hover {
  color: #fffdf8;
}

.accomp-domain-group {
  margin-top: clamp(42px, 6vw, 72px);
}

.accomp-domain-group[hidden] {
  display: none;
}

.accomp-group-heading {
  max-width: 820px;
  margin-bottom: 20px;
}

.accomp-group-heading h2 {
  color: #fffdf8;
}

.accomp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.accomp-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.965), rgba(244, 247, 250, 0.92));
  color: var(--ink-dark);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.accomp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 192, 140, 0.46);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.17);
}

.accomp-card.is-refreshed {
  animation: accompCardRefresh 520ms ease both;
}

@keyframes accompCardRefresh {
  0% {
    transform: translateY(8px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
  }
}

.accomp-card[hidden] {
  display: none;
}

.accomp-card h3 {
  position: relative;
  color: var(--night-deep);
  margin: 0 0 28px;
  padding-bottom: 18px;
  font-size: clamp(1.22rem, 1.5vw, 1.42rem);
  line-height: 1.16;
}

.accomp-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(138px, 62%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4af37 0%, rgba(217, 192, 140, 0.82) 46%, rgba(217, 192, 140, 0) 100%);
  box-shadow: 0 0 14px rgba(217, 192, 140, 0.24);
}

.accomp-card p {
  color: #52606d;
  margin: 0 0 22px;
}

.accomp-card .accomp-cta {
  margin-top: auto;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: fit-content;
  min-width: 156px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(217, 192, 140, 0.42);
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0a0f2a 0%, #111a38 100%);
  color: #fffdf8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(10, 15, 42, 0.18);
  font-size: 0.94rem;
  font-weight: 820;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.accomp-card .accomp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 242, 200, 0.18) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.accomp-card .accomp-cta::after {
  content: "→";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8d39e, #d9c08c);
  color: var(--night-deep);
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(217, 192, 140, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.accomp-card .accomp-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 192, 140, 0.72);
  background:
    linear-gradient(135deg, #0f172f 0%, #172246 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(10, 15, 42, 0.26),
    0 0 0 4px rgba(217, 192, 140, 0.08);
  text-decoration: none;
}

.accomp-card .accomp-cta:hover::before {
  transform: translateX(120%);
}

.accomp-card .accomp-cta:hover::after {
  transform: translateX(2px);
  box-shadow: 0 10px 22px rgba(217, 192, 140, 0.34);
}

.accomp-card .accomp-cta:focus-visible {
  outline: 3px solid rgba(217, 192, 140, 0.36);
  outline-offset: 4px;
}

.no-results {
  margin: 28px 0 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 248, 0.82);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.no-results-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.no-results-card h2 {
  color: #fffaf1;
  margin-bottom: 16px;
}

.no-results-card p {
  color: rgba(255, 253, 248, 0.76);
}

.theme-suggestion-form {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(217, 192, 140, 0.18);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(248, 250, 252, 0.08);
}

.theme-suggestion-form label {
  color: #fffdf8;
}

.theme-suggestion-form label span {
  color: rgba(255, 253, 248, 0.56);
  font-weight: 650;
}

.theme-suggestion-form input:not([type="checkbox"]) {
  border-color: rgba(217, 192, 140, 0.22);
  background: rgba(255, 255, 255, 0.94);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 0.93rem;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--amber);
}

.theme-suggestion-form .small {
  color: #ffd9b0;
  margin: -4px 0 0;
}

.no-results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.stat {
  padding: 26px;
  border-left: 1px solid var(--line);
  color: var(--ink-dark);
}

.stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--amber-deep);
  margin-bottom: 8px;
}

.steps {
  counter-reset: step;
}

.step {
  --step-space: clamp(12px, 1.6vw, 18px);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: var(--step-space);
  align-content: center;
  align-items: center;
  min-height: 180px;
  padding: clamp(20px, 3vw, 28px) var(--step-space);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--night-deep);
  color: var(--paper);
  font-weight: 850;
}

.step h3,
.step p {
  grid-column: 2;
}

.step p {
  margin-bottom: 0;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted-dark);
  margin: 0 0 16px;
}

.card-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  min-width: 156px;
  margin-top: auto;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(217, 192, 140, 0.42);
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f2a 0%, #111a38 100%);
  color: #fffdf8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(10, 15, 42, 0.18);
  font-size: 0.94rem;
  font-weight: 820;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 242, 200, 0.18) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.card-link::after {
  content: "\2192";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8d39e, #d9c08c);
  color: var(--night-deep);
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(217, 192, 140, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 192, 140, 0.72);
  background: linear-gradient(135deg, #0f172f 0%, #172246 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(10, 15, 42, 0.26),
    0 0 0 4px rgba(217, 192, 140, 0.08);
  text-decoration: none;
}

.card-link:hover::before {
  transform: translateX(120%);
}

.card-link:hover::after {
  transform: translateX(2px);
  box-shadow: 0 10px 22px rgba(217, 192, 140, 0.34);
}

.card-link:focus-visible {
  outline: 3px solid rgba(217, 192, 140, 0.36);
  outline-offset: 4px;
}

.credential-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 470px;
  background: #101936;
  border-color: rgba(217, 192, 140, 0.2);
}

.credential-media {
  height: 230px;
  flex: 0 0 230px;
  background:
    radial-gradient(circle at 70% 20%, rgba(217, 192, 140, 0.12), transparent 42%),
    #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 192, 140, 0.18);
  position: relative;
}

.credential-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credential-media:not(.logo-media)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 42, 0.02), rgba(10, 15, 42, 0.18));
  pointer-events: none;
}

.credential-media.cabinet-media img {
  object-position: center center;
}

.credential-media.conference-media img {
  object-position: center center;
}

.credential-media.logo-media {
  padding: 42px;
  background:
    radial-gradient(circle at 72% 20%, rgba(217, 192, 140, 0.14), transparent 44%),
    linear-gradient(135deg, #f8fafc, #ecf2f6);
}

.credential-media.logo-media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.credential-body {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 88% 0%, rgba(217, 192, 140, 0.08), transparent 44%),
    #101936;
}

.credential-card h3 {
  color: #f8fafc;
  min-height: 2.65em;
  margin-bottom: 14px;
  font-size: 1.2rem;
  line-height: 1.22;
}

.credential-card p {
  color: rgba(248, 250, 252, 0.76);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.about-hero {
  background: var(--night-gradient-main);
}

.editorial {
  max-width: 880px;
}

.editorial p {
  font-size: 1.08rem;
  color: inherit;
}

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

.formation-item {
  padding: 20px;
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 250, 0.88));
  color: #52606d;
  box-shadow: 0 12px 30px rgba(10, 15, 42, 0.07);
}

.formation-item strong {
  display: block;
  color: var(--night-deep);
  margin-bottom: 6px;
}

.detail-card {
  padding: 0;
  overflow: hidden;
}

.detail-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.detail-card div {
  padding: 22px;
}

.premium-details {
  display: grid;
  gap: 12px;
}

.premium-details details {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-dark);
  padding: 18px 20px;
}

.premium-details summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink-dark);
}

.premium-details p {
  color: var(--muted-dark);
  margin: 12px 0 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: clamp(24px, 4vw, 34px);
}

.faq-list details {
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 250, 0.94));
  color: var(--ink-dark);
  box-shadow: 0 14px 34px rgba(10, 15, 42, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 192, 140, 0.34);
  box-shadow: 0 18px 44px rgba(10, 15, 42, 0.12);
}

.faq-list details[open] {
  border-color: rgba(217, 192, 140, 0.46);
  box-shadow: 0 20px 52px rgba(10, 15, 42, 0.14);
}

.faq-list summary {
  position: relative;
  min-height: 68px;
  padding: 20px 68px 20px 24px;
  list-style: none;
  cursor: pointer;
  color: var(--night-deep);
  font-weight: 850;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "Cliquer pour lire";
  display: block;
  margin-bottom: 6px;
  color: var(--amber-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 192, 140, 0.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--night-deep);
  color: var(--amber);
  font-size: 1.3rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-list details[open] summary {
  background:
    radial-gradient(circle at 92% 18%, rgba(217, 192, 140, 0.14), transparent 34%),
    rgba(217, 192, 140, 0.06);
}

.faq-list details[open] summary::before {
  content: "Réponse ouverte";
}

.faq-list details[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
  background: var(--amber);
  color: var(--night-deep);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: #465463;
  font-size: 1rem;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.faq-page-intro {
  position: sticky;
  top: 116px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 250, 0.94));
  box-shadow: 0 20px 54px rgba(10, 15, 42, 0.1);
}

.faq-page-intro h2 {
  margin: 8px 0 14px;
  color: var(--night-deep);
}

.faq-page-intro .lead {
  margin-bottom: 22px;
  color: #52606d;
  font-size: 1.02rem;
}

.faq-page-intro .btn {
  width: 100%;
}

.faq-page-content {
  display: grid;
  gap: clamp(28px, 4vw, 42px);
}

.faq-group {
  padding-top: 2px;
}

.faq-group-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--amber-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-group-title::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 139, 58, 0.25), rgba(217, 192, 140, 0.92));
}

.faq-page-content .faq-list {
  margin-top: 0;
}

@media (max-width: 980px) {
  .reassurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .faq-page-layout {
    grid-template-columns: 1fr;
  }

  .faq-page-intro {
    position: static;
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.list {
  padding-left: 20px;
  color: inherit;
}

.list li {
  margin: 8px 0;
}

.quote {
  border-left: 4px solid var(--amber);
  padding-left: 18px;
  color: #374151;
  font-size: 1.05rem;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 54px;
  margin-top: 34px;
}

.approach-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.approach-icon {
  width: 74px;
  height: 74px;
  border: 2px solid rgba(217, 192, 140, 0.42);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-deep);
  font-size: 1.55rem;
  font-weight: 850;
  background: rgba(248, 250, 252, 0.86);
}

.approach-item h3 {
  color: var(--amber-deep);
  margin-bottom: 8px;
}

.approach-item p {
  color: var(--muted-dark);
  margin: 0;
}

.integrative-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 192, 140, 0.18), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(143, 189, 187, 0.12), transparent 42%),
    linear-gradient(145deg, #070b1f 0%, #0a0f2a 48%, #121c39 100%);
}

.integrative-hero .lead {
  max-width: 860px;
}

.integrative-principles {
  background:
    linear-gradient(180deg, #f7fafc 0%, var(--paper) 100%);
  color: var(--ink-dark);
}

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

.integrative-principle {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(217, 192, 140, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 250, 0.9));
  box-shadow: 0 18px 48px rgba(10, 15, 42, 0.07);
}

.integrative-principle span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--amber-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.integrative-principle h3 {
  margin: 0 0 10px;
  color: var(--night-deep);
}

.integrative-principle p {
  margin: 0;
  color: #52606d;
}

.integrative-tools-section {
  background:
    radial-gradient(circle at 88% 0%, rgba(217, 192, 140, 0.12), transparent 36%),
    radial-gradient(circle at 8% 74%, rgba(143, 189, 187, 0.1), transparent 38%),
    var(--paper);
  color: var(--ink-dark);
}

.integrative-tools-intro {
  max-width: 860px;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.integrative-tools-intro h2 {
  margin-bottom: 14px;
  color: var(--night-deep);
}

.integrative-tools-intro p {
  color: #52606d;
}

.integrative-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.integrative-tool-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  min-height: 230px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.88));
  box-shadow: 0 20px 56px rgba(10, 15, 42, 0.08);
  overflow: hidden;
}

.integrative-tool-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(217, 192, 140, 0), rgba(217, 192, 140, 0.62), rgba(217, 192, 140, 0));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.integrative-tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 192, 140, 0.36);
  box-shadow: 0 26px 68px rgba(10, 15, 42, 0.12);
}

.integrative-tool-card:hover::after {
  opacity: 1;
}

.integrative-tool-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(217, 192, 140, 0.48);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-deep);
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(145deg, rgba(217, 192, 140, 0.2), rgba(255, 255, 255, 0.78));
  box-shadow:
    0 14px 34px rgba(10, 15, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.integrative-tool-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integrative-tool-body h3 {
  margin: 0 0 10px;
  color: var(--night-deep);
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.18;
  text-wrap: balance;
}

.integrative-tool-body p {
  margin: 0;
  color: #52606d;
}

.integrative-tool-tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--amber-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.integrative-note {
  margin-top: clamp(28px, 5vw, 44px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.22), transparent 38%),
    linear-gradient(145deg, #0a0f2a, #182033);
  color: #fffaf1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.integrative-note h2 {
  margin: 0 0 8px;
  color: #fffaf1;
}

.integrative-note p {
  margin: 0;
  color: rgba(248, 250, 252, 0.78);
}

.integrative-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.integrative-hero-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.32);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 85% 0%, rgba(217, 192, 140, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.integrative-card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.integrative-hero-card strong {
  display: block;
  margin-bottom: 12px;
  color: #fffaf1;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.integrative-hero-card p {
  margin: 0;
  color: rgba(248, 250, 252, 0.8);
}

.integrative-mini-tags,
.integrative-path-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.integrative-mini-tags span,
.integrative-path-points span,
.integrative-path-points a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: 999px;
  color: #fff7e6;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.integrative-path-points a:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 192, 140, 0.68);
  background: rgba(217, 192, 140, 0.14);
  color: #fffaf1;
}

.integrative-principle-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(217, 192, 140, 0.24);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 250, 0.9));
  box-shadow: 0 18px 48px rgba(10, 15, 42, 0.07);
}

.integrative-principle-card .principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: var(--night-deep);
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.52), transparent 36%),
    linear-gradient(135deg, #efd99d, #c7a45c);
  box-shadow:
    0 16px 34px rgba(180, 139, 58, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.integrative-principle-card .principle-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integrative-principle-card h3 {
  margin: 0 0 10px;
  color: var(--night-deep);
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  line-height: 1.16;
}

.integrative-principle-card p {
  margin: 0;
  color: #52606d;
}

.integrative-tools-head {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 46px);
}

.integrative-tools-head h2 {
  margin-bottom: 14px;
  color: var(--night-deep);
}

.integrative-tools-head p {
  color: #52606d;
}

.integrative-icon {
  position: relative;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(217, 192, 140, 0.58);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-deep);
  background:
    radial-gradient(circle at 33% 20%, rgba(255, 255, 255, 0.96), transparent 31%),
    radial-gradient(circle at 70% 78%, rgba(217, 192, 140, 0.2), transparent 42%),
    linear-gradient(145deg, #fffdf7 0%, #f5ead2 48%, #ffffff 100%);
  box-shadow:
    0 16px 34px rgba(10, 15, 42, 0.08),
    0 8px 18px rgba(180, 139, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -10px 22px rgba(217, 192, 140, 0.12);
}

.integrative-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  pointer-events: none;
}

.integrative-icon::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(217, 192, 140, 0.18), transparent 64%);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: -1;
}

.integrative-icon svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integrative-tool-card:hover .integrative-icon::after {
  opacity: 1;
  transform: scale(1);
}

.integrative-tool-card:hover .integrative-icon {
  border-color: rgba(217, 192, 140, 0.82);
  box-shadow:
    0 20px 42px rgba(10, 15, 42, 0.1),
    0 10px 22px rgba(180, 139, 58, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -10px 22px rgba(217, 192, 140, 0.15);
}

.integrative-icon.icon-hypnose,
.integrative-icon.icon-elman {
  color: #9d6a18;
}

.integrative-icon.icon-spirituelle,
.integrative-icon.icon-enneagramme {
  color: #8062a8;
}

.integrative-icon.icon-emdr,
.integrative-icon.icon-imo {
  color: #4a7f88;
}

.integrative-icon.icon-eft,
.integrative-icon.icon-coherence {
  color: #8a6a33;
}

.integrative-icon.icon-pnl,
.integrative-icon.icon-psycho {
  color: #60745d;
}

.integrative-tool-card {
  align-items: start;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.integrative-tool-card h3 {
  margin: 0 0 10px;
  color: var(--night-deep);
  font-size: clamp(1.18rem, 1.55vw, 1.45rem);
  line-height: 1.18;
  text-wrap: balance;
}

.integrative-tool-card p {
  margin: 0;
  color: #52606d;
}

.integrative-tool-card.is-primary {
  border-color: rgba(217, 192, 140, 0.42);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.22), transparent 38%),
    linear-gradient(145deg, #0a0f2a, #182033);
  color: #fffaf1;
  box-shadow: 0 26px 72px rgba(10, 15, 42, 0.16);
}

.integrative-tool-card.is-primary h3 {
  color: #fffaf1;
}

.integrative-tool-card.is-primary p {
  color: rgba(248, 250, 252, 0.78);
}

.integrative-tool-card.is-primary .integrative-icon {
  color: var(--gold);
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(217, 192, 140, 0.18), rgba(255, 255, 255, 0.06));
}

.integrative-path-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(143, 189, 187, 0.09), transparent 34%),
    linear-gradient(180deg, var(--paper), #eef4f8);
}

.integrative-path-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(217, 192, 140, 0.3);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.18), transparent 36%),
    linear-gradient(145deg, #0a0f2a, #182033);
  box-shadow: 0 28px 74px rgba(10, 15, 42, 0.14);
}

.integrative-path-card h2 {
  color: #fffaf1;
}

.integrative-path-card p {
  color: rgba(248, 250, 252, 0.78);
}

.tool-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 192, 140, 0.16), transparent 34%),
    radial-gradient(circle at 14% 82%, rgba(143, 189, 187, 0.11), transparent 38%),
    linear-gradient(145deg, #070b1f 0%, #0a0f2a 52%, #182033 100%);
}

.tool-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.tool-hero-copy .lead {
  max-width: 820px;
}

.breath-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fffaf1;
}

.breath-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.breath-panel strong {
  display: block;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.1;
}

.breath-panel p {
  color: rgba(248, 250, 252, 0.78);
}

.breath-wave {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
  height: 82px;
  margin: 28px 0 16px;
}

.breath-wave span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #efd99d, rgba(217, 192, 140, 0.42));
  box-shadow: 0 10px 24px rgba(217, 192, 140, 0.16);
}

.breath-wave span:nth-child(1) { height: 30%; }
.breath-wave span:nth-child(2) { height: 58%; }
.breath-wave span:nth-child(3) { height: 88%; }
.breath-wave span:nth-child(4) { height: 58%; }
.breath-wave span:nth-child(5) { height: 30%; }

.breath-timing {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.enneagram-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 50% 28%, rgba(217, 192, 140, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fffaf1;
}

.enneagram-panel strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.enneagram-panel p {
  color: rgba(248, 250, 252, 0.78);
}

.enneagram-symbol {
  position: relative;
  width: min(292px, 100%);
  aspect-ratio: 1;
  margin: 8px auto 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 192, 140, 0.28);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at center, rgba(217, 192, 140, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.enneagram-symbol svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.enneagram-ring {
  fill: none;
  stroke: rgba(175, 188, 226, 0.82);
  stroke-width: 7;
}

.enneagram-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.1;
  opacity: 0.86;
}

.enneagram-line.enea-purple { stroke: #7b2ca0; }
.enneagram-line.enea-grey { stroke: #a7ada1; }
.enneagram-line.enea-olive { stroke: #9da12f; }
.enneagram-line.enea-gold { stroke: #f3a71a; }
.enneagram-line.enea-pink { stroke: #c01886; }
.enneagram-line.enea-green { stroke: #16884e; }
.enneagram-line.enea-lime { stroke: #c7e72d; }
.enneagram-line.enea-teal { stroke: #35c8bd; }
.enneagram-line.enea-orange { stroke: #f0641e; }

.enneagram-num {
  fill: rgba(255, 250, 241, 0.92);
  font-size: 28px;
  font-weight: 950;
  text-anchor: middle;
  dominant-baseline: middle;
  paint-order: stroke;
  stroke: rgba(10, 15, 42, 0.78);
  stroke-width: 5.5px;
}

.enneagram-num.n9 { fill: #dbc2ee; }
.enneagram-num.n1 { fill: #d9decf; }
.enneagram-num.n2 { fill: #efd99d; }
.enneagram-num.n3 { fill: #8fd6d0; }
.enneagram-num.n4 { fill: #d9c08c; }
.enneagram-num.n5 { fill: #86c5a5; }
.enneagram-num.n6 { fill: #f0a15c; }
.enneagram-num.n7 { fill: #d6eb5c; }
.enneagram-num.n8 { fill: #f08ac2; }

.enneagram-number-grid span {
  font-size: 1.65rem;
}

.pnl-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 44% 24%, rgba(143, 189, 187, 0.17), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(217, 192, 140, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fffaf1;
}

.pnl-panel strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.pnl-panel p {
  color: rgba(248, 250, 252, 0.78);
}

.pnl-map {
  display: grid;
  gap: 14px;
  margin: 24px 0 4px;
}

.pnl-map span {
  position: relative;
  display: block;
  padding: 15px 18px;
  border: 1px solid rgba(217, 192, 140, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 92% 50%, rgba(217, 192, 140, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.08);
  color: #fffaf1;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.pnl-map span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 1px;
  height: 15px;
  background: rgba(217, 192, 140, 0.32);
}

.pnl-map span:last-child::after {
  display: none;
}

.pnl-number-grid span {
  font-size: 1.55rem;
}

.family-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 50% 20%, rgba(217, 192, 140, 0.18), transparent 38%),
    radial-gradient(circle at 12% 86%, rgba(143, 189, 187, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fffaf1;
}

.family-panel strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.family-panel p {
  color: rgba(248, 250, 252, 0.78);
}

.family-tree {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
  width: min(260px, 100%);
  margin: 28px auto 6px;
  padding: 6px 10px 14px;
}

.family-tree::before,
.family-tree::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 38px;
  width: 1px;
  height: 92px;
  background: linear-gradient(180deg, rgba(217, 192, 140, 0.65), rgba(217, 192, 140, 0.16));
  transform: translateX(-50%);
}

.family-tree::after {
  top: 76px;
  width: 62%;
  height: 1px;
  background: rgba(217, 192, 140, 0.36);
}

.family-tree span {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 192, 140, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.26), transparent 44%),
    linear-gradient(135deg, rgba(217, 192, 140, 0.32), rgba(255, 255, 255, 0.06));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.family-tree span:first-child {
  grid-column: 2;
  justify-self: center;
}

.family-tree span:nth-child(2),
.family-tree span:nth-child(4) {
  justify-self: start;
}

.family-tree span:nth-child(3),
.family-tree span:nth-child(5) {
  justify-self: end;
}

.family-number-grid span {
  font-size: 1rem;
}

.family-guidance-card {
  margin-top: clamp(22px, 3vw, 34px);
}

.eft-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 50% 22%, rgba(217, 192, 140, 0.2), transparent 38%),
    radial-gradient(circle at 16% 84%, rgba(143, 189, 187, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fffaf1;
}

.eft-panel strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.eft-panel p {
  color: rgba(248, 250, 252, 0.78);
}

.eft-tapping-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  margin: 30px auto 8px;
  width: min(260px, 100%);
  min-height: 138px;
  align-items: center;
}

.eft-tapping-map::before {
  content: "";
  position: absolute;
  inset: 18px 18px;
  border: 1px solid rgba(217, 192, 140, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 192, 140, 0.12), transparent 40%);
}

.eft-tapping-map span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 192, 140, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.32), transparent 44%),
    linear-gradient(135deg, rgba(239, 217, 157, 0.72), rgba(199, 164, 92, 0.42));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 0 8px rgba(217, 192, 140, 0.08);
}

.eft-tapping-map span:nth-child(1) {
  grid-column: 3;
  justify-self: center;
  align-self: start;
}

.eft-tapping-map span:nth-child(2) {
  grid-column: 2;
  justify-self: center;
}

.eft-tapping-map span:nth-child(3) {
  grid-column: 4;
  justify-self: center;
}

.eft-tapping-map span:nth-child(4) {
  grid-column: 2;
  justify-self: center;
  align-self: end;
}

.eft-tapping-map span:nth-child(5) {
  grid-column: 4;
  justify-self: center;
  align-self: end;
}

.eft-number-grid span {
  font-size: 1rem;
}

.eft-guidance-card {
  margin-top: clamp(22px, 3vw, 34px);
}

.emdr-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 50% 28%, rgba(143, 189, 187, 0.17), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(217, 192, 140, 0.17), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fffaf1;
}

.emdr-panel strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.emdr-panel p {
  color: rgba(248, 250, 252, 0.78);
}

.emdr-eye-map {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(90px, 1fr) 56px;
  align-items: center;
  gap: 14px;
  width: min(280px, 100%);
  margin: 34px auto 10px;
}

.emdr-eye-map::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 192, 140, 0.72), transparent);
  transform: translateY(-50%);
}

.emdr-eye-map span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(217, 192, 140, 0.48);
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(circle at 50% 50%, #efd99d 0 18%, rgba(255, 255, 255, 0.18) 20% 34%, transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(217, 192, 140, 0.16));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.emdr-eye-map i {
  position: relative;
  z-index: 1;
  display: block;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(217, 192, 140, 0.32);
  background:
    linear-gradient(90deg, rgba(217, 192, 140, 0.12), rgba(217, 192, 140, 0.34), rgba(217, 192, 140, 0.12));
}

.emdr-eye-map i::before,
.emdr-eye-map i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
}

.emdr-eye-map i::before {
  left: 14px;
  border-right: 9px solid var(--gold);
}

.emdr-eye-map i::after {
  right: 14px;
  border-left: 9px solid var(--gold);
}

.emdr-number-grid span {
  font-size: 1rem;
}

.emdr-guidance-card {
  margin-top: clamp(22px, 3vw, 34px);
}

.imo-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 30% 22%, rgba(143, 189, 187, 0.18), transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(217, 192, 140, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fffaf1;
}

.imo-panel strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.imo-panel p {
  color: rgba(248, 250, 252, 0.78);
}

.imo-flow-map {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(38px, 1fr) 48px minmax(38px, 1fr) 48px;
  align-items: center;
  gap: 8px;
  width: min(286px, 100%);
  margin: 34px auto 10px;
}

.imo-flow-map span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(217, 192, 140, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #efd99d 0 14%, rgba(255, 255, 255, 0.2) 16% 32%, transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(143, 189, 187, 0.16));
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.19),
    0 0 0 8px rgba(143, 189, 187, 0.07);
}

.imo-flow-map i {
  position: relative;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 192, 140, 0.16), rgba(217, 192, 140, 0.72));
}

.imo-flow-map i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(217, 192, 140, 0.82);
  border-right: 2px solid rgba(217, 192, 140, 0.82);
  transform: translateY(-50%) rotate(45deg);
}

.imo-number-grid span {
  font-size: 1rem;
}

.imo-guidance-card {
  margin-top: clamp(22px, 3vw, 34px);
}

.elman-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 50% 22%, rgba(217, 192, 140, 0.2), transparent 40%),
    radial-gradient(circle at 14% 84%, rgba(143, 189, 187, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fffaf1;
}

.elman-panel strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.elman-panel p {
  color: rgba(248, 250, 252, 0.78);
}

.elman-steps {
  display: grid;
  grid-template-columns: 52px 1fr 52px 1fr 52px;
  align-items: center;
  gap: 10px;
  width: min(290px, 100%);
  margin: 34px auto 10px;
}

.elman-steps span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(217, 192, 140, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.28), transparent 44%),
    linear-gradient(135deg, #efd99d, rgba(199, 164, 92, 0.62));
  color: var(--night-deep);
  font-weight: 950;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.2),
    0 0 0 8px rgba(217, 192, 140, 0.08);
}

.elman-steps i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 192, 140, 0.18), rgba(217, 192, 140, 0.78));
}

.elman-number-grid span {
  font-size: 1rem;
}

.elman-guidance-card {
  margin-top: clamp(22px, 3vw, 34px);
}

.comparison-card {
  align-self: stretch;
}

.comparison-rows {
  display: grid;
  gap: 14px;
}

.comparison-rows p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.72);
}

.comparison-rows strong {
  display: block;
  margin-bottom: 6px;
  color: var(--night-deep);
}

.comparison-rows span {
  color: #52606d;
}

.spiritual-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 50% 22%, rgba(217, 192, 140, 0.18), transparent 38%),
    radial-gradient(circle at 86% 82%, rgba(143, 189, 187, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fffaf1;
}

.spiritual-panel strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.spiritual-panel p {
  color: rgba(248, 250, 252, 0.78);
}

.spiritual-compass {
  position: relative;
  width: min(220px, 100%);
  aspect-ratio: 1;
  margin: 26px auto 8px;
  border: 1px solid rgba(217, 192, 140, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(217, 192, 140, 0.2), transparent 22%),
    radial-gradient(circle at center, transparent 54%, rgba(217, 192, 140, 0.12) 55%, transparent 58%);
}

.spiritual-compass::before,
.spiritual-compass::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(217, 192, 140, 0.3);
  transform: rotate(45deg);
}

.spiritual-compass::after {
  inset: 36%;
  border-color: rgba(143, 189, 187, 0.28);
  transform: rotate(0deg);
}

.spiritual-compass span {
  position: absolute;
  inset: 44%;
  border-radius: 50%;
  background: linear-gradient(135deg, #efd99d, #c7a45c);
  box-shadow:
    0 0 0 10px rgba(217, 192, 140, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.spiritual-compass i {
  position: absolute;
  left: 50%;
  top: 12%;
  width: 2px;
  height: 76%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(217, 192, 140, 0.82), rgba(143, 189, 187, 0.12));
  transform: translateX(-50%) rotate(18deg);
}

.spiritual-compass i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(217, 192, 140, 0.86);
  border-left: 2px solid rgba(217, 192, 140, 0.86);
  transform: translateX(-50%) rotate(45deg);
}

.spiritual-number-grid span {
  font-size: 1rem;
}

.spiritual-guidance-card {
  margin-top: clamp(22px, 3vw, 34px);
}

.tool-brief-section {
  background: linear-gradient(180deg, #f5f9fc, var(--paper));
}

.tool-brief-grid,
.tool-number-grid,
.tool-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.tool-brief-card,
.tool-number-grid article,
.tool-process-grid article,
.tool-side-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 252, 0.9));
  box-shadow: 0 18px 48px rgba(10, 15, 42, 0.07);
}

.tool-brief-card.is-dark {
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.2), transparent 36%),
    linear-gradient(145deg, #0a0f2a, #182033);
  color: #fffaf1;
}

.tool-brief-card.is-dark h2,
.tool-brief-card.is-dark p {
  color: #fffaf1;
}

.enneagram-brief-intro h2 {
  font-size: clamp(1.28rem, 1.75vw, 1.72rem);
  line-height: 1.18;
}

.tool-brief-card h3,
.tool-number-grid h3,
.tool-process-grid h3,
.tool-side-card h3 {
  margin: 0 0 12px;
  color: var(--night-deep);
  font-size: clamp(1.18rem, 1.5vw, 1.42rem);
  line-height: 1.16;
}

.tool-brief-card ul {
  margin: 0;
  padding-left: 20px;
  color: #52606d;
}

.tool-number-grid article {
  text-align: center;
}

.tool-number-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efd99d, #c7a45c);
  color: #0a0f2a;
  font-size: 1.8rem;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(180, 139, 58, 0.2);
}

.tool-split {
  align-items: center;
}

.tool-side-card {
  position: relative;
  overflow: hidden;
}

.tool-link-list {
  display: grid;
  gap: 10px;
}

.tool-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: 999px;
  color: var(--night-deep);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.tool-link-list a::after {
  content: "→";
  color: var(--amber-deep);
}

.tool-link-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 192, 140, 0.48);
  box-shadow: 0 14px 30px rgba(10, 15, 42, 0.08);
}

.tool-process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #0a0f2a;
  background: linear-gradient(135deg, #efd99d, #c7a45c);
  font-weight: 950;
}

.tool-guidance-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  margin-top: clamp(22px, 4vw, 34px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(10, 15, 42, 0.98), rgba(24, 32, 51, 0.96));
  color: #fffaf1;
  box-shadow: 0 24px 64px rgba(10, 15, 42, 0.16);
}

.tool-guidance-card h3 {
  margin: 0;
  color: #fffaf1;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.tool-guidance-card p {
  margin-top: 0;
  color: rgba(248, 250, 252, 0.8);
}

.tool-guidance-card p:last-child {
  margin-bottom: 0;
}

.tool-guidance-card a {
  color: var(--amber);
  font-weight: 850;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.calm-tips-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 192, 140, 0.17), transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(143, 189, 187, 0.12), transparent 38%),
    linear-gradient(145deg, #070b1f 0%, #0a0f2a 52%, #182033 100%);
}

.calm-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.calm-tip-card {
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(217, 192, 140, 0.24);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.14), transparent 34%),
    linear-gradient(145deg, #ffffff, #f3f8fb);
  box-shadow: 0 18px 48px rgba(10, 15, 42, 0.07);
}

.calm-tip-card span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efd99d, #c7a45c);
  color: #0a0f2a;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(180, 139, 58, 0.18);
}

.calm-tip-card h3 {
  margin: 0 0 10px;
  color: var(--night-deep);
  font-size: clamp(1.15rem, 1.45vw, 1.34rem);
  line-height: 1.18;
}

.calm-tip-card p {
  margin: 0;
  color: #52606d;
}

.calm-resource-section {
  background:
    radial-gradient(circle at 86% 8%, rgba(217, 192, 140, 0.14), transparent 36%),
    linear-gradient(180deg, var(--paper), #eef4f8);
}

.calm-resource-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(217, 192, 140, 0.32);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.18), transparent 36%),
    linear-gradient(145deg, #0a0f2a, #182033);
  color: #fffaf1;
  box-shadow: 0 26px 68px rgba(10, 15, 42, 0.14);
}

.calm-resource-card h2 {
  color: #fffaf1;
}

.calm-resource-card p {
  max-width: 780px;
  color: rgba(248, 250, 252, 0.78);
}

.tool-human-section,
.tool-closing-section {
  background:
    radial-gradient(circle at 88% 0%, rgba(217, 192, 140, 0.12), transparent 36%),
    linear-gradient(180deg, var(--paper), #eef4f8);
}

.tool-human-card,
.tool-closing-card {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(217, 192, 140, 0.32);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 192, 140, 0.18), transparent 36%),
    linear-gradient(145deg, #0a0f2a, #182033);
  color: #fffaf1;
  box-shadow: 0 28px 74px rgba(10, 15, 42, 0.14);
}

.tool-human-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.tool-human-card h2,
.tool-closing-card h2 {
  color: #fffaf1;
}

.tool-human-card p,
.tool-closing-card p {
  color: rgba(248, 250, 252, 0.78);
}

.tool-closing-card {
  max-width: 980px;
  text-align: center;
}

.stars {
  color: #f4a51c;
  letter-spacing: 0.05em;
  font-weight: 900;
}

.price {
  font-size: 2rem;
  font-weight: 850;
  color: var(--amber-deep);
}

.booking-hero .lead {
  max-width: 760px;
}

.booking-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 28px;
}

.booking-phone-link {
  color: var(--amber);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.booking-phone-link:hover {
  color: #fffdf8;
}

.booking-intro .split {
  align-items: stretch;
}

.booking-note,
.booking-practical-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 192, 140, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(10, 15, 42, 0.08);
}

.booking-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-dark);
  font-size: 1.1rem;
}

.booking-services-section h2 {
  color: #fffdf8;
}

.booking-services-section {
  scroll-margin-top: 118px;
}

.booking-section-lead {
  max-width: 780px;
  color: rgba(255, 253, 248, 0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.booking-services-subsection {
  margin-top: clamp(62px, 8vw, 104px);
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid rgba(217, 192, 140, 0.16);
}

.booking-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.booking-services-complementary {
  grid-template-columns: minmax(280px, 420px);
}

.booking-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(217, 192, 140, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(217, 192, 140, 0.11), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.booking-card.is-highlighted {
  border-color: rgba(217, 192, 140, 0.42);
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 192, 140, 0.19), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
}

.booking-card h3,
.booking-card p {
  color: #fffdf8;
}

.booking-card p {
  color: rgba(255, 253, 248, 0.76);
}

.booking-kicker {
  margin: 0 0 12px;
  color: var(--amber) !important;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-card-footer {
  display: grid;
  gap: 10px;
}

.booking-price {
  color: #fffdf8;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
}

.booking-duration {
  color: rgba(255, 253, 248, 0.68);
  font-weight: 750;
}

.booking-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.booking-card .btn.is-selected {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(217, 192, 140, 0.22);
}

.booking-calendar-section {
  padding-top: 0;
}

.booking-calendar-shell {
  overflow: hidden;
  border: 1px solid rgba(217, 192, 140, 0.2);
  border-radius: var(--radius-lg);
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 192, 140, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.26);
}

.booking-calendar-heading {
  display: flex;
  gap: 22px;
  align-items: start;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid rgba(217, 192, 140, 0.14);
}

.booking-calendar-heading h2,
.booking-calendar-heading p {
  color: #fffdf8;
}

.booking-calendar-heading p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.72);
}

.booking-calendar-fallback {
  flex: 0 0 auto;
  color: var(--amber);
  font-weight: 850;
  text-decoration: none;
}

.booking-calendar-fallback:hover {
  color: #fffdf8;
}

.audio-library-panel {
  padding-top: 54px;
}

.audio-library-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.audio-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.audio-filter {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(217, 192, 140, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: #fffaf1;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.audio-filter:hover,
.audio-filter.is-active {
  transform: translateY(-1px);
  border-color: rgba(217, 192, 140, 0.68);
  background: rgba(217, 192, 140, 0.18);
}

.audio-resume {
  padding: 18px;
  border: 1px solid rgba(217, 192, 140, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.audio-resume span {
  display: block;
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.audio-resume strong {
  display: block;
  color: #fffdf8;
  margin-bottom: 12px;
}

.audio-resume button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(217, 192, 140, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, #e8d39e, #d9c08c);
  color: var(--night-deep);
  font-weight: 840;
  cursor: pointer;
}

.audio-console {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 16%, rgba(217, 192, 140, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(10, 15, 42, 0.94), rgba(18, 24, 44, 0.96));
  color: #fffdf8;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.3);
}

.audio-console-cover {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(217, 192, 140, 0.7));
  color: var(--night-deep);
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.audio-console-main {
  min-width: 0;
}

.audio-console-heading {
  text-align: center;
}

.audio-console-heading span {
  display: block;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.audio-console-heading h3 {
  margin: 8px 0 4px;
  color: #fffdf8;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
}

.audio-console-heading p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
}

.audio-console-progress {
  margin-top: 24px;
}

.audio-console-progress input[type="range"] {
  width: 100%;
  accent-color: #d9c08c;
  cursor: pointer;
}

.audio-console-progress div {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 253, 248, 0.72);
  font-weight: 760;
}

.audio-console-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.audio-console-controls button,
.audio-console-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fffdf8;
  font-weight: 860;
  text-decoration: none;
  cursor: pointer;
}

.audio-console-controls button:hover,
.audio-console-download:hover,
.audio-console-controls button.is-active {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.54), transparent 34%),
    linear-gradient(135deg, #f2ddb0 0%, #d9c08c 52%, #a9823f 100%);
  border-color: rgba(255, 239, 192, 0.68);
  color: #071126;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(137, 105, 48, 0.22);
}

.audio-console-play {
  width: 62px;
  height: 62px;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.72), transparent 31%),
    linear-gradient(135deg, #f8e8bd 0%, #d9c08c 48%, #a9823f 100%) !important;
  border-color: rgba(255, 239, 192, 0.78) !important;
  color: #071126 !important;
  font-size: 1.35rem;
  box-shadow:
    0 16px 34px rgba(137, 105, 48, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.audio-console-download[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.audio-volume-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.82rem;
  font-weight: 820;
}

.audio-volume-control input {
  width: 92px;
  accent-color: #d9c08c;
}

.audio-cards-hidden {
  display: none;
}

.audio-section-player {
  margin: clamp(28px, 4vw, 42px) 0 10px;
  padding: clamp(20px, 3.5vw, 34px);
  border: 1px solid rgba(255, 253, 248, 0.08);
  border-radius: 10px;
  background:
    radial-gradient(circle at 10% 0%, rgba(217, 192, 140, 0.2), transparent 30%),
    linear-gradient(135deg, #1b1b1d 0%, #202022 58%, #18181a 100%);
  color: #fffdf8;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.audio-section-stage {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.audio-section-cover {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 4px;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 244, 196, 0.72), transparent 22%),
    radial-gradient(circle at 68% 70%, rgba(143, 189, 187, 0.48), transparent 38%),
    linear-gradient(145deg, #f6e2a9 0%, #91b6b4 46%, #31415d 100%);
  color: rgba(10, 15, 42, 0.84);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.audio-section-cover.has-image {
  color: transparent;
}

.audio-section-cover.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 50% 30%, transparent 46%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.audio-section-cover.has-image span {
  opacity: 0;
}

.audio-section-main {
  min-width: 0;
}

.audio-section-heading {
  min-height: 94px;
  text-align: center;
}

.audio-section-heading span {
  display: block;
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audio-section-heading h3 {
  margin: 8px 0 5px;
  color: #fffdf8;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.audio-section-heading p {
  margin: 0;
  color: rgba(255, 253, 248, 0.58);
  font-weight: 720;
}

.audio-section-progress {
  margin-top: 12px;
}

.audio-section-progress input[type="range"] {
  width: 100%;
  accent-color: #d9c08c;
  cursor: pointer;
}

.audio-section-progress div {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.9rem;
  font-weight: 760;
}

.audio-section-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
}

.audio-section-controls button,
.audio-section-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 253, 248, 0.08);
  border-radius: 4px;
  background: #3a3a3d;
  color: #fffdf8;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 860;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.audio-section-controls button:hover,
.audio-section-download:hover,
.audio-section-controls button.is-active {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(135deg, #f2ddb0 0%, #d9c08c 52%, #a9823f 100%);
  border-color: rgba(255, 239, 192, 0.68);
  color: #071126;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(137, 105, 48, 0.22);
}

.audio-section-play {
  width: 66px;
  height: 66px;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.72), transparent 31%),
    linear-gradient(135deg, #f8e8bd 0%, #d9c08c 48%, #a9823f 100%) !important;
  border-color: rgba(255, 239, 192, 0.78) !important;
  color: #071126 !important;
  font-size: 1.45rem !important;
  box-shadow:
    0 18px 36px rgba(137, 105, 48, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.audio-section-volume {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 248, 0.08);
  border-radius: 4px;
  background: #3a3a3d;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
  font-weight: 840;
}

.audio-section-volume input {
  width: 96px;
  min-height: auto;
  padding: 0;
  accent-color: #d9c08c;
}

.audio-section-playlist {
  display: grid;
  max-height: 430px;
  overflow: auto;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  scrollbar-color: rgba(255, 253, 248, 0.48) rgba(255, 255, 255, 0.06);
}

.audio-section-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  min-height: 70px;
  border-top: 1px solid rgba(20, 20, 20, 0.68);
  background: #3a3a3a;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.audio-section-track:first-child {
  border-top: 0;
}

.audio-section-track.is-active {
  background:
    linear-gradient(90deg, rgba(217, 192, 140, 0.32) 0%, rgba(217, 192, 140, 0.14) 48%, rgba(255, 253, 248, 0.05) 100%),
    rgba(255, 253, 248, 0.04);
  box-shadow: inset 4px 0 0 #d9c08c;
}

.audio-section-track button {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.audio-section-track-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
  font-weight: 900;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.audio-section-track-number.has-image {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  color: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.18);
}

.audio-section-track-copy {
  min-width: 0;
}

.audio-section-track-copy strong,
.audio-section-track-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-section-track-copy strong {
  color: #fffdf8;
  font-size: 1rem;
}

.audio-section-track-copy small {
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.82rem;
  font-weight: 720;
}

.audio-section-track a {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(20, 20, 20, 0.72);
  color: #fffdf8;
  text-decoration: none;
}

.audio-section-track-download {
  position: relative;
  isolation: isolate;
}

.audio-section-track-download::before {
  content: "";
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #f3e1ae 0%, #d9c08c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 14px 28px rgba(217, 192, 140, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.audio-section-track-download svg {
  position: absolute;
  z-index: 1;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--night-deep);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.audio-section-track a:hover {
  background: rgba(255, 253, 248, 0.08);
}

.audio-section-track-download:hover::before {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 253, 248, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 34px rgba(217, 192, 140, 0.34);
}

.audio-section-track-download:hover svg {
  transform: translateY(1px);
}

.audio-section-track.is-active .audio-section-track-download::before {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.76), transparent 34%),
    linear-gradient(135deg, #fff3c7 0%, #d9c08c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 12px 28px rgba(10, 15, 42, 0.18);
}

.audio-card audio {
  width: 100%;
  margin-top: 12px;
}

.audio-card-enhanced .audio-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.audio-card.is-playing {
  border-color: rgba(217, 192, 140, 0.5);
  box-shadow:
    0 18px 44px rgba(10, 15, 42, 0.16),
    0 0 0 4px rgba(217, 192, 140, 0.08);
}

.audio-premium-player {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(10, 15, 42, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(248, 250, 252, 0.72));
}

.audio-premium-main {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 40px 50px auto;
  gap: 12px;
  align-items: center;
}

.audio-premium-play,
.audio-premium-favorite,
.audio-premium-speed,
.audio-premium-queue {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(10, 15, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--night-deep);
  font-weight: 900;
  cursor: pointer;
}

.audio-premium-play {
  width: 48px;
  height: 48px;
  border-color: rgba(217, 192, 140, 0.42);
  background: linear-gradient(135deg, #0a0f2a, #111a38);
  color: #fffdf8;
  box-shadow: 0 12px 24px rgba(10, 15, 42, 0.22);
}

.audio-premium-favorite,
.audio-premium-speed {
  width: 40px;
  height: 40px;
}

.audio-premium-speed {
  width: 50px;
  font-size: 0.82rem;
}

.audio-premium-queue {
  min-width: 76px;
  height: 40px;
  padding: 0 12px;
  border-color: rgba(217, 192, 140, 0.36);
  background: rgba(255, 253, 248, 0.8);
  font-size: 0.82rem;
}

.audio-premium-favorite.is-active {
  border-color: rgba(217, 192, 140, 0.72);
  background: linear-gradient(135deg, #e8d39e, #d9c08c);
}

.audio-premium-timeline {
  min-width: 0;
}

.audio-premium-timeline input[type="range"] {
  width: 100%;
  accent-color: #d9c08c;
  cursor: pointer;
}

.audio-premium-time {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  color: rgba(10, 15, 42, 0.6);
  font-size: 0.78rem;
  font-weight: 750;
}

.audio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.audio-download,
.audio-loop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 820;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
}

.audio-download {
  border: 1px solid rgba(217, 192, 140, 0.42);
  background: linear-gradient(135deg, #0a0f2a, #111a38);
  color: #fffdf8;
  box-shadow: 0 10px 22px rgba(10, 15, 42, 0.16);
}

.audio-loop {
  width: 40px;
  padding: 0;
  border: 1px solid rgba(10, 15, 42, 0.16);
  background: rgba(255, 253, 248, 0.72);
  color: var(--night-deep);
  font-size: 1.12rem;
}

.audio-download:hover,
.audio-loop:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.audio-loop.is-active {
  border-color: rgba(217, 192, 140, 0.72);
  background: linear-gradient(135deg, #e8d39e, #d9c08c);
  box-shadow: 0 10px 22px rgba(217, 192, 140, 0.24);
}

.audio-download:focus-visible,
.audio-loop:focus-visible {
  outline: 3px solid rgba(217, 192, 140, 0.36);
  outline-offset: 3px;
}

.audio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 8px;
}

.audio-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin: 0 10px 8px 0;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 248, 0.72);
  background: rgba(255, 253, 248, 0.58);
  color: rgba(10, 15, 42, 0.74);
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1.1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  white-space: nowrap;
}

.audio-card-placeholder {
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(248, 250, 252, 0.78));
}

.audio-mini-player {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(217, 192, 140, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(10, 15, 42, 0.96), rgba(17, 26, 56, 0.96));
  color: #fffdf8;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.audio-mini-player[hidden],
.audio-resume[hidden] {
  display: none;
}

.audio-mini-label {
  display: block;
  margin-bottom: 3px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 860;
  text-transform: uppercase;
}

.audio-mini-player strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-mini-controls {
  display: grid;
  grid-template-columns: 36px 40px 36px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.audio-mini-controls button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(217, 192, 140, 0.5);
  border-radius: 50%;
  background: linear-gradient(135deg, #e8d39e, #d9c08c);
  color: var(--night-deep);
  font-weight: 900;
  cursor: pointer;
}

.audio-mini-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.18);
}

.audio-mini-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e8d39e, #fff3c9);
}

.audio-mini-controls > span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .audio-library-heading,
  .audio-console,
  .audio-mini-player {
    grid-template-columns: 1fr;
  }

  .audio-console {
    padding: 18px;
  }

  .audio-console-cover {
    width: min(180px, 100%);
    justify-self: center;
  }

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

  .audio-section-cover {
    width: min(190px, 100%);
    justify-self: center;
  }

  .audio-section-heading {
    min-height: 0;
    text-align: left;
  }

  .audio-section-controls {
    align-items: stretch;
  }

  .audio-section-play,
  .audio-section-controls button,
  .audio-section-download,
  .audio-section-volume {
    flex: 1 1 auto;
  }

  .audio-section-volume {
    width: 100%;
    justify-content: space-between;
  }

  .audio-section-track {
    grid-template-columns: minmax(0, 1fr) 50px;
  }

  .audio-section-track button {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 0 12px;
  }

  .audio-console-heading {
    text-align: left;
  }

  .audio-volume-control {
    width: 100%;
    justify-content: space-between;
  }

  .audio-premium-main {
    grid-template-columns: 46px minmax(0, 1fr) 40px;
  }

  .audio-premium-speed,
  .audio-premium-queue {
    grid-column: 2 / 4;
    width: 100%;
    justify-self: start;
  }

  .audio-mini-player {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .audio-mini-controls {
    grid-template-columns: 36px 40px 36px;
  }

  .audio-mini-controls > span {
    grid-column: 1 / -1;
  }

  .audio-mini-progress {
    grid-column: 1 / -1;
  }
}

.calendly-inline-widget {
  width: 100%;
  min-width: 0;
  height: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.booking-calendar {
  width: 100%;
  min-width: 0;
  height: min(820px, 88vh);
  border: 0;
  border-radius: 0;
  background: #fffdf8;
}

.booking-calendar iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-calendar-placeholder {
  display: grid;
  min-height: 420px;
  place-content: center;
  padding: 32px;
  text-align: center;
  color: var(--ink-dark);
}

.booking-calendar-placeholder strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.booking-calendar-phone {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin: 0 0 14px;
  color: rgba(10, 15, 42, 0.72);
  font-size: 0.98rem;
}

.booking-calendar-phone a {
  color: var(--amber-deep);
  font-weight: 900;
  text-decoration: none;
}

.booking-calendar-phone a:hover {
  color: var(--night);
}

.contact-section {
  background: var(--mist);
  color: var(--ink-dark);
}

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

.form-notice {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0 0 26px;
  padding: 18px 20px;
  border: 1px solid rgba(47, 125, 116, 0.36);
  border-radius: 22px;
  color: #0b2f34 !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(143, 189, 187, 0.2), transparent 36%),
    linear-gradient(135deg, #f7fffc, #d7eeec);
  box-shadow: 0 20px 46px rgba(10, 15, 42, 0.12);
}

.form-notice.is-error {
  border-color: rgba(180, 72, 72, 0.24);
  color: #6b1f1f;
  background: rgba(250, 226, 226, 0.8);
}

.form-notice span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fffaf1;
  background: linear-gradient(135deg, #2f7d74, #174d55);
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(47, 125, 116, 0.22);
}

.form-notice strong {
  display: block;
  min-width: 0;
  width: 100%;
  color: #07132d !important;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-weight: 900;
  line-height: 1.15;
}

.form-notice small {
  display: block;
  margin-top: 4px;
  color: #314653 !important;
  font-size: 0.94rem;
  font-weight: 650;
}

.contact-section .contact-form-card .form-notice,
.contact-section .contact-form-card .form-notice strong,
.contact-section .contact-form-card .form-notice small {
  color: #07132d !important;
}

.contact-section .contact-form-card .form-notice small {
  color: #314653 !important;
}

.form-notice.is-error span {
  background: linear-gradient(135deg, #b84a4a, #742626);
}

.form-notice.is-error strong {
  color: #5f1e1e !important;
}

.cookie-consent {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 9999;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid rgba(217, 192, 140, 0.34);
  border-radius: calc(var(--radius) + 10px);
  color: #fffaf1;
  background:
    radial-gradient(circle at 92% 8%, rgba(217, 192, 140, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(8, 14, 39, 0.96), rgba(24, 32, 51, 0.96));
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
}

.cookie-consent p {
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.92rem;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-consent button,
.cookie-consent a {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(217, 192, 140, 0.3);
  border-radius: 999px;
  color: #fffaf1;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.cookie-consent [data-consent-accept] {
  color: var(--night-deep);
  background: var(--gold);
}

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

  .cookie-consent-actions {
    justify-content: flex-start;
  }
}

.contact-layout {
  align-items: start;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-dark);
  border-color: rgba(10, 15, 42, 0.08);
}

.contact-form-card label {
  color: var(--night-deep);
}

.contact-section .contact-form-card p.small {
  color: #52606d !important;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-info-card,
.contact-map-card {
  overflow: hidden;
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 250, 0.9));
  box-shadow: 0 18px 44px rgba(10, 15, 42, 0.1);
}

.contact-info-card {
  padding: clamp(24px, 4vw, 34px);
}

.contact-info-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.contact-info-card p {
  color: #52606d;
}

.contact-info-card a:not(.btn) {
  color: var(--night-deep);
  font-weight: 800;
  text-decoration: none;
}

.contact-info-card .btn-secondary {
  color: var(--night-deep);
  border-color: rgba(10, 15, 42, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.contact-info-card .btn-secondary:hover {
  border-color: rgba(217, 192, 140, 0.42);
  background: #fffaf1;
}

.route-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(217, 192, 140, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 0%, rgba(217, 192, 140, 0.14), transparent 38%),
    linear-gradient(145deg, #0d1430, #101936);
  color: #fffdf8;
  box-shadow: 0 18px 44px rgba(10, 15, 42, 0.14);
}

.route-card h3 {
  color: #fffaf1;
}

.route-card p {
  color: rgba(255, 253, 248, 0.76);
}

.route-card .btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--night-deep);
  border-color: rgba(217, 192, 140, 0.22);
}

.map-fullwidth {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(380px, 48vw, 560px);
  background: var(--night-deep);
  border-top: 1px solid rgba(217, 192, 140, 0.16);
  border-bottom: 1px solid rgba(217, 192, 140, 0.16);
}

.map-fullwidth::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.map-fullwidth iframe {
  width: 100%;
  min-height: clamp(380px, 48vw, 560px);
  display: block;
  border: 0;
  filter: saturate(0.86) contrast(0.98) brightness(0.97);
}

.contact-map-card {
  position: relative;
  min-height: 360px;
  background: var(--night-deep);
}

.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(217, 192, 140, 0.22);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contact-map-card iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
  filter: saturate(0.78) contrast(0.98) brightness(0.96);
}

.contact-band {
  background: var(--night-gradient-open);
  color: #fffdf8;
}

.contact-band .lead,
.contact-band p {
  color: rgba(255, 253, 248, 0.78);
}

.footer-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 192, 140, 0.17) 0%, rgba(217, 192, 140, 0.07) 26%, rgba(217, 192, 140, 0) 58%),
    radial-gradient(circle at 24% 74%, rgba(120, 160, 180, 0.12) 0%, rgba(120, 160, 180, 0.04) 34%, rgba(120, 160, 180, 0) 68%),
    linear-gradient(145deg, #070b1f 0%, #0a0f2a 52%, #101936 100%);
  color: #fffdf8;
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(244, 247, 250, 0.03), rgba(244, 247, 250, 0));
  pointer-events: none;
}

.footer-cta .container {
  position: relative;
  z-index: 1;
}

.footer-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(217, 192, 140, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.965), rgba(244, 247, 250, 0.92));
  color: var(--ink-dark);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.footer-cta h2 {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--night-deep);
  font-size: clamp(2.1rem, 4.3vw, 4.6rem);
  text-wrap: balance;
}

.footer-cta p {
  margin: 0;
  color: #52606d;
}

.footer-cta-actions {
  padding: 24px;
  border: 1px solid rgba(10, 15, 42, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.footer-cta-actions .btn {
  width: 100%;
  margin-top: 18px;
}

.footer-cta-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #52606d;
  font-size: 0.98rem;
}

.footer-cta-list li {
  position: relative;
  padding-left: 18px;
}

.footer-cta-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-deep);
}

.footer-cta-note {
  display: block;
  margin-top: 14px;
  color: #64748b;
  font-size: 0.95rem;
  text-align: center;
}

.site-footer {
  padding: clamp(54px, 7vw, 82px) 0 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(217, 192, 140, 0.09) 0%, rgba(217, 192, 140, 0.035) 25%, transparent 55%),
    #070b1f;
  color: rgba(255, 253, 248, 0.78);
  border-top: 1px solid rgba(217, 192, 140, 0.16);
}

.footer-grid,
.footer-premium-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 1.05fr 0.9fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.footer-brand img {
  width: 250px;
  max-width: 100%;
  margin-bottom: 22px;
}

.footer-brand p,
.footer-panel p,
.footer-address {
  margin: 0;
}

.footer-title {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  padding: 7px 11px;
  border: 1px solid rgba(217, 192, 140, 0.24);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.86);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
  font-weight: 750;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 192, 140, 0.26);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 20%, rgba(217, 192, 140, 0.16), transparent 52%),
    rgba(255, 255, 255, 0.035);
  color: #fffdf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 192, 140, 0.62);
  background:
    radial-gradient(circle at 35% 20%, rgba(217, 192, 140, 0.24), transparent 54%),
    rgba(217, 192, 140, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a[aria-label*="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-panel {
  min-height: 100%;
}

.footer-panel p + p {
  margin-top: 12px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.site-footer a {
  color: #fffdf8;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer a:hover {
  color: var(--amber);
}

.footer-panel .footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(217, 192, 140, 0.46);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(217, 192, 140, 0.98), rgba(180, 139, 58, 0.98)),
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.42), transparent 42%);
  color: #101936;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.footer-panel .footer-action::after {
  content: "→";
  font-size: 1.05rem;
  line-height: 1;
}

.site-footer .footer-panel .footer-action:hover {
  transform: translateY(-2px);
  color: #101936;
  border-color: rgba(255, 232, 184, 0.72);
  filter: brightness(1.04);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.site-footer .footer-panel .footer-action:focus-visible {
  outline: 3px solid rgba(217, 192, 140, 0.42);
  outline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 22px;
  border-top: 1px solid rgba(217, 192, 140, 0.14);
  color: rgba(255, 253, 248, 0.55);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-mobile {
  display: none;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-dark);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.small {
  font-size: 0.92rem;
  color: var(--muted-dark);
}

.breadcrumbs {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--amber);
  text-decoration: none;
}

@media (max-width: 1320px) and (min-width: 1181px) {
  .nav {
    gap: 16px;
  }

  .brand {
    min-width: 260px;
    padding: 10px 15px;
  }

  .brand img {
    width: 220px;
  }

  .menu {
    gap: 15px;
    font-size: 0.82rem;
  }

  .nav-cta {
    min-height: 44px;
    padding: 8px 8px 8px 15px;
    font-size: 0.86rem;
  }

  .nav-cta::after {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .nav {
    width: min(100% - 24px, var(--max));
    gap: 16px;
  }

  .brand {
    min-width: 250px;
    padding: 10px 15px;
    border-radius: 18px;
  }

  .brand img {
    width: 214px;
    max-width: 23vw;
  }

  .menu {
    gap: 14px;
    font-size: 0.8rem;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .nav-cta {
    min-height: 44px;
    padding: 8px 9px 8px 16px;
    font-size: 0.86rem;
  }

  .nav-cta::after {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .nav {
    min-height: 78px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
  }

  .brand img {
    width: 214px;
    max-width: 58vw;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .menu {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-cta {
    margin-left: 0;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    display: block;
    padding: 13px 12px;
    color: #b9945b;
  }

  .site-header .menu > a[href="/contact/"] {
    display: block;
  }

  .home-hero h1 {
    font-size: 2.72rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .integrative-hero-grid,
  .integrative-path-card,
  .tool-hero-grid,
  .tool-human-card,
  .tool-guidance-card,
  .calm-resource-card,
  .instagram-audio-callout,
  .tobacco-hero-inner,
  .tobacco-feature-grid,
  .integrative-note,
  .split,
  .approach-list,
  .article-layout,
  .accomp-video-panel,
  .grid-2,
  .grid-3,
  .grid-4,
  .accomp-grid,
  .booking-services,
  .footer-grid,
  .footer-premium-grid {
    grid-template-columns: 1fr;
  }

  .orientation-card-grid,
  .brief-grid,
  .audio-choice-grid,
  .accomp-intent-grid {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-link-grid,
  .instagram-card-list,
  .instagram-practical-grid,
  .calm-tips-grid,
  .tool-brief-grid,
  .tool-number-grid,
  .tool-process-grid,
  .integrative-tool-grid,
  .integrative-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-calendar-heading {
    flex-direction: column;
  }

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

  .accomp-video-panel {
    margin: 28px 0 44px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-note {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .article-aside {
    position: static;
  }

  .article-layout-single .article-content {
    max-width: none;
  }

  .article-content h2,
  .article-content h3,
  .article-content p,
  .article-content ul,
  .article-content ol,
  .article-content blockquote,
  .article-content .faq-list {
    max-width: none;
  }

  .approach-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .approach-icon {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero-content {
    min-height: 720px;
    align-content: end;
    padding-bottom: 54px;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(10, 15, 42, 0.04) 0%, rgba(10, 15, 42, 0.52) 46%, rgba(10, 15, 42, 0.9) 100%);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hypnose-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .booking-services-complementary {
    grid-template-columns: minmax(280px, 420px);
  }

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

@media (max-width: 720px) {
  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 38px 0 58px;
  }

  .orientation-card-grid,
  .reassurance-grid,
  .brief-grid,
  .calm-tips-grid,
  .audio-choice-grid,
  .accomp-intent-grid,
  .tool-brief-grid,
  .tool-number-grid,
  .tool-process-grid,
  .integrative-principle-grid,
  .integrative-tool-grid {
    grid-template-columns: 1fr;
  }

  .reassurance-panel {
    padding: 24px;
  }

  .reassurance-card {
    min-height: auto;
    text-align: center;
  }

  .reassurance-icon {
    margin-inline: auto;
  }

  .integrative-tool-card {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .integrative-tool-icon,
  .integrative-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto;
  }

  .integrative-icon svg {
    width: 32px;
    height: 32px;
  }

  .integrative-note {
    grid-template-columns: 1fr;
  }

  .orientation-support {
    align-items: stretch;
    flex-direction: column;
  }

  .brand img {
    width: 174px;
  }

  .home-hero-copy {
    margin-top: -28px;
    padding: 22px;
    background: rgba(10, 15, 42, 0.78);
    backdrop-filter: blur(12px);
  }

  .home-methods-layout {
    grid-template-columns: 1fr;
  }

  .methods-showcase {
    padding: 22px;
  }

  .method-chip-list {
    gap: 8px;
  }

  .method-chip-list span {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 0.82rem;
  }

  .home-hero h1 {
    font-size: 2.28rem;
    line-height: 1.05;
  }

  .card {
    padding: 20px;
  }

  .article-section {
    background:
      radial-gradient(circle at 90% 0%, rgba(217, 192, 140, 0.1), transparent 34%),
      linear-gradient(180deg, #f7fafc 0%, var(--paper) 100%);
  }

  .article-content h2 {
    margin-top: 42px;
    padding-top: 22px;
    font-size: clamp(1.72rem, 7vw, 2.2rem);
  }

  .article-content h3 {
    font-size: 1.18rem;
  }

  .article-content p,
  .article-content li {
    font-size: 1.02rem;
    line-height: 1.74;
  }

  .article-content > p:first-child,
  .article-content h2 + p {
    font-size: 1.06rem;
  }

  .article-content ul,
  .article-content ol {
    margin: 20px 0 26px;
    padding: 18px 20px;
  }

  .article-content blockquote {
    padding: 22px;
    font-size: 1.22rem;
  }

  .step {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    row-gap: 14px;
    text-align: center;
  }

  .step::before {
    grid-column: 1;
    grid-row: auto;
  }

  .step h3,
  .step p {
    grid-column: 1;
  }

  .tobacco-article {
    padding: 0;
  }

  .tobacco-text-grid,
  .tobacco-split-cards,
  .tobacco-process-grid {
    grid-template-columns: 1fr;
  }

  .instagram-hero {
    padding-top: 44px;
  }

  .instagram-group {
    padding: 22px;
    border-radius: 20px;
  }

  .instagram-link-grid,
  .instagram-card-list,
  .instagram-practical-grid {
    grid-template-columns: 1fr;
  }

  .instagram-link-grid a {
    min-height: 68px;
  }

  .instagram-card {
    min-height: 168px;
  }

  .instagram-primary-actions .btn {
    width: 100%;
  }

  .category-tabs {
    grid-template-columns: 1fr;
  }

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

  .hypnose-topic-grid .card-link {
    min-height: 92px;
  }

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

  .theme-suggestion-form {
    padding: 18px;
  }

  .booking-card {
    min-height: auto;
    gap: 16px;
    padding: 20px;
  }

  .booking-card h3 {
    margin-bottom: 8px;
    font-size: 1.28rem;
  }

  .booking-card p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .booking-card-footer {
    gap: 7px;
  }

  .booking-price {
    font-size: 1.72rem;
  }

  .booking-duration {
    font-size: 0.95rem;
  }

  .booking-kicker {
    margin-bottom: 8px;
  }

  .booking-card .btn {
    min-height: 44px;
    margin-top: 6px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .booking-card.is-highlighted {
    gap: 12px;
    padding: 18px;
  }

  .booking-card.is-highlighted p:not(.booking-kicker) {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .booking-card.is-highlighted .booking-card-footer {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .booking-card.is-highlighted .booking-price,
  .booking-card.is-highlighted .booking-duration {
    grid-column: 1;
  }

  .booking-card.is-highlighted .btn {
    grid-column: 1 / -1;
  }

  .booking-hero {
    padding: 30px 0 38px;
  }

  .booking-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
  }

  .booking-hero .lead {
    font-size: 1.16rem;
    line-height: 1.48;
  }

  .booking-hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
  }

  .booking-hero-actions .btn,
  .booking-phone-link {
    width: 100%;
  }

  .booking-phone-link {
    display: inline-flex;
    justify-content: center;
    padding: 4px 0;
    text-align: center;
  }

  .booking-services-section {
    padding-top: 46px;
    scroll-margin-top: 92px;
  }

  .booking-services-section h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .booking-section-lead {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .booking-services {
    gap: 14px;
    margin-top: 18px;
  }

  .booking-services-subsection {
    margin-top: 42px;
    padding-top: 30px;
  }

  .booking-services-complementary {
    grid-template-columns: 1fr;
  }

  .booking-calendar {
    height: 720px;
  }

  .domain-card {
    min-height: 260px;
  }

  .home-hero {
    min-height: auto;
    padding-top: clamp(230px, 62vw, 340px);
    overflow: visible;
  }

  .home-hero img {
    bottom: auto;
    height: clamp(260px, 66vw, 360px);
    object-position: 55% 18%;
  }

  .home-hero::before {
    bottom: auto;
    height: clamp(260px, 66vw, 360px);
    background:
      linear-gradient(180deg, rgba(10, 15, 42, 0.04) 0%, rgba(10, 15, 42, 0.24) 46%, rgba(10, 15, 42, 0.82) 100%);
  }

  .home-hero-content {
    min-height: auto;
    align-content: start;
    padding: 0 0 46px;
  }

  .sticky-mobile {
    position: fixed;
    display: flex;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
  }

  body {
    padding-bottom: 76px;
  }
}
