﻿/*
Theme Name: Animus Club
Theme URI: https://animus.local
Author: Codex
Description: Landing page theme for ANIMUS offline men's club.
Version: 1.3.18
Text Domain: animus-club
*/

:root {
  --bg-900: #0d0f11;
  --bg-850: #13171b;
  --bg-800: #1a2025;
  --steel-700: #272e35;
  --steel-500: #4a545e;
  --steel-300: #7e8790;
  --stone-700: #3e3934;
  --stone-500: #666057;
  --stone-300: #8d8579;
  --text-main: #ece5d8;
  --text-dim: #b8b1a6;
  --line-hard: #3b434b;
  --line-soft: #2a3036;
  --accent-rust: #c56a2e;
  --accent-rust-deep: #8e431a;
  --accent-hot: #eb8f4c;
  --ok-bg: #203125;
  --ok-line: #4e7a57;
  --error-bg: #3d2320;
  --error-line: #8d4d45;
  --radius-lg: 10px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --shadow-hard: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 22px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: "Barlow", "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
  background-color: var(--bg-900);
  background-image:
    radial-gradient(circle at 14% -10%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 88% 8%, rgba(197, 106, 46, 0.15) 0, rgba(197, 106, 46, 0) 38%),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.03) 0 2px, rgba(0, 0, 0, 0) 2px 14px),
    linear-gradient(180deg, #101316 0%, #0b0d0f 100%);
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 90% 76%, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.42) 100%);
  z-index: -2;
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.ambient {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  border: 1px solid rgba(136, 145, 154, 0.35);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 22px 55px rgba(0, 0, 0, 0.45);
  background:
    repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.1) 0 1px, rgba(255, 255, 255, 0) 1px 9px),
    linear-gradient(150deg, rgba(70, 78, 87, 0.6), rgba(32, 37, 43, 0.5));
}

.ambient-one {
  width: 410px;
  height: 140px;
  top: 52px;
  right: -130px;
  transform: rotate(24deg);
  opacity: 0.5;
}

.ambient-two {
  width: 470px;
  height: 180px;
  left: -210px;
  top: 620px;
  transform: rotate(-20deg);
  opacity: 0.45;
}

.ambient-three {
  width: 420px;
  height: 160px;
  right: -165px;
  bottom: 90px;
  transform: rotate(-18deg);
  opacity: 0.52;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(66px, 8.2vw, 112px) 0;
  border-top: 1px solid var(--line-soft);
}

.section:nth-of-type(odd) {
  background:
    linear-gradient(180deg, rgba(27, 32, 37, 0.78) 0%, rgba(17, 21, 24, 0.85) 100%);
}

.section:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(35, 33, 30, 0.78) 0%, rgba(19, 21, 24, 0.88) 100%);
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, rgba(255, 255, 255, 0) 1px 16px);
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.74rem;
  color: #b59a7f;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Teko", "Arial Narrow", sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.96;
  text-transform: uppercase;
  color: #f0eadf;
}

.hero {
  padding-top: clamp(84px, 11vw, 134px);
}

.hero h1 {
  font-size: clamp(2.75rem, 8vw, 6.2rem);
  max-width: 10.5ch;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lead {
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.34rem);
  color: var(--text-dim);
  max-width: 59ch;
}

.cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  color: #130d09;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border-color: #f3b27b;
  background:
    linear-gradient(155deg, var(--accent-hot) 0%, var(--accent-rust) 42%, var(--accent-rust-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 14px 26px rgba(0, 0, 0, 0.42);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 18px 28px rgba(0, 0, 0, 0.5);
}

.btn-primary:active,
.btn-outline:active {
  transform: translateY(1px);
}

.btn-outline {
  color: #d6cec1;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border-color: #59626b;
  background:
    linear-gradient(180deg, rgba(47, 55, 63, 0.65), rgba(24, 29, 34, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 11px 24px rgba(0, 0, 0, 0.36);
}

.btn-outline:hover {
  border-color: #77828d;
  transform: translateY(-2px);
}

.btn-primary:focus-visible,
.btn-outline:focus-visible,
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(235, 143, 76, 0.75);
  outline-offset: 2px;
}

.cta-note {
  font-size: 0.88rem;
  color: #a89f93;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2.3rem, 5.3vw, 4rem);
  margin-bottom: 20px;
  max-width: 15ch;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 92px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-hot), rgba(235, 143, 76, 0));
}

.section-subtitle {
  margin: 0;
  color: #bcb4a8;
  max-width: 67ch;
}

.cta-block {
  border: 1px solid #5a4b3d;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 25px;
  align-items: center;
  background:
    linear-gradient(132deg, rgba(86, 73, 58, 0.9) 0%, rgba(41, 33, 27, 0.92) 44%, rgba(25, 27, 31, 0.96) 100%);
  box-shadow: var(--shadow-hard);
}

.cta-block h2 {
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  margin-bottom: 10px;
}

.cta-block p {
  margin: 0;
  color: #d2c6b7;
  max-width: 54ch;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.dash-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #dfd5c7;
}

.dash-list li {
  padding-left: 20px;
  position: relative;
}

.dash-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #dd8b52;
}

.page-template-template-codex .codex-shell .hero h1 {
  max-width: 12.5ch;
}

.page-template-template-codex .codex-layout {
  display: grid;
  gap: 22px;
}

.page-template-template-codex .codex-oath {
  margin-top: 28px;
  max-width: 74ch;
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid #5b4d40;
  border-radius: var(--radius-md);
  background:
    linear-gradient(150deg, rgba(95, 66, 43, 0.26), rgba(25, 29, 34, 0.84));
  box-shadow: var(--shadow-soft);
}

.page-template-template-codex .codex-oath p {
  margin: 0;
  color: #dfd3c5;
}

.page-template-template-codex .codex-oath p + p {
  margin-top: 8px;
  color: #bdb2a6;
}

