:root {
  color-scheme: light;
  --background: #ffffff;
  --surface: #fdf8f2;
  --surface-strong: #ffffff;
  --ink: #572f16;
  --muted: #262728;
  --line: rgba(87, 47, 22, 0.1);
  --line-strong: rgba(87, 47, 22, 0.16);
  --gold: #bd9650;
  --gold-soft: #ead9af;
  --gold-haze: rgba(199, 164, 90, 0.18);
  --sand: #f8f1e8;
  --sand-deep: #f1e4d2;
  --paper: #fdf8f2;
  --brown: #452f22;
  --brown-soft: #7b604a;
  --success: #506c55;
  --radius: 16px;
  --radius-soft: 22px;
  --bevel-light: inset 1px 1px 0 rgba(255, 255, 255, 0.92);
  --bevel-shade: inset -1px -1px 0 rgba(87, 47, 22, 0.07);
  --bevel-rim: inset 0 0 0 1px rgba(255, 255, 255, 0.44), inset 0 -16px 30px rgba(87, 47, 22, 0.018);
  --shadow: 0 20px 62px rgba(87, 47, 22, 0.045), var(--bevel-light), var(--bevel-shade), var(--bevel-rim);
  --shadow-soft: 0 12px 30px rgba(87, 47, 22, 0.032), var(--bevel-light), var(--bevel-shade), var(--bevel-rim);
  --shadow-bevel: 0 14px 36px rgba(87, 47, 22, 0.042), var(--bevel-light), var(--bevel-shade), var(--bevel-rim);
  --container: 1160px;
  --gutter: clamp(18px, 2.4vw, 28px);
  --section-gap: clamp(24px, 3vw, 36px);
  --card-pad: clamp(34px, 4.4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.74;
  text-rendering: optimizeLegibility;
}

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

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

button {
  border: 0;
}

.app-shell {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 86px;
}

.topbar {
  min-height: 64px;
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  animation: pageRise 900ms var(--ease) both;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
  font-weight: 650;
  letter-spacing: 0.18em;
  font-size: 0.88rem;
}

.brand-logo {
  width: 72px;
  height: 46px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.76), rgba(253, 248, 242, 0.62)),
    rgba(253, 248, 242, 0.54);
  box-shadow: 0 12px 34px rgba(87, 47, 22, 0.032), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.nav-actions a,
.nav-dropdown-toggle {
  min-height: 38px;
  border: 0;
  padding: 9px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  overflow-wrap: break-word;
  cursor: pointer;
  transition: background 520ms var(--ease), color 520ms var(--ease), box-shadow 520ms var(--ease), transform 520ms var(--ease);
}

.nav-actions a:hover,
.nav-dropdown-toggle:hover {
  background: rgba(248, 241, 232, 0.76);
  color: var(--brown);
  transform: translateY(-1px);
}

.nav-actions a.active,
.nav-actions a[aria-current="page"],
.nav-dropdown-toggle.active,
.nav-dropdown-toggle[aria-current="page"] {
  background:
    linear-gradient(180deg, rgba(253, 248, 242, 0.94), rgba(248, 241, 232, 0.72)),
    var(--sand);
  color: var(--brown);
  box-shadow: inset 0 0 0 1px rgba(189, 150, 80, 0.16), 0 10px 24px rgba(87, 47, 22, 0.038);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  min-width: 270px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1200;
  border: 1px solid rgba(87, 47, 22, 0.12);
  border-radius: 16px;
  display: grid;
  gap: 4px;
  padding: 8px;
  padding-top: 12px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.96), rgba(253, 248, 242, 0.98)),
    var(--surface-strong);
  box-shadow: 0 22px 60px rgba(87, 47, 22, 0.1), var(--bevel-light), var(--bevel-shade);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu button {
  min-height: 40px;
  border-radius: 10px;
  padding: 10px 12px;
  background: transparent;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 360ms var(--ease), color 360ms var(--ease), transform 360ms var(--ease);
}

.nav-dropdown-menu button:hover {
  background: rgba(248, 241, 232, 0.88);
  color: var(--brown);
  transform: translateX(2px);
}

.view-section[hidden] {
  display: none !important;
}

.hero,
.practice-campus,
.practice-layout,
.exclusive-page,
.institutional-section,
.workshops-section,
.team-section,
.avales-section,
.admin-section,
.library-section,
.contact-section {
  margin-top: var(--section-gap);
}

.hero {
  display: grid;
  gap: var(--gutter);
  animation: pageRise 1100ms 90ms var(--ease) both;
}

.hero > *,
.practice-layout > *,
.admin-form > *,
.journal-prompts > *,
.progress-grid > * {
  min-width: 0;
}

.hero-copy,
.home-institution-card,
.access-panel,
.practice-campus,
.exclusive-page,
.practice-card,
.student-panel,
.institutional-section,
.workshops-section,
.team-section,
.avales-section,
.admin-section,
.library-section,
.contact-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.76), rgba(253, 248, 242, 0.9) 48%, rgba(248, 241, 232, 0.58)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  min-height: auto;
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-panorama {
  min-height: clamp(520px, 56vw, 680px);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.66), rgba(248, 241, 232, 0.86)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.9) 0%, rgba(255, 253, 250, 0.58) 34%, rgba(255, 253, 250, 0.12) 70%),
    linear-gradient(180deg, rgba(87, 47, 22, 0.03), rgba(87, 47, 22, 0.16));
}

.hero-panorama > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.hero-panorama .hero-copy {
  width: min(620px, calc(100% - clamp(36px, 8vw, 96px)));
  min-height: clamp(520px, 56vw, 680px);
  border: 0;
  border-radius: 0;
  padding: clamp(34px, 5vw, 70px);
  position: relative;
  z-index: 1;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  justify-content: center;
}

.hero-copy::before {
  content: "";
  width: min(260px, 34%);
  aspect-ratio: 1;
  position: absolute;
  top: 52px;
  right: 8%;
  border: 1px solid rgba(189, 150, 80, 0.1);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 48%, rgba(74, 51, 36, 0.025) 49% 51%, transparent 52%),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 9%, transparent 10%),
    radial-gradient(circle, rgba(199, 164, 90, 0.07), rgba(255, 250, 240, 0.18) 62%);
  opacity: 0.32;
  animation: slowBreathe 9s var(--ease) infinite alternate;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 8% 9% auto;
  width: min(190px, 32%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 47, 22, 0.18), transparent);
}

