:root {
  --site-cream: #f5f0e6;
  --site-cream-soft: #fbf7f1;
  --site-cream-deep: #ebe4d7;
  --site-indigo: #2d3748;
  --site-indigo-deep: #1a2933;
  --site-terracotta: #c67b5c;
  --site-terracotta-deep: #b06a4d;
  --site-sage: #8a9a8b;
  --site-text: #1a2933;
  --site-muted: #68707b;
  --site-border: rgba(45, 55, 72, 0.12);
  --site-focus: rgba(198, 123, 92, 0.28);
  --site-shadow-soft: 0 20px 48px rgba(26, 41, 51, 0.08);
  --site-shadow-strong: 0 32px 70px rgba(26, 41, 51, 0.14);
  --site-cta-unique: #c67b5c;
  --site-cta-unique-deep: #b06a4d;
  --site-cta-unique-shadow: rgba(198, 123, 92, 0.32);
  --site-font-body: "PT Sans", "Segoe UI", sans-serif;
  --site-font-heading: "PT Sans", "Segoe UI", sans-serif;
  --site-shell: min(1200px, calc(100vw - 40px));
  --site-reading: min(980px, calc(100vw - 40px));
  --site-header-height: 124px;
  --site-radius-lg: 32px;
  --site-radius-md: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(201, 111, 77, 0.12), transparent 30%),
    radial-gradient(circle at right 10%, rgba(32, 39, 72, 0.08), transparent 32%),
    linear-gradient(180deg, var(--site-cream), var(--site-cream-soft));
  color: var(--site-text);
  font-family: var(--site-font-body);
  font-size: 16px;
  line-height: 1.56;
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--site-indigo);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

a:hover {
  color: var(--site-terracotta-deep);
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(201, 111, 77, 0.22);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--site-indigo-deep);
  font-family: var(--site-font-heading);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(1.875rem, 2.5vw, 2.25rem);
}

h2 {
  font-size: clamp(1.375rem, 2vw, 1.625rem);
}

h3 {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
}

p,
ul,
ol {
  margin: 0 0 1em;
}

.site-shell {
  margin: 0 auto;
  width: var(--site-shell);
}

.site-header {
  background: linear-gradient(135deg, rgba(38, 51, 95, 0.98), rgba(27, 36, 71, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(17, 21, 37, 0.16);
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.site-header a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-branding,
.site-header__actions,
.site-search {
  align-items: center;
  display: flex;
  gap: 16px;
}

.site-header__inner {
  display: grid;
  gap: 8px 22px;
  grid-template-areas:
    "branding actions"
    "nav nav";
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: auto;
  padding: 10px 0 8px;
  position: relative;
}

.site-header__panel {
  display: contents;
}

.site-header__top {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-area: branding;
  grid-template-columns: minmax(0, 1fr);
}

.site-header__toggle {
  display: none;
}

.site-branding {
  min-width: 0;
}

.site-title {
  font-family: var(--site-font-body);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-area: nav;
  min-width: 0;
  padding-top: 6px;
}

.site-nav a {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-size: 0.97rem;
  min-height: 36px;
  padding: 6px 0 10px;
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  background: rgba(255, 255, 255, 0.9);
  content: "";
  height: 1.5px;
  left: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  color: white;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after {
  transform: scaleX(1);
}

.site-header__actions {
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  grid-area: actions;
  justify-self: end;
  justify-content: flex-end;
}

.site-header__toggle {
  align-items: center;
  align-self: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: white;
  cursor: pointer;
  display: none;
  gap: 10px;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
}

.site-header__toggle-box {
  display: grid;
  gap: 4px;
  width: 18px;
}

.site-header__toggle-box span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.site-header__toggle-label {
  font-weight: 700;
}

.site-account,
.site-search button,
.pqs-button {
  align-items: center;
  background: var(--site-terracotta);
  border: none;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(201, 111, 77, 0.22);
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  padding: 12px 18px;
  touch-action: manipulation;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.site-account:hover,
.site-search button:hover,
.pqs-button:hover {
  background: var(--site-terracotta-deep);
  box-shadow: 0 18px 34px rgba(201, 111, 77, 0.28);
  color: white;
  transform: translateY(-1px);
}

.site-account:active,
.site-search button:active,
.pqs-button:active {
  box-shadow: 0 10px 20px rgba(201, 111, 77, 0.22);
  transform: translateY(0);
}

.site-account:disabled,
.site-search button:disabled,
.pqs-button:disabled,
.site-account[aria-disabled="true"],
.site-search button[aria-disabled="true"],
.pqs-button[aria-disabled="true"] {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
  transform: none;
}

.pqs-button--ghost {
  background: transparent;
  border: 1px solid rgba(32, 39, 72, 0.14);
  box-shadow: none;
  color: var(--site-indigo-deep);
}

.pqs-button--ghost:hover {
  background: rgba(32, 39, 72, 0.06);
  color: var(--site-indigo-deep);
}

.pqs-button--ghost:active {
  background: rgba(32, 39, 72, 0.1);
}

a.pqs-button[href*="/test/"],
.pqs-button--violet,
.pqs-home-hero__cta {
  background: linear-gradient(135deg, var(--site-cta-unique), var(--site-cta-unique-deep));
  box-shadow: 0 20px 40px var(--site-cta-unique-shadow);
  color: #fffaf5;
}

a.pqs-button[href*="/test/"]:hover,
.pqs-button--violet:hover,
.pqs-home-hero__cta:hover {
  background: linear-gradient(135deg, var(--site-cta-unique-deep), #9f5e43);
  box-shadow: 0 24px 46px rgba(198, 123, 92, 0.36);
  color: #fffaf5;
}

a.pqs-button[href*="/test/"]:active,
.pqs-button--violet:active,
.pqs-home-hero__cta:active {
  box-shadow: 0 12px 24px rgba(176, 106, 77, 0.3);
}

.site-search {
  display: grid;
  flex: 0 1 300px;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(300px, 100%);
}

.site-search input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  min-height: 40px;
  min-width: 168px;
  padding: 9px 14px;
  width: 100%;
}

.site-account,
.site-search button {
  min-width: 104px;
}

.site-header__actions .site-account,
.site-header__actions .site-search button {
  box-shadow: 0 12px 24px rgba(201, 111, 77, 0.2);
  font-size: 0.92rem;
  min-height: 40px;
  padding: 9px 14px;
}

.site-header__actions .site-account {
  font-size: 0.9rem;
  min-width: 0;
  white-space: nowrap;
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.site-search input:focus-visible,
.site-search button:focus-visible,
.site-account:focus-visible,
.site-nav a:focus-visible,
.pqs-button:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  box-shadow: 0 0 0 4px var(--site-focus);
  outline: none;
}

.site-main {
  min-height: calc(100vh - 220px);
}

.site-content {
  padding: 40px 0 72px;
}

.site-content--front {
  padding-top: 0;
}

.content-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 auto;
  max-width: var(--site-reading);
  padding: 0;
}

.content-card--front {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.content-card--front .entry-content {
  display: grid;
  gap: 0;
}

.content-card--front .entry-content > section:not(.pqs-home-hero) {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px) 0;
  width: var(--site-reading);
}

.content-card--front .entry-content > section:not(.pqs-home-hero) ul {
  padding-left: 1.2rem;
}

.content-card .entry-content {
  display: grid;
  gap: 20px;
}

.entry-content details {
  background: rgba(247, 240, 232, 0.72);
  border: 1px solid rgba(32, 39, 72, 0.08);
  border-radius: 22px;
  margin-bottom: 14px;
  padding: 18px 20px;
}

.entry-content summary {
  color: var(--site-indigo-deep);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.entry-content summary::-webkit-details-marker {
  display: none;
}

.entry-content details[open] {
  box-shadow: var(--site-shadow-soft);
}

.entry-content details > *:not(summary) {
  margin-top: 12px;
}

.pqs-home-page {
  overflow: clip;
}

.pqs-home-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 111, 77, 0.16), transparent 18%),
    radial-gradient(circle at 76% 24%, rgba(32, 39, 72, 0.08), transparent 32%),
    linear-gradient(160deg, rgba(255, 248, 238, 0.96), rgba(247, 240, 232, 0.92) 48%, rgba(232, 216, 196, 0.92));
  isolation: isolate;
  margin-inline: calc(50% - 50vw);
  min-height: calc(100svh - var(--site-header-height));
  overflow: hidden;
  padding: clamp(44px, 6vw, 74px) 0 clamp(64px, 7vw, 104px);
  position: relative;
}

.pqs-home-hero::before,
.pqs-home-hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.pqs-home-hero::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.56), transparent 42%),
    linear-gradient(180deg, rgba(32, 39, 72, 0.08), rgba(201, 111, 77, 0.06));
  border: 1px solid rgba(32, 39, 72, 0.06);
  border-radius: 44% 56% 48% 52%;
  box-shadow: none;
  height: min(44vw, 470px);
  right: max(4vw, 20px);
  top: clamp(18px, 6vw, 54px);
  transform: rotate(-11deg);
  width: min(36vw, 400px);
}

