* {
  box-sizing: border-box;
}

:root {
  --as-navy: #272a33;
  --as-linen: #f2f3ec;
  --as-linen-dark: #e8e9e0;
  --as-gold: #c9a96e;
  --as-gold-text: #7a5d24;
  --as-muted: #3a3b36;
  --as-white: #ffffff;
  --as-danger: #b00020;
  --as-shadow: 0 18px 50px rgba(39, 42, 51, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--as-navy);
  background: var(--as-linen);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: inherit;
}

body.authenticated,
body.manager {
  background: #f7f7f2;
}

.site-header {
  background: var(--as-linen);
  border-bottom: 0.5px solid rgba(39, 42, 51, 0.15);
}

.site-header-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo a,
.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--as-gold-text);
  text-decoration: none;
}

.site-logo-mark,
.site-footer-mark {
  width: 20px;
  height: 26px;
  flex-shrink: 0;
}

.site-logo-text,
.site-footer-logo-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  letter-spacing: 4px;
  font-weight: 800;
  color: var(--as-gold-text);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--as-muted);
  font-weight: 500;
}

.site-nav a:not(.site-nav-icon-link) {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:not(.site-nav-icon-link):hover,
.site-nav a:not(.site-nav-icon-link).active {
  color: var(--as-gold-text);
  border-color: var(--as-gold);
}

.site-nav a.site-nav-icon-link {
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-nav a.site-nav-icon-link:hover,
.site-nav a.site-nav-icon-link.active {
  border-color: rgba(39, 42, 51, 0.2);
}

.site-nav-icon-link {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0.5px solid rgba(39, 42, 51, 0.2);
  border-bottom-width: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-nav-icon-link:hover {
  background: var(--as-linen-dark);
  color: var(--as-gold-text);
}

.site-nav-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--as-gold);
  color: var(--as-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: -5px;
  right: -7px;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-action-link,
.site-action-primary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-action-link {
  color: var(--as-navy);
  border: 0.5px solid rgba(39, 42, 51, 0.3);
  background: transparent;
}

.site-action-primary {
  color: var(--as-linen);
  border: 1px solid var(--as-navy);
  background: var(--as-navy);
}

.site-action-link:hover,
.site-action-primary:hover {
  color: var(--as-navy);
  border-color: var(--as-gold);
  background: var(--as-gold);
}

.language-selector {
  position: relative;
  flex: 0 0 auto;
}

.language-selector-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0.5px solid rgba(39, 42, 51, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--as-navy);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.language-selector-toggle:hover,
.language-selector.open .language-selector-toggle {
  background: var(--as-linen-dark);
}

.language-selector-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  display: none;
  padding: 0.35rem;
  border: 1px solid rgba(39, 42, 51, 0.14);
  background: var(--as-white);
  color: var(--as-navy);
  box-shadow: var(--as-shadow);
  z-index: 20;
}

.language-selector.open .language-selector-menu {
  display: block;
}

.language-selector-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  color: var(--as-navy);
  text-decoration: none;
  white-space: nowrap;
}

.language-selector-option:hover,
.language-selector-option.active {
  background: var(--as-linen-dark);
}

.language-flag-icon {
  width: 28px;
  height: 20px;
  display: block;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
}

body.authenticated .container,
body.manager .container {
  padding: 0;
}

.as-page,
.as-root {
  color: var(--as-navy);
  background: transparent;
}

.app-page {
  padding: 32px 24px;
}

.as-dashboard-intro {
  padding: 8px 0 32px;
}

.as-dashboard-title,
.as-module-detail-title,
.as-cart-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 14px;
}

.as-module-detail-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.as-module-detail-title-row .as-module-detail-title {
  margin-bottom: 0;
}

.as-module-detail-title-row .icon-button {
  flex: 0 0 auto;
}

.as-dashboard-copy,
.as-cart-item-summary {
  margin: 0;
  color: var(--as-muted);
  line-height: 1.8;
}

.as-cart-item-summary {
  max-width: 720px;
}

.as-dashboard-program {
  padding: 0;
}

.as-dashboard-empty {
  margin: 0;
  color: var(--as-muted);
}

.as-hero {
  background: var(--as-linen);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
}

.as-hero-eyebrow,
.as-section-label,
.as-free-label,
.as-rdv-eyebrow,
.as-ap-eyebrow,
.as-legal-eyebrow {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--as-gold-text);
  font-weight: 600;
}

.as-hero-eyebrow {
  margin: 0 0 20px;
}

.as-symptom-cloud {
  position: relative;
  height: 150px;
  margin: 0 0 6px;
  opacity: 1;
  animation: as-cloud-out 1s ease forwards;
  animation-delay: 3.4s;
}

.as-symptom-word {
  position: absolute;
  font-weight: 400;
  color: var(--as-muted);
  opacity: 0;
  animation: as-word-in 0.8s ease forwards;
  white-space: nowrap;
}