.hero-panorama .hero-copy::before,
.hero-panorama .hero-copy::after {
  display: none;
}

.hero-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: stretch;
}

.home-institution-card {
  min-width: 0;
  min-height: 100%;
  padding: clamp(30px, 3.4vw, 42px);
}

.home-institution-card h2 {
  max-width: 620px;
}

.home-institution-card p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.78;
}

.home-identity-section {
  margin-top: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(189, 150, 80, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(248, 241, 232, 0.84) 60%, rgba(87, 47, 22, 0.016)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.pulse-section {
  margin-top: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(189, 150, 80, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.78), rgba(253, 248, 242, 0.9) 58%, rgba(248, 241, 232, 0.58)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.pulse-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.pulse-heading h2 {
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.95rem, 3.1vw, 2.75rem);
  font-weight: 500;
  line-height: 1.04;
}

.pulse-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.pulse-card {
  min-width: 0;
  border: 1px solid rgba(145, 104, 61, 0.16);
  border-radius: var(--radius);
  display: grid;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(248, 241, 232, 0.86)),
    var(--sand);
  box-shadow: 0 14px 34px rgba(87, 47, 22, 0.035);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color 420ms var(--ease);
}

.pulse-card:hover {
  border-color: rgba(189, 150, 80, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(87, 47, 22, 0.055);
}

.pulse-card figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: rgba(248, 241, 232, 0.8);
}

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

.pulse-card-body {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 24px);
}

.pulse-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-meta span {
  border-left: 1px solid rgba(189, 150, 80, 0.34);
  padding-left: 8px;
}

.pulse-card h3 {
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.22rem, 1.6vw, 1.48rem);
  font-weight: 500;
  line-height: 1.12;
}

.pulse-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.74;
}

.pulse-link {
  width: fit-content;
  color: var(--brown-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(189, 150, 80, 0.42);
}

.pulse-link:hover {
  color: var(--brown);
  border-color: rgba(87, 47, 22, 0.42);
}

.home-identity-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.home-identity-heading h2 {
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.04;
}

.home-identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}

.home-identity-grid article {
  min-width: 0;
  border: 1px solid rgba(145, 104, 61, 0.16);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 2.7vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.66), rgba(248, 241, 232, 0.92)),
    var(--sand);
  box-shadow:
    0 16px 42px rgba(87, 47, 22, 0.04),
    inset 1px 1px 0 rgba(255, 255, 255, 0.62),
    inset -1px -1px 0 rgba(87, 47, 22, 0.045);
}

.home-identity-grid h3 {
  margin: 0 0 4px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  font-weight: 500;
  line-height: 1.08;
}

.home-identity-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.home-card-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.home-card-points span {
  border: 1px solid rgba(189, 150, 80, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(248, 241, 232, 0.72);
  color: var(--brown-soft);
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-copy > * {
  position: relative;
}

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

.hero-logo {
  width: min(500px, 78%);
  max-height: 210px;
  margin: clamp(8px, 1.6vw, 18px) 0 28px -18px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.panel-logo,
.section-logo {
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.panel-logo {
  width: min(190px, 64%);
  max-height: 84px;
  margin: -10px 0 24px;
}

.section-logo {
  width: 132px;
  max-height: 60px;
  margin: -8px 0 18px;
  opacity: 0.86;
}

.eyebrow {
  margin: 0 0 16px;
  color: #9d7640;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  max-width: 100%;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 20px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 6.4vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 600;
}

h2 {
  margin-bottom: 14px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.34rem, 1.95vw, 1.82rem);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 600;
}

h3 {
  margin-bottom: 16px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 1.55vw, 1.56rem);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 600;
}

h4 {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-phrase {
  width: min(560px, 100%);
  margin: 0 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--brown-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.76;
  font-weight: 500;
}

.hero-description,
.panel-intro {
  color: var(--muted);
  line-height: 1.76;
}

.hero-description {
  width: min(620px, 100%);
  margin: 0 0 34px;
  font-size: clamp(0.95rem, 1vw, 1rem);
}

.panel-intro {
  margin-bottom: 26px;
  font-size: 0.94rem;
}

.profile-selector {
  margin-bottom: 26px;
}

.mini-label {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-options {
  display: grid;
  gap: 8px;
}

.profile-option {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.7), rgba(248, 241, 232, 0.86)),
    var(--sand);
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 520ms var(--ease),
    background 520ms var(--ease),
    box-shadow 520ms var(--ease),
    transform 520ms var(--ease);
}

.profile-option:hover,
.profile-option.active {
  border-color: rgba(189, 150, 80, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.82), rgba(248, 241, 232, 0.95)),
    var(--sand);
  box-shadow: var(--shadow-bevel);
  transform: translateY(-1px);
}

.profile-option span {
  color: var(--brown);
  font-weight: 650;
}

.profile-option small {
  line-height: 1.5;
}

.hero-actions,
.practice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 650;
  letter-spacing: 0.01em;
  max-width: 100%;
  text-align: center;
  overflow-wrap: break-word;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(87, 47, 22, 0.045), var(--bevel-light), var(--bevel-shade), var(--bevel-rim);
  transition:
    transform 520ms var(--ease),
    background 520ms var(--ease),
    color 520ms var(--ease),
    box-shadow 520ms var(--ease),
    border-color 520ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(87, 47, 22, 0.06), var(--bevel-light), var(--bevel-shade), var(--bevel-rim);
}

.button.primary,
.button.dark {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(135deg, #4a3324, #2f2118);
  color: var(--surface);
}

.button.secondary {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(248, 241, 232, 0.88)),
    var(--sand);
  color: var(--brown);
}

.access-panel,
.student-panel {
  padding: clamp(30px, 3.4vw, 42px);
  align-self: center;
  box-shadow: var(--shadow-soft);
}

