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

@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/nunito-sans-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #15211f;
  --forest: #133a37;
  --forest-2: #20534e;
  --sage: #a9c4b7;
  --mint: #dcebe3;
  --cream: #f5f1e8;
  --paper: #fbfaf7;
  --white: #fff;
  --coral: #e9694e;
  --sun: #f1b84b;
  --sky: #b9d9e6;
  --lilac: #d9c8e8;
  --line: #dce2dc;
  --muted: #65716d;
  --shadow: 0 24px 80px rgba(24, 55, 50, .12);
  --radius: 28px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
}

h3 {
  font-size: 1.45rem;
}

svg {
  width: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 132px);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  min-height: 88px;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  background: rgba(251, 250, 247, .94);
  border-bottom: 1px solid rgba(21, 33, 31, .1);
  backdrop-filter: blur(14px);
}

.brand {
  position: static;
  display: grid;
  width: 72px;
  height: 72px;
  padding: 3px;
  place-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: clamp(9px, 1.25vw, 18px);
}

.main-nav a {
  position: relative;
  padding-block: 31px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 4px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.language-switch a[aria-current="true"] {
  color: var(--forest);
}

.icon-link {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: .2s ease;
}

.icon-link:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  min-width: 19px;
  height: 19px;
  padding-inline: 4px;
  color: var(--white);
  background: var(--coral);
  border: 2px solid var(--paper);
  border-radius: 999px;
  place-items: center;
  font-size: .62rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(19, 58, 55, .045) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 10% 18%, rgba(241, 184, 75, .18) 0 82px, transparent 83px),
    radial-gradient(circle at 54% 83%, rgba(233, 105, 78, .12) 0 115px, transparent 116px),
    linear-gradient(100deg, var(--paper) 0 58%, #eaf2ed 58%);
}

.hero::after {
  position: absolute;
  right: 38%;
  bottom: -25%;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(19, 58, 55, .13);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  min-height: 710px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--forest-2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--coral);
}

.eyebrow-light {
  color: var(--mint);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 6vw, 5.4rem);
  font-weight: 800;
}

.hero h1 em {
  display: block;
  color: var(--coral);
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}

.hero-copy > p {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .035em;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 13px 28px rgba(19, 58, 55, .2);
}

.button-primary:hover {
  background: var(--forest-2);
  box-shadow: 0 16px 34px rgba(19, 58, 55, .27);
}

.button-light {
  color: var(--forest);
  background: var(--white);
}

.button-accent {
  color: var(--white);
  background: var(--coral);
}

.button-wide {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: .5;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: .82rem;
  font-weight: 700;
}

.text-link svg {
  transition: transform .2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  align-self: stretch;
}

.hero-visual > img {
  position: absolute;
  z-index: 2;
  top: 55px;
  right: -13%;
  bottom: auto;
  width: min(780px, 58vw);
  max-width: none;
  filter: drop-shadow(0 30px 35px rgba(25, 46, 43, .12));
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: -5%;
  display: grid;
  width: 400px;
  height: 400px;
  color: rgba(19, 58, 55, .17);
  border: 1px solid rgba(19, 58, 55, .15);
  border-radius: 50%;
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .3em;
  transform: translateY(-50%) rotate(-38deg);
}

.floating-note {
  position: absolute;
  z-index: 4;
  top: 465px;
  right: 0;
  bottom: auto;
  width: 250px;
  padding: 22px;
  color: var(--white);
  background: rgba(19, 58, 55, .94);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  color: var(--sage);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.floating-note strong {
  margin: 4px 0 14px;
  line-height: 1.2;
}

.floating-note a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: .74rem;
  font-weight: 700;
}

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

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

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 60px;
}

.split-heading > p {
  max-width: 500px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading > .text-link {
  justify-self: end;
  margin-bottom: 10px;
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.narrow {
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}

.narrow > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.choice-card {
  position: relative;
  min-height: 410px;
  padding: 34px;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
  border: 4px solid var(--paper);
  border-radius: 38px 18px 38px 18px;
  isolation: isolate;
  box-shadow: 0 18px 45px rgba(19, 58, 55, .12);
  transition: transform .28s ease, border-radius .28s ease;
}

.choice-card:nth-child(2) {
  transform: translateY(18px);
}

.choice-card:hover {
  border-radius: 18px 38px 18px 38px;
  transform: translateY(-6px) rotate(-.5deg);
}

.choice-card:nth-child(2):hover {
  transform: translateY(10px) rotate(.5deg);
}

.choice-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(9, 28, 26, .08), rgba(9, 28, 26, .9));
  transition: background .3s ease;
}

.choice-card:hover::before {
  background: linear-gradient(180deg, rgba(9, 28, 26, .02), rgba(9, 28, 26, .8));
}

.choice-card > span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  font-weight: 800;
}

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

.choice-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

.choice-card b {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
}

.choice-adults {
  background-image: url("/media/2024/04/acroyoga_bratislava.png");
}

.choice-kids {
  background-image: url("/media/2025/11/IMG_6301-scaled-e1762976038339.jpg");
}

.choice-private {
  background-image: url("/media/2024/07/IMG_0824-e1772050514648.jpg");
}

.dark-section {
  color: var(--white);
  background: var(--forest);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: .88;
  object-fit: cover;
  border-radius: 180px 180px 20px 20px;
}

.image-label {
  position: absolute;
  right: -25px;
  bottom: 45px;
  max-width: 210px;
  padding: 17px 20px;
  color: var(--forest);
  background: var(--mint);
  border-radius: 14px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-copy > p {
  color: rgba(255, 255, 255, .74);
  font-size: 1.05rem;
}

.benefit-list {
  display: grid;
  padding: 0;
  margin: 34px 0;
  gap: 18px;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  color: rgba(255, 255, 255, .74);
}

.benefit-list svg {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 7px;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.benefit-list strong {
  color: var(--white);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px 14px 26px 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.offer-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.offer-image {
  position: relative;
  display: block;
  aspect-ratio: 1.13;
  overflow: hidden;
  background: #e9ece8;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.035);
}

.stock-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 800;
}

.offer-content {
  display: flex;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.offer-content .eyebrow {
  margin-bottom: 10px;
  font-size: .61rem;
}

.offer-content .eyebrow::before {
  width: 16px;
}

.offer-content h3 {
  margin-bottom: 12px;
}

.offer-content p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.card-meta {
  display: grid;
  margin-bottom: 20px;
  gap: 8px;
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .74rem;
}

.card-meta svg {
  width: 16px;
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.offer-footer strong {
  font-size: 1.16rem;
}

.round-link {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  place-items: center;
}

.round-link svg {
  width: 17px;
}

.steps-section {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: #d9d3c8;
  border: 1px solid #d9d3c8;
  border-radius: var(--radius);
}

.steps-grid > div {
  min-height: 260px;
  padding: 36px;
  background: var(--paper);
}

.steps-grid > div > span,
.feature-grid > div > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 55px;
  color: var(--white);
  background: var(--coral);
  border-radius: 14px 50% 50% 50%;
  place-items: center;
  font-size: .75rem;
  font-weight: 800;
}

.steps-grid p,
.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.newsletter-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  padding: 54px clamp(28px, 5vw, 70px);
  margin-block: 90px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 var(--sage);
}

.newsletter-section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.newsletter-form {
  display: grid;
  gap: 10px;
  padding: 8px;
  background: var(--white);
  border-radius: 22px;
}

.newsletter-form-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.newsletter-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 4px 10px;
}

.newsletter-form input,
.newsletter-form select {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  outline: 0;
  background: #f7f4ed;
  color: var(--ink);
  font: inherit;
}

.newsletter-interest {
  display: grid;
  gap: 3px;
  padding: 5px 8px;
  border-radius: 17px;
  background: #f7f4ed;
}

.newsletter-interest span {
  padding-inline: 10px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newsletter-interest select {
  width: 100%;
  padding: 0 10px 3px;
  background: transparent;
}

.newsletter-form .button {
  flex-shrink: 0;
  min-height: 50px;
  border-radius: 16px;
  white-space: nowrap;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 0;
  color: var(--ink);
  font-size: .72rem;
  line-height: 1.45;
}

.newsletter-form .hp-field,
.newsletter-form .turnstile-wrap {
  grid-column: 1 / -1;
}

.newsletter-consent input {
  width: 17px;
  height: 17px;
  min-height: 0;
  padding: 0;
  margin-top: 1px;
  accent-color: var(--coral);
}

.site-footer {
  padding-top: 70px;
  color: rgba(255, 255, 255, .72);
  background: #0e2927;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand img {
  width: 105px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 300px;
}

.footer-main h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main span {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  font-size: .84rem;
}

.footer-main a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-main .footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  margin: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-link span {
  margin: 0;
  font-size: .75rem;
}

.footer-cookie-button {
  display: block;
  width: fit-content;
  padding: 0;
  margin-bottom: 10px;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .84rem;
  cursor: pointer;
}

.footer-cookie-button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 24px;
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .72rem;
}

.page-hero {
  padding-block: clamp(80px, 10vw, 145px);
  background:
    linear-gradient(110deg, var(--cream), transparent 70%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.compact-hero {
  padding-block: 72px;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 70px;
}

.page-hero-grid img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 180px 20px 20px 20px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 38px;
}

.catalog-toolbar button {
  padding: 10px 17px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
}

.catalog-toolbar button.active,
.catalog-toolbar button:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

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

.empty-state {
  grid-column: 1 / -1;
  padding: 70px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius);
}

.empty-state p {
  color: var(--muted);
}

.audience-hero {
  position: relative;
  padding-block: 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 16%, rgba(241, 184, 75, .24) 0 76px, transparent 77px),
    radial-gradient(circle at 93% 88%, rgba(233, 105, 78, .16) 0 120px, transparent 121px),
    var(--cream);
}