.as-symptom-word:nth-child(1) { top: 0; left: 4%; font-size: 13px; animation-delay: 0s; }
.as-symptom-word:nth-child(2) { top: 6px; left: 56%; font-size: 16px; animation-delay: 0.25s; color: var(--as-gold-text); font-weight: 600; }
.as-symptom-word:nth-child(3) { top: 36px; left: 0; font-size: 19px; animation-delay: 0.5s; }
.as-symptom-word:nth-child(4) { top: 30px; left: 66%; font-size: 12px; animation-delay: 0.75s; }
.as-symptom-word:nth-child(5) { top: 68px; left: 18%; font-size: 14px; animation-delay: 1s; color: var(--as-gold-text); font-weight: 600; }
.as-symptom-word:nth-child(6) { top: 62px; left: 54%; font-size: 13px; animation-delay: 1.25s; }
.as-symptom-word:nth-child(7) { top: 98px; left: 2%; font-size: 12px; animation-delay: 1.5s; }
.as-symptom-word:nth-child(8) { top: 4px; left: 24%; font-size: 12px; animation-delay: 1.75s; }
.as-symptom-word:nth-child(9) { top: 96px; left: 60%; font-size: 17px; animation-delay: 2s; color: var(--as-gold-text); font-weight: 600; }
.as-symptom-word:nth-child(10) { top: 38px; left: 36%; font-size: 11px; animation-delay: 2.25s; }
.as-symptom-word:nth-child(11) { top: 130px; left: 22%; font-size: 13px; animation-delay: 2.5s; }
.as-symptom-word:nth-child(12) { top: 68px; left: 80%; font-size: 12px; animation-delay: 2.75s; }
.as-symptom-word:nth-child(13) { top: 126px; left: 58%; font-size: 12px; animation-delay: 3s; }

@keyframes as-word-in {
  to { opacity: 0.85; }
}

@keyframes as-cloud-out {
  to { opacity: 0; height: 0; margin: 0; }
}

.as-hero-sequence {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 0 28px;
}

.as-hero-line {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--as-muted);
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  animation: as-line-in 0.9s ease forwards;
}

.as-hero-line:nth-child(1) {
  font-size: 22px;
  animation-delay: 3s;
}

.as-hero-line:nth-child(2) {
  font-size: 27px;
  animation-delay: 4.2s;
}

.as-hero-line:nth-child(3) {
  font-size: 38px;
  color: var(--as-navy);
  animation-delay: 5.4s;
}

@keyframes as-line-in {
  to { opacity: 1; transform: translateY(0); }
}

.as-hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--as-muted);
  max-width: 420px;
  margin: 0 auto 36px;
}

.as-hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.as-btn-primary,
.as-btn-ghost,
.as-btn-light,
.button,
.btn,
button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.as-btn-primary,
.button,
.btn,
button {
  background: var(--as-navy);
  color: var(--as-linen);
  border: 1px solid var(--as-navy);
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 0;
}

.as-btn-primary:hover,
.button:hover,
.btn:hover,
button:hover {
  background: var(--as-gold);
  border-color: var(--as-gold);
  color: var(--as-navy);
}

.button.secondary,
.btn-secondary,
button.secondary {
  background: transparent;
  color: var(--as-navy);
  border-color: rgba(39, 42, 51, 0.35);
}

.button.secondary:hover,
.btn-secondary:hover,
button.secondary:hover {
  background: var(--as-gold);
  border-color: var(--as-gold);
  color: var(--as-navy);
}

.auth-social {
  margin-bottom: 18px;
}

.google-auth-button {
  min-height: 44px;
  width: 100%;
  border: 1px solid #dadce0;
  background: #fff;
  color: #3c4043;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.google-auth-button:hover {
  background: #f8f9fa;
  border-color: #d2e3fc;
  color: #3c4043;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.15);
}

.google-auth-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-auth-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.google-auth-label {
  white-space: nowrap;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 20px;
  color: rgba(39, 42, 51, 0.55);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid rgba(39, 42, 51, 0.14);
}

.login-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.login-form-separator {
  color: rgba(39, 42, 51, 0.7);
}

.site-action-link,
button.site-action-link {
  color: var(--as-navy);
  border: 0.5px solid rgba(39, 42, 51, 0.3);
  background: transparent;
  padding: 9px 16px;
  letter-spacing: 1.5px;
}

.site-action-primary,
button.site-action-primary {
  color: var(--as-linen);
  border: 1px solid var(--as-navy);
  background: var(--as-navy);
}

.site-action-link:hover,
button.site-action-link:hover,
.site-action-primary:hover,
button.site-action-primary:hover {
  color: var(--as-navy);
  border-color: var(--as-gold);
  background: var(--as-gold);
}

button.stop-impersonate {
  background: #d32f2f;
  border-color: #d32f2f;
  color: #fff;
  font-size: 0.9em;
  padding: 0.4rem 0.8rem;
}

.language-selector-toggle {
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: 0.5px solid rgba(39, 42, 51, 0.2);
  background: transparent;
  color: var(--as-navy);
  letter-spacing: 0;
}

.language-selector-toggle:hover,
.language-selector.open .language-selector-toggle {
  background: var(--as-linen-dark);
  border-color: rgba(39, 42, 51, 0.2);
  color: var(--as-navy);
}

.as-btn-ghost {
  background: transparent;
  color: var(--as-muted);
  border: 0.5px solid rgba(39, 42, 51, 0.3);
  padding: 13px 32px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
}

.as-btn-ghost:hover {
  border-color: var(--as-gold-text);
  color: var(--as-gold-text);
}