.access-panel {
  min-height: clamp(420px, calc(100svh - 152px), 500px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.78), rgba(253, 248, 242, 0.92)),
    var(--surface);
}

.hero-support-grid .access-panel {
  min-height: 100%;
}

.access-panel-standalone {
  width: min(780px, 100%);
  min-height: auto;
  margin: var(--section-gap) auto 0;
  animation: pageRise 900ms 160ms var(--ease) both;
}

.access-panel-standalone .profile-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-stack {
  display: grid;
  gap: 12px;
}

.auth-card {
  display: grid;
  gap: 16px;
}

.auth-context,
.auth-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.68;
}

.auth-context {
  padding: 14px 16px;
  border: 1px solid rgba(189, 150, 80, 0.16);
  border-radius: 14px;
  background: rgba(255, 253, 250, 0.62);
}

.auth-hint {
  padding-bottom: 2px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 6px;
  background: rgba(248, 241, 232, 0.54);
}

.auth-tab {
  min-height: 38px;
  border-radius: 12px;
  padding: 8px 10px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  transition: background 420ms var(--ease), color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.auth-tab:hover,
.auth-tab.active {
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.82), rgba(248, 241, 232, 0.96)),
    var(--sand);
  color: var(--brown);
  box-shadow: inset 0 0 0 1px rgba(189, 150, 80, 0.16), 0 10px 24px rgba(87, 47, 22, 0.035);
}

.auth-form {
  display: grid;
  min-height: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}

.auth-form[hidden] {
  display: none !important;
}

.auth-form.active {
  opacity: 1;
  transform: translateY(0);
  animation: authPanelIn 360ms var(--ease) both;
}

@keyframes authPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.auth-session {
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.66), rgba(248, 241, 232, 0.94)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.auth-session h3 {
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.08;
}

.auth-session p:not(.mini-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.auth-session-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.auth-session-actions .button {
  flex: 1 1 150px;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

label {
  color: var(--brown);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 250, 0.82);
  color: var(--ink);
  outline: none;
  transition:
    border-color 520ms var(--ease),
    box-shadow 520ms var(--ease),
    background 520ms var(--ease),
    transform 520ms var(--ease);
}

input,
select {
  min-height: 54px;
  padding: 0 16px;
}

textarea {
  padding: 15px 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: var(--surface-strong);
  box-shadow: 0 0 0 5px rgba(199, 164, 90, 0.15);
  transform: translateY(-1px);
}

.status {
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 700;
}

.practice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: var(--gutter);
  align-items: stretch;
  animation: pageRise 1100ms 180ms var(--ease) both;
}

.practice-campus {
  padding: var(--card-pad);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.74), rgba(253, 248, 242, 0.92)),
    var(--surface);
}

.campus-heading {
  margin-bottom: 28px;
}

.campus-tabs {
  display: grid;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto var(--gutter);
}

.campus-main-tabs,
.campus-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.campus-main-tabs {
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(248, 241, 232, 0.84)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.campus-subtabs {
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 241, 232, 0.54);
}

.campus-tab,
.campus-subtab {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 17px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.7), rgba(248, 241, 232, 0.88)),
    var(--sand);
  color: var(--brown);
  font-weight: 650;
  cursor: pointer;
  transition: transform 520ms var(--ease), background 520ms var(--ease), box-shadow 520ms var(--ease), border-color 520ms var(--ease);
}

.campus-tab {
  flex: 1 1 190px;
  max-width: 260px;
}

.campus-subtab {
  min-height: 38px;
  font-size: 0.88rem;
  font-weight: 600;
}

.campus-tab:hover,
.campus-subtab:hover,
.campus-tab.active,
.campus-subtab.active {
  border-color: rgba(189, 150, 80, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.84), rgba(241, 228, 210, 0.95)),
    var(--sand-deep);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.campus-tab.active {
  color: var(--brown);
  box-shadow:
    inset 0 0 0 1px rgba(189, 150, 80, 0.18),
    0 12px 28px rgba(87, 47, 22, 0.045);
}

.campus-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.66), rgba(248, 241, 232, 0.88) 58%, rgba(87, 47, 22, 0.016)),
    var(--sand);
  box-shadow: var(--shadow-soft);
  animation: pageRise 700ms var(--ease) both;
}

.private-access-card {
  max-width: 760px;
  border: 1px solid rgba(189, 150, 80, 0.22);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(248, 241, 232, 0.94)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.private-access-card h3,
.private-access-card p {
  margin: 0;
}

.campus-panel-copy {
  max-width: 840px;
  margin-bottom: 24px;
}

.campus-panel h3 {
  margin-bottom: 10px;
}

.campus-panel p {
  color: var(--muted);
  line-height: 1.78;
}

.campus-panel-meta,
.campus-content-grid,
.campus-resource-grid {
  display: grid;
  gap: 14px;
}

.campus-panel-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.campus-panel-meta span,
.campus-content-grid article,
.campus-resource-card {
  min-width: 0;
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: var(--radius);
  background: rgba(253, 248, 242, 0.68);
  box-shadow: var(--shadow-soft);
}

.campus-panel-meta span {
  padding: 12px 14px;
  color: var(--brown-soft);
  font-size: 0.82rem;
  font-weight: 650;
  overflow-wrap: break-word;
}

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

.campus-content-grid article {
  padding: 18px;
}

.campus-content-grid span,
.campus-badge {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.campus-content-grid h4,
.campus-resource-card h4 {
  margin: 0 0 8px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.06rem, 1.15vw, 1.18rem);
  line-height: 1.2;
}

.campus-content-grid p,
.campus-resource-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

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

.campus-resource-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
}

.campus-resource-card figure {
  min-height: 150px;
  margin: 0;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: var(--surface);
}

.campus-resource-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.campus-resource-card .button {
  min-height: 42px;
  margin-top: 14px;
  padding-inline: 16px;
}

.campus-badge.official {
  color: var(--brown-soft);
}

.campus-badge.community {
  color: #7f7040;
}

.community-active {
  display: grid;
  gap: 18px;
}