.audience-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.audience-grid h1 {
  margin-bottom: 26px;
}

.audience-grid p {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.audience-image {
  position: relative;
}

.audience-image::before {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 70%;
  height: 70%;
  content: "";
  background: var(--sage);
  border-radius: 60px 24px 60px 24px;
  transform: rotate(4deg);
}

.audience-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 80px 24px 80px 24px;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid > div {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-grid > div:hover {
  box-shadow: 0 18px 45px rgba(19, 58, 55, .1);
  transform: translateY(-5px);
}

.feature-grid > div > span {
  margin-bottom: 44px;
}

.faq-section {
  background: var(--forest);
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
  color: var(--white);
}

.accordion details {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.accordion details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.accordion summary {
  display: flex;
  padding-block: 22px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.accordion summary span {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  place-items: center;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion p {
  max-width: 680px;
  padding-right: 45px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .7);
}

.playful-image {
  isolation: isolate;
}

.image-sticker {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 22px;
  display: grid;
  width: 132px;
  height: 132px;
  padding: 18px;
  color: var(--forest);
  background: var(--sun);
  border: 5px solid var(--paper);
  border-radius: 50% 44% 48% 42%;
  box-shadow: 0 16px 35px rgba(19, 58, 55, .18);
  place-items: center;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transform: rotate(7deg);
}

.playful-features > div:nth-child(2) {
  background: #fef7e8;
}

.playful-features > div:nth-child(3) {
  background: #f5eef9;
}

.playful-features > div:nth-child(4) {
  background: #edf6f7;
}

.playful-features > div:nth-child(2) > span {
  background: var(--sun);
}

.playful-features > div:nth-child(3) > span {
  background: #a77bbb;
}

.playful-features > div:nth-child(4) > span {
  background: #4e9298;
}

.audience-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.audience-check-grid > div {
  display: grid;
  min-height: 130px;
  padding: 25px;
  align-items: start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px 32px 18px 32px;
  grid-template-columns: 34px 1fr;
}

.audience-check-grid svg,
.certificate-points svg {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 8px;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
}

.audience-check-grid p {
  margin: 2px 0 0;
  font-weight: 700;
  line-height: 1.5;
}

.adult-benefits {
  background: linear-gradient(180deg, #f3eee5, var(--paper));
}

.audience-flow {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 105%, rgba(241, 184, 75, .18) 0 190px, transparent 191px),
    var(--forest);
}

.flow-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.flow-grid > div {
  position: sticky;
  top: 35px;
}

.flow-grid > div p {
  max-width: 480px;
  color: rgba(255, 255, 255, .72);
}

.flow-grid .eyebrow {
  color: var(--mint);
}

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

.flow-steps li {
  display: grid;
  padding: 24px;
  align-items: start;
  gap: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px 34px 18px 34px;
  grid-template-columns: 48px 1fr;
  transition: background .2s ease, transform .2s ease;
}

.flow-steps li:hover {
  background: rgba(255, 255, 255, .13);
  transform: translateX(5px);
}

.flow-steps li > span {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--forest);
  background: var(--sun);
  border-radius: 50% 40% 50% 42%;
  place-items: center;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 800;
}

.flow-steps h3 {
  margin-bottom: 7px;
}

.flow-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}

.certificate-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(233, 105, 78, .11) 0 150px, transparent 151px),
    #f8f1e8;
}

.certificate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: center;
  gap: clamp(35px, 6vw, 80px);
}

.certificate-copy > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.certificate-points {
  display: grid;
  padding: 0;
  margin: 28px 0 0;
  gap: 14px;
  list-style: none;
}

.certificate-points li {
  display: grid;
  align-items: center;
  gap: 12px;
  grid-template-columns: 32px 1fr;
  font-weight: 700;
}

.certificate-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 290px;
  justify-self: center;
  padding: 9px;
  background: var(--white);
  border: 1px solid rgba(19, 58, 55, .12);
  border-radius: 16px;
  box-shadow: 12px 14px 0 var(--sage), var(--shadow);
  transform: rotate(1.5deg);
  transition: transform .25s ease, box-shadow .25s ease;
}

.certificate-card:hover {
  box-shadow: 10px 12px 0 var(--sun), var(--shadow);
  transform: rotate(0) translateY(-4px);
}

.certificate-card img {
  width: 100%;
  max-height: 370px;
  object-fit: contain;
  border-radius: 12px;
}

.certificate-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.audience-cta {
  display: flex;
  min-height: 220px;
  padding: 48px clamp(28px, 5vw, 68px);
  margin-block: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 110%, rgba(241, 184, 75, .38) 0 130px, transparent 131px),
    var(--forest);
  border-radius: 45px 18px 45px 18px;
}

.audience-cta h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.audience-cta .eyebrow {
  color: var(--mint);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: .72rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
  gap: clamp(45px, 8vw, 100px);
}

.product-gallery {
  min-width: 0;
}

.product-image {
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.product-thumb {
  padding: 0;
  overflow: hidden;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--forest);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.product-info .lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.product-price {
  margin-block: 28px;
  font-size: 1.7rem;
  font-weight: 800;
}

.field {
  display: grid;
  margin-bottom: 19px;
  gap: 7px;
}

.field > span {
  color: var(--ink);
  font-size: .74rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd4ce;
  border-radius: 10px;
  outline: none;
}

.field textarea {
  resize: vertical;
}

.editor-help {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.65;
}

.editor-help code {
  padding: 2px 5px;
  color: var(--forest);
  background: var(--cream);
  border-radius: 4px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 3px rgba(32, 83, 78, .1);
}

.product-actions {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  margin-top: 24px;
}

.direct-purchase-card {
  padding: 26px;
  margin-top: 28px;
  background: var(--cream);
  border: 1px solid rgba(19, 58, 55, .12);
  border-radius: 22px;
}

.direct-purchase-card h2 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.direct-purchase-card > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .9rem;
}

.direct-purchase-card .form-row {
  gap: 12px;
}

.direct-purchase-card .field {
  margin-bottom: 12px;
}

.direct-purchase-card .checkbox-field {
  margin-block: 8px 18px;
}

.direct-purchase-card .button {
  width: 100%;
}

.event-hero {
  position: relative;
  padding-block: 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 20%, rgba(241, 184, 75, .2) 0 90px, transparent 91px),
    linear-gradient(110deg, var(--paper) 0 62%, var(--mint) 62%);
}

.event-hero-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: center;
  gap: 70px;
}

.event-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.event-hero p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.event-tags span {
  padding: 8px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.event-hero-media {
  position: relative;
}

.event-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 60px 22px 60px 22px;
  box-shadow: var(--shadow);
}

.event-hero-note {
  position: absolute;
  right: -24px;
  bottom: 26px;
  max-width: 220px;
  padding: 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 18px;
  font-size: .82rem;
  font-weight: 800;
}