.page-template-template-codex .codex-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.3vw, 24px);
}

.page-template-template-codex .codex-rule-card {
  position: relative;
  border: 1px solid #454f59;
  border-radius: var(--radius-md);
  padding: clamp(18px, 2.4vw, 26px);
  background:
    linear-gradient(175deg, rgba(37, 44, 51, 0.92), rgba(18, 22, 27, 0.98));
  box-shadow: var(--shadow-soft);
}

.page-template-template-codex .codex-rule-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(235, 143, 76, 0.12) 0%, rgba(235, 143, 76, 0) 42%);
}

.page-template-template-codex .codex-rule-card-main {
  grid-column: 1 / -1;
  border-color: #6a553f;
  background:
    linear-gradient(160deg, rgba(74, 56, 41, 0.55), rgba(22, 24, 28, 0.98));
}

.page-template-template-codex .codex-rule-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.page-template-template-codex .codex-rule-num {
  flex: 0 0 auto;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  color: #eb9a64;
  letter-spacing: 0.05em;
}

.page-template-template-codex .codex-rule-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  letter-spacing: 0.02em;
}

.page-template-template-codex .codex-rule-card p {
  margin: 0;
  color: #d2c8bb;
}

.page-template-template-codex .codex-rule-card p + p {
  margin-top: 10px;
}

.page-template-template-codex .codex-points {
  margin-top: 10px;
  gap: 9px;
}

.page-template-template-codex .codex-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-left: 3px solid #eb8f4c;
  background: rgba(235, 143, 76, 0.08);
  color: #ebddcd;
}

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

.leader-card {
  border: 1px solid #495460;
  border-radius: var(--radius-md);
  padding: 22px;
  background: linear-gradient(172deg, rgba(40, 47, 54, 0.86), rgba(17, 21, 26, 0.96));
  box-shadow: var(--shadow-soft);
}

.leader-card h3 {
  margin-top: 12px;
  font-size: 2rem;
}

.application-wrap {
  display: grid;
  gap: 20px;
}

.status {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border: 1px solid;
  font-weight: 700;
}

.status-success {
  background: var(--ok-bg);
  border-color: var(--ok-line);
  color: #cfe9d2;
}

.status-error {
  background: var(--error-bg);
  border-color: var(--error-line);
  color: #f2cbc5;
}

.application-form {
  border: 1px solid #4a535d;
  border-radius: var(--radius-lg);
  padding: clamp(25px, 3.9vw, 40px);
  background:
    linear-gradient(178deg, rgba(46, 54, 62, 0.54), rgba(20, 25, 30, 0.96));
  box-shadow: var(--shadow-hard);
}

.form-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

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

.form-field label {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d4cabd;
}

.field-label {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d4cabd;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid #59626c;
  background: linear-gradient(180deg, rgba(17, 20, 23, 0.96), rgba(12, 14, 16, 0.96));
  padding: 12px 13px;
  font: inherit;
  color: #efe7da;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8f877b;
}

.form-field textarea {
  min-height: 134px;
  resize: vertical;
}

.form-section {
  margin-top: 26px;
  border: 1px solid #3e4751;
  border-radius: var(--radius-md);
  background: linear-gradient(178deg, rgba(38, 45, 52, 0.68), rgba(18, 23, 28, 0.92));
  padding: 20px;
}

.form-section:first-of-type {
  margin-top: 0;
}

.form-section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

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

.option-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #4f5964;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(20, 24, 28, 0.92), rgba(13, 16, 19, 0.94));
  color: #dfd5c7;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent-hot);
}

.option-item span {
  font-size: 0.96rem;
}

.form-warning {
  border-color: #665746;
  background: linear-gradient(150deg, rgba(68, 53, 38, 0.58), rgba(24, 22, 20, 0.95));
}

.form-warning-text {
  margin: 0 0 14px;
  color: #dbc8b2;
}

.confirm-item {
  max-width: 780px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .cta-block,
  .leaders-grid,
  .body-pillars-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .option-grid-inline {
    grid-template-columns: 1fr;
  }

  .body-pillar-layout {
    grid-template-columns: 1fr;
  }

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

  .body-gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 240px;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  .btn-primary,
  .btn-outline,
  .form-submit {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }

  .application-form,
  .cta-block {
    padding: 22px;
  }
}

/* Clean landing: iron/stone style */
.clean-landing::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.07) 0, rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 86% 8%, rgba(197, 106, 46, 0.12) 0, rgba(197, 106, 46, 0) 34%),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.02) 0 1px, rgba(0, 0, 0, 0) 1px 11px);
  z-index: -2;
}

.clean-landing::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 130px rgba(0, 0, 0, 0.72);
  z-index: -1;
}

.clean-landing .ambient {
  display: block;
  opacity: 0.52;
}

.clean-landing {
  padding-top: 82px;
}

.clean-landing section[id] {
  scroll-margin-top: 118px;
}

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background:
    linear-gradient(180deg, rgba(23, 28, 33, 0.88), rgba(15, 19, 23, 0.82));
  backdrop-filter: blur(10px);
  transform: translateZ(0);
}

body.admin-bar .landing-header {
  top: 32px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f3eadc;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 6px;
  padding: 2px;
}

.header-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(210, 219, 228, 0.35);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(96, 103, 112, 0.42), rgba(55, 62, 71, 0.58));
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 132;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.header-burger:hover {
  transform: translateY(-1px);
  border-color: rgba(230, 236, 244, 0.5);
}

.header-burger:focus-visible {
  outline: 2px solid rgba(236, 226, 212, 0.42);
  outline-offset: 2px;
}