.community-active-intro {
  min-width: 0;
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.7), rgba(248, 241, 232, 0.92) 62%, rgba(87, 47, 22, 0.016)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.community-active-intro h4,
.community-member-card h4 {
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1.18;
  text-transform: none;
  letter-spacing: 0;
}

.community-active-intro p {
  margin: 0;
}

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

.member-status-grid article,
.community-benefits,
.community-member-card {
  min-width: 0;
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(253, 248, 242, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.member-status-grid article {
  padding: 16px;
}

.member-status-grid span {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border: 1px solid rgba(189, 150, 80, 0.28);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--brown-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.member-status-grid h5 {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: 0.86rem;
  line-height: 1.35;
}

.member-status-grid p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.58;
}

.community-benefits {
  padding: clamp(18px, 2.4vw, 24px);
}

.community-benefits div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.community-benefits span,
.member-badge {
  border: 1px solid rgba(189, 150, 80, 0.24);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(248, 241, 232, 0.94)),
    var(--sand);
  color: var(--brown-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

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

.community-member-card {
  display: grid;
  grid-template-columns: minmax(116px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
}

.community-member-card figure {
  min-height: 170px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 253, 248, 0.9), rgba(233, 220, 199, 0.52) 72%),
    rgba(233, 220, 199, 0.42);
}

.community-member-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.community-member-card > div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
}

.member-status {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.88rem;
  font-weight: 650;
}

.community-member-card dl {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
}

.community-member-card div div {
  min-width: 0;
}

.community-member-card dt {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.community-member-card dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
  overflow-wrap: break-word;
}

.member-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.member-contact a {
  min-height: 34px;
  border: 1px solid rgba(189, 150, 80, 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(248, 241, 232, 0.72);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 650;
  transition: background 520ms var(--ease), transform 520ms var(--ease), border-color 520ms var(--ease);
}

.member-contact a:hover {
  border-color: rgba(189, 150, 80, 0.34);
  background: rgba(248, 241, 232, 0.96);
  transform: translateY(-1px);
}

.community-echoes {
  display: grid;
  gap: 18px;
}

.community-echoes-intro {
  max-width: 760px;
}

.community-echoes-intro h4 {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  line-height: 1.16;
  text-transform: none;
  letter-spacing: 0;
}

.community-echoes-intro p:not(.eyebrow) {
  margin: 0;
}

.echo-feed {
  display: grid;
  gap: 14px;
}

.echo-card {
  min-width: 0;
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.74), rgba(253, 248, 242, 0.94)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 620ms var(--ease), box-shadow 620ms var(--ease), border-color 620ms var(--ease);
}

.echo-card:hover {
  border-color: rgba(189, 150, 80, 0.26);
  box-shadow: var(--shadow-bevel);
  transform: translateY(-2px);
}

.echo-card + .echo-card {
  position: relative;
}

.echo-card + .echo-card::before {
  content: "";
  width: min(220px, 42%);
  height: 1px;
  position: absolute;
  top: -8px;
  left: 0;
  background: linear-gradient(90deg, rgba(189, 150, 80, 0.24), transparent);
}

.echo-card header,
.echo-card footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.echo-card h4 {
  margin: 0 0 4px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.18;
  text-transform: none;
  letter-spacing: 0;
}

.echo-card header p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.echo-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(189, 150, 80, 0.24);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(248, 241, 232, 0.78);
  color: var(--brown-soft);
  font-size: 0.74rem;
  font-weight: 650;
}

.echo-content {
  margin: clamp(18px, 2.4vw, 28px) 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.4vw, 1.34rem);
  line-height: 1.62;
}

.echo-card time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.echo-action {
  border: 0;
  background: transparent;
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 650;
  cursor: pointer;
}

.echo-future-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.echo-future-note span {
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(248, 241, 232, 0.62);
  color: var(--brown-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

.private-exchange {
  display: grid;
  gap: 18px;
}

.private-exchange-heading {
  max-width: 780px;
}

.private-exchange-heading h4 {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  font-weight: 500;
  line-height: 1.16;
}

.private-exchange-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.exchange-feed {
  display: grid;
  gap: 14px;
}

.exchange-card {
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 30px);
  background:
    linear-gradient(145deg, rgba(253, 248, 242, 0.78), rgba(248, 241, 232, 0.96)),
    var(--sand);
  box-shadow: var(--shadow-soft);
  transition: transform 620ms var(--ease), box-shadow 620ms var(--ease), border-color 620ms var(--ease);
}

.exchange-card:hover {
  border-color: rgba(189, 150, 80, 0.28);
  box-shadow: var(--shadow-bevel);
  transform: translateY(-2px);
}

.exchange-card header,
.exchange-card footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.exchange-card h4 {
  margin: 0 0 4px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 500;
  line-height: 1.18;
}

.exchange-card header p,
.exchange-card time {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.exchange-card header span {
  flex: 0 0 auto;
  border: 1px solid rgba(189, 150, 80, 0.24);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 253, 250, 0.7);
  color: var(--brown-soft);
  font-size: 0.74rem;
  font-weight: 650;
}

.exchange-card > p {
  margin: clamp(18px, 2.4vw, 28px) 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.4vw, 1.34rem);
  line-height: 1.62;
}