.event-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.event-format {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.event-format:nth-child(2) {
  background: #fef7e8;
}

.event-format:nth-child(3) {
  background: #edf6f7;
}

.event-format > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 52px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  place-items: center;
  font-weight: 800;
}

.event-format h3 {
  margin-bottom: 10px;
}

.event-format p {
  margin-bottom: 0;
  color: var(--muted);
}

.event-proof {
  padding-block: 80px;
  color: var(--white);
  background: var(--forest);
}

.event-proof-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.event-proof h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.3rem);
}

.event-points {
  display: grid;
  gap: 1px;
}

.event-points article {
  display: grid;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  grid-template-columns: 40px 1fr;
  gap: 16px;
}

.event-points article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.event-points strong {
  display: block;
  margin-bottom: 4px;
}

.event-points p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
}

.event-inquiry {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 70px;
}

.event-inquiry-copy {
  position: sticky;
  top: 30px;
}

.event-inquiry-copy p {
  color: var(--muted);
}

.quantity-field input {
  width: 100%;
  height: 54px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.micro-benefits {
  display: grid;
  margin-top: 24px;
  gap: 8px;
  color: var(--muted);
  font-size: .75rem;
}

.micro-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.micro-benefits svg {
  width: 15px;
  color: var(--forest-2);
}

.product-details {
  padding-block: 90px;
  background: var(--cream);
}

.details-grid,
.content-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.prose {
  color: var(--muted);
}

.prose p {
  margin-bottom: 1.4em;
}

.large-prose {
  max-width: 820px;
  font-size: 1.04rem;
}

.page-content {
  max-width: 1080px;
}

.large-prose h2 {
  margin: 2.2em 0 .7em;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.large-prose h2:first-child {
  margin-top: 0;
}

.large-prose h3 {
  margin: 1.6em 0 .55em;
  color: var(--ink);
  font-size: 1.25rem;
}

.large-prose ul {
  display: grid;
  margin: 0 0 1.6em;
  padding-left: 1.2em;
  gap: .55em;
}

.content-cta {
  margin-top: 2em;
}

.content-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0;
}

.content-gallery figure {
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border-radius: 14px;
}

.content-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.content-gallery figure:hover img {
  transform: scale(1.035);
}

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.contact-compact {
  padding-block: 68px 54px;
  background:
    radial-gradient(circle at 87% 15%, rgba(241, 184, 75, .18) 0 110px, transparent 111px),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.contact-intro {
  max-width: 960px;
}

.contact-intro h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.contact-intro p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-compact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 70px;
  padding-block: 70px;
}

.contact-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.contact-direct {
  display: grid;
  margin-top: 28px;
  gap: 10px;
}

.contact-direct a {
  display: grid;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-direct span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-direct strong {
  color: var(--forest);
}

.contact-compact-grid .card-form {
  padding: 30px;
}

.card-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(19, 58, 55, .08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-block: 20px;
  color: var(--muted);
  font-size: .78rem;
}

.checkbox-field input {
  margin-top: 4px;
  accent-color: var(--forest);
}

.success-message,
.error-message,
.notice-message,
.admin-notice {
  padding: 13px 16px;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: .84rem;
}

.success-message,
.admin-notice {
  color: #164b35;
  background: #dcf1e6;
}

.error-message {
  color: #7b211f;
  background: #f9dfdc;
}

.notice-message {
  color: #6c4a0f;
  background: #faebc9;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: start;
  gap: 55px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 115px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.cart-item img {
  width: 115px;
  height: 100px;
  object-fit: cover;
  border-radius: 11px;
}

.cart-item h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

.cart-item-controls {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-item-controls input {
  width: 70px;
  height: 38px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.remove-cart-item {
  padding: 0;
  color: #9a5144;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: .7rem;
}

.order-summary {
  position: sticky;
  top: 25px;
  padding: 28px;
  background: var(--cream);
  border-radius: 18px;
}

.order-summary h2 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.order-summary > div:not([data-checkout-summary]) {
  display: flex;
  justify-content: space-between;
  padding-block: 12px;
  color: var(--muted);
  border-bottom: 1px solid #d9d2c6;
  font-size: .84rem;
}

.order-summary .summary-total {
  padding-block: 20px;
  color: var(--ink);
  font-size: 1rem;
}

.product-shipping-note,
.shipping-note {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.shipping-note {
  margin: 12px 0 0;
  padding: 11px 13px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.coupon-form {
  margin: 8px 0 2px;
  color: var(--muted);
  font-size: .76rem;
}

.coupon-form summary,
.quiet-coupon-field summary,
.checkout-coupon summary {
  cursor: pointer;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  list-style-position: outside;
}

.coupon-form form,
.checkout-coupon > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 8px;
}

.coupon-form input {
  min-width: 0;
  height: 32px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .55);
  font-size: .72rem;
  text-transform: uppercase;
}

.coupon-form .admin-button,
.checkout-coupon .admin-button {
  min-height: 32px;
  padding: 7px 11px;
  border-color: rgba(20, 33, 31, .16);
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: .7rem;
}

.coupon-form p,
.checkout-coupon p {
  min-height: 18px;
  margin: 0;
  color: var(--forest);
  font-size: .7rem;
}

.coupon-form p.is-error,
.checkout-coupon p.is-error {
  color: #9a5144;
}

.checkout-coupon {
  width: min(100%, 360px);
  margin: 6px 0 14px;
  color: var(--muted);
}

.checkout-coupon .field {
  gap: 5px;
}

.checkout-coupon .field span {
  color: var(--muted);
  font-size: .68rem;
}

.checkout-coupon .field input {
  min-height: 32px;
  padding: 0 9px;
  font-size: .72rem;
  text-transform: uppercase;
}

.checkout-coupon p {
  grid-column: 1 / -1;
}

.quiet-coupon-field {
  margin: 2px 0 8px;
}

.quiet-coupon-field .field {
  margin-top: 8px;
  max-width: 260px;
}

.quiet-coupon-field .field span {
  font-size: .68rem;
  color: var(--muted);
}

.quiet-coupon-field .field input {
  min-height: 32px;
  font-size: .74rem;
  text-transform: uppercase;
}

.alternate-shipping {
  padding-top: 12px;
}

.shipping-toggle {
  margin-top: 16px;
}

.checkout-no-shipping {
  padding: 14px 16px;
  margin-bottom: 18px;
  color: var(--muted);
  background: var(--cream);
  border-radius: 10px;
  font-size: .78rem;
}

.turnstile-wrap {
  display: flex;
  min-height: 65px;
  align-items: center;
  overflow: hidden;
}

.centered-link {
  display: flex;
  width: fit-content;
  margin: 18px auto 0;
}

.cart-empty {
  padding: 70px 25px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius);
}

.checkout-layout {
  grid-template-columns: 1fr 420px;
}

.checkout-form h2 {
  margin: 12px 0 24px;
  font-size: 1.45rem;
}

.checkout-form h2:not(:first-of-type) {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.checkout-line {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  gap: 12px;
  padding-block: 11px;
  border-bottom: 1px solid #d9d2c6;
}

.checkout-line img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
}

.checkout-line span {
  font-size: .75rem;
  line-height: 1.3;
}

.secure-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .73rem;
  text-align: center;
}

.success-section {
  display: grid;
  min-height: 70vh;
  padding: 60px 20px;
  background: var(--cream);
  place-items: center;
}

.success-card,
.access-card {
  width: min(620px, 100%);
  padding: 60px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  place-items: center;
}

.success-icon svg {
  width: 30px;
}

.success-card h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.success-card > p {
  color: var(--muted);
}

.order-reference {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  margin: 30px 0;
  background: var(--cream);
  border-radius: 10px;
  font-size: .82rem;
}

.learning-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
}

.lesson-list {
  display: grid;
  gap: 12px;
}

.lesson-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.lesson-list article > span {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  place-items: center;
  font-size: .7rem;
}

.lesson-list h3 {
  margin-bottom: 8px;
}

.lesson-list p {
  margin: 0;
  color: var(--muted);
}

.access-card {
  margin-inline: auto;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: .25s ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  background: var(--cream);
  place-items: center;
}

.error-page main {
  max-width: 720px;
  text-align: center;
}

.error-page main > span {
  color: var(--coral);
  font-size: 5rem;
  font-weight: 900;
}

.error-page h1 {
  font-size: 3rem;
}

.error-page pre {
  max-height: 260px;
  padding: 15px;
  overflow: auto;
  text-align: left;
  white-space: pre-wrap;
  background: var(--white);
  border-radius: 10px;
}

.feedback-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.6fr);
  gap: 28px;
}