.header-burger-line {
  width: 18px;
  height: 1.8px;
  border-radius: 2px;
  background: #f2e7d9;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.header-mobile-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 130;
  padding: 0;
  border-top: 1px solid rgba(220, 198, 174, 0.24);
  background: linear-gradient(180deg, rgba(18, 23, 29, 0.98), rgba(12, 16, 21, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
}

html.mobile-menu-open,
body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open {
  width: 100%;
}

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

.landing-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-overflow-scrolling: touch;
}

.landing-nav a {
  text-decoration: none;
  color: #dbcdbb;
  font-size: 0.77rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 8px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.landing-nav a:hover {
  color: #f1e5d6;
  transform: translateY(-1px);
}

.header-codex-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(203, 208, 216, 0.3);
  background: linear-gradient(180deg, rgba(98, 104, 113, 0.35) 0%, rgba(70, 76, 85, 0.46) 100%);
  color: #ece2d4;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(9, 12, 16, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.header-codex-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(223, 229, 238, 0.45);
  background: linear-gradient(180deg, rgba(112, 118, 128, 0.42) 0%, rgba(80, 86, 95, 0.56) 100%);
}

.header-codex-btn:focus-visible {
  outline: 2px solid rgba(236, 226, 212, 0.42);
  outline-offset: 2px;
}

.header-codex-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-codex-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-codex-label {
  display: inline-block;
}

.header-cta {
  padding: 10px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.clean-landing .section {
  padding: clamp(58px, 7.4vw, 92px) 0;
  border-top: none;
}

.clean-landing .section.hero {
  padding-top: clamp(26px, 4.2vw, 44px);
}

.clean-landing .section:nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(28, 33, 39, 0.82) 0%, rgba(16, 20, 24, 0.9) 100%);
}

.clean-landing .section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(37, 34, 30, 0.82) 0%, rgba(17, 20, 24, 0.92) 100%);
}

.clean-landing .section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, rgba(255, 255, 255, 0) 1px 14px);
}

.clean-landing .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.clean-landing h1 {
  font-size: clamp(2.45rem, 7.2vw, 4.9rem);
  max-width: 10.6ch;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.45);
}

.seo-tag {
  margin: 0 0 14px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b7a089;
  font-weight: 700;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

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

.clean-landing .section:not(.hero) .content-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.clean-landing .section:not(.hero) .eyebrow {
  margin-bottom: 8px;
}

.clean-landing .section:not(.hero) .section-title {
  margin: 0;
  display: block;
  max-width: 21ch;
  font-size: clamp(1.55rem, 3.7vw, 3rem);
  line-height: 1.12;
  text-wrap: pretty;
}

.clean-landing .section:not(.hero) h3 {
  line-height: 1.12;
}

.clean-landing .section:not(.hero) .section-subtitle {
  margin: 0;
  max-width: 62ch;
  line-height: 1.6;
  color: #d0c5b8;
}

.clean-landing .section:not(.hero) .dash-list {
  margin-top: 2px;
  max-width: 62ch;
  gap: 10px;
}

.clean-landing .section:not(.hero) .dash-list li {
  line-height: 1.55;
}

.body-level-intro {
  max-width: 72ch;
}

.clean-landing .section:not(.hero) .body-level-intro .section-title {
  max-width: none;
}

.clean-landing #body-level .body-level-intro .section-subtitle {
  max-width: 58ch;
}

.body-pillars-grid {
  margin-top: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 3.4vw, 42px);
}

.body-pillar-card {
  --pillar-accent: #eb8f4c;
  --pillar-glow: rgba(235, 143, 76, 0.28);
  --pillar-glow-soft: rgba(235, 143, 76, 0.18);
  --pillar-ink: #f2e8dc;
  position: relative;
  border: 0;
  border-radius: 0;
  padding: clamp(18px, 2.6vw, 30px);
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 14px;
  align-content: start;
  isolation: isolate;
  overflow: visible;
}

.body-pillar-card-hike {
  --pillar-accent: #eb8f4c;
  --pillar-glow: rgba(235, 143, 76, 0.3);
  --pillar-glow-soft: rgba(235, 143, 76, 0.19);
}

.body-pillar-card-sambo {
  --pillar-accent: #7fb4ff;
  --pillar-glow: rgba(127, 180, 255, 0.28);
  --pillar-glow-soft: rgba(127, 180, 255, 0.18);
}

.body-pillar-card::before {
  content: "";
  position: absolute;
  width: clamp(220px, 34vw, 420px);
  aspect-ratio: 1;
  right: -16%;
  top: -26%;
  border-radius: 999px;
  background: radial-gradient(circle, var(--pillar-glow) 0%, rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
  z-index: -1;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.body-pillar-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, var(--pillar-accent) 48%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.68;
}

.body-pillar-card:hover::before {
  opacity: 0.95;
  transform: scale(1.08) translateX(-8px);
}

.body-pillar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(16px, 2.2vw, 30px);
  align-items: start;
}

.body-pillar-card-sambo .body-pillar-copy {
  order: 2;
}

.body-pillar-card-sambo .body-pillar-gallery {
  order: 1;
}

.body-pillar-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.body-pillar-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #cdb59f;
  font-weight: 700;
}

.body-pillar-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pillar-accent);
  box-shadow: 0 0 0 0 var(--pillar-glow-soft);
  animation: body-pillar-pulse 2.2s ease-out infinite;
}

.body-pillar-title {
  margin: 0;
  line-height: 0.98;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--pillar-ink);
}

.body-pillar-points {
  margin-top: 2px;
  gap: 0;
}

.body-pillar-points li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(227, 211, 195, 0.16);
}

.body-pillar-points li::before {
  content: "↗";
  left: 0;
  color: var(--pillar-accent);
  font-weight: 700;
}

.body-pillar-flow {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.body-pillar-flow span {
  position: relative;
  display: inline-block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d8c7b5;
  padding-bottom: 3px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.body-pillar-flow span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--pillar-accent), rgba(0, 0, 0, 0));
  opacity: 0.72;
}