.as-btn-light {
  background: transparent;
  color: var(--as-linen);
  border: 0.5px solid rgba(242, 243, 236, 0.5);
  padding: 13px 34px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
}

.as-btn-light:hover {
  background: var(--as-gold);
  border-color: var(--as-gold);
  color: var(--as-navy);
}

.as-hero-caption,
.as-identification-pivot,
.as-modules-more,
.as-legal-title,
.as-ap-title,
.as-free-title,
.as-ap-closing-text {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.as-hero-caption {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  color: var(--as-navy);
  margin: 10px 0 0;
}

.as-identification,
.as-anchor,
.as-about,
.as-rdv-insert {
  background: var(--as-linen-dark);
}

.as-identification {
  padding: 40px 24px;
  text-align: center;
}

.as-identification-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--as-muted);
  max-width: 480px;
  margin: 0 auto 16px;
}

.as-identification-pivot {
  font-style: normal;
  font-size: 30px;
  font-weight: 700;
  color: var(--as-navy);
  margin: 20px 0 0;
}

.brand-mark {
  font-weight: 800;
  color: var(--as-gold-text);
}

.as-divider-gold {
  height: 0.5px;
  background: linear-gradient(to right, transparent, var(--as-gold), transparent);
  margin: 0 24px;
}

.as-anchor {
  padding: 40px 24px;
  text-align: center;
  position: relative;
}

.as-anchor-carousel {
  position: relative;
  min-height: 150px;
  max-width: 460px;
  margin: 0 auto;
}

.as-anchor-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: as-fade-cycle 25s infinite;
}

.as-anchor-slide:nth-child(1) { animation-delay: 0s; }
.as-anchor-slide:nth-child(2) { animation-delay: 5s; }
.as-anchor-slide:nth-child(3) { animation-delay: 10s; }
.as-anchor-slide:nth-child(4) { animation-delay: 15s; }
.as-anchor-slide:nth-child(5) { animation-delay: 20s; }

@keyframes as-fade-cycle {
  0% { opacity: 0; }
  4% { opacity: 1; }
  16% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}

.as-anchor-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 19px;
  font-weight: 400;
  color: var(--as-navy);
  line-height: 1.5;
  margin: 0 auto 10px;
  max-width: 460px;
}

.as-anchor-attr {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--as-gold-text);
  font-weight: 600;
}

.as-modules {
  background: var(--as-linen);
  padding: 44px 24px;
}

.as-section-label {
  text-align: center;
  margin: 0 0 10px;
}

.as-section-title {
  font-size: 26px;
  font-weight: 400;
  color: var(--as-navy);
  text-align: center;
  margin: 0 0 32px;
}

.as-leadmagnet {
  border: 0.5px solid var(--as-gold);
  background: var(--as-linen-dark);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.as-leadmagnet-text {
  flex: 1;
}

.as-leadmagnet-label {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--as-gold-text);
  font-weight: 600;
  margin: 0 0 6px;
}

.as-leadmagnet-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--as-navy);
  margin: 0 0 4px;
}

.as-leadmagnet-desc {
  font-size: 15px;
  color: var(--as-muted);
  line-height: 1.6;
  margin: 0;
}

.as-leadmagnet-cta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.as-leadmagnet-note {
  font-size: 15px;
  color: var(--as-navy);
  line-height: 1.6;
  margin: 0;
}

.as-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

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

.as-module-card {
  border: 0.5px solid rgba(39, 42, 51, 0.15);
  padding: 20px 16px;
  background: var(--as-white);
  position: relative;
}

.as-module-card-link {
  display: block;
  text-decoration: none;
}

.as-module-card-link .as-module-card {
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.as-module-card-link:hover .as-module-card {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.7);
  box-shadow: 0 16px 40px rgba(39, 42, 51, 0.12);
}

.as-module-card-actionable {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.as-module-card-actionable:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.7);
  box-shadow: 0 16px 40px rgba(39, 42, 51, 0.12);
}

.as-module-card-mainlink {
  margin-bottom: 14px;
}

.as-module-card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: auto;
}

.as-module-card-button {
  display: inline-flex;
}

.as-module-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.as-module-card-secondary {
  white-space: nowrap;
}

.as-module-card-cart-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.as-module-card-cart-count {
  font-size: 13px;
  color: var(--as-muted);
}

.as-service-usage-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.as-service-usage-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  b__order: 1px solid rgba(39, 42, 51, 0.12);
  background: #fbfbf7;
  color: var(--as-navy);
  font-size: 14px;
}

.as-service-usage-pill .icon-svg {
  width: 16px;
  height: 16px;
}

.as-service-usage-pill-used {
  color: var(--as-gold-text);
}

.as-service-usage-log {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--as-muted);
}

.as-service-usage-log li + li {
  margin-top: 6px;
}

.as-detail-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.as-detail-bottom-nav a:last-child {
  margin-left: auto;
  text-align: right;
}

.as-service-product-num {
  display: none;
}

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

.as-module-num {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--as-gold-text);
  font-weight: 700;
  margin: 0 0 10px;
}

.as-module-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--as-gold-text);
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  border-bottom: 3px solid var(--as-gold);
  padding-bottom: 3px;
  margin: 0 0 10px;
}