.feedback-context {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid rgba(22, 61, 55, .12);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--cream), #fff);
  box-shadow: var(--shadow-soft);
}

.feedback-context h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
}

.feedback-context p,
.feedback-context small {
  color: var(--muted);
}

.feedback-position-recap {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feedback-position-recap h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1rem;
}

.feedback-position-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(22, 61, 55, .12);
  border-radius: 18px;
  background: rgba(255, 253, 248, .82);
}

.feedback-position-card img {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  object-fit: cover;
  background: #fffdf8;
}

.feedback-position-card strong,
.position-choice-card strong {
  color: var(--forest);
}

.feedback-position-card small {
  display: block;
  margin: 2px 0 6px;
  color: var(--terracotta);
  font-weight: 800;
}

.feedback-position-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.feedback-form {
  display: grid;
  gap: 18px;
}

.feedback-question {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(22, 61, 55, .10);
  border-radius: 22px;
  background: #fff;
}

.feedback-question > span {
  color: var(--ink);
  font-weight: 850;
}

.feedback-question > small {
  color: var(--muted);
}

.rating-options,
.choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.rating-options label,
.choice-options label {
  cursor: pointer;
}

.rating-options input,
.choice-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-options span,
.choice-options span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--forest);
  background: #f8f5ee;
  border: 1px solid rgba(22, 61, 55, .16);
  border-radius: 999px;
  font-weight: 800;
  transition: .18s ease;
}

.rating-options span {
  width: 42px;
  padding-inline: 0;
}

.rating-options input:checked + span,
.choice-options input:checked + span {
  color: #fff;
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 10px 22px rgba(231, 111, 81, .22);
}

/* Admin */
.admin-body {
  min-height: 100vh;
  padding-left: 250px;
  background: #f1f4f1;
}

.admin-sidebar {
  position: fixed;
  z-index: 20;
  inset: 0 auto 0 0;
  display: flex;
  width: 250px;
  max-height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 25px 18px;
  scrollbar-gutter: stable;
  color: rgba(255, 255, 255, .72);
  background: #102e2b;
  flex-direction: column;
}

.admin-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  padding: 0 10px 30px;
  color: var(--white);
  font-weight: 800;
}

.admin-brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.admin-sidebar nav {
  display: grid;
  gap: 5px;
}

.admin-sidebar nav a,
.admin-sidebar-bottom a,
.admin-sidebar-bottom button {
  width: 100%;
  padding: 11px 13px;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: .82rem;
  text-align: left;
}

.admin-sidebar nav a:hover,
.admin-sidebar-bottom a:hover,
.admin-sidebar-bottom button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.admin-sidebar-bottom {
  display: grid;
  flex-shrink: 0;
  margin-top: auto;
  gap: 2px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 12px;
}

.admin-main {
  width: min(1400px, calc(100vw - 250px));
  padding: 35px 42px 70px;
}

.admin-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.admin-topbar span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-topbar h1 {
  margin: 4px 0 0;
  font-size: 2.4rem;
}

.admin-user {
  padding: 9px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stats-grid article,
.admin-panel {
  background: var(--white);
  border: 1px solid #e0e5e1;
  border-radius: 15px;
}

.stats-grid article {
  display: grid;
  padding: 23px;
  gap: 8px;
}

.stats-grid article > span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.stats-grid article > strong {
  font-size: 1.9rem;
}

.stats-grid article > small {
  color: #88938e;
  font-size: .68rem;
}

.admin-panel {
  padding: 25px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.panel-heading span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin: 3px 0 0;
  font-size: 1.45rem;
}

.admin-button {
  padding: 9px 14px;
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 700;
}

.admin-button.primary {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .78rem;
}

.admin-table th {
  padding: 10px 13px;
  color: #85908b;
  background: #f6f8f6;
  font-size: .65rem;
  letter-spacing: .06em;
  text-align: left;
  text-transform: uppercase;
}

.admin-table td {
  padding: 13px;
  border-bottom: 1px solid #edf0ed;
  vertical-align: middle;
}

.admin-table td small {
  display: block;
  color: #8b9691;
}

.admin-table td > a {
  color: var(--forest-2);
  font-weight: 700;
}

.admin-filter-bar {
  display: flex;
  align-items: end;
  padding: 14px;
  margin-bottom: 20px;
  background: #f6f8f6;
  border-radius: 12px;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-filter-bar label {
  display: grid;
  min-width: min(340px, 100%);
  gap: 5px;
}

.admin-filter-bar .compact-field {
  min-width: min(230px, 100%);
}

.admin-filter-bar label > span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.admin-filter-bar input,
.admin-filter-bar select,
.attendance-table input,
.attendance-table select {
  min-height: 39px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-items-cell {
  min-width: 220px;
  max-width: 390px;
  color: var(--muted);
}

.order-item-detail {
  display: grid;
  gap: 2px;
}

.order-item-detail + .order-item-detail {
  padding-top: 7px;
  margin-top: 7px;
  border-top: 1px solid var(--line);
}

.order-item-detail strong {
  color: var(--ink);
  font-size: .74rem;
}

.order-item-detail small {
  color: var(--coral-dark);
}

.attendance-save {
  margin-top: 18px;
}

.attendance-table {
  min-width: 980px;
}

.attendance-table td {
  vertical-align: top;
}

.attendance-person-cell {
  min-width: 270px;
}

.attendance-person-line {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(145px, auto);
  gap: 10px;
  align-items: center;
}

.attendance-person-line strong {
  color: var(--forest);
  font-size: .9rem;
}

.attendance-person-line select {
  width: 100%;
}

.compensation-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(135px, 1fr));
  gap: 7px;
  min-width: 320px;
}

.compensation-fields input,
.compensation-fields select {
  min-height: 38px;
  padding: 7px 9px;
}

.attendance-position-panel {
  margin-top: 22px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}

.attendance-position-panel .compact-heading {
  margin-bottom: 8px;
}

.attendance-position-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.attendance-position-grid .position-choice-card {
  min-height: 100%;
}

.attendance-position-grid .position-choice-card img,
.attendance-position-grid .position-icon-empty {
  width: 48px;
  height: 48px;
}

.crm-detail {
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
}

.crm-detail > *,
.crm-detail .admin-stack,
.crm-detail .admin-panel {
  min-width: 0;
}

.crm-timeline {
  display: grid;
  gap: 10px;
}

.crm-timeline > div {
  display: grid;
  padding: 13px 15px;
  background: #f6f8f6;
  border-radius: 10px;
  gap: 3px;
}

.crm-timeline span,
.crm-timeline small {
  color: var(--muted);
  font-size: .72rem;
}

.crm-position-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.crm-position-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7f8f6;
}

.crm-position-card img,
.crm-position-avatar {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--cream);
}

.crm-position-card img {
  object-fit: cover;
}

.crm-position-avatar {
  display: grid;
  place-items: center;
  color: var(--forest);
  font-family: var(--display);
  font-weight: 900;
}

.crm-position-card div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.crm-position-card strong {
  color: var(--forest);
  font-size: .9rem;
}

.crm-position-card span,
.crm-position-card small {
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.4;
}

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

.private-lesson-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.private-lesson-stats > div {
  display: grid;
  padding: 15px;
  background: #f3f7f3;
  border-radius: 12px;
  gap: 3px;
}

.private-lesson-stats strong {
  font-size: 1.25rem;
}

.private-lesson-stats span {
  color: var(--muted);
  font-size: .68rem;
}

.private-lesson-list {
  display: grid;
  gap: 10px;
}

.private-lesson-row {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr repeat(2, .8fr) .7fr .65fr;
  gap: 8px;
  padding: 13px;
  background: #f7f8f6;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.private-lesson-row label {
  display: grid;
  gap: 5px;
}

.private-lesson-row label > span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
}

.private-lesson-row input,
.private-lesson-row select {
  min-width: 0;
  min-height: 38px;
  padding: 7px 8px;
  font-size: .7rem;
}

.private-lesson-note {
  grid-column: 1 / -2;
}

.private-lesson-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 6px;
}