.body-pillar-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 332px;
  perspective: 900px;
}

.body-gallery-frame {
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  position: relative;
  transition: transform 0.48s ease, filter 0.48s ease;
}

.body-gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 44%);
  opacity: 0.42;
  transition: opacity 0.45s ease;
}

.body-gallery-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.body-gallery-main {
  grid-column: 1 / span 8;
  grid-row: 1 / span 2;
  min-height: 310px;
  transform: rotate(-2deg);
  animation: body-main-float 7.4s ease-in-out infinite;
}

.body-gallery-small {
  min-height: 148px;
}

.body-pillar-gallery .body-gallery-frame:nth-child(2) {
  grid-column: 8 / -1;
  grid-row: 1;
  transform: translateY(-8px) rotate(3.2deg);
  animation: body-small-float-a 6.5s ease-in-out infinite;
}

.body-pillar-gallery .body-gallery-frame:nth-child(3) {
  grid-column: 8 / -1;
  grid-row: 2;
  transform: translateX(-8px) rotate(-2.6deg);
  animation: body-small-float-b 6.8s ease-in-out infinite;
}

.body-pillar-gallery-hike .body-gallery-frame img {
  border-radius: 24px 10px 18px 14px;
}

.body-pillar-gallery-sambo .body-gallery-frame img {
  border-radius: 10px 24px 14px 20px;
}

.body-pillar-card-sambo .body-gallery-main {
  transform: rotate(2deg);
}

.body-pillar-card-sambo .body-pillar-gallery .body-gallery-frame:nth-child(2) {
  transform: translateX(5px) rotate(-3deg);
}

.body-pillar-card-sambo .body-pillar-gallery .body-gallery-frame:nth-child(3) {
  transform: translateY(6px) rotate(2.4deg);
}

.body-pillar-card:hover .body-pillar-flow span {
  transform: translateY(-2px);
  color: #f0e0cf;
}

.body-pillar-card:hover .body-gallery-main {
  transform: translateY(-7px) rotate(-2.6deg);
}

.body-pillar-card:hover .body-gallery-frame:nth-child(2) {
  transform: translateY(-13px) rotate(4.2deg);
}

.body-pillar-card:hover .body-gallery-frame:nth-child(3) {
  transform: translateX(-11px) rotate(-3.2deg);
}

.body-pillar-card:hover .body-gallery-frame::after {
  opacity: 0.62;
}

.body-pillar-card-sambo:hover .body-gallery-main {
  transform: translateY(-7px) rotate(2.6deg);
}

.body-pillar-card-sambo:hover .body-pillar-gallery .body-gallery-frame:nth-child(2) {
  transform: translateX(8px) rotate(-4deg);
}

.body-pillar-card-sambo:hover .body-pillar-gallery .body-gallery-frame:nth-child(3) {
  transform: translateY(2px) rotate(3.2deg);
}

@keyframes body-pillar-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--pillar-glow-soft);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes body-main-float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

@keyframes body-small-float-a {
  0%,
  100% {
    transform: translateY(-8px) rotate(3.2deg);
  }

  50% {
    transform: translateY(-2px) rotate(3.2deg);
  }
}

@keyframes body-small-float-b {
  0%,
  100% {
    transform: translateX(-8px) rotate(-2.6deg);
  }

  50% {
    transform: translateX(-2px) rotate(-2.6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .body-pillar-kicker::before,
  .body-gallery-main,
  .body-pillar-gallery .body-gallery-frame:nth-child(2),
  .body-pillar-gallery .body-gallery-frame:nth-child(3) {
    animation: none;
  }

  .body-pillar-card,
  .body-gallery-frame,
  .body-pillar-flow span {
    transition: none;
  }
}

.clean-landing .section:not(.hero) .body-pillar-card .section-subtitle,
.clean-landing .section:not(.hero) .body-pillar-card .dash-list {
  max-width: none;
}

.clean-landing #approach .approach-full {
  display: grid;
  gap: 14px;
}

.clean-landing #approach .section-title {
  width: 100%;
  max-width: none;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
}

.clean-landing #approach .approach-nowrap {
  white-space: normal;
  display: inline;
}

.clean-landing #approach .integration-text-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  counter-reset: approach-step;
}

.clean-landing #approach .integration-text-list li {
  position: relative;
  margin: 0;
  border: 1px solid #5b6570;
  border-radius: var(--radius-md);
  padding: 18px 16px 16px 62px;
  line-height: 1.56;
  color: #d6cabd;
  background: linear-gradient(172deg, rgba(50, 58, 66, 0.9), rgba(19, 24, 29, 0.96));
  box-shadow: var(--shadow-soft);
}

.clean-landing #approach .integration-text-list li::before {
  counter-increment: approach-step;
  content: counter(approach-step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #19110a;
  background: linear-gradient(155deg, var(--accent-hot) 0%, var(--accent-rust) 52%, var(--accent-rust-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.3);
}

.clean-landing #approach .integration-text-list strong {
  display: block;
  margin-bottom: 6px;
  color: #f1e5d6;
}

.clean-landing #approach .section-subtitle {
  max-width: none;
}

.clean-landing #approach .approach-photo-row {
  margin-top: clamp(18px, 2.8vw, 30px);
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(200px, 1fr);
  gap: clamp(14px, 2.6vw, 40px);
  align-items: center;
  justify-content: start;
}

.clean-landing #approach .approach-photo-slot {
  width: 100%;
  max-width: 420px;
  margin: 0;
  border: 0;
  border-radius: 0;
  display: block;
  background: transparent;
  box-shadow: none;
  line-height: 0;
  justify-self: start;
}

.clean-landing #approach .approach-photo-slot img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.clean-landing #approach .approach-photo-note {
  margin: 0;
  display: grid;
  justify-items: stretch;
  gap: 8px;
  width: 100%;
  padding-right: clamp(18px, 3.6vw, 54px);
}