.pqs-home-hero::after {
  background:
    radial-gradient(circle, rgba(32, 39, 72, 0.12) 0 10%, transparent 11% 100%),
    radial-gradient(circle, rgba(201, 111, 77, 0.12) 0 7%, transparent 8% 100%);
  background-position: 16% 22%, 74% 44%;
  background-repeat: no-repeat;
  inset: 0;
  opacity: 0.42;
}

.pqs-home-hero__grid,
.pqs-home-section__heading,
.pqs-home-section__actions,
.pqs-home-hero__actions,
.pqs-home-facts,
.pqs-home-type-grid,
.pqs-home-value-grid,
.pqs-home-section--double,
.pqs-home-section--proof {
  display: grid;
  gap: 24px;
}

.pqs-home-hero__grid {
  align-items: center;
  gap: 40px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: calc(100svh - var(--site-header-height) - 24px);
  position: relative;
  z-index: 1;
}

.pqs-home-hero__copy {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.pqs-home-hero__copy h1 {
  margin: 0;
  max-width: 16ch;
}

.pqs-home-hero__lead,
.pqs-home-section p,
.pqs-home-proof p,
.pqs-home-value-item p {
  color: var(--site-muted);
}

.pqs-home-hero__lead {
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  margin: 0;
  max-width: 62ch;
}

.pqs-home-hero__actions,
.pqs-home-section__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pqs-home-hero__actions .pqs-button,
.pqs-home-section__actions .pqs-button {
  min-width: 188px;
}

.pqs-home-hero__meta {
  color: var(--site-indigo-deep);
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
}

.pqs-home-hero__visual {
  display: grid;
  justify-items: center;
}

.pqs-home-hero-illustration {
  margin: 0;
  max-width: 520px;
  width: min(42vw, 520px);
}

.pqs-home-hero-illustration img {
  display: block;
  height: auto;
  width: 100%;
}

.pqs-home-aura {
  align-items: center;
  aspect-ratio: 1 / 1;
  display: grid;
  max-width: 460px;
  place-items: center;
  position: relative;
  width: min(38vw, 460px);
}

.pqs-home-aura__halo,
.pqs-home-aura__head,
.pqs-home-aura__body,
.pqs-home-aura__orbit {
  position: absolute;
}

.pqs-home-aura__halo {
  border-radius: 50%;
}

.pqs-home-aura__halo--outer {
  animation: siteFloat 7s ease-in-out infinite;
  background: none;
  border: 1px solid rgba(32, 39, 72, 0.08);
  height: 100%;
  width: 100%;
}

.pqs-home-aura__halo--inner {
  animation: sitePulse 5.8s ease-in-out infinite;
  background: none;
  border: 1px solid rgba(201, 111, 77, 0.18);
  height: 76%;
  width: 76%;
}

.pqs-home-aura__head {
  background: rgba(32, 39, 72, 0.9);
  border-radius: 50%;
  height: 11%;
  top: 26%;
  width: 11%;
}

.pqs-home-aura__body {
  background: linear-gradient(180deg, rgba(32, 39, 72, 0.9), rgba(201, 111, 77, 0.82));
  border-radius: 999px;
  box-shadow: none;
  height: 34%;
  top: 41%;
  width: 18%;
}

.pqs-home-aura__orbit {
  animation: siteOrbit 9s ease-in-out infinite;
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid rgba(32, 39, 72, 0.1);
  border-radius: 999px;
  box-shadow: none;
  color: var(--site-indigo-deep);
  font-size: 0.92rem;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 14px;
}

.pqs-home-aura__orbit--vata {
  left: 4%;
  top: 24%;
}

.pqs-home-aura__orbit--pitta {
  right: 0;
  top: 14%;
}

.pqs-home-aura__orbit--kapha {
  bottom: 10%;
  left: 16%;
}

.pqs-home-sections {
  display: grid;
  gap: 0;
  padding-bottom: 72px;
}

.pqs-home-section {
  animation: siteReveal 0.7s ease both;
  background: transparent;
  border: none;
  border-radius: 0;
  border-top: 1px solid rgba(32, 39, 72, 0.08);
  box-shadow: none;
  padding: clamp(34px, 5vw, 56px) 0;
}

.pqs-home-section:first-child {
  border-top: none;
  padding-top: 8px;
}

.pqs-home-section h2,
.pqs-home-section h3,
.pqs-home-proof blockquote {
  margin: 0;
}

.pqs-home-section__heading {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
}

.pqs-home-section--story {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.pqs-home-section__copy,
.pqs-home-panel,
.pqs-home-proof,
.pqs-home-value-item {
  display: grid;
  gap: 14px;
}

.pqs-home-panel,
.pqs-home-proof {
  border-top: 1px solid rgba(32, 39, 72, 0.08);
  padding-top: 16px;
}

.pqs-home-facts {
  gap: 16px;
}

.pqs-home-facts article,
.pqs-home-value-item {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(32, 39, 72, 0.08);
  border-radius: 0;
  padding: 16px 0 0;
}

.pqs-home-section--double,
.pqs-home-section--proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pqs-home-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pqs-home-list li {
  border-top: 1px solid rgba(32, 39, 72, 0.08);
  padding-top: 12px;
}

.pqs-home-list li:first-child {
  border-top: none;
  padding-top: 0;
}

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

.pqs-home-type-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 12px;
  padding: 0;
  text-decoration: none;
}

.pqs-home-type-card:hover {
  transform: translateY(-2px);
}

.pqs-home-type-card h3,
.pqs-home-type-card p {
  margin: 0;
}

.pqs-home-type-card__media + .pqs-home-type-card__eyebrow {
  border-top: 1px solid rgba(32, 39, 72, 0.08);
  padding-top: 14px;
}

.pqs-home-type-card__eyebrow {
  color: var(--site-muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pqs-home-type-card__media {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
}

.pqs-home-type-card__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pqs-home-type-card__media--fallback {
  align-items: stretch;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.56), transparent 18%),
    linear-gradient(160deg, rgba(252, 245, 237, 0.98), rgba(239, 225, 212, 0.92));
  border: 1px solid rgba(32, 39, 72, 0.08);
  display: flex;
  justify-content: center;
  padding: 20px;
}

.pqs-home-proof--quote {
  background: transparent;
}

.pqs-home-proof blockquote {
  color: var(--site-indigo-deep);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.3;
  max-width: 18ch;
}

.pqs-home-proof__caption {
  margin: 0;
}

.pqs-home-counter {
  align-items: start;
  display: grid;
  gap: 8px;
}

.pqs-home-counter strong {
  color: var(--site-indigo-deep);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.pqs-home-counter span {
  color: var(--site-muted);
  max-width: 18ch;
}

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

.pqs-home-section--cta {
  justify-items: start;
}

@keyframes siteFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes sitePulse {
  0%,
  100% {
    transform: scale(0.98);
  }

  50% {
    transform: scale(1.03);
  }
}

@keyframes siteOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes siteReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.site-footer {
  background: linear-gradient(135deg, var(--site-indigo), var(--site-indigo-deep));
  color: white;
  margin-top: 40px;
}

.site-footer__inner {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 2fr);
  padding: 42px 0 48px;
}

.site-footer__brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer__eyebrow {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.site-footer__cta {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  width: fit-content;
}

.site-footer__cta:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.site-footer__cta[href*="/test/"] {
  background: linear-gradient(135deg, var(--site-cta-unique), var(--site-cta-unique-deep));
  border-color: transparent;
  box-shadow: 0 20px 40px var(--site-cta-unique-shadow);
  color: #fffaf5;
}

.site-footer__cta[href*="/test/"]:hover {
  background: linear-gradient(135deg, var(--site-cta-unique-deep), #9f5e43);
  box-shadow: 0 24px 46px rgba(198, 123, 92, 0.36);
  color: #fffaf5;
}

.site-footer__cta[href*="/test/"]:active {
  box-shadow: 0 12px 24px rgba(176, 106, 77, 0.3);
}

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

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer h3 {
  color: white;
  margin-bottom: 10px;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__socials a,
.site-footer__socials span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  min-height: 38px;
  padding: 8px 14px;
}

.site-footer__socials a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-footer__meta {
  font-size: 0.95rem;
}

.type-header {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.8fr;
}

.type-copy {
  display: grid;
  gap: 14px;
}

.type-summary,
.type-intro {
  color: var(--site-muted);
}

.type-summary,
.type-intro {
  margin: 0;
  max-width: 62ch;
}

.type-image {
  display: grid;
}

.type-image img {
  border-radius: 28px;
  display: block;
  box-shadow: var(--site-shadow-soft);
  width: 100%;
}

.type-image-placeholder {
  align-items: stretch;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.58), transparent 18%),
    linear-gradient(160deg, rgba(252, 245, 237, 0.96), rgba(236, 221, 206, 0.92));
  border-radius: 28px;
  display: flex;
  justify-content: center;
  padding: 24px;
}

.type-description {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-top: 28px;
  padding: 0;
}

.type-sections {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.type-section {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(32, 39, 72, 0.08);
  border-radius: 0;
  padding: 18px 0 0;
}

.type-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.type-actions .pqs-button {
  min-width: 220px;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-cta-actions .pqs-button {
  min-width: 210px;
}

.prakriti-type-visual {
  align-items: center;
  display: grid;
  width: 100%;
}

.prakriti-type-visual svg {
  display: block;
  height: auto;
  width: 100%;
}

.prakriti-type-visual--card {
  height: auto;
  margin-inline: auto;
  max-width: 220px;
}

.prakriti-type-visual--hero {
  max-width: 360px;
}

.search-results-layout {
  display: grid;
  gap: 28px;
}

.search-results-header,
.search-empty-state,
.search-result-card {
  max-width: var(--site-reading);
}

.search-results-header {
  display: grid;
  gap: 10px;
}

.search-results-header h1,
.search-result-card h2 {
  margin: 0;
}

.search-results-note {
  color: var(--site-muted);
  margin: 0;
  max-width: 62ch;
}

.search-results-grid {
  display: grid;
  gap: 20px;
}

.search-result-card {
  border-top: 1px solid rgba(32, 39, 72, 0.08);
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.search-result-card__meta {
  color: var(--site-muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.site-eyebrow {
  color: var(--site-muted);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

@media (min-width: 1280px) {
  .site-shell {
    width: min(1240px, calc(100vw - 72px));
  }

  .site-content {
    padding: 48px 0 80px;
  }

  .content-card--front .entry-content > section:not(.pqs-home-hero) {
    padding: 44px 0 60px;
  }
}

@media (max-width: 1024px) {
  .site-shell {
    width: min(calc(100vw - 32px), 1200px);
  }

  body {
    font-size: 15px;
  }

  .site-header__inner,
  .site-footer__inner,
  .pqs-home-section__heading {
    grid-template-columns: 1fr;
  }

  .site-header__top,
  .site-header__inner {
    gap: 16px;
  }

  .site-header__inner {
    grid-template-areas:
      "branding"
      "actions"
      "nav";
    grid-template-columns: 1fr;
    padding: 18px 0 20px;
  }

  .site-header__panel {
    display: grid;
    gap: 14px;
  }

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

  .site-header__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    justify-self: stretch;
  }

  .site-header__actions,
  .site-search {
    width: 100%;
  }

  .site-search {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .content-card--front .entry-content > section:not(.pqs-home-hero) {
    width: min(calc(100vw - 28px), 100%);
  }

  .pqs-home-hero {
    min-height: auto;
    padding: 48px 20px 60px;
  }

  .pqs-home-hero__grid {
    align-items: start;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
    min-height: auto;
  }

  .pqs-home-hero::before {
    height: 240px;
    opacity: 0.78;
    right: -16px;
    top: 56px;
    width: 210px;
  }

  .pqs-home-hero__copy h1 {
    max-width: 11ch;
  }

  .pqs-home-aura {
    margin-inline: auto;
    width: min(28vw, 280px);
  }

  .pqs-home-hero-illustration {
    margin-inline: auto;
    width: min(30vw, 300px);
  }

  .pqs-home-counter span {
    max-width: none;
  }

  .pqs-home-section--story,
  .pqs-home-section--double,
  .pqs-home-section--proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .type-header {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  }

  .type-image {
    justify-items: center;
  }

  .type-image img,
  .type-image-placeholder {
    width: min(100%, 280px);
  }

  .type-image-placeholder {
    padding: 20px;
  }

  .prakriti-type-visual--hero {
    max-width: 260px;
  }

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

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

@media (max-width: 1100px) {
  .site-header__inner {
    gap: 12px;
    grid-template-areas:
      "branding"
      "panel";
    grid-template-columns: 1fr;
    padding: 12px 0 14px;
  }

  .site-header__top {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__panel {
    background: linear-gradient(180deg, rgba(38, 51, 95, 0.99), rgba(27, 36, 71, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 22px 38px rgba(17, 21, 37, 0.22);
    display: none;
    flex-direction: column;
    gap: 12px;
    grid-area: panel;
    overflow: visible;
    padding: 14px;
    width: 100%;
  }

  .site-header__panel[hidden] {
    display: none !important;
  }

  .site-header.is-open .site-header__panel {
    display: flex;
  }

  .site-header__actions {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-area: auto;
    justify-content: initial;
    justify-self: stretch;
    order: 1;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 12px;
  }

  .site-nav {
    border-top: none;
    grid-area: auto;
    order: 2;
    padding-top: 0;
    width: 100%;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 2px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 6px 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-search {
    flex: 0 0 auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    width: 100%;
  }

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

  .site-search input,
  .site-header__actions .site-search button,
  .site-header__actions .site-account {
    box-shadow: none;
    min-height: 40px;
    padding: 9px 14px;
  }

  .site-search button {
    min-width: 88px;
    width: auto;
  }

  .site-account {
    align-self: flex-start;
    max-width: 100%;
    min-width: 0;
    width: fit-content;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .site-shell {
    width: min(calc(100vw - 24px), 1200px);
  }

  body {
    font-size: 14px;
  }

  .site-content {
    padding: 26px 0 52px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header__top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-header__inner {
    gap: 12px;
    padding: 12px 0;
  }

  .site-branding {
    gap: 10px;
  }

  .site-title {
    font-size: 1.2rem;
    line-height: 1.1;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__panel {
    margin-top: 4px;
  }

  .site-search button {
    width: auto;
  }

  .site-account {
    font-size: 0.92rem;
  }

  .pqs-home-hero {
    padding: 44px 16px 56px;
  }

  .pqs-home-hero__grid {
    align-items: start;
    gap: 22px;
    grid-template-columns: 1fr;
    position: relative;
  }

  .pqs-home-hero__copy {
    max-width: none;
    position: relative;
    z-index: 1;
  }

  .pqs-home-section--story,
  .pqs-home-section--double,
  .pqs-home-section--proof,
  .pqs-home-value-grid,
  .pqs-home-type-grid,
  .type-header,
  .type-sections {
    grid-template-columns: 1fr;
  }

  .pqs-home-hero h1 {
    max-width: 14ch;
  }

  .pqs-home-hero__lead {
    max-width: 100%;
  }

  .pqs-home-hero__visual {
    pointer-events: none;
    position: absolute;
    right: -10px;
    top: 8px;
    width: min(56vw, 250px);
    z-index: 0;
  }

  .pqs-home-hero__actions,
  .pqs-home-section__actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .pqs-home-hero__actions .pqs-button,
  .pqs-home-section__actions .pqs-button {
    width: 100%;
  }

  .pqs-home-aura__orbit {
    font-size: 0.82rem;
    min-height: 40px;
    padding: 8px 12px;
  }

  .pqs-home-hero-illustration {
    margin-left: auto;
    opacity: 0.2;
    width: min(56vw, 250px);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__cta {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .site-header__panel {
    padding: 12px;
  }

  .site-search {
    grid-template-columns: 1fr;
  }

  .site-search button {
    width: 100%;
  }

  .pqs-home-hero {
    padding: 36px 16px 50px;
  }

  .pqs-home-hero h1 {
    max-width: 15ch;
  }

  .pqs-home-hero__visual {
    right: -18px;
    top: 16px;
    width: min(58vw, 220px);
  }

  .pqs-home-hero-illustration {
    width: min(58vw, 220px);
  }

  .site-account {
    width: 100%;
  }
}

:root {
  --site-header-height: 136px;
}

.site-header__inner {
  display: grid;
  gap: 14px;
  grid-template-areas: none;
  grid-template-columns: 1fr;
  min-height: auto;
  padding: 14px 0 16px;
  position: relative;
}

.site-header__top {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-area: auto;
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-branding {
  color: white;
  display: inline-flex;
  gap: 0;
  min-width: 0;
}

.site-title {
  font-family: var(--site-font-body);
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: lowercase;
}

.site-header__audience,
.site-header__panel-link {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-size: 0.95rem;
  justify-self: center;
  min-height: 36px;
  position: relative;
  text-align: center;
}

.site-header__audience::after,
.site-header__panel-link::after,
.site-nav__link::after {
  background: rgba(255, 255, 255, 0.9);
  bottom: -2px;
  content: "";
  height: 1.5px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-header__audience:hover,
.site-header__audience.is-current,
.site-header__panel-link:hover,
.site-header__panel-link.is-current {
  color: white;
}

.site-header__audience:hover::after,
.site-header__audience.is-current::after,
.site-header__panel-link:hover::after,
.site-header__panel-link.is-current::after,
.site-nav__link:hover::after,
.site-nav__link.is-current::after {
  transform: scaleX(1);
}

.site-header__controls {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-self: end;
}

.site-header__controls .site-account {
  box-shadow: 0 12px 24px rgba(201, 111, 77, 0.2);
  font-size: 0.92rem;
  min-height: 40px;
  min-width: 0;
  padding: 9px 16px;
  width: auto;
  white-space: nowrap;
}

.site-header__toggle {
  display: none;
}

.site-header__panel {
  align-items: center;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 0;
  grid-area: auto;
  padding: 12px 0 0;
}

.site-header__panel-link {
  display: none;
}

.site-nav {
  border-top: none;
  grid-area: auto;
  min-width: 0;
  padding-top: 0;
  width: 100%;
}

.site-nav__row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  width: 100%;
}

.site-nav__link {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-size: 0.97rem;
  min-height: 36px;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link.is-current {
  color: white;
}

.site-search {
  display: grid;
  flex: 0 1 290px;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-left: auto;
  width: min(290px, 100%);
}

.site-search input {
  font-size: 0.94rem;
  min-height: 42px;
  min-width: 0;
}

.site-search button {
  box-shadow: none;
  min-height: 42px;
  min-width: 94px;
  padding: 10px 14px;
}

@media (max-width: 1280px) {
  .site-nav__row {
    gap: 10px 18px;
  }

  .site-nav__link {
    font-size: 0.94rem;
  }

  .site-search {
    flex-basis: 240px;
    width: min(240px, 100%);
  }
}

@media (max-width: 1120px) {
  .site-header__top {
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav__row {
    gap: 10px 16px;
  }

  .site-nav__link {
    font-size: 0.92rem;
  }

  .site-search {
    flex-basis: 224px;
    width: min(224px, 100%);
  }
}

@media (max-width: 960px) {
  :root {
    --site-header-height: 82px;
  }

  .site-header__inner {
    gap: 12px;
    padding: 12px 0;
  }

  .site-header__top {
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header__audience {
    display: none;
  }

  .site-header__controls {
    gap: 8px;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__panel {
    background: linear-gradient(180deg, rgba(38, 51, 95, 0.99), rgba(27, 36, 71, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 22px 38px rgba(17, 21, 37, 0.22);
    display: none;
    gap: 12px;
    overflow: visible;
    padding: 14px;
  }

  .site-header__panel[hidden] {
    display: none !important;
  }

  .site-header.is-open .site-header__panel {
    display: grid;
  }

  .site-header__panel-link {
    display: inline-flex;
    justify-self: start;
  }

  .site-nav__row {
    display: grid;
    gap: 8px;
  }

  .site-nav__link {
    min-height: 34px;
    padding: 6px 0;
    white-space: normal;
  }

  .site-search {
    flex: 0 0 auto;
    margin-left: 0;
    width: 100%;
  }

  .site-search input,
  .site-search button,
  .site-header__controls .site-account {
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .site-header__controls .site-account {
    padding: 9px 14px;
    width: auto;
  }

  .site-title {
    font-size: clamp(1.22rem, 6vw, 1.52rem);
    letter-spacing: 0.12em;
  }

  .site-header__toggle-label {
    display: none;
  }

  .site-header__toggle {
    min-width: 44px;
    padding: 10px 12px;
  }
}

.site-footer__inner {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  padding: 42px 0 48px;
}

.site-footer__logo {
  color: white;
  display: inline-flex;
  font-family: var(--site-font-body);
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: lowercase;
  width: fit-content;
}

.site-footer__grid {
  display: grid;
  gap: 28px 52px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.site-footer h3 {
  margin: 0;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__list a:hover {
  color: white;
}

@media (max-width: 1024px) {
  .site-footer__grid {
    gap: 24px 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .type-actions,
  .page-cta-actions {
    flex-direction: column;
  }

  .type-actions .pqs-button,
  .page-cta-actions .pqs-button {
    width: 100%;
  }

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

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

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

  .pqs-home-section,
  .pqs-home-aura__halo--outer,
  .pqs-home-aura__halo--inner,
  .pqs-home-aura__orbit,
  .site-account,
  .site-search button,
  .pqs-button {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

body {
  background:
    radial-gradient(circle at top left, rgba(198, 123, 92, 0.12), transparent 30%),
    radial-gradient(circle at right 10%, rgba(45, 55, 72, 0.08), transparent 32%),
    linear-gradient(180deg, #f5f0e6, #fbf7f1);
}

::selection {
  background: rgba(198, 123, 92, 0.22);
}

.site-header,
.site-header__panel {
  background: linear-gradient(135deg, rgba(38, 51, 95, 0.98), rgba(27, 36, 71, 0.96));
  box-shadow: 0 14px 40px rgba(17, 21, 37, 0.16);
}

.site-footer {
  background: linear-gradient(180deg, #2d3748 0%, #2d3748 calc(100% - 18px), #1a2933 calc(100% - 18px), #1a2933 100%);
}

.site-header__toggle,
.site-footer__socials a,
.site-footer__socials span {
  background: rgba(138, 154, 139, 0.12);
  border-color: rgba(138, 154, 139, 0.24);
}

.site-header__toggle:hover,
.site-footer__socials a:hover {
  background: rgba(138, 154, 139, 0.2);
}

.site-account,
.site-search button,
.pqs-button {
  box-shadow: 0 16px 32px rgba(198, 123, 92, 0.22);
}

.site-account:hover,
.site-search button:hover,
.pqs-button:hover {
  box-shadow: 0 18px 34px rgba(198, 123, 92, 0.28);
}

.site-account:active,
.site-search button:active,
.pqs-button:active {
  box-shadow: 0 10px 20px rgba(198, 123, 92, 0.22);
}

.pqs-home-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(198, 123, 92, 0.16), transparent 18%),
    radial-gradient(circle at 76% 24%, rgba(45, 55, 72, 0.08), transparent 32%),
    linear-gradient(160deg, rgba(255, 250, 243, 0.96), rgba(245, 240, 230, 0.94) 48%, rgba(235, 228, 215, 0.92));
}

.pqs-home-hero::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.56), transparent 42%),
    linear-gradient(180deg, rgba(45, 55, 72, 0.08), rgba(198, 123, 92, 0.06));
  border-color: rgba(45, 55, 72, 0.06);
}

.pqs-home-hero::after {
  background:
    radial-gradient(circle, rgba(45, 55, 72, 0.12) 0 10%, transparent 11% 100%),
    radial-gradient(circle, rgba(198, 123, 92, 0.12) 0 7%, transparent 8% 100%);
}

.pqs-home-aura__halo--inner {
  border-color: rgba(138, 154, 139, 0.24);
}

.pqs-home-aura__head {
  background: rgba(45, 55, 72, 0.92);
}

.pqs-home-aura__body {
  background: linear-gradient(180deg, rgba(45, 55, 72, 0.92), rgba(198, 123, 92, 0.84));
}

.pqs-home-aura__orbit {
  background: rgba(245, 240, 230, 0.92);
  border-color: rgba(138, 154, 139, 0.34);
}

.site-header--three-tier {
  overflow: visible;
}

.site-header--three-tier .site-header__inner {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding: 22px 0 30px;
  position: relative;
}

.site-header--three-tier .site-header__topbar {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 106px;
  position: relative;
  z-index: 2;
}

.site-header--three-tier .site-branding {
  display: inline-flex;
  min-width: 0;
  text-decoration: none;
}

.site-header--three-tier .site-title {
  color: #ffffff;
  font-size: clamp(2.65rem, 6vw, 4.85rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.94;
  text-transform: none;
}

.site-header--three-tier .site-header__top-actions {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  justify-self: end;
  padding-right: clamp(190px, 20vw, 300px);
  position: relative;
  z-index: 4;
}

.site-header--three-tier .site-header__search-toggle,
.site-header--three-tier .site-header__toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: none;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 auto;
  height: 46px;
  justify-content: center;
  min-height: 46px;
  min-width: 46px;
  padding: 0;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  width: 46px;
}

.site-header--three-tier .site-header__account {
  display: none;
}

.site-header--three-tier .site-header__search-toggle:hover,
.site-header--three-tier .site-header__toggle:hover,
.site-header--three-tier.is-search-open .site-header__search-toggle {
  background: rgba(198, 123, 92, 0.16);
  border-color: rgba(198, 123, 92, 0.42);
  box-shadow: 0 12px 24px rgba(26, 41, 51, 0.16);
  transform: translateY(-1px);
}

.site-header--three-tier .site-header__search-toggle svg,
.site-header--three-tier .site-header__toggle-box {
  width: 22px;
}

.site-header--three-tier .site-header__search-toggle svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-header--three-tier .site-header__decor {
  pointer-events: none;
  position: absolute;
  right: calc((100vw - var(--site-shell)) / -2 + 8px);
  top: -10px;
  width: clamp(150px, 16vw, 240px);
  z-index: 3;
}

.site-header--three-tier .site-header__leaf-art {
  display: block;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(14, 28, 38, 0.14));
  opacity: 1;
  width: 100%;
}

.site-header--three-tier .site-header__panel {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 16px;
  padding: 16px 0 0;
  position: relative;
  z-index: 2;
}

.site-header--three-tier .site-header__panel[hidden] {
  display: none !important;
}

.site-header--three-tier .site-header__search-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(100%, 500px);
  z-index: 5;
}

.site-header-search {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 360px) auto;
  width: 100%;
}

.site-header-search__input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  min-height: 48px;
  padding: 12px 18px;
  width: 100%;
}

.site-header-search__input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.site-header-search__submit {
  align-items: center;
  background: var(--site-terracotta);
  border: none;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(198, 123, 92, 0.22);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  min-width: 104px;
  padding: 12px 20px;
}

.site-header-search__submit:hover {
  background: var(--site-terracotta-deep);
  box-shadow: 0 18px 34px rgba(198, 123, 92, 0.28);
}

.site-header-search__submit:focus-visible,
.site-header-search__input:focus-visible,
.site-header--three-tier .site-header__search-toggle:focus-visible,
.site-header--three-tier .site-header__toggle:focus-visible,
.site-header--three-tier .site-menu__link:focus-visible,
.site-header--three-tier .site-menu__summary:focus-visible,
.site-header--three-tier .site-menu__sublink:focus-visible {
  box-shadow: 0 0 0 4px rgba(198, 123, 92, 0.18);
  outline: none;
}

.site-header--three-tier .site-nav--header {
  min-width: 0;
  order: 1;
  width: 100%;
}

.site-header--three-tier .site-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  width: 100%;
}

.site-header--three-tier .site-menu__group {
  position: relative;
}

.site-header--three-tier .site-menu__summary,
.site-header--three-tier .site-menu__link {
  align-items: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 8px;
  line-height: 1.2;
  min-height: 38px;
  padding: 4px 0;
  position: relative;
  text-decoration: none;
}

.site-header--three-tier .site-menu__summary {
  list-style: none;
}

.site-header--three-tier .site-menu__summary::-webkit-details-marker {
  display: none;
}

.site-header--three-tier .site-menu__summary::after,
.site-header--three-tier .site-menu__link::after {
  background: rgba(255, 255, 255, 0.92);
  bottom: 0;
  content: "";
  height: 1.5px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-header--three-tier .site-menu__group.is-current > .site-menu__summary,
.site-header--three-tier .site-menu__group[open] > .site-menu__summary,
.site-header--three-tier .site-menu__summary:hover,
.site-header--three-tier .site-menu__link:hover,
.site-header--three-tier .site-menu__link.is-current {
  color: #ffffff;
}

.site-header--three-tier .site-menu__group.is-current > .site-menu__summary::after,
.site-header--three-tier .site-menu__group[open] > .site-menu__summary::after,
.site-header--three-tier .site-menu__summary:hover::after,
.site-header--three-tier .site-menu__link:hover::after,
.site-header--three-tier .site-menu__link.is-current::after {
  transform: scaleX(1);
}

.site-header--three-tier .site-menu__caret {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  transition: transform 0.22s ease;
}

.site-header--three-tier .site-menu__group[open] .site-menu__caret {
  transform: rotate(180deg);
}

.site-header--three-tier .site-menu__caret svg {
  fill: none;
  height: 14px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 14px;
}

.site-header--three-tier .site-menu__submenu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(45, 55, 72, 0.12);
  border-radius: 20px;
  box-shadow: 0 22px 40px rgba(26, 41, 51, 0.14);
  display: grid;
  gap: 6px;
  left: 0;
  min-width: 236px;
  padding: 14px;
  position: absolute;
  top: calc(100% + 12px);
  z-index: 20;
}

.site-header--three-tier .site-menu__group:not([open]) .site-menu__submenu {
  display: none;
}

.site-header--three-tier .site-menu__sublink {
  border-radius: 14px;
  color: var(--site-indigo-deep);
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header--three-tier .site-menu__sublink:hover,
.site-header--three-tier .site-menu__sublink.is-current {
  background: rgba(245, 240, 230, 0.96);
  color: var(--site-terracotta-deep);
  transform: translateX(1px);
}

.site-header--three-tier .site-header__bottom {
  display: flex;
  justify-content: end;
  margin-top: 2px;
  order: 2;
  padding-top: 0;
}

.site-header--three-tier .site-header__test-cta {
  min-width: 228px;
}

@media (min-width: 961px) {
  .site-header--three-tier .site-header__toggle {
    display: none;
  }
}

@media (max-width: 960px) {
  .site-header--three-tier .site-header__inner {
    gap: 12px;
    padding: 14px 0 18px;
  }

  .site-header--three-tier .site-header__topbar {
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
  }

  .site-header--three-tier .site-title {
    font-size: clamp(1.7rem, 7.4vw, 2.45rem);
    letter-spacing: -0.03em;
  }

  .site-header--three-tier .site-header__top-actions {
    align-items: center;
    gap: 8px;
    padding-right: clamp(86px, 18vw, 132px);
  }

  .site-header--three-tier .site-header__account {
    display: none;
    font-size: 0.95rem;
    min-height: 46px;
    padding: 10px 18px;
    white-space: nowrap;
  }

  .site-header--three-tier .site-header__toggle {
    display: none;
  }

  .site-header--three-tier .site-header__toggle-label {
    display: none;
  }

  .site-header--three-tier .site-header__decor {
    display: block;
    right: calc((100vw - var(--site-shell)) / -2);
    top: -8px;
    width: clamp(92px, 22vw, 150px);
  }

  .site-header--three-tier .site-header__panel {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: none;
    display: grid;
    gap: 12px;
    padding: 12px 0 0;
  }

  .site-header--three-tier .site-header__search-panel {
    margin-top: 0;
    position: absolute;
    right: 0;
    width: min(100%, 500px);
  }

  .site-header-search {
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
  }

  .site-header--three-tier .site-menu {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
  }

  .site-header--three-tier .site-menu__group {
    position: relative;
    width: auto;
  }

  .site-header--three-tier .site-menu__summary,
  .site-header--three-tier .site-menu__link {
    font-size: 0.95rem;
    justify-content: initial;
    min-height: 34px;
    width: auto;
  }

  .site-header--three-tier .site-menu__submenu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(45, 55, 72, 0.12);
    box-shadow: 0 22px 40px rgba(26, 41, 51, 0.14);
    left: 0;
    margin-top: 0;
    min-width: min(236px, calc(100vw - 32px));
    position: absolute;
    top: calc(100% + 10px);
  }

  .site-header--three-tier .site-menu__sublink {
    color: var(--site-indigo-deep);
  }

  .site-header--three-tier .site-menu__sublink:hover,
  .site-header--three-tier .site-menu__sublink.is-current {
    background: rgba(245, 240, 230, 0.96);
    color: var(--site-terracotta-deep);
  }

  .site-header--three-tier .site-header__bottom {
    justify-content: end;
  }

  .site-header--three-tier .site-header__test-cta {
    min-width: min(228px, 100%);
    width: auto;
  }
}

@media (max-width: 640px) {
  .site-header--three-tier .site-title {
    font-size: clamp(1.34rem, 7vw, 1.62rem);
    letter-spacing: 0.12em;
  }

  .site-header--three-tier .site-header__search-toggle,
  .site-header--three-tier .site-header__toggle {
    height: 44px;
    min-height: 44px;
    min-width: 44px;
    width: 44px;
  }

  .site-header--three-tier .site-header__search-toggle {
    display: inline-flex;
  }

  .site-header--three-tier .site-header__account {
    font-size: 0.94rem;
    min-height: 44px;
    padding: 9px 16px;
  }

  .site-header--three-tier .site-header__top-actions {
    gap: 8px;
    padding-right: clamp(74px, 20vw, 92px);
  }

  .site-header--three-tier .site-header__decor {
    right: calc((100vw - var(--site-shell)) / -2);
    width: clamp(82px, 24vw, 112px);
  }

  .site-header--three-tier .site-menu {
    flex-wrap: nowrap;
    gap: 0 4px;
    justify-content: center;
  }

  .site-header--three-tier .site-menu__summary,
  .site-header--three-tier .site-menu__link {
    font-size: clamp(0.49rem, 2.05vw, 0.78rem);
    gap: 2px;
    min-height: 24px;
    padding: 2px 0;
  }

  .site-header--three-tier .site-menu__caret svg {
    height: 8px;
    width: 8px;
  }

  .site-header--three-tier .site-header__test-cta {
    min-height: 42px;
    min-width: min(188px, 100%);
    padding: 10px 16px;
  }
}

@media (max-width: 380px) {
  .site-header--three-tier .site-title {
    font-size: clamp(1.18rem, 6.4vw, 1.42rem);
    letter-spacing: 0.1em;
  }

  .site-header--three-tier .site-header__account {
    padding-inline: 14px;
  }

  .site-header--three-tier .site-header__top-actions {
    padding-right: 66px;
  }

  .site-header--three-tier .site-header__search-toggle,
  .site-header--three-tier .site-header__toggle {
    height: 42px;
    min-height: 42px;
    min-width: 42px;
    width: 42px;
  }
}

.site-footer--structured {
  background: transparent;
  color: #ffffff;
  margin-top: 56px;
}

.site-footer--structured .site-footer__top {
  background: linear-gradient(180deg, #2d3748 0%, #26335f 100%);
  color: #ffffff;
  padding: 56px 0 62px;
}

.site-footer--structured .site-footer__top-inner {
  display: grid;
  gap: 32px 52px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer--structured .site-footer__menu-column {
  display: grid;
  align-content: start;
  gap: 20px;
}

.site-footer--structured .site-footer__menu-column h3 {
  color: #ffffff;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  margin: 0;
}

.site-footer--structured .site-footer__menu-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer--structured .site-footer__menu-item {
  margin: 0;
}

.site-footer--structured .site-footer__menu-item a,
.site-footer--structured .site-footer__menu-item span {
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  gap: 12px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer--structured .site-footer__menu-item a::before,
.site-footer--structured .site-footer__menu-item span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%238A9A8B' d='M17.52 2.48C12.35 2.77 7.94 4.89 5.1 7.74c-3.63 3.62-3.85 8.64-3.58 9.78 1.15.28 6.17.05 9.79-3.57 2.84-2.85 4.96-7.26 5.25-12.43.02-.63-.41-1.06-1.04-1.04ZM6.61 14.86a.83.83 0 0 1-.83-.83c0-2.44 3.94-6.5 6.97-7.31-.81 3.03-4.87 6.97-7.31 6.97Z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  flex: 0 0 18px;
  height: 18px;
  width: 18px;
}

.site-footer--structured .site-footer__menu-item a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.site-footer--structured .site-footer__middle {
  background: #f5f0e6;
  color: var(--site-indigo-deep);
  padding: 44px 0 46px;
}

.site-footer--structured .site-footer__middle-inner {
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.site-footer--structured .site-footer__middle h2 {
  color: var(--site-indigo-deep);
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.site-footer--structured .site-footer__test-cta {
  min-width: 220px;
}

.site-footer--structured .site-footer__bottom {
  background: #1a2933;
  color: #ffffff;
  padding: 16px 0 18px;
}

.site-footer--structured .site-footer__bottom-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  text-align: center;
}

.site-footer--structured .site-footer__bottom-inner span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .site-footer--structured .site-footer__top-inner {
    gap: 28px 28px;
  }
}

@media (max-width: 900px) {
  .site-footer--structured .site-footer__top {
    padding: 44px 0 48px;
  }

  .site-footer--structured .site-footer__top-inner {
    gap: 24px 22px;
  }

  .site-footer--structured .site-footer__menu-column {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .site-footer--structured .site-footer__top-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer--structured {
    margin-top: 42px;
  }

  .site-footer--structured .site-footer__top {
    padding: 36px 0 40px;
  }

  .site-footer--structured .site-footer__middle {
    padding: 34px 0 36px;
  }

  .site-footer--structured .site-footer__test-cta {
    width: 100%;
  }
}