.private-lesson-add {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.private-lesson-add summary {
  color: var(--forest);
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}

.private-lesson-add form {
  display: grid;
  gap: 13px;
  padding-top: 16px;
}

.newsletter-composer form {
  display: grid;
  gap: 15px;
}

.newsletter-recipient-count {
  padding: 8px 12px;
  color: #1b5e45;
  background: #e6f4ec;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.newsletter-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  align-items: start;
  gap: 26px;
}

.newsletter-builder-fields {
  display: grid;
  min-width: 0;
  gap: 15px;
}

.newsletter-offer-picker {
  display: grid;
  gap: 13px;
  padding-top: 8px;
}

.newsletter-subheading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.newsletter-subheading span {
  color: var(--coral-dark);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newsletter-subheading h3 {
  margin: 3px 0 0;
  font-size: 1.1rem;
}

.newsletter-subheading small {
  color: var(--muted);
  white-space: nowrap;
}

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

.newsletter-offer-option {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 9px;
  background: #f7f8f6;
  border: 1px solid var(--line);
  border-radius: 13px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.newsletter-offer-option.is-selected {
  background: #eff8f2;
  border-color: #73aa8b;
  box-shadow: inset 0 0 0 1px #73aa8b;
}

.newsletter-offer-option img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  background: var(--cream);
  border-radius: 9px;
}

.newsletter-offer-option > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.newsletter-offer-option span {
  color: var(--coral-dark);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.newsletter-offer-option strong,
.newsletter-offer-option small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsletter-offer-option strong {
  font-size: .78rem;
}

.newsletter-offer-option small {
  color: var(--muted);
  font-size: .68rem;
}

.newsletter-offer-option .admin-button {
  grid-column: 1 / -1;
  justify-content: center;
  width: 100%;
}

.newsletter-offer-note {
  display: none;
  grid-column: 1 / -1;
  gap: 5px;
}

.newsletter-offer-option.is-selected .newsletter-offer-note {
  display: grid;
}

.newsletter-offer-note span {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.newsletter-offer-note textarea {
  min-height: 72px;
  padding: 9px;
  resize: vertical;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  font: inherit;
  font-size: .7rem;
}

.newsletter-live-preview {
  position: sticky;
  top: 92px;
  min-width: 0;
  padding: 14px;
  background: #efe9dc;
  border-radius: 22px;
}

.newsletter-preview-toolbar {
  display: flex;
  justify-content: space-between;
  padding: 2px 4px 10px;
  color: #53615b;
  font-size: .68rem;
  font-weight: 800;
}

.newsletter-preview-toolbar small {
  font-weight: 500;
}

.newsletter-preview {
  overflow: hidden;
  color: #18342c;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(20, 42, 35, .14);
}

.newsletter-preview-brand {
  padding: 17px 22px;
  color: #fff;
  background: #183f37;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.newsletter-preview-brand img {
  display: block;
  width: 126px;
  height: auto;
}

.newsletter-preview-hero {
  position: relative;
  padding: 30px 24px;
  background: #dceadb;
}

.newsletter-preview-hero::after {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 48px;
  height: 48px;
  content: "A";
  color: #fff;
  background: #e15a4c;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 48px;
  text-align: center;
}

.newsletter-preview-hero span {
  display: inline-block;
  padding: 6px 10px;
  color: #b74639;
  background: #fff;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newsletter-preview-hero h3 {
  margin: 8px 0 0;
  padding-right: 56px;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1;
}

.newsletter-preview-content {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.newsletter-preview-content p {
  margin: 0 0 10px;
  color: #52625c;
  font-size: .76rem;
  line-height: 1.55;
}

.newsletter-preview-content > small {
  padding-top: 14px;
  color: #89928e;
  border-top: 1px solid #e7e9e7;
  font-size: .58rem;
}

[data-newsletter-preview-offers] {
  display: grid;
  gap: 9px;
}

[data-newsletter-preview-offers] article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  background: #fbfaf7;
  border: 1px solid #e7ece8;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(20, 42, 35, .07);
}

[data-newsletter-preview-offers] img {
  width: 72px;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
}

[data-newsletter-preview-offers] article > div {
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 9px 10px 9px 0;
}

[data-newsletter-preview-offers] span {
  color: #b74639;
  font-size: .52rem;
  font-weight: 800;
  text-transform: uppercase;
}

[data-newsletter-preview-offers] strong {
  font-size: .76rem;
}

[data-newsletter-preview-offers] p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: .62rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

[data-newsletter-preview-offers] b {
  font-size: .68rem;
}

.newsletter-preview-custom {
  color: #344941 !important;
  font-style: italic;
}

.newsletter-preview-offer-cta {
  width: fit-content;
  padding: 7px 10px;
  margin-top: 3px;
  color: #fff;
  background: #e15a4c;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 800;
}

[data-newsletter-preview-cta] {
  width: fit-content;
  padding: 10px 15px;
  color: #fff;
  background: #e15a4c;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
}

.newsletter-preview-socials {
  display: flex;
  gap: 7px;
}

.newsletter-preview-socials span {
  padding: 7px 10px;
  color: #173b34;
  background: #e8f0e9;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 800;
}

.newsletter-test-box {
  display: grid;
  margin-top: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 14px;
  gap: 10px;
}

.newsletter-test-box .field {
  margin: 0;
}

.newsletter-test-box small {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.5;
}

.analytics-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.analytics-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.analytics-toolbar > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.analytics-chart {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 230px;
  padding: 20px 8px 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.analytics-bar {
  position: relative;
  display: grid;
  align-items: end;
  flex: 0 0 24px;
  min-width: 24px;
  height: 100%;
  padding-bottom: 24px;
}

.analytics-bar i {
  position: absolute;
  right: 2px;
  bottom: 24px;
  left: 2px;
  display: block;
  min-height: 4px;
  background: linear-gradient(180deg, var(--coral), #efc85e);
  border-radius: 6px 6px 2px 2px;
}

.analytics-bar span {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .52rem;
  text-align: center;
  white-space: nowrap;
}

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

.analytics-ranked-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.analytics-ranked-list > div {
  display: grid;
  gap: 7px;
}

.analytics-ranked-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .75rem;
}

.analytics-ranked-list b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analytics-ranked-list em {
  color: var(--muted);
  font-style: normal;
}

.analytics-ranked-list i {
  display: block;
  height: 6px;
  background: #70a389;
  border-radius: 999px;
}

.analytics-height-5 { height: 5%; }
.analytics-height-10 { height: 10%; }
.analytics-height-15 { height: 15%; }
.analytics-height-20 { height: 20%; }
.analytics-height-25 { height: 25%; }
.analytics-height-30 { height: 30%; }
.analytics-height-35 { height: 35%; }
.analytics-height-40 { height: 40%; }
.analytics-height-45 { height: 45%; }
.analytics-height-50 { height: 50%; }
.analytics-height-55 { height: 55%; }
.analytics-height-60 { height: 60%; }
.analytics-height-65 { height: 65%; }
.analytics-height-70 { height: 70%; }
.analytics-height-75 { height: 75%; }
.analytics-height-80 { height: 80%; }
.analytics-height-85 { height: 85%; }
.analytics-height-90 { height: 90%; }
.analytics-height-95 { height: 95%; }
.analytics-height-100 { height: 100%; }
.analytics-width-5 { width: 5%; }
.analytics-width-10 { width: 10%; }
.analytics-width-15 { width: 15%; }
.analytics-width-20 { width: 20%; }
.analytics-width-25 { width: 25%; }
.analytics-width-30 { width: 30%; }
.analytics-width-35 { width: 35%; }
.analytics-width-40 { width: 40%; }
.analytics-width-45 { width: 45%; }
.analytics-width-50 { width: 50%; }
.analytics-width-55 { width: 55%; }
.analytics-width-60 { width: 60%; }
.analytics-width-65 { width: 65%; }
.analytics-width-70 { width: 70%; }
.analytics-width-75 { width: 75%; }
.analytics-width-80 { width: 80%; }
.analytics-width-85 { width: 85%; }
.analytics-width-90 { width: 90%; }
.analytics-width-95 { width: 95%; }
.analytics-width-100 { width: 100%; }

.newsletter-preview.theme-coral .newsletter-preview-brand {
  background: #6c302c;
}

.newsletter-preview.theme-coral .newsletter-preview-hero {
  background: #f5cbc3;
}

.newsletter-preview.theme-sunny .newsletter-preview-brand {
  color: #26372e;
  background: #efc85e;
}

.newsletter-preview.theme-sunny .newsletter-preview-hero {
  background: #fff1c2;
}

.admin-consent-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .72rem;
}

.admin-consent-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--forest);
}

.newsletter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(520px, calc(100% - 44px));
  padding: 22px;
  color: #fff;
  background: #133b34;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(10, 31, 27, .28);
  gap: 16px;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .8rem;
  line-height: 1.55;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-secondary-button,
.cookie-text-button {
  min-height: 42px;
  padding: 10px 15px;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  font: inherit;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-modal .cookie-secondary-button {
  color: var(--ink);
  border-color: var(--line);
}

.cookie-text-button {
  padding-inline: 7px;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 25, 21, .64);
  backdrop-filter: blur(7px);
}

.cookie-modal > section {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(25px, 5vw, 42px);
  background: #fffdf8;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(7, 25, 21, .3);
}

.cookie-modal h2 {
  margin: 8px 0 10px;
}

.cookie-modal > section > p {
  color: var(--muted);
  line-height: 1.65;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ink);
  background: #edf0ec;
  border: 0;
  border-radius: 50%;
  place-items: center;
  font-size: 1.25rem;
  cursor: pointer;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.cookie-category > div {
  display: grid;
  gap: 4px;
}

.cookie-category span {
  color: var(--muted);
  font-size: .76rem;
}

.cookie-category b {
  padding: 6px 9px;
  color: #166043;
  background: #dff3e8;
  border-radius: 999px;
  font-size: .62rem;
  white-space: nowrap;
}

.cookie-category.is-disabled b {
  color: #666e6a;
  background: #e9ecea;
}

.cookie-switch {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 26px;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
}

.cookie-switch i {
  position: absolute;
  inset: 0;
  background: #cbd1ce;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease;
}

.cookie-switch i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .18);
  content: "";
  transition: transform .18s ease;
}