.clean-landing #approach .approach-photo-note-text {
  margin: 0;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: clamp(2.3rem, 5.8vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.88;
  text-transform: uppercase;
  color: #e8dbcb;
  text-align: right;
  width: 100%;
  font-style: italic;
  transform: skewX(-10deg) rotate(-2deg);
  transform-origin: right center;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.clean-landing #approach .approach-photo-note-arrow {
  display: block;
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 5.8rem);
  line-height: 1;
  color: var(--accent-hot);
  justify-self: end;
  margin-right: clamp(18px, 3.4vw, 48px);
  transform: rotate(30deg);
  text-shadow: 0 12px 22px rgba(0, 0, 0, 0.4);
  animation: approach-arrow-bounce 1.8s ease-in-out infinite;
}

@keyframes approach-arrow-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(30deg);
  }

  50% {
    transform: translateY(8px) rotate(30deg);
  }
}

@keyframes approach-arrow-bounce-down {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(8px) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clean-landing #approach .approach-photo-note-arrow {
    animation: none;
  }
}

.emotion-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 30px);
  align-items: start;
}

.emotion-left {
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
  align-content: start;
}

.emotion-header {
  max-width: none;
  display: grid;
  gap: 10px;
}

.clean-landing #emotion-level .emotion-header .section-title {
  max-width: none;
  text-wrap: balance;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.03;
}

.emotion-header-track {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.emotion-header-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 13px 7px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #f0e2d2;
  border: 1px solid rgba(238, 198, 163, 0.52);
  border-radius: 999px;
  background: rgba(46, 35, 28, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: emotion-chip-drift 5.4s ease-in-out infinite;
}

.emotion-header-track span:nth-child(2) {
  animation-delay: 0.7s;
}

.emotion-header-track span:nth-child(3) {
  animation-delay: 1.2s;
}

.emotion-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 11 / 12;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.emotion-photo::before {
  content: "";
  position: absolute;
  width: clamp(220px, 32vw, 390px);
  aspect-ratio: 1;
  left: -14%;
  bottom: -16%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(235, 143, 76, 0.3) 0%, rgba(0, 0, 0, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.emotion-photo::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 30px;
  border: 1px dashed rgba(231, 191, 154, 0.35);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
  animation: emotion-halo-spin 18s linear infinite;
}

.emotion-photo img {
  position: relative;
  z-index: 2;
  border-radius: 30px 16px 24px 18px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.44);
}

.emotion-photo-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  margin: 0;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #ffe8d1;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(244, 209, 176, 0.35);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.78);
}

.emotion-content {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-top: 0;
  position: relative;
}

.emotion-content::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: linear-gradient(180deg, rgba(246, 197, 155, 0.82), rgba(246, 197, 155, 0));
  opacity: 0.56;
}

.emotion-intro-kicker {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e1af86;
  font-weight: 700;
}

.emotion-intro-text {
  margin: 0;
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  line-height: 1.68;
  color: #e6d8c8;
  text-wrap: pretty;
}

.emotion-program-block {
  display: grid;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(233, 197, 160, 0.3);
}

.emotion-program-title {
  margin: 0;
  font-family: "Teko", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: clamp(1.45rem, 2.9vw, 2.2rem);
  font-weight: 700;
  color: #f0dfcc;
}

.emotion-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.emotion-program-item {
  position: relative;
  border: 1px solid rgba(233, 196, 162, 0.32);
  border-radius: 14px;
  padding: 12px 12px 11px;
  background: linear-gradient(165deg, rgba(58, 43, 32, 0.28), rgba(19, 23, 28, 0.44));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.emotion-program-item::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), #f1c79d, rgba(0, 0, 0, 0));
  opacity: 0.55;
  transition: opacity 0.24s ease;
}

.emotion-program-item:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 207, 170, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 22px rgba(0, 0, 0, 0.25);
}

.emotion-program-item:hover::after {
  opacity: 0.95;
}

.emotion-program-item-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.emotion-program-index {
  margin-left: auto;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #f2c79d;
  opacity: 0.9;
}

.emotion-program-item-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 202, 167, 0.55);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(96, 64, 43, 0.62), rgba(28, 32, 37, 0.9));
  position: relative;
  flex: 0 0 auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 15px rgba(0, 0, 0, 0.32);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  display: grid;
  place-items: center;
}

.emotion-program-item-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: none;
  stroke: #ffe2c8;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.96;
}

.emotion-program-item:hover .emotion-program-item-icon {
  transform: translateY(-1px);
  border-color: rgba(244, 211, 181, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 18px rgba(0, 0, 0, 0.34);
}

.icon-triggers svg {
  stroke: #ffd7b1;
}

.icon-practice svg {
  stroke: #ffe0c2;
}

.icon-awareness svg {
  stroke: #ffe2c7;
}

.icon-control svg {
  stroke: #ffdcb8;
}

.emotion-program-item-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f7e6d4;
}

.emotion-program-item > p:not(.emotion-program-item-title) {
  margin: 0;
  color: #e1d3c2;
  font-size: 0.95rem;
  line-height: 1.58;
  max-width: 34ch;
}

.emotion-meditation {
  position: relative;
  margin-top: 4px;
  border: 1px solid rgba(231, 194, 160, 0.3);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(56, 41, 30, 0.22), rgba(20, 24, 30, 0.5));
  padding: 14px 14px 12px;
  display: grid;
  gap: 7px;
}

.emotion-meditation-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #efbf95;
}

.emotion-meditation-quote {
  margin: 0;
  color: #d9cabb;
  line-height: 1.62;
  max-width: 66ch;
}