.exchange-admin-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exchange-admin-note span {
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(248, 241, 232, 0.62);
  color: var(--brown-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

.module-campus {
  display: grid;
  gap: 20px;
}

.module-campus-heading {
  max-width: 780px;
}

.module-campus-heading h4 {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  font-weight: 500;
  line-height: 1.16;
}

.module-campus-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.module-card {
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.74), rgba(253, 248, 242, 0.94)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.module-card.locked {
  background:
    linear-gradient(145deg, rgba(248, 241, 232, 0.72), rgba(241, 228, 210, 0.62)),
    var(--sand);
}

.module-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.module-card-header span,
.module-card-header strong,
.module-material,
.module-lock span {
  border: 1px solid rgba(189, 150, 80, 0.22);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--brown-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.module-card h4 {
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  font-weight: 500;
  line-height: 1.18;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.module-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-material {
  background: rgba(255, 253, 250, 0.74);
  cursor: pointer;
}

.module-lock {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.module-lock span {
  width: fit-content;
  background: rgba(255, 253, 250, 0.58);
}

.private-access-card.compact {
  padding: clamp(20px, 2.6vw, 30px);
}

.campus-practice-layout {
  margin-top: 0;
}

.exclusive-page {
  padding: var(--card-pad);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.76), rgba(253, 248, 242, 0.94)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.exclusive-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.exclusive-hero > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exclusive-hero h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.exclusive-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.78;
}

.exclusive-hero img {
  width: 100%;
  min-height: 260px;
  max-height: 390px;
  border: 1px solid rgba(189, 150, 80, 0.18);
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-soft);
}

.exclusive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
}

.exclusive-main,
.exclusive-side {
  min-width: 0;
  border: 1px solid rgba(145, 104, 61, 0.16);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.66), rgba(248, 241, 232, 0.92)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.exclusive-main h3,
.exclusive-card-grid h4 {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
}

.exclusive-main h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.exclusive-main p,
.exclusive-main li,
.exclusive-side p {
  color: var(--muted);
  line-height: 1.75;
}

.exclusive-main ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.exclusive-main li {
  position: relative;
  padding-left: 18px;
}

.exclusive-main li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0.72em;
  left: 0;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.72;
}

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

.exclusive-card-grid article {
  min-width: 0;
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 253, 250, 0.54);
}

.exclusive-card-grid h4 {
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
}

.exclusive-card-grid p {
  margin: 0;
}

.exclusive-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.exclusive-side span,
.exclusive-side time {
  color: var(--brown-soft);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.5;
}

.practice-card,
.institutional-section,
.workshops-section,
.team-section,
.avales-section,
.admin-section,
.library-section,
.contact-section {
  padding: var(--card-pad);
}

.practice-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.74), rgba(253, 248, 242, 0.92)),
    var(--surface);
}

.institutional-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.74), rgba(253, 248, 242, 0.92)),
    var(--surface);
}

.institutional-section::before {
  content: "";
  width: min(360px, 48%);
  height: 1px;
  position: absolute;
  top: 38px;
  right: var(--card-pad);
  background: linear-gradient(90deg, transparent, rgba(189, 150, 80, 0.42));
}

.program-grid {
  display: grid;
  gap: 16px;
}

.program-grid article {
  min-width: 0;
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 2.6vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(253, 248, 242, 0.98) 56%, rgba(248, 241, 232, 0.54)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 760ms var(--ease), border-color 760ms var(--ease), background 760ms var(--ease), box-shadow 760ms var(--ease);
}

.program-grid article:hover {
  border-color: rgba(189, 150, 80, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.82), rgba(253, 248, 242, 0.98) 56%, rgba(248, 241, 232, 0.68)),
    var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-bevel);
}

.program-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.program-grid h3 {
  max-width: 100%;
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.program-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.program-editorial-link,
.program-detail summary {
  width: fit-content;
  min-height: 44px;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(248, 241, 232, 0.9)),
    var(--sand);
  color: var(--brown);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(87, 47, 22, 0.035), var(--bevel-light), var(--bevel-shade), var(--bevel-rim);
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease), border-color 520ms var(--ease), background 520ms var(--ease);
}

.modality-note {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.modality-note strong {
  color: var(--brown);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-detail {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 0;
}

.program-detail[open] {
  width: 100%;
  justify-self: stretch;
}

.program-detail summary {
  list-style: none;
  margin-left: auto;
}

.program-detail[open] summary {
  border-color: rgba(145, 104, 61, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.68), rgba(244, 234, 220, 0.96)),
    var(--sand);
}

.program-detail summary::-webkit-details-marker {
  display: none;
}

.program-editorial-link:hover,
.program-detail summary:hover {
  border-color: rgba(189, 150, 80, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(87, 47, 22, 0.06), var(--bevel-light), var(--bevel-shade), var(--bevel-rim);
}

.program-detail-body {
  margin-top: 20px;
  border: 1px solid rgba(145, 104, 61, 0.2);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.44), rgba(241, 228, 210, 0.82) 62%, rgba(87, 47, 22, 0.022)),
    var(--sand-deep);
  box-shadow:
    0 16px 42px rgba(87, 47, 22, 0.052),
    inset 1px 1px 0 rgba(255, 255, 255, 0.56),
    inset -1px -1px 0 rgba(87, 47, 22, 0.07);
  transform-origin: top;
  animation: workshopPanelOpen 620ms var(--ease) both;
}

.program-detail-body > p {
  max-width: 860px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.78;
}

.program-detail-body > ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.program-detail-body > ul li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.program-detail-body > ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0.72em;
  left: 0;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.72;
}

.program-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.program-panel-link {
  width: fit-content;
  max-width: 100%;
  border-bottom: 1px solid rgba(87, 47, 22, 0.24);
  display: inline-flex;
  align-items: center;
  color: var(--brown);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color 360ms var(--ease), color 360ms var(--ease), transform 360ms var(--ease);
}

.program-panel-link:hover {
  border-color: rgba(87, 47, 22, 0.46);
  color: var(--gold);
  transform: translateY(-1px);
}

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

.program-periods section {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.program-periods h4 {
  margin: 0 0 16px;
  color: var(--brown);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-periods ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-periods li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.program-periods li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0.72em;
  left: 0;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.72;
}

.course-modality {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.course-modality > h4 {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-modality > p {
  max-width: 860px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.72;
}

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

.modality-options section {
  min-width: 0;
  border: 1px solid rgba(189, 150, 80, 0.24);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.modality-options h5 {
  margin: 0 0 14px;
  color: var(--brown);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.18;
}

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

.modality-options li {
  color: var(--muted);
  line-height: 1.58;
  overflow-wrap: break-word;
}

.workshops-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.74), rgba(253, 248, 242, 0.92)),
    var(--surface);
}

.section-intro {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.workshop-list {
  display: grid;
  gap: 14px;
}

.workshop-card {
  min-width: 0;
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.34fr) auto;
  gap: 20px;
  align-items: end;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.68), rgba(253, 248, 242, 0.92) 56%, rgba(248, 241, 232, 0.42)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 760ms var(--ease), border-color 760ms var(--ease), background 760ms var(--ease), box-shadow 760ms var(--ease);
}