.cookie-switch input:checked + i {
  background: var(--forest);
}

.cookie-switch input:checked + i::after {
  transform: translateX(20px);
}

.cookie-switch input:focus-visible + i {
  outline: 3px solid rgba(225, 90, 76, .35);
  outline-offset: 2px;
}

.cookie-modal-actions {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cookie-policy {
  display: grid;
  max-width: 920px;
  gap: 22px;
}

.cookie-policy-card {
  padding: clamp(24px, 5vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cookie-policy-card h2 {
  margin-top: 0;
}

.cookie-policy-card p,
.cookie-policy-card li {
  color: var(--muted);
  line-height: 1.7;
}

.cookie-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

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

.cookie-table th,
.cookie-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
}

.cookie-table th {
  background: #eef3ee;
}

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

body.cookie-modal-open {
  overflow: hidden;
}

.status-vip {
  color: #744d00;
  background: #fff0bd;
}

.status-inactive,
.status-unsubscribed {
  color: #6f7773;
  background: #ecefed;
}

.table-product {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-product img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  background: var(--cream);
  border-radius: 8px;
}

.status {
  display: inline-flex;
  padding: 5px 9px;
  color: #5e6964;
  background: #e9eeea;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
}

.status-published,
.status-paid,
.status-completed {
  color: #176140;
  background: #dff3e8;
}

.status-pending,
.status-processing {
  color: #77510a;
  background: #fbefcf;
}

.status-archived,
.status-cancelled,
.status-refunded {
  color: #7a3733;
  background: #f6e3e0;
}

.admin-form-layout,
.admin-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 20px;
}

.admin-stack {
  display: grid;
  gap: 20px;
}

.centered-admin-link {
  display: block;
  margin-top: 12px;
  text-align: center;
}

.admin-button.danger {
  color: #8b3029;
  background: #fff6f4;
  border-color: #edcbc6;
}

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

.inline-action-form {
  display: inline;
  margin: 0;
}

.inline-action-form button {
  padding: 0;
  color: var(--terracotta);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.quick-action-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.quick-action-panel span {
  color: var(--terracotta);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quick-action-panel h2 {
  margin: 3px 0 6px;
}

.variant-editor {
  display: grid;
  gap: 18px;
}

.variant-list {
  display: grid;
  gap: 8px;
}

.variant-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.4fr) minmax(90px, .6fr) 100px 80px minmax(160px, 1fr) 105px auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: #f7f9f7;
  border-radius: 10px;
}

.variant-row input,
.variant-row select,
.inline-form input,
.section-heading-form input,
.lesson-admin-row input,
.lesson-admin-row textarea,
.inquiry-list select {
  width: 100%;
  min-height: 39px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: .75rem;
}

.variant-add {
  border: 1px dashed #bac6bf;
}

.alternative-row {
  grid-template-columns: minmax(220px, 1fr) 130px 115px auto auto;
}

.alternative-row.variant-add {
  grid-template-columns: minmax(220px, 1fr) 130px 115px auto;
}

.initial-alternatives {
  display: grid;
  margin-bottom: 24px;
  gap: 8px;
}

.initial-alternative-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 8px;
}

.initial-alternative-row input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-help {
  max-width: 760px;
  margin: -8px 0 16px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.panel-heading .panel-help {
  margin: 8px 0 0;
}

.position-picker-block {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 20px;
  border: 1px solid rgba(22, 61, 55, .12);
  border-radius: 24px;
  background: #fffaf0;
}

.position-picker-block h2 {
  margin: 0;
}

.position-search-field {
  max-width: 420px;
  margin: 0;
}

.position-picker-group {
  border: 1px solid rgba(22, 61, 55, .1);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.position-picker-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--forest);
  cursor: pointer;
  font-weight: 900;
}

.position-picker-group summary span {
  color: var(--muted);
  font-size: .84rem;
}

.position-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  max-height: 430px;
  overflow: auto;
  padding: 0 14px 14px;
}

.position-choice {
  position: relative;
}

.position-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.position-choice-card {
  display: grid;
  gap: 8px;
  height: 100%;
  padding: 10px;
  border: 2px solid rgba(22, 61, 55, .08);
  border-radius: 16px;
  background: #fffdf8;
  cursor: pointer;
  transition: .18s ease;
}

.position-choice-card img,
.position-icon-empty {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  background: #fff8ea;
}

.position-icon-empty {
  display: grid;
  place-items: center;
  color: var(--forest);
  font-weight: 900;
}

.position-choice input:checked + .position-choice-card {
  border-color: var(--terracotta);
  box-shadow: 0 12px 28px rgba(231, 111, 81, .18);
  transform: translateY(-1px);
}

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

.admin-position-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(22, 61, 55, .12);
  border-radius: 24px;
  background: #fffdf8;
}

.position-card-preview img,
.position-card-preview span {
  width: 150px;
  height: 150px;
  border-radius: 22px;
  object-fit: cover;
  background: #fff8ea;
}

.position-card-preview span {
  display: grid;
  place-items: center;
  color: var(--forest);
  font-weight: 900;
}

.position-card-fields {
  display: grid;
  gap: 14px;
}

.reminder-template-field small {
  display: block;
  margin: -4px 0 10px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.5;
}

.image-path-field img {
  width: 100%;
  max-height: 220px;
  margin-bottom: 10px;
  object-fit: cover;
  background: #eef3ef;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.image-path-field em {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .78rem;
  font-style: normal;
}

.image-remove-check {
  margin-top: 8px;
  margin-bottom: 0;
}

.variant-image-control {
  display: grid;
  gap: 6px;
}

.variant-image-control img {
  width: 100%;
  height: 54px;
  object-fit: cover;
  background: #eef3ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.variant-image-control > span {
  display: grid;
  min-height: 30px;
  place-items: center;
  color: var(--muted);
  background: #eef3ef;
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-size: .68rem;
}

.variant-image-control label {
  color: var(--muted);
  font-size: .68rem;
}

.admin-info-box {
  display: grid;
  padding: 13px 14px;
  margin-bottom: 19px;
  color: var(--forest);
  background: #edf5f0;
  border: 1px solid #d4e7dc;
  border-radius: 10px;
  gap: 3px;
}

.admin-info-box span {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}

.form-panel h2 {
  margin: 5px 0 22px;
  font-size: 1.25rem;
}