@keyframes emotion-halo-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes emotion-chip-drift {
  0%,
  100% {
    transform: translateY(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .emotion-photo::after,
  .emotion-header-track span {
    animation: none;
  }

  .emotion-program-item,
  .emotion-program-item-icon {
    transition: none;
  }

  .mind-office-frame {
    transition: none;
  }
}

.mind-features-shell {
  display: grid;
  gap: clamp(14px, 1.8vw, 24px);
}

.mind-features-header {
  text-align: center;
}

.clean-landing #mind-level .mind-features-header .section-title {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  font-size: clamp(1.28rem, 3.8vw, 3.1rem);
}

.clean-landing #mind-level .mind-features-header .section-subtitle {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}

.mind-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 18px);
}

.mind-feature-card {
  border: 1px solid #6f7d8b;
  border-radius: var(--radius-md);
  padding: clamp(14px, 1.8vw, 18px);
  background: linear-gradient(180deg, rgba(53, 61, 69, 0.9), rgba(22, 27, 33, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.26);
  display: grid;
  gap: 10px;
  align-content: start;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mind-feature-card:hover {
  transform: translateY(-2px);
  border-color: #98a7b7;
  background: linear-gradient(180deg, rgba(61, 70, 79, 0.92), rgba(24, 30, 36, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 26px rgba(0, 0, 0, 0.3);
}

.mind-feature-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mind-feature-head h3 {
  margin: 0;
  font-size: 1.78rem;
  line-height: 1;
}

.mind-feature-card p {
  margin: 0;
  color: #d4c8ba;
  line-height: 1.55;
}

.mind-office-stage {
  margin-top: clamp(14px, 2.1vw, 26px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
}

.mind-office-copy {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
  max-width: none;
}

.mind-office-copy::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, rgba(236, 180, 126, 0.86), rgba(236, 180, 126, 0));
  opacity: 0.75;
}

.mind-office-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #d9b089;
}

.mind-office-title {
  margin: 0;
  font-family: "Teko", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.96;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  color: #f3e2ce;
}

.clean-landing #mind-level .mind-office-copy .section-subtitle {
  max-width: 70ch;
}

.mind-office-frequency {
  margin: 2px 0 0;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px 7px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.68rem;
  font-weight: 700;
  color: #f4e1cc;
  border: 1px solid rgba(234, 188, 142, 0.42);
  border-radius: 999px;
  background: rgba(51, 40, 31, 0.45);
}

.mind-office-gallery {
  display: block;
  width: 100%;
  justify-self: end;
}

.mind-office-frame {
  margin: 0;
  position: relative;
  transition: transform 0.35s ease;
}

.mind-office-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 44%);
  opacity: 0.48;
}

.mind-office-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.mind-office-single {
  width: 100%;
  aspect-ratio: 4 / 3;
  transform: rotate(-1.2deg);
}

.mind-office-stage:hover .mind-office-single {
  transform: translateY(-4px) rotate(-1.8deg);
}

.mind-feature-icon {
  width: 30px;
  height: 30px;
  border: 1px solid #8c9aa8;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(65, 74, 83, 0.94), rgba(33, 39, 45, 0.96));
  position: relative;
  flex: 0 0 auto;
}

.mind-feature-icon::before,
.mind-feature-icon::after {
  content: "";
  position: absolute;
}

.icon-mind-coaching::before {
  left: 8px;
  right: 8px;
  top: 7px;
  height: 2px;
  background: #e3c3a3;
  box-shadow: 0 6px 0 #e3c3a3, 0 12px 0 #e3c3a3;
}

.icon-mind-creativity::before {
  width: 10px;
  height: 10px;
  border: 1px solid #e1bf9d;
  border-radius: 50%;
  left: 9px;
  top: 9px;
}

.icon-mind-creativity::after {
  width: 14px;
  height: 2px;
  background: #e1bf9d;
  left: 8px;
  top: 14px;
  transform: rotate(45deg);
}

.icon-mind-memory::before {
  left: 7px;
  right: 7px;
  top: 6px;
  bottom: 6px;
  border: 1px solid #e1bf9d;
  border-radius: 4px;
}

.icon-mind-memory::after {
  left: 10px;
  right: 10px;
  top: 10px;
  height: 2px;
  background: #e9d1b8;
  box-shadow: 0 5px 0 #e9d1b8, 0 10px 0 #e9d1b8;
}

.icon-mind-focus::before {
  inset: 6px;
  border: 1px solid #dfbc99;
  border-radius: 50%;
}

.icon-mind-focus::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #efdcc8;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.icon-mind-logic::before {
  left: 7px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e8ceb4;
  box-shadow: 10px 0 0 #e8ceb4, 5px 9px 0 #e8ceb4;
}

.icon-mind-logic::after {
  left: 10px;
  top: 10px;
  width: 10px;
  height: 8px;
  border-left: 1px solid #dfbc99;
  border-right: 1px solid #dfbc99;
  border-bottom: 1px solid #dfbc99;
}

.icon-mind-attention::before {
  left: 8px;
  right: 8px;
  top: 6px;
  bottom: 6px;
  border: 1px solid #e0be9c;
  border-radius: 999px;
}

.icon-mind-attention::after {
  width: 2px;
  height: 10px;
  background: #edd7c0;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  box-shadow: 0 11px 0 -4px #edd7c0;
}

.clean-landing .leaders-grid .section-subtitle {
  max-width: 50ch;
}

.clean-landing #leaders .leaders-title-line {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
}