.workshop-card:hover {
  border-color: rgba(189, 150, 80, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.78), rgba(253, 248, 242, 0.98) 56%, rgba(248, 241, 232, 0.52)),
    var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-bevel);
}

.workshop-card h3 {
  max-width: 100%;
  margin: 0 0 10px;
  color: var(--brown);
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.workshop-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.workshop-meta {
  display: grid;
  gap: 8px;
  color: var(--brown-soft);
  font-size: 0.88rem;
  font-weight: 650;
}

.workshop-meta span,
.workshop-meta time {
  max-width: 100%;
  overflow-wrap: break-word;
}

.workshop-info {
  min-width: 0;
  transition: grid-column 520ms var(--ease);
}

.workshop-info summary {
  min-height: 52px;
  border: 1px solid rgba(145, 104, 61, 0.24);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 22px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.62), rgba(248, 241, 232, 0.96)),
    var(--sand);
  color: var(--brown);
  font-weight: 650;
  text-align: center;
  cursor: pointer;
  box-shadow:
    0 12px 28px rgba(87, 47, 22, 0.045),
    inset 1px 1px 0 rgba(255, 255, 255, 0.72),
    inset -1px -1px 0 rgba(87, 47, 22, 0.1),
    inset 0 -14px 24px rgba(87, 47, 22, 0.028);
  list-style: none;
  transition: transform 620ms var(--ease), box-shadow 620ms var(--ease), border-color 620ms var(--ease), background 620ms var(--ease);
}

.workshop-info summary::-webkit-details-marker {
  display: none;
}

.workshop-info summary:hover {
  border-color: rgba(145, 104, 61, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.72), rgba(248, 241, 232, 1)),
    var(--sand);
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(87, 47, 22, 0.06),
    inset 1px 1px 0 rgba(255, 255, 255, 0.76),
    inset -1px -1px 0 rgba(87, 47, 22, 0.12),
    inset 0 -14px 24px rgba(87, 47, 22, 0.032);
}

.workshop-info[open] {
  grid-column: 1 / -1;
}

.workshop-info-panel {
  margin-top: 20px;
  border: 1px solid rgba(145, 104, 61, 0.2);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.44), rgba(241, 228, 210, 0.82) 62%, rgba(87, 47, 22, 0.022)),
    var(--sand-deep);
  box-shadow:
    0 16px 42px rgba(87, 47, 22, 0.052),
    inset 1px 1px 0 rgba(255, 255, 255, 0.56),
    inset -1px -1px 0 rgba(87, 47, 22, 0.07);
  transform-origin: top;
  animation: workshopPanelOpen 620ms var(--ease) both;
}

.workshop-info-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.workshop-info-panel a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brown);
  font-weight: 650;
  text-decoration: none;
}

@keyframes workshopPanelOpen {
  from {
    opacity: 0;
    transform: translateY(-6px) scaleY(0.985);
  }

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

.team-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.74), rgba(253, 248, 242, 0.92)),
    var(--surface);
}

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

.team-list article {
  min-width: 0;
  border: 1px solid rgba(189, 150, 80, 0.24);
  border-radius: var(--radius);
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.instructor-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  overflow: hidden;
}

.instructor-photo {
  width: 160px;
  height: 210px;
  min-width: 0;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: calc(var(--radius) - 8px);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 253, 248, 0.88), rgba(233, 220, 199, 0.5) 70%),
    rgba(233, 220, 199, 0.42);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.8),
    inset -1px -1px 0 rgba(87, 47, 22, 0.07);
}

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

.instructor-photo-matias {
  object-position: center 18%;
}

.instructor-content {
  min-width: 0;
  padding: clamp(14px, 2vw, 22px) clamp(10px, 1.6vw, 16px) clamp(14px, 2vw, 20px) 0;
}

.instructor-role {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-list h3 {
  max-width: 100%;
  margin: 0 0 10px;
  color: var(--brown);
  font-size: clamp(1.06rem, 1.2vw, 1.22rem);
  line-height: 1.2;
  overflow-wrap: break-word;
}

.instructor-meta {
  margin-bottom: 12px;
  color: var(--brown);
  font-weight: 600;
}

.team-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  max-width: 100%;
  overflow-wrap: break-word;
}

.identity-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--line);
}

.identity-blocks article {
  min-width: 0;
  border: 1px solid rgba(189, 150, 80, 0.22);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.identity-blocks h3 {
  margin-bottom: 12px;
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
}

.identity-blocks p:not(.eyebrow) {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.72;
}

.identity-blocks p:last-child {
  margin-bottom: 0;
}

.avales-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.74), rgba(253, 248, 242, 0.92)),
    var(--surface);
}

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

.avales-grid article {
  min-width: 0;
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
  transition: transform 760ms var(--ease), border-color 760ms var(--ease), box-shadow 760ms var(--ease);
}

.avales-grid article:hover {
  border-color: rgba(189, 150, 80, 0.32);
  transform: translateY(-2px);
  box-shadow: var(--shadow-bevel);
}

.avales-logo {
  width: 100%;
  max-width: 230px;
  height: 118px;
  display: block;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto 18px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
}

.avales-logo-large {
  max-width: 270px;
  height: 142px;
  padding: 6px;
}

.avales-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.avales-grid h3 {
  max-width: 100%;
  margin: 0 0 10px;
  color: var(--brown);
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.18;
  overflow-wrap: break-word;
}

.avales-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  overflow-wrap: break-word;
}

.section-heading {
  margin-bottom: 34px;
}

.practice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.practice-meta span {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.7), rgba(248, 241, 232, 0.9)),
    var(--sand);
  color: var(--brown-soft);
  font-size: 0.8rem;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.practice-image-wrap {
  margin: 0 0 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
}

.practice-image-wrap img {
  width: 100%;
  max-height: 320px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.practice-text,
.practice-block p,
.reflection-block p,
.panel-note,
.reminder-box p,
.saved-item p {
  color: var(--muted);
  line-height: 1.82;
}

.practice-text {
  max-width: 700px;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.practice-block,
.reflection-block {
  margin: 30px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-soft);
  background: rgba(248, 241, 232, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 700ms var(--ease), box-shadow 700ms var(--ease), background 700ms var(--ease);
}

.journal-card {
  margin: 34px 0;
  border: 1px solid rgba(189, 150, 80, 0.24);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.62), rgba(248, 241, 232, 0.86)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.journal-heading {
  margin-bottom: 24px;
}

.journal-heading h3 {
  margin-bottom: 12px;
  font-size: clamp(1.12rem, 1.55vw, 1.38rem);
}

.journal-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.78;
}

.journal-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.journal-card textarea {
  min-height: 118px;
  background:
    linear-gradient(rgba(255, 253, 250, 0.84), rgba(255, 253, 250, 0.84)),
    repeating-linear-gradient(
      transparent 0 31px,
      rgba(87, 47, 22, 0.07) 32px
    );
  line-height: 2;
}

.journal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.journal-history {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.journal-history-heading {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.journal-entry {
  border: 1px solid rgba(189, 150, 80, 0.24);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.journal-entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.journal-entry-meta h4 {
  margin: 0;
}

.journal-entry-meta time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.journal-entry dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.journal-entry div {
  display: grid;
  gap: 4px;
}

.journal-entry dt {
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journal-entry dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.practice-block:hover,
.reflection-block:hover,
.saved-item:hover {
  transform: translateY(-2px);
  background: rgba(248, 241, 232, 0.9);
  box-shadow: 0 18px 46px rgba(87, 47, 22, 0.05);
}

.library-empty {
  max-width: 760px;
}

.library-empty .button {
  width: fit-content;
  margin-top: 8px;
}

.saved-item-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--brown-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(189, 150, 80, 0.42);
}

.saved-item-link:hover {
  color: var(--brown);
  border-color: rgba(87, 47, 22, 0.42);
}

.student-panel {
  position: sticky;
  top: 24px;
  align-self: start;
  min-height: 100%;
  max-width: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.72), rgba(253, 248, 242, 0.92)),
    var(--surface);
}

.student-panel h2 {
  max-width: 100%;
  font-size: clamp(1.12rem, 1.4vw, 1.32rem);
  line-height: 1.18;
  overflow-wrap: break-word;
}

.profile-pill {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  border: 1px solid rgba(189, 150, 80, 0.34);
  border-radius: 999px;
  padding: 7px 11px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.7), rgba(248, 241, 232, 0.9)),
    var(--sand);
  color: var(--brown-soft);
  font-size: 0.78rem;
  font-weight: 650;
  overflow-wrap: break-word;
}

.progress-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.progress-grid div {
  min-height: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
}

.progress-grid strong {
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.progress-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.saved-list {
  display: grid;
  gap: 14px;
}

.library-section,
.admin-section,
.institutional-section,
.exclusive-page,
.workshops-section,
.team-section,
.avales-section,
.contact-section {
  width: 100%;
  max-width: none;
  position: relative;
}

.library-section::before,
.admin-section::before,
.exclusive-page::before,
.workshops-section::before,
.team-section::before,
.avales-section::before,
.contact-section::before {
  content: "";
  width: 120px;
  height: 1px;
  position: absolute;
  top: -11px;
  left: 0;
  background: linear-gradient(90deg, rgba(189, 150, 80, 0.34), transparent);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.56fr);
  gap: var(--gutter);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.74), rgba(253, 248, 242, 0.92)),
    var(--surface);
}

.contact-section .section-heading {
  margin-bottom: 0;
}

.contact-section p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.contact-copy {
  min-width: 0;
  align-self: center;
}

.contact-card {
  min-width: 0;
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 26px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.contact-channel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(253, 248, 242, 0.62);
  transition: transform 620ms var(--ease), background 620ms var(--ease), border-color 620ms var(--ease), box-shadow 620ms var(--ease);
}

.contact-channel:hover {
  border-color: rgba(189, 150, 80, 0.28);
  background: rgba(253, 248, 242, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(87, 47, 22, 0.045);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(189, 150, 80, 0.24);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.7), rgba(248, 241, 232, 0.92)),
    var(--sand);
  color: var(--brown);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel[href*="facebook"] .contact-icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-channel strong,
.contact-channel small {
  display: block;
  max-width: 100%;
  overflow-wrap: break-word;
}

.contact-channel strong {
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 650;
}

.contact-channel small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.saved-item {
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
  transition: transform 760ms var(--ease), box-shadow 760ms var(--ease), background 760ms var(--ease);
}

.saved-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

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

.field-group {
  display: grid;
  gap: 10px;
}

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

.reminder-box {
  margin-top: 34px;
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.reminder-box h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.admin-users-panel {
  margin-top: 34px;
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.64), rgba(248, 241, 232, 0.9) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.admin-modules-panel {
  margin-top: 34px;
  border: 1px solid rgba(189, 150, 80, 0.2);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.68), rgba(248, 241, 232, 0.92) 58%, rgba(87, 47, 22, 0.018)),
    var(--sand);
  box-shadow: var(--shadow-soft);
}

.admin-users-header,
.admin-user-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-users-header h3,
.admin-user-summary h4 {
  margin-bottom: 8px;
}

.admin-users-header p:not(.eyebrow),
.admin-user-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-users-list {
  display: grid;
  gap: 14px;
}

.admin-user-card {
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 253, 250, 0.62);
  box-shadow: var(--shadow-soft);
}

.admin-user-summary span {
  border: 1px solid rgba(189, 150, 80, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--brown-soft);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.admin-user-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-user-fields label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 650;
}

.admin-user-fields .admin-check {
  min-height: 48px;
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 253, 250, 0.52);
}

.admin-user-fields .admin-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--brown);
}

.admin-user-fields textarea {
  min-height: 96px;
}

.admin-modules-list {
  display: grid;
  gap: 16px;
}

.admin-module-card {
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 253, 250, 0.64);
  box-shadow: var(--shadow-soft);
}

.admin-module-card label,
.admin-module-materials {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 650;
}

.admin-module-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-module-topline > span {
  color: var(--brown-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.module-switch {
  border: 1px solid rgba(189, 150, 80, 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 253, 250, 0.64);
}

.module-switch input,
.admin-module-materials input {
  accent-color: var(--brown);
}

.admin-module-materials {
  border-top: 1px solid rgba(87, 47, 22, 0.08);
  padding-top: 14px;
}

.admin-module-materials .admin-check {
  border: 1px solid rgba(87, 47, 22, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(248, 241, 232, 0.54);
}

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

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

@keyframes slowBreathe {
  from {
    transform: scale(0.985) rotate(-1deg);
    opacity: 0.68;
  }

  to {
    transform: scale(1.025) rotate(1.2deg);
    opacity: 0.92;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1100px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 14px;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
    border-radius: 22px;
  }

  .nav-actions a {
    flex: 1 1 auto;
  }

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

@media (max-width: 880px) {
  .hero,
  .practice-layout,
  .admin-form {
    grid-template-columns: 1fr;
  }

  .campus-panel-meta,
  .campus-content-grid,
  .campus-resource-grid,
  .exclusive-hero,
  .exclusive-layout,
  .exclusive-card-grid,
  .pulse-heading,
  .pulse-grid,
  .community-active-intro,
  .member-status-grid,
  .community-member-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
    justify-content: flex-start;
  }

  .hero-panorama,
  .hero-panorama .hero-copy {
    min-height: clamp(520px, 86svh, 660px);
  }

  .hero-panorama .hero-copy {
    width: min(100%, 620px);
  }

  .hero-visual {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-visual img {
    object-fit: cover;
    object-position: center center;
  }

  .access-panel {
    min-height: auto;
  }

  .exclusive-side {
    position: static;
  }

  .hero-logo {
    width: min(460px, 82%);
    max-height: 190px;
  }

  .student-panel {
    position: static;
    min-height: auto;
  }

  .library-section,
  .admin-section,
  .institutional-section,
  .workshops-section,
  .team-section,
  .avales-section,
  .contact-section {
    max-width: none;
  }

  .program-periods,
  .modality-options {
    grid-template-columns: 1fr;
  }

  .team-list {
    grid-template-columns: 1fr;
  }

  .identity-blocks {
    grid-template-columns: 1fr;
  }

  .admin-users-header,
  .admin-user-summary {
    flex-direction: column;
  }

  .exchange-card header,
  .exchange-card footer {
    flex-direction: column;
  }

  .admin-user-summary span {
    white-space: normal;
  }

  .admin-user-fields {
    grid-template-columns: 1fr;
  }

  .admin-module-topline {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .contact-section {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-support-grid {
    grid-template-columns: 1fr;
  }

  .home-identity-grid {
    grid-template-columns: 1fr;
  }

  .workshop-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .reminder-box {
    align-items: stretch;
    flex-direction: column;
  }

  .journal-prompts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .app-shell {
    width: min(100% - 22px, var(--container));
    padding-top: 12px;
  }

  .topbar,
  .nav-actions,
  .inline-form,
  .practice-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar {
    min-height: auto;
  }

  .brand-logo {
    width: 66px;
    height: 42px;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
    border-radius: 8px;
  }

  .auth-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
  }

  .auth-tab {
    min-height: 34px;
    padding: 7px 6px;
    font-size: clamp(0.62rem, 2.7vw, 0.72rem);
  }

  .auth-context,
  .auth-hint {
    font-size: 0.82rem;
    line-height: 1.58;
  }

  .auth-session-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-actions a,
  .nav-dropdown-toggle {
    justify-content: center;
    text-align: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
  }

  .nav-dropdown-menu {
    min-width: 0;
    width: 100%;
    position: static;
    display: none;
    margin-top: 8px;
    box-shadow: var(--shadow-soft);
  }

  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
  }

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

  .button {
    width: 100%;
  }

  .access-panel,
  .student-panel,
  .practice-campus,
  .practice-card,
  .pulse-section,
  .institutional-section,
  .workshops-section,
  .team-section,
  .avales-section,
  .admin-section,
  .library-section,
  .contact-section {
    padding: 22px;
  }

  .institutional-section::before {
    width: 110px;
    top: 28px;
    right: 22px;
  }

  .program-grid,
  .modality-note,
  .program-periods,
  .modality-options,
  .campus-resource-card,
  .community-member-card,
  .access-panel-standalone .profile-options {
    grid-template-columns: 1fr;
  }

  .program-grid article {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .program-actions,
  .program-detail {
    justify-content: flex-start;
    justify-self: start;
  }

  .program-detail summary {
    margin-left: 0;
  }

  .campus-main-tabs,
  .campus-subtabs {
    border-radius: var(--radius);
    justify-content: stretch;
  }

  .campus-tab,
  .campus-subtab {
    flex: 1 1 100%;
    max-width: none;
  }

  .echo-card header,
  .echo-card footer {
    align-items: flex-start;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .echo-card header,
  .echo-card footer {
    flex-direction: column;
  }

  .instructor-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .instructor-photo {
    width: min(100%, 220px);
    height: 270px;
  }

  .instructor-content {
    padding: 4px 4px 8px;
  }

  .instructor-photo img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .student-panel h2 {
    font-size: clamp(1.12rem, 7vw, 1.38rem);
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
    line-height: 1.04;
  }

  .hero-phrase {
    margin-bottom: 28px;
    padding-top: 16px;
    font-size: 1rem;
  }

  .hero-description {
    margin-bottom: 28px;
    font-size: 0.94rem;
  }

  .hero-panorama,
  .hero-panorama .hero-copy {
    min-height: 560px;
  }

  .hero-panorama .hero-copy {
    width: 100%;
    padding: 24px;
  }

  .hero-logo {
    width: min(330px, 94%);
    max-height: 148px;
    margin-left: -12px;
    margin-bottom: 24px;
  }

  .panel-logo {
    width: min(160px, 68%);
    max-height: 70px;
  }

  .practice-block,
  .reflection-block,
  .reminder-box {
    padding: 20px;
  }
}