.form-panel h2:not(:first-child) {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.settings-form {
  max-width: 950px;
}

.session-admin-list {
  display: grid;
  gap: 10px;
}

.session-admin-list article {
  display: grid;
  grid-template-columns: 52px 1fr auto auto;
  align-items: center;
  gap: 13px;
  padding: 12px;
  background: #f7f9f7;
  border-radius: 10px;
}

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

.course-builder {
  display: grid;
  gap: 18px;
}

.course-section-admin {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.section-heading-form {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 80px auto auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: #edf3ef;
}

.section-heading-form input:first-of-type {
  font-weight: 700;
}

.lesson-admin-list {
  display: grid;
  padding: 12px;
  gap: 9px;
}

.lesson-admin-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr 70px 80px auto auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  background: #f8faf8;
  border-radius: 9px;
}

.lesson-admin-row textarea {
  resize: vertical;
}

.lesson-add-row {
  border: 1px dashed #bac6bf;
}

.compact-check {
  color: var(--muted);
  font-size: .68rem;
  white-space: nowrap;
}

.compact-add-form h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

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

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

.inquiry-list article {
  display: grid;
  grid-template-columns: 210px 1fr 230px;
  gap: 20px;
  padding: 17px;
  background: #f7f9f7;
  border-left: 3px solid transparent;
  border-radius: 10px;
}

.inquiry-list article.is-new {
  background: #f1f7f3;
  border-left-color: var(--forest-2);
}

.inquiry-list article > div:first-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.inquiry-list a,
.inquiry-list article > div:last-child > span {
  color: var(--muted);
  font-size: .7rem;
}

.inquiry-list p {
  margin: 0;
  font-size: .8rem;
  white-space: pre-wrap;
}

.inquiry-list article > div:last-child {
  display: grid;
  align-content: start;
  gap: 8px;
}

.inquiry-list form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.subscriber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.newsletter-segment-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 18px;
}

.newsletter-segment-stats span {
  padding: 8px 11px;
  color: var(--forest-2);
  background: #edf6f0;
  border: 1px solid #d8e9dd;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.newsletter-queue-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  margin-bottom: 16px;
  background: #fff8e6;
  border: 1px solid #f1dfad;
  border-radius: 14px;
}

.newsletter-queue-box.is-empty {
  background: #f6f8f6;
  border-color: var(--line);
}

.newsletter-queue-box div {
  display: grid;
  gap: 3px;
}

.newsletter-queue-box small {
  color: var(--muted);
}

.cron-settings-card {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 14px;
  background: #f6f8f6;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.cron-settings-card > div {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(21, 61, 55, .09);
}

.cron-settings-card > div:last-child {
  border-bottom: 0;
}

.cron-settings-card span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.cron-settings-card strong {
  color: var(--ink);
}

.cron-url {
  display: block;
  overflow-wrap: anywhere;
  padding: 12px 13px;
  margin: 0;
  color: var(--forest);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .78rem;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .cron-settings-card > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.subscriber-drawer {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.subscriber-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  background: #f7f9f7;
  cursor: pointer;
  font-weight: 800;
}

.subscriber-drawer summary small {
  color: var(--muted);
  font-weight: 600;
}

.subscriber-grid > div {
  display: grid;
  gap: 7px;
  padding: 12px;
  background: #f7f9f7;
  border-radius: 8px;
}

.subscriber-grid span {
  font-size: .76rem;
}

.subscriber-grid small {
  color: var(--muted);
  font-size: .65rem;
}

.subscriber-grid form {
  justify-self: start;
}

.subscriber-grid em {
  color: var(--muted);
  font-size: .68rem;
  font-style: normal;
}

.date-tile {
  display: grid;
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  place-items: center;
  line-height: 1;
}

.date-tile strong {
  font-size: 1.1rem;
}

.date-tile span {
  color: var(--muted);
  font-size: .6rem;
  text-transform: uppercase;
}

.session-admin-list article > div:nth-child(2) {
  display: grid;
}

.session-admin-list article > div:nth-child(2) span {
  color: var(--muted);
  font-size: .68rem;
}

.capacity {
  padding: 6px 9px;
  background: var(--mint);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 800;
}

.order-lines {
  border-top: 1px solid var(--line);
}

.order-lines > div {
  display: flex;
  justify-content: space-between;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}

.panel-empty,
.muted {
  color: var(--muted);
}

.login-body {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(169, 196, 183, .25), transparent 30%),
    var(--cream);
  place-items: center;
}

.login-card {
  width: min(440px, 100%);
  padding: 44px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.login-card > img {
  width: 90px;
  margin: 0 auto 26px;
}

.login-card h1 {
  margin-bottom: 12px;
  font-size: 2.35rem;
}

.login-card > p {
  margin-bottom: 28px;
  color: var(--muted);
}

.login-card > small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
}

.dating-hero {
  padding-block: clamp(70px, 10vw, 125px);
  background:
    radial-gradient(circle at 82% 22%, rgba(241, 184, 75, .2) 0 120px, transparent 121px),
    linear-gradient(135deg, var(--cream), var(--paper));
  border-bottom: 1px solid var(--line);
}

.dating-hero-grid,
.dating-create-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}

.dating-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
}

.dating-hero p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.08rem;
}

.dating-note {
  max-width: 390px;
  padding: 34px;
  justify-self: end;
  color: var(--white);
  background: var(--forest);
  border-radius: 42px 18px 42px 18px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.dating-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.45rem;
}

.dating-note p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.dating-message {
  margin-top: 24px;
}

.dating-layout {
  display: grid;
  grid-template-columns: .42fr 1fr;
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
}

.dating-layout > div:first-child {
  position: sticky;
  top: 30px;
}

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

.acro-profile-card {
  display: grid;
  align-content: start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px 14px 24px 14px;
  box-shadow: 0 16px 45px rgba(19, 58, 55, .06);
}

.profile-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 800;
}

.profile-photo {
  object-fit: cover;
}

.field small {
  color: var(--muted);
  font-size: .7rem;
}

.profile-card-copy h3 {
  margin-block: 8px 4px;
  font-size: 1.65rem;
}

.profile-location {
  color: var(--coral);
  font-size: .78rem;
  font-weight: 800;
}

.profile-availability {
  padding: 12px 14px;
  margin-top: 18px;
  background: var(--cream);
  border-radius: 12px;
  font-size: .78rem;
}