.media-placeholder {
  aspect-ratio: 4 / 3;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.media-frame {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

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

.simple-leaders {
  margin-top: 18px;
}

.simple-leaders .leader-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.leader-photo-visual {
  position: relative;
  width: min(82%, 320px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(132, 142, 153, 0.55);
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
  background:
    linear-gradient(150deg, rgba(67, 74, 82, 0.55), rgba(22, 26, 31, 0.88));
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(228, 211, 191, 0.14);
  overflow: hidden;
}

.leader-photo-visual::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(227, 208, 187, 0.2);
  border-radius: 6px;
  pointer-events: none;
}

.leader-photo-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.price-passport {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.price-passport-head {
  display: grid;
  gap: 12px;
}

.price-title-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
  flex-wrap: nowrap;
}

.clean-landing #pricing .price-title-line .section-title {
  margin: 0;
  max-width: none;
  font-size: clamp(1rem, 2.8vw, 3.15rem);
  line-height: 0.92;
  white-space: nowrap;
}

.price-status-value {
  margin: 0;
  display: grid;
  justify-items: end;
  gap: 2px;
  white-space: nowrap;
}

.price-status-amount {
  font-family: "Teko", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.92;
  font-size: clamp(1rem, 2.8vw, 3.15rem);
  color: #5ec27a;
  background: linear-gradient(180deg, #b7f1c6 0%, #5ec27a 44%, #2f7f4e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 18px rgba(74, 168, 107, 0.33);
}

.price-status-period {
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c5b7a9;
}

.clean-landing #pricing .price-title-line .section-title::after {
  display: none;
}

.price-includes-title {
  margin: clamp(20px, 2.8vw, 30px) 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d9bca2;
}

.price-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  grid-auto-rows: 1fr;
}

.price-feature-card {
  height: 100%;
  padding: 0;
  background: transparent;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
}

.price-feature-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: #dfd5c5;
  position: relative;
  transition: none;
  background: transparent;
  filter: none;
}

.price-feature-icon svg {
  width: 74px;
  height: 74px;
  overflow: visible;
}

.price-feature-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-feature-icon svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.icon-meetings {
  color: #e9ddc9;
}

.icon-discipline {
  color: #c7ddc7;
}

.icon-sessions {
  color: #d9cec2;
}

.price-feature-card h3 {
  margin: 0;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #f5ece1;
  text-align: center;
}

.price-feature-card p {
  margin: 0;
  color: #cbbfb2;
  line-height: 1.48;
  text-align: center;
  max-width: 24ch;
}

.clean-cta {
  background:
    linear-gradient(132deg, rgba(86, 73, 58, 0.86) 0%, rgba(41, 33, 27, 0.9) 42%, rgba(25, 27, 31, 0.95) 100%);
  border-color: #5a4b3d;
}

.clean-landing .hero .hero-copy {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.clean-landing .hero .media-placeholder {
  border: 1px solid #5e6a78;
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.05) 0 1px, rgba(255, 255, 255, 0) 1px 9px),
    linear-gradient(180deg, rgba(45, 53, 61, 0.88), rgba(20, 25, 30, 0.96));
  box-shadow: var(--shadow-soft);
  padding: 0;
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .clean-landing #approach .integration-text-list {
    grid-template-columns: 1fr;
  }

  .clean-landing #body-level .body-pillar-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clean-landing #body-level .body-pillar-card-sambo .body-pillar-copy,
  .clean-landing #body-level .body-pillar-card-sambo .body-pillar-gallery {
    order: initial;
  }

  .clean-landing #body-level .body-pillar-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    gap: 10px;
  }

  .clean-landing #body-level .body-gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 250px;
    transform: rotate(-1deg);
  }

  .clean-landing #body-level .body-pillar-card-sambo .body-gallery-main {
    transform: rotate(1deg);
  }

  .clean-landing #body-level .body-pillar-gallery .body-gallery-frame:nth-child(2),
  .clean-landing #body-level .body-pillar-gallery .body-gallery-frame:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    transform: rotate(0.2deg);
  }

  .clean-landing #body-level .body-pillar-kicker {
    font-size: 0.66rem;
  }

  .clean-landing #body-level .body-pillar-flow {
    gap: 9px;
  }

  .clean-landing #approach .approach-photo-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .clean-landing #approach .approach-photo-slot {
    width: min(100%, 320px);
    min-height: 0;
  }

  .clean-landing #approach .approach-photo-note {
    justify-items: center;
    gap: 4px;
    padding-right: 0;
  }

  .clean-landing #approach .approach-photo-note-text {
    font-size: clamp(2rem, 9vw, 3rem);
    text-align: center;
    transform: skewX(-8deg) rotate(-1.2deg);
    transform-origin: center;
  }

  .clean-landing #approach .approach-photo-note-arrow {
    justify-self: center;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
    margin-right: 0;
    transform: rotate(0deg);
    animation: approach-arrow-bounce-down 1.8s ease-in-out infinite;
  }

  .price-features-grid {
    grid-template-columns: 1fr;
  }

  .price-title-line {
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .emotion-program-grid {
    grid-template-columns: 1fr;
  }

  .clean-landing #emotion-level .emotion-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .clean-landing #emotion-level .emotion-left {
    gap: 10px;
  }

  .clean-landing #emotion-level .emotion-header {
    gap: 8px;
  }

  .clean-landing #emotion-level .emotion-header-track {
    gap: 8px;
  }

  .clean-landing #emotion-level .emotion-header-track span {
    padding: 5px 10px 6px;
    font-size: 0.64rem;
  }

  .clean-landing #emotion-level .emotion-photo {
    width: min(100%, 560px);
    aspect-ratio: 4 / 5;
  }

  .clean-landing #emotion-level .emotion-program-item {
    padding: 11px 10px 10px 14px;
  }

  .clean-landing #emotion-level .emotion-content::before {
    display: none;
  }

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

  .mind-office-stage {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mind-office-gallery {
    width: min(100%, 560px);
    justify-self: start;
  }

  .mind-office-single {
    transform: rotate(-0.6deg);
  }

  .clean-landing #mind-level .mind-features-header .section-title {
    white-space: normal;
  }

  .clean-landing #leaders .leaders-title-line {
    white-space: normal;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 10px;
  }

  .header-actions {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    justify-content: flex-end;
  }

  .landing-nav {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: none;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }
}