.as-module-desc {
  font-size: 14px;
  color: var(--as-muted);
  line-height: 1.6;
  margin: 0 0 14px;
}

.as-module-price {
  font-size: 18px;
  color: var(--as-navy);
  font-weight: 700;
  background: var(--as-gold);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
}

.as-module-price-old {
  font-size: 15px;
  color: var(--as-muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 500;
}


.as-modules-more {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  color: var(--as-navy);
  text-align: center;
  margin: 24px 0 0;
}

.as-free-band {
  background: var(--as-navy);
  padding: 40px 24px;
  text-align: center;
  color: var(--as-linen);
}

.as-free-label {
  color: var(--as-gold);
  margin: 0 0 12px;
}

.as-free-title {
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 12px;
}

.as-free-desc {
  font-size: 14px;
  color: rgba(242, 243, 236, 0.75);
  max-width: 380px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.as-about {
  padding: 40px 24px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.as-about-avatar,
.as-ap-avatar {
  border-radius: 50%;
  background: var(--as-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--as-linen);
  font-style: italic;
  flex-shrink: 0;
}

.as-about-avatar {
  width: 72px;
  height: 72px;
  font-size: 22px;
}

.as-blog-page,
.as-blog-post-page {
  padding: 40px 24px 56px;
}

.as-blog-header {
  margin-bottom: 28px;
}

.as-blog-intro {
  color: var(--as-muted);
  line-height: 1.8;
  margin: 0;
}

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

.as-blog-card {
  border: 1px solid rgba(39, 42, 51, 0.12);
  background: var(--as-white);
  display: grid;
  overflow: hidden;
}

.as-blog-card-image-link {
  display: block;
}

.as-blog-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.as-blog-card-body {
  padding: 20px 18px 22px;
}

.as-blog-card-meta,
.as-blog-post-meta {
  font-size: 13px;
  letter-spacing: 0.8px;
  color: var(--as-gold-text);
  margin: 0 0 12px;
}

.as-blog-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.as-blog-card-title a,
.as-blog-readmore {
  text-decoration: none;
}

.as-blog-card-excerpt {
  color: var(--as-muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.as-blog-readmore {
  color: var(--as-gold-text);
  font-weight: 700;
}

.as-blog-empty,
.as-blog-post {
  border: 1px solid rgba(39, 42, 51, 0.12);
  background: var(--as-white);
  padding: 24px;
}

.as-blog-post-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.as-blog-post-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.2vw, 44px);
  line-height: 1;
  margin: 0;
}

.as-blog-post-media {
  margin: 24px 0 0;
}

.as-blog-post-media img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.as-blog-post-content {
  margin-top: 24px;
  color: var(--as-muted);
  line-height: 1.9;
  text-align: justify;
}

.as-blog-post-content > :first-child {
  margin-top: 0;
}

.as-blog-post-content h2,
.as-blog-post-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.as-blog-post-signature {
  max-width: 900px;
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.as-blog-post-signature-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--as-navy);
  color: var(--as-linen);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-style: italic;
  flex-shrink: 0;
}

.as-blog-post-signature-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-style: italic;
  color: var(--as-navy);
  text-align: right;
}

.as-blog-post-nav {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(39, 42, 51, 0.12);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.as-blog-post-nav-side {
  min-width: 0;
}

.as-blog-post-nav-prev {
  text-align: left;
}

.as-blog-post-nav-next {
  text-align: right;
}

.as-blog-post-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  color: var(--as-navy);
  text-decoration: none;
}

.as-blog-post-nav-link:hover {
  color: var(--as-gold-text);
}

.as-blog-post-nav-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.as-blog-post-nav-icon {
  font-size: 24px;
  line-height: 1;
  color: var(--as-gold-text);
  flex-shrink: 0;
}

.as-blog-swipe-hint {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 12px);
  z-index: 50;
  min-width: 156px;
  padding: 10px 16px;
  background: rgba(39, 42, 51, 0.9);
  color: var(--as-linen);
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.as-blog-swipe-hint.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.as-about-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--as-gold-text);
  font-weight: 600;
  margin: 0 0 8px;
}

.as-about-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  color: var(--as-navy);
  margin: 0 0 8px;
}

.as-about-text {
  font-size: 16px;
  color: var(--as-muted);
  line-height: 1.75;
  margin: 0 0 14px;
}

.as-about-review {
  background: var(--as-linen);
  border: 0.5px solid rgba(201, 169, 110, 0.4);
  padding: 12px 14px;
  margin: 0 0 14px;
}

.as-about-review-stars,
.as-ap-review-stars {
  color: var(--as-gold-text);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 6px;
}

.as-about-review-stars {
  font-size: 15px;
}

.as-about-review-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  color: var(--as-navy);
  line-height: 1.5;
  margin: 0;
}

.as-about-review-author {
  font-family: "Montserrat", system-ui, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: var(--as-muted);
  display: block;
  margin-top: 8px;
}

.as-about-link,
.as-ap-reviews-link,
.as-footer-legal-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 0.5px solid currentColor;
  padding-bottom: 2px;
}

.as-about-link,
.as-ap-reviews-link {
  color: var(--as-navy);
}

.as-rdv-insert {
  border-top: 1px solid var(--as-gold);
  padding: 36px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.as-rdv-btn {
  white-space: nowrap;
  margin-left: 16px;
  flex-shrink: 0;
  font-size: 15px;
  padding: 18px 44px;
  letter-spacing: 2px;
}

.as-rdv-eyebrow {
  margin: 0 0 10px;
}

.as-rdv-text {
  font-size: 15px;
  color: var(--as-muted);
  line-height: 1.6;
}

.as-rdv-text strong {
  font-weight: 700;
  color: var(--as-navy);
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.as-ap-header,
.as-legal-header {
  background: var(--as-linen);
  text-align: center;
}

.as-ap-header {
  padding: 56px 24px 40px;
}

.as-legal-header {
  padding: 48px 24px 32px;
}

.as-ap-eyebrow,
.as-legal-eyebrow {
  margin: 0 0 16px;
}

.as-legal-eyebrow {
  margin-bottom: 14px;
}

.as-ap-title {
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: var(--as-navy);
  line-height: 1.3;
  margin: 0 auto;
  max-width: 460px;
}

.as-legal-title {
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--as-navy);
  margin: 0;
}

.as-ap-portrait {
  display: flex;
  justify-content: center;
  padding: 8px 24px 0;
  background: var(--as-linen);
}

.as-ap-avatar {
  width: 96px;
  height: 96px;
  font-size: 30px;
}

.as-ap-body,
.as-legal-body {
  background: var(--as-linen);
}

.as-ap-body {
  padding: 32px 24px 52px;
}

.as-ap-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--as-muted);
  max-width: 900px;
  margin: 0 auto 20px;
}

.as-ap-text strong,
.as-legal-text strong {
  color: var(--as-navy);
  font-weight: 400;
}

.as-ap-milestones {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 32px auto 36px;
  max-width: 480px;
  flex-wrap: wrap;
}

.as-ap-milestone {
  text-align: center;
}

.as-ap-milestone-year {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  color: var(--as-gold-text);
  margin: 0 0 4px;
}

.as-ap-milestone-label {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--as-muted);
  line-height: 1.5;
  max-width: 120px;
}

.as-ap-divider {
  height: 0.5px;
  background: linear-gradient(to right, transparent, var(--as-gold), transparent);
  margin: 0 auto 28px;
  max-width: 480px;
}

.as-ap-reviews {
  background: var(--as-linen-dark);
  padding: 20px 10px;
  margin: 8px auto 28px;
  max-width: 620px;
}

.as-ap-reviews summary {
  cursor: pointer;
  list-style: none;
}

.as-ap-reviews summary::-webkit-details-marker {
  display: none;
}

.as-ap-reviews-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--as-gold-text);
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 6px 0;
  position: relative;
}

.as-ap-reviews-label::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--as-gold);
  transition: transform 0.25s ease;
}

.as-ap-reviews[open] .as-ap-reviews-label::after {
  content: "-";
}

.as-ap-reviews-content {
  padding-top: 18px;
}

.as-ap-review {
  border-bottom: 0.5px solid rgba(39, 42, 51, 0.1);
  padding: 0 0 14px;
  margin: 0 0 14px;
}

.as-ap-review:last-of-type {
  border-bottom: none;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.as-ap-review-stars {
  color: var(--as-gold);
  font-size: 11px;
  letter-spacing: 1px;
}

.as-ap-review-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  color: var(--as-navy);
  line-height: 1.6;
  margin: 0 0 6px;
}

.as-ap-review-author {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--as-muted);
  margin: 0;
}

.as-ap-reviews-link {
  display: block;
  text-align: center;
  letter-spacing: 1.5px;
  width: fit-content;
  margin: 0 auto;
}

.as-ap-closing {
  background: var(--as-navy);
  padding: 44px 24px;
  text-align: center;
}

.as-ap-closing-text {
  font-style: italic;
  font-size: 21px;
  font-weight: 400;
  color: var(--as-linen);
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto 24px;
}

.as-legal-body {
  padding: 8px 24px 48px;
}

.as-legal-section {
  max-width: 680px;
  margin: 0 auto 36px;
}

.as-legal-section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--as-navy);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid rgba(201, 169, 110, 0.4);
}

.as-legal-sub {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--as-gold-text);
  font-weight: 600;
  margin: 20px 0 8px;
}

.as-legal-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--as-muted);
  margin: 0 0 12px;
}

.as-legal-placeholder {
  background: var(--as-linen-dark);
  border-left: 2px solid var(--as-gold);
  padding: 10px 14px;
  font-size: 11px;
  color: var(--as-muted);
  font-style: italic;
  margin: 8px 0 14px;
}

.as-legal-list {
  margin: 0 0 12px;
  padding-left: 18px;
}

.as-legal-list li {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--as-muted);
  margin-bottom: 6px;
}

.site-footer {
  background: var(--as-navy);
  padding: 24px;
}

.site-footer-content {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.site-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-footer-logo {
  color: var(--as-gold);
}

.site-footer-logo-text {
  font-size: 14px;
  color: var(--as-gold);
}

.site-footer-copy {
  font-size: 12px;
  color: rgba(242, 243, 236, 0.7);
  letter-spacing: 0.5px;
}

.site-footer-disclaimer {
  font-size: 11px;
  color: rgba(242, 243, 236, 0.65);
  line-height: 1.6;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 0.5px solid rgba(242, 243, 236, 0.2);
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.as-footer-legal-link {
  display: inline-block;
  color: rgba(242, 243, 236, 0.75);
  margin-top: 8px;
}

.card {
  border: 1px solid rgba(39, 42, 51, 0.14);
  background: var(--as-white);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.card-narrow {
  max-width: 1000px;
}

h1,
h2,
h3 {
  color: var(--as-navy);
  margin-top: 0;
}

.card div h3,
.card h2,
.card h1 {

}

h1 {
  font-size: 1.5em;
}

h2 {
  margin-top: 0;
  font-size: 1.3em;
}

.message-success {
  color: #2e7d32;
  margin: 0.5rem 0;
}

.field-narrow {
  max-width: 480px;
  margin-top: 9px;
}

.mt-0 { margin-top: 0; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mb-15 { margin-bottom: 15px; }
.ml-1rem { margin-left: 1rem; }
.text-center { text-align: center; }
.text-danger { color: #f44336; }
.text-danger-strong { color: red; font-weight: bold; }
.text-muted { color: #666; }
.textarea-full { width: 100%; }
.text-small { font-size: 75%; }

.filter-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

.filter-submit {
  padding: 11px 16px;
}

.button-reset {
  padding: 9px 16px;
  background-color: #999;
  color: white;
  text-decoration: none;
  border-radius: 7px;
}

.manager-table-audio {
  width: 210px;
  max-width: 100%;
  height: 32px;
}

.manager-mobile-prefix {
  display: none;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table thead tr {
  border-bottom: 2px solid #ddd;
}

.data-table tbody tr {
  border-bottom: 1px solid #eee;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 10px;
  vertical-align: top;
}

.manager-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.table-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.5rem;
  white-space: nowrap;
}

.table-actions form {
  margin: 0;
}

.icon-button {
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid rgba(39, 42, 51, 0.28);
  background: transparent;
  color: var(--as-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.icon-button:hover {
  background: var(--as-gold);
  border-color: var(--as-gold);
  color: var(--as-navy);
}

.icon-button-small {
  width: 32px;
  height: 32px;
  min-height: 32px;
}

.icon-button-danger {
  border-color: rgba(176, 0, 32, 0.45);
  color: #b00020;
}

.icon-button-danger:hover {
  background: #b00020;
  border-color: #b00020;
  color: #fff;
}

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

.button-danger {
  background: #b00020;
  border-color: #b00020;
  color: #fff;
  padding: 0.6rem 1rem;
}

.button-danger:hover {
  background: #7f0017;
  border-color: #7f0017;
  color: #fff;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.as-module-detail-page {
  padding: 40px 24px 56px;
}

.as-cart-page {
  padding: 32px 24px;
}

.as-module-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 32px;
  align-items: start;
  margin-top: 14px;
}

.as-module-detail-header.no-sidebar {
  grid-template-columns: minmax(0, 1fr);
}

.as-module-detail-body,
.as-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 28px;
  margin-top: 32px;
}

.as-module-detail-main,
.as-cart-items {
  display: grid;
  gap: 18px;
}

.as-module-detail-section,
.as-module-purchase-card,
.as-cart-item,
.as-cart-summary,
.as-cart-empty {
  border: 1px solid rgba(39, 42, 51, 0.12);
  background: var(--as-white);
  padding: 22px;
}

.as-module-detail-section h2,
.as-cart-item-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  margin: 0 0 14px;
}

.as-cart-item-title {
  font-size: 24px;
}

.as-module-detail-text {
  color: var(--as-muted);
  line-height: 1.9;
}

.as-module-detail-body {
  grid-template-columns: minmax(0, 1fr);
}

.as-module-detail-tags {
  margin-top: 14px;
}

.as-module-detail-pdf-link {
  margin: 14px 0 0;
}

.as-module-detail-pdf-link a {
  color: var(--as-gold-text);
}

.as-module-detail-inline-media {
  width: min(440px, 42%);
  margin: 2px 0 16px 24px;
  float: right;
  border: 1px solid rgba(39, 42, 51, 0.12);
  background: var(--as-white);
  padding: 10px;
}

.as-module-detail-inline-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.as-service-detail-inline-media img {
  aspect-ratio: 3 / 2;
}

.as-module-session-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.as-module-session-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  color: var(--as-muted);
}

.as-module-session-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.as-module-session-order {
  min-width: 34px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--as-gold-text);
  font-weight: 700;
}

.as-module-session-duration {
  font-size: 13px;
  color: rgba(39, 42, 51, 0.6);
  white-space: nowrap;
}

.as-module-session-media {
  display: flex;
  align-items: center;
  gap: 10px;
}

.as-module-session-media audio {
  width: min(320px, 42vw);
  height: 34px;
}

.as-module-tag-list span {
  padding: 8px 12px;
  border: 1px solid rgba(39, 42, 51, 0.14);
  text-decoration: none;
  background: #fbfbf7;
}

.as-module-purchase-card,
.as-cart-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.as-cart-summary > .as-btn-primary,
.as-cart-summary > .site-action-link {
  width: 100%;
}

.as-module-purchase-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--as-gold-text);
  font-weight: 700;
}

.as-module-price-block,
.as-module-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.as-module-purchase-meta {
  margin: 0;
  color: var(--as-muted);
  line-height: 1.8;
}

.as-module-purchase-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.as-module-purchase-actions form {
  margin: 0;
}

.as-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.as-cart-header-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.as-cart-clear-form {
  margin: 0;
}

.as-cart-icon-wrap {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(39, 42, 51, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--as-white);
}

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

.as-cart-item-title a {
  text-decoration: none;
}

.as-cart-item-title a:hover {
  color: var(--as-gold-text);
}

.as-cart-item-title,
.as-cart-item-summary {
  margin-bottom: 0;
}

.as-cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.as-cart-item-side form {
  margin: 0;
}

.as-cart-quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.as-cart-quantity-value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--as-navy);
}

.as-cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--as-muted);
}

.as-cart-total-row strong {
  color: var(--as-navy);
}

.as-cart-empty {
  text-align: center;
}

.as-cart-empty p {
  margin-top: 0;
}

.as-free-session-card {
  border: 1px solid rgba(39, 42, 51, 0.12);
  background: var(--as-white);
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.as-free-session-title {
  margin: 0;
  font-size: 16px;
  color: var(--as-muted);
  font-weight: 400;
}

.as-free-session-media {
  justify-content: flex-end;
}

body.modal-open {
  overflow: hidden;
}

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

.as-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.as-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(39, 42, 51, 0.45);
}

.as-modal-dialog {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(39, 42, 51, 0.14);
  background: var(--as-white);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(39, 42, 51, 0.18);
}

.as-modal-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.1;
}

.as-modal-copy {
  margin: 0;
  color: var(--as-muted);
  line-height: 1.8;
}

.as-modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.as-modal-actions form {
  margin: 0;
}

.as-modal-actions .as-btn-primary,
.as-modal-actions .site-action-link {
  width: 100%;
}

.form-help,
.current-file {
  margin: 0.25rem 0 0.75rem;
  color: #666;
  font-size: 0.9rem;
}

.manager-user-select {
  min-width: 120px;
  max-width: 160px;
  margin: 0;
}

.manager-user-actions {
  width: 220px;
}

.manager-user-actions form {
  margin: 0;
  margin-right: 15px;
  float: left;
}

.manager-user-save {
  padding: 0.45rem 0.9rem;
}

.manager-user-saved {
  color: #2e7d32;
  display: inline-block;
}

.manager-user-activate-form {
  display: inline-block;
  margin-left: 0.5rem;
}

.manager-user-activate {
  background: #2e7d32;
  border-color: #2e7d32;
  padding: 0.45rem 0.9rem;
}

.manager-user-save[hidden],
.manager-user-saved[hidden] {
  display: none;
}

.confirm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 1rem;
}

.confirm-backdrop[hidden] {
  display: none;
}

.confirm-dialog {
  width: min(420px, 100%);
  background: var(--as-white);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.confirm-dialog h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.confirm-dialog p {
  margin-top: 0;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.confirm-button-secondary {
  background: #f5f5f5;
  border-color: #bdbdbd;
  color: #333;
}

.confirm-button-secondary:hover {
  background: #e0e0e0;
  color: #111;
}

.confirm-button-primary {
  background: #111;
  border-color: #111;
  color: #fff;
}

input,
select,
textarea {
  padding: 0.5rem;
  margin: 0.25rem 0 0.75rem;
  width: 100%;
  m//ax-width: 480px;
  border: 1px solid rgba(39, 42, 51, 0.2);
  background: #fff;
  color: var(--as-navy);
}

input.form-check-input {
  width: auto;
  max-width: none;
}

form .row,
form .row_by2 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

form .row > div {
  flex: 1 1 220px;
  m--argin-right: 20px;
}

form .row_by2 > div {
  flex: 1 1 330px;
  margin-right: 20px;
}

form .row_by2 > .form-col-span-2 {
  flex-basis: calc(100% - 20px);
  max-width: calc(100% - 20px);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  margin: 0.25rem 0 0.75rem;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  white-space: nowrap;
}

.radio-group input[type="radio"] {
  width: auto;
  max-width: none;
  margin: 0;
}

form div.allergies ul {
  margin-top: 0;
  padding-inline-start: 25px;
}

div.longtext {
  width: 100%;
}

div.longtext label {
  display: block;
  margin-bottom: 4px;
}

.error {
  color: var(--as-danger);
  margin: 0.5rem 0;
}

.progress_figures {
  display: inline-block;
  width: 40px;
  text-align: right;
  font-size: 0.9em;
}

.kid_information_validation span p {
  margin: 0;
}

@media (min-width: 768px) {
  .as-hero-sub {
    max-width: 640px;
  }
}

@media (min-width: 1024px) {
  .as-hero {
    padding: 80px 24px 64px;
  }

  .as-hero-eyebrow,
  .as-section-label,
  .as-free-label,
  .as-rdv-eyebrow,
  .as-ap-eyebrow,
  .as-legal-eyebrow {
    font-size: 16px;
  }

  .as-hero-sub {
    font-size: 19px;
  }

  .as-symptom-cloud {
    height: 190px;
  }

  .as-identification {
    padding: 64px 24px;
  }

  .as-identification-text {
    font-size: 18px;
    max-width: 700px;
  }

  .as-identification-pivot {
    font-size: 36px;
  }

  .as-legal-section {
    max-width: 900px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .as-symptom-cloud {
    display: none;
  }

  .as-hero-line {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .as-anchor-slide {
    animation: none;
    opacity: 0;
    position: static;
    margin-bottom: 24px;
  }

  .as-anchor-slide:first-child {
    opacity: 1;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  body.homepage .as-module-grid,
  .as-module-grid-dashboard,
  .as-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header-content {
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .login-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .login-form-actions .button,
  .login-form-actions button {
    width: 100%;
  }

  .login-form-separator {
    text-align: center;
  }

  body.homepage .as-module-grid,
  .as-module-grid-dashboard {
    grid-template-columns: 1fr;
  }

  .as-module-grid-dashboard,
  .as-module-detail-header,
  .as-module-detail-body,
  .as-cart-layout,
  .as-cart-item,
  .as-modal-actions {
    grid-template-columns: 1fr;
  }

  .as-module-session-list li {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .as-free-session-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .as-module-session-copy {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
    overflow-x: hidden;
  }

  .as-module-session-copy > span:not(.as-module-session-order):not(.as-module-session-duration) {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .as-module-session-duration {
    margin-left: auto;
    text-align: right;
    flex: 0 0 auto;
  }

  .as-module-session-list.has-audio .as-module-session-duration,
  .as-module-session-download {
    display: none;
  }

  .as-free-session-media .as-module-session-duration,
  .as-free-session-download {
    display: none;
  }

  .as-module-session-media,
  .as-free-session-media {
    flex-wrap: wrap;
  }

  .as-module-session-media audio {
    width: 100%;
  }

  .as-module-detail-inline-media {
    float: none;
    width: 100%;
    margin: 0 0 18px;
  }

  .as-cart-item-side,
  .as-module-purchase-actions {
    align-items: stretch;
    justify-content: flex-start;
  }

  .as-cart-item-side .as-module-price {
    align-self: flex-start;
  }

  .as-about,
  .as-rdv-insert {
    flex-direction: column;
    align-items: stretch;
  }

  .as-rdv-insert {
    text-align: center;
  }

  .as-rdv-btn {
    margin-left: 0;
    white-space: normal;
    width: 100%;
    margin-top: 8px;
  }

  .as-blog-grid {
    grid-template-columns: 1fr;
  }

  .as-blog-post-title-row {
    flex-direction: column;
    align-items: stretch;
  }

  .as-blog-post-nav {
    grid-template-columns: 1fr;
  }

  .as-blog-post-nav-next,
  .as-blog-post-nav-prev {
    text-align: left;
  }

  .as-blog-post-nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .site-footer-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-header-content {
    padding: 14px 16px;
  }

  .site-logo-text {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .site-nav {
    gap: 12px;
    font-size: 10.5px;
    letter-spacing: 0.5px;
  }

  .site-nav-icon-link {
    width: 36px;
    height: 36px;
  }

  .site-action-link,
  .site-action-primary {
    font-size: 10px;
    padding: 9px 12px;
    letter-spacing: 1px;
  }

  .as-module-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) and (orientation: portrait) {
  .manager-data-table {
    width: 100%;
  }

  .manager-data-table.card,
  .card > .manager-data-table {
    width: 100%;
  }

  .card:has(> .manager-data-table) {
    border: 0;
    padding: 0;
    background: transparent;
  }

  .manager-data-table,
  .manager-data-table thead,
  .manager-data-table tbody,
  .manager-data-table tr,
  .manager-data-table th,
  .manager-data-table td {
    display: block;
  }

  .manager-data-table thead {
    display: none;
  }

  .manager-data-table tbody {
    display: grid;
    gap: 12px;
  }

  .manager-data-table tbody tr {
    border: 1px solid rgba(39, 42, 51, 0.12);
    background: var(--as-white);
    padding: 14px;
  }

  .manager-data-table td {
    padding: 0;
    border: 0;
  }

  .manager-data-table tbody tr > td:not(.table-actions) {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 12px 8px 0;
    vertical-align: top;
  }

  .manager-data-table .table-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 10px;
  }

  .manager-data-table .table-actions form {
    margin: 0;
  }

  .manager-data-table-modules .manager-module-summary,
  .manager-data-table-posts .manager-post-excerpt,
  .manager-data-table-sessions .manager-session-module-column {
    display: none;
  }

  .manager-mobile-prefix {
    display: inline;
  }

  .manager-data-table-sessions .manager-table-audio {
    width: 180px;
  }

  .manager-data-table-modules td:nth-child(2),
  .manager-data-table-posts td:nth-child(3) {
    display: block;
    margin: 0 0 8px;
  }

  .manager-data-table-modules td:nth-child(4) a + br {
    display: none;
  }
}

@media (max-width: 380px) {
  .as-anchor-quote {
    font-size: 16px;
    line-height: 1.45;
  }

  .as-anchor-carousel {
    min-height: 170px;
  }
}