.profile-contact,
.profile-manage-inline {
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.profile-manage-inline {
  margin-top: 12px;
  padding-top: 12px;
  border-top-style: dashed;
}

.profile-contact summary,
.profile-manage-inline summary {
  color: var(--forest);
  cursor: pointer;
  font-weight: 800;
}

.profile-manage-inline summary {
  color: var(--muted);
  font-size: .82rem;
}

.profile-contact form {
  padding-top: 20px;
}

.profile-manage-inline .card-form {
  display: grid;
  gap: 14px;
  padding: 18px 0 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.profile-manage-inline .form-row {
  grid-template-columns: 1fr;
  gap: 12px;
}

.profile-manage-inline .field input,
.profile-manage-inline .field select,
.profile-manage-inline .field textarea {
  font-size: .82rem;
}

.dating-create {
  color: var(--white);
  background: var(--forest);
}

.dating-create-grid {
  align-items: start;
}

.dating-create h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.dating-create-grid > div > p {
  color: rgba(255, 255, 255, .72);
}

.profile-manage-section {
  padding-top: 0;
}

.profile-manage-card {
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 45px rgba(33, 43, 38, .08);
}

.profile-manage-card > summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 1rem;
  font-weight: 900;
}

.profile-manage-card .card-form {
  padding: 22px 0 0;
  background: transparent;
  box-shadow: none;
}

.form-help {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.submit-processing-note {
  margin: -2px 0 0;
  text-align: center;
}

.upload-status {
  display: block;
  margin-top: 6px;
  color: var(--forest);
  font-weight: 700;
}

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

.danger-button {
  border-color: rgba(154, 81, 68, .25);
  color: #9a5144;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.admin-inline-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 90px 1fr auto;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: .8rem;
  }

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

  .hero-visual > img {
    right: -28%;
    width: 72vw;
  }

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

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

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr 330px;
    gap: 25px;
  }

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

  .newsletter-builder-layout {
    grid-template-columns: 1fr;
  }

  .newsletter-live-preview {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 30px, 720px);
  }

  .site-header {
    min-height: 74px;
    grid-template-columns: 1fr auto auto;
    padding-inline: 18px;
  }

  .brand {
    position: static;
    width: 68px;
    height: 68px;
  }

  .menu-toggle {
    z-index: 22;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    gap: 4px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    background: var(--ink);
  }

  .main-nav {
    position: fixed;
    z-index: 20;
    inset: 0 auto 0 -18px;
    display: flex;
    width: 100vw;
    height: 100vh;
    padding: 110px 30px 40px;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: var(--paper);
    grid-column: 1 / -1;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: .25s ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 10px;
    font-size: 1.3rem;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions > .icon-link:not(.cart-link) {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    margin-left: 7px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero {
    background:
      repeating-linear-gradient(0deg, rgba(19, 58, 55, .045) 0 1px, transparent 1px 7px),
      var(--paper);
  }

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

  .hero-copy {
    padding: 70px 0 25px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-visual > img {
    top: auto;
    right: -9%;
    bottom: -3px;
    width: min(720px, 108vw);
  }

  .hero-orbit {
    left: 5%;
    width: 340px;
    height: 340px;
  }

  .floating-note {
    top: auto;
    right: 0;
    bottom: 25px;
  }

  .split-heading,
  .about-grid,
  .newsletter-section,
  .page-hero-grid,
  .audience-grid,
  .faq-grid,
  .flow-grid,
  .certificate-grid,
  .product-grid,
  .details-grid,
  .dating-hero-grid,
  .dating-create-grid,
  .dating-layout,
  .content-grid,
  .contact-grid,
  .contact-compact-grid,
  .cart-layout,
  .checkout-layout,
  .learning-layout {
    grid-template-columns: 1fr;
  }

  .dating-note {
    justify-self: start;
    transform: none;
  }

  .dating-layout > div:first-child {
    position: static;
  }

  .event-hero-grid,
  .event-proof-grid,
  .event-inquiry {
    grid-template-columns: 1fr;
  }

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

  .event-inquiry-copy {
    position: static;
  }

  .split-heading {
    gap: 18px;
  }

  .split-heading > .text-link {
    justify-self: start;
  }

  .choice-card {
    min-height: 380px;
  }

  .about-image {
    width: min(560px, 90%);
  }

  .image-label {
    right: -12%;
  }

  .newsletter-section {
    gap: 30px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-main > div:last-child {
    grid-column: 2;
  }

  .page-hero-grid img {
    max-height: 360px;
  }

  .audience-grid {
    gap: 50px;
  }

  .audience-image {
    order: -1;
  }

  .flow-grid > div {
    position: static;
  }

  .certificate-card {
    max-width: 290px;
    margin-inline: auto;
  }

  .audience-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-info {
    max-width: 640px;
  }

  .order-summary {
    position: static;
  }

  .admin-body {
    padding: 0;
  }

  .admin-sidebar {
    position: static;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .admin-sidebar nav {
    display: flex;
    flex-wrap: wrap;
  }

  .admin-sidebar-bottom {
    display: none;
  }

  .admin-main {
    width: 100%;
    padding: 28px 18px 60px;
  }

  .admin-form-layout,
  .admin-two-col,
  .crm-detail {
    grid-template-columns: 1fr;
  }

  .variant-row,
  .alternative-row,
  .lesson-admin-row {
    grid-template-columns: 1fr 1fr;
  }

  .quick-action-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading-form,
  .inquiry-list article {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 580px) {
  h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: 2.35rem;
  }

  .section {
    padding-block: 72px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-visual > img {
    right: -31%;
    width: 135vw;
  }

  .hero-orbit {
    left: -20%;
  }

  .floating-note {
    right: 0;
    bottom: 15px;
    width: 210px;
  }

  .choice-grid,
  .offer-grid,
  .acro-profile-grid,
  .steps-grid,
  .feature-grid,
  .audience-check-grid,
  .footer-main,
  .form-row,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .choice-card h3 {
    margin-top: 200px;
  }

  .steps-grid {
    gap: 1px;
  }

  .steps-grid > div {
    min-height: 220px;
  }

  .newsletter-section {
    width: calc(100% - 20px);
    padding: 38px 22px;
    margin-block: 55px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    padding: 8px;
    border-radius: 16px;
  }

  .newsletter-form-main,
  .newsletter-form-actions {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .newsletter-form input,
  .newsletter-form select {
    min-height: 48px;
    border-radius: 10px;
  }

  .newsletter-form .button {
    width: 100%;
    border-radius: 10px;
  }

  .checkout-coupon > div,
  .coupon-form form {
    grid-template-columns: 1fr;
  }

  .newsletter-consent {
    padding-inline: 2px;
  }

  .footer-main {
    gap: 25px;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .page-hero {
    padding-block: 65px;
  }

  .empty-state {
    padding: 45px 22px;
  }

  .feature-grid > div > span {
    margin-bottom: 28px;
  }

  .image-sticker {
    right: -4px;
    bottom: -28px;
    width: 108px;
    height: 108px;
    font-size: .84rem;
  }

  .audience-hero {
    padding-block: 58px 80px;
  }

  .flow-steps li {
    padding: 19px;
    grid-template-columns: 40px 1fr;
  }

  .flow-steps li > span {
    width: 38px;
    height: 38px;
  }

  .certificate-card {
    padding: 8px;
    box-shadow: 9px 11px 0 var(--sage), var(--shadow);
  }

  .certificate-card span {
    right: 14px;
    bottom: 14px;
  }

  .audience-cta {
    width: calc(100% - 20px);
    padding: 38px 24px;
    margin-block: 55px;
  }

  .faq-grid {
    gap: 35px;
  }

  .product-section {
    padding-top: 35px;
  }

  .product-actions {
    grid-template-columns: 70px 1fr;
  }

  .event-formats {
    grid-template-columns: 1fr;
  }

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

  .contact-compact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 55px;
  }

  .event-hero-note {
    right: 10px;
  }

  .card-form {
    padding: 22px;
  }

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

  .feedback-context {
    position: static;
  }

  .cart-item {
    grid-template-columns: 85px 1fr;
  }

  .cart-item img {
    width: 85px;
    height: 85px;
  }

  .cart-item-controls {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    justify-items: start;
  }

  .success-card,
  .access-card {
    padding: 40px 22px;
  }

  .admin-topbar {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .variant-row,
  .alternative-row,
  .lesson-admin-row,
  .inline-form,
  .initial-alternative-row,
  .subscriber-grid {
    grid-template-columns: 1fr;
  }

  .attendance-table-wrap {
    overflow: visible;
  }

  .attendance-table {
    min-width: 0;
    border-spacing: 0 12px;
  }

  .attendance-table thead {
    display: none;
  }

  .attendance-table,
  .attendance-table tbody,
  .attendance-table tr,
  .attendance-table td {
    display: block;
    width: 100%;
  }

  .attendance-table tr {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
  }

  .attendance-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(20, 33, 31, .08);
  }

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

  .attendance-table td::before {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    content: attr(data-label);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
  }

  .attendance-person-cell::before {
    display: none !important;
  }

  .attendance-person-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .attendance-person-line strong {
    font-size: 1rem;
  }

  .attendance-person-line select,
  .attendance-table input,
  .attendance-table select {
    width: 100%;
    min-height: 44px;
  }

  .compensation-fields {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .attendance-position-panel {
    padding: 18px;
  }

  .attendance-position-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .attendance-position-grid .position-choice-card {
    padding: 12px;
  }

  .attendance-position-grid .position-choice-card img,
  .attendance-position-grid .position-icon-empty {
    width: 42px;
    height: 42px;
  }

  .quick-action-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-position-card,
  .feedback-position-card {
    grid-template-columns: 1fr;
  }

  .position-card-preview img,
  .position-card-preview span {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .login-card {
    padding: 32px 24px;
  }

  .newsletter-offer-grid {
    grid-template-columns: 1fr;
  }

  .private-lesson-stats,
  .private-lesson-row {
    grid-template-columns: 1fr;
  }

  .private-lesson-note {
    grid-column: auto;
  }

  .private-lesson-actions {
    justify-content: flex-start;
  }

  .newsletter-subheading,
  .newsletter-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .analytics-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 18px;
    border-radius: 17px;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner-actions > *,
  .cookie-modal-actions > * {
    justify-content: center;
    width: 100%;
  }

  .cookie-category {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

  .content-gallery figure {
    min-height: 170px;
  }
}