@media (max-width: 760px) {
  .clean-landing {
    padding-top: 72px;
  }

  .header-inner {
    min-height: 68px;
    gap: 8px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .header-actions {
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
  }

  .landing-nav {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

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

  .landing-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.68rem;
    padding: 7px 7px;
  }

  .header-codex-btn {
    flex: 0 0 auto;
    gap: 6px;
    padding: 8px 10px;
    font-size: 0.62rem;
  }

  .header-codex-icon {
    width: 13px;
    height: 13px;
  }

  .header-cta {
    flex: 0 0 auto;
    padding: 8px 9px;
    font-size: 0.64rem;
  }

  .price-title-line {
    row-gap: 8px;
  }

  .clean-landing #pricing .price-title-line .section-title,
  .price-status-amount {
    white-space: normal;
    font-size: clamp(1.35rem, 7.4vw, 2.1rem);
    line-height: 1;
  }

  .price-status-value {
    justify-items: start;
    gap: 3px;
  }

  .price-status-period {
    font-size: 0.74rem;
  }

  .emotion-program-item {
    padding: 10px 8px 9px 13px;
  }

  .clean-landing #emotion-level .emotion-program-item-head {
    gap: 8px;
  }

  .clean-landing #emotion-level .emotion-program-item-icon {
    width: 38px;
    height: 38px;
  }

  .clean-landing #emotion-level .emotion-program-item-icon svg {
    width: 22px;
    height: 22px;
  }

  .clean-landing #emotion-level .emotion-program-index {
    font-size: 1rem;
  }

  .clean-landing #emotion-level .emotion-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .clean-landing #emotion-level .emotion-photo-caption {
    font-size: 0.6rem;
    left: 10px;
    bottom: 10px;
  }

  .mind-feature-card {
    padding: 10px;
  }

  .mind-feature-head h3 {
    font-size: 1.6rem;
  }

  .mind-feature-icon {
    width: 28px;
    height: 28px;
  }

  .mind-features-grid {
    grid-template-columns: 1fr;
  }

  .mind-office-copy::before {
    left: -9px;
  }

  .mind-office-title {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .mind-office-frequency {
    font-size: 0.64rem;
  }

  .mind-office-gallery {
    width: 100%;
  }

  .mind-office-single {
    aspect-ratio: 4 / 3;
    transform: rotate(0deg);
  }

  .clean-landing #body-level .body-pillar-card {
    padding: 14px 0 8px;
  }

  .clean-landing #body-level .body-pillar-title {
    font-size: clamp(1.85rem, 9.2vw, 2.5rem);
  }

  .clean-landing #body-level .body-pillar-points li {
    padding: 9px 0 9px 22px;
  }

  .clean-landing #body-level .body-gallery-frame img {
    border-radius: 14px;
  }

  .body-gallery-main {
    min-height: 210px;
  }

  .body-gallery-small {
    min-height: 110px;
  }
}

@media (max-width: 980px) {
  .clean-landing {
    padding-top: 80px;
  }

  .header-inner {
    min-height: 80px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
    font-size: 0.82rem;
  }

  .brand span {
    display: inline;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .header-actions {
    display: none;
  }

  .header-burger {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .header-mobile-panel {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
    padding: 14px min(24px, 4.5vw) 18px;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s step-end;
  }

  body.admin-bar .header-mobile-panel {
    max-height: calc(100vh - 114px);
  }

  .landing-header.is-menu-open .header-mobile-panel {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear;
  }

  .landing-header.is-menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 125;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(8, 12, 16, 0.64) 0%, rgba(8, 12, 16, 0.78) 100%);
    backdrop-filter: blur(2px);
  }

  .landing-header.is-menu-open .header-burger-line:nth-child(1) {
    transform: translateY(6.8px) rotate(45deg);
  }

  .landing-header.is-menu-open .header-burger-line:nth-child(2) {
    opacity: 0;
  }

  .landing-header.is-menu-open .header-burger-line:nth-child(3) {
    transform: translateY(-6.8px) rotate(-45deg);
  }

  .landing-header.is-menu-open .header-mobile-panel .landing-nav.header-mobile-nav {
    margin: 0 auto;
    width: min(100%, 430px);
    display: grid;
    gap: 5px;
    justify-items: center;
    align-items: center;
    justify-content: center;
  }

  .landing-header.is-menu-open .header-mobile-panel .landing-nav.header-mobile-nav a {
    display: block;
    width: 100%;
    padding: 10px 1px;
    border-bottom: 1px solid rgba(219, 194, 166, 0.16);
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-decoration: none;
    color: #e8dac8;
    text-align: center;
    transform: none;
  }

  .header-mobile-actions {
    display: grid;
    gap: 10px;
    width: min(100%, 430px);
    margin: 0 auto;
    justify-items: center;
  }

  .header-mobile-codex,
  .header-mobile-cta {
    width: min(100%, 340px);
    justify-content: center;
  }

  .header-mobile-codex {
    min-height: 40px;
  }

  .header-mobile-cta {
    min-height: 42px;
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .clean-landing {
    padding-top: 74px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 8px;
    font-size: 0.76rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-burger {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    gap: 4px;
  }

  .header-burger-line {
    width: 16px;
  }

  .header-mobile-panel {
    padding: 12px 16px 15px;
    max-height: calc(100vh - 74px);
  }

  body.admin-bar .header-mobile-panel {
    max-height: calc(100vh - 120px);
  }

  .header-mobile-nav a {
    font-size: 0.72rem;
    padding: 9px 1px;
  }

  .header-mobile-codex {
    gap: 6px;
    font-size: 0.66rem;
  }

  .header-mobile-codex .header-codex-icon {
    width: 14px;
    height: 14px;
  }

  .header-mobile-cta {
    font-size: 0.66rem;
    padding: 10px 12px;
  }
}

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