:root {
  --ste-coral: #eb8e67;
  --ste-coral-dark: #cf7350;
  --ste-peach: #f6dcc6;
  --ste-sand: #e9d2b4;
  --ste-ivory: #fffbf7;
  --ste-paper: #fffefd;
  --ste-slate: #505b6d;
  --ste-ink: #1f2730;
  --ste-muted: #68717e;
  --ste-teal: #1282a5;
  --ste-deep-teal: #0a617c;
  --ste-sage: #6f8a77;
  --ste-line: rgba(31, 39, 48, .14);
  --ste-soft-line: rgba(31, 39, 48, .08);
  --ste-shadow: 0 24px 60px rgba(31, 39, 48, .10);
  --ste-shadow-soft: 0 12px 36px rgba(31, 39, 48, .08);
  --ste-radius: 18px;
  --ste-radius-lg: 32px;
  --ste-container: 1180px;
  --ste-content: 840px;
  --ste-narrow: 720px;
  --ste-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ste-serif: Georgia, "Times New Roman", Times, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ste-ivory);
  color: var(--ste-ink);
  font-family: var(--ste-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.ste-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ste-deep-teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ste-coral-dark); }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--ste-peach); color: var(--ste-ink); }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .55em;
  color: var(--ste-ink);
  font-family: var(--ste-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.25rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
h4 { font-size: 1.35rem; }
p { margin: 0 0 1.25em; }
ul, ol { margin-top: 0; }
blockquote { margin: 0; }

.screen-reader-text,
.ste-skip-link:not(:focus) {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.ste-skip-link:focus {
  position: fixed;
  z-index: 100000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ste-ink);
  color: white;
  border-radius: 8px;
}

.ste-container {
  width: min(calc(100% - 48px), var(--ste-container));
  margin-inline: auto;
}
.ste-container--content { max-width: var(--ste-content); }
.ste-container--narrow { max-width: var(--ste-narrow); }
.ste-main { min-height: 55vh; overflow: clip; }
.ste-section { padding: clamp(74px, 9vw, 132px) 0; }
.ste-eyebrow {
  margin-bottom: 20px;
  color: var(--ste-deep-teal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.25;
  text-transform: uppercase;
}
.ste-lead { max-width: 720px; color: var(--ste-slate); font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.55; }
.ste-lead-small { color: var(--ste-slate); font-size: 1.18rem; line-height: 1.55; }
.ste-rich-text { color: var(--ste-slate); font-size: 1.08rem; }
.ste-rich-text p:last-of-type { margin-bottom: 28px; }

.ste-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--ste-coral);
  border-radius: 999px;
  background: var(--ste-coral);
  color: #fff;
  font-size: .95rem;
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ste-button:hover { transform: translateY(-2px); border-color: var(--ste-coral-dark); background: var(--ste-coral-dark); color: #fff; box-shadow: 0 10px 24px rgba(207, 115, 80, .24); }
.ste-button:focus-visible, .ste-text-link:focus-visible, .ste-menu a:focus-visible { outline: 3px solid rgba(18,130,165,.35); outline-offset: 4px; }
.ste-button--small { min-height: 42px; padding: 11px 19px; font-size: .84rem; }
.ste-button--ghost { border-color: var(--ste-line); background: transparent; color: var(--ste-ink); }
.ste-button--ghost:hover { border-color: var(--ste-ink); background: var(--ste-ink); color: #fff; box-shadow: none; }
.ste-button--dark { border-color: var(--ste-ink); background: var(--ste-ink); }
.ste-button--dark:hover { border-color: var(--ste-deep-teal); background: var(--ste-deep-teal); }
.ste-button--light { border-color: #fff; background: #fff; color: var(--ste-ink); }
.ste-button--light:hover { border-color: var(--ste-ivory); background: var(--ste-ivory); color: var(--ste-ink); }
.ste-button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.ste-text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--ste-ink); font-weight: 750; text-decoration: none; }
.ste-text-link span { transition: transform .18s ease; }
.ste-text-link:hover { color: var(--ste-deep-teal); }
.ste-text-link:hover span { transform: translateX(3px); }

/* Header */
.ste-site-header {
  position: sticky;
  z-index: 999;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 251, 247, .92);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.ste-site-header.is-scrolled { border-color: var(--ste-soft-line); background: rgba(255, 251, 247, .97); box-shadow: 0 8px 30px rgba(31,39,48,.045); }
.ste-header-inner { min-height: 92px; display: grid; grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr); align-items: center; gap: 26px; }
.ste-brand { min-width: 0; }
.ste-brand-link { display: inline-flex; align-items: center; gap: 12px; color: var(--ste-ink); text-decoration: none; }
.ste-brand-link:hover { color: var(--ste-ink); }
.ste-logo { width: auto; max-width: 190px; max-height: 64px; object-fit: contain; }
.ste-brand-mark { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 14px 5px 14px 5px; background: var(--ste-coral); color: #fff; font-family: var(--ste-serif); font-size: 1.5rem; }
.ste-brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.ste-brand-copy strong { font-size: 1.05rem; letter-spacing: .03em; text-transform: uppercase; }
.ste-brand-copy small { margin-top: 4px; color: var(--ste-slate); font-size: .72rem; }
.ste-primary-nav { justify-self: center; }
.ste-menu, .ste-menu ul, .ste-footer-menu, .ste-contact-list { margin: 0; padding: 0; list-style: none; }
.ste-menu { display: flex; align-items: center; gap: 2px; }
.ste-menu > li { position: relative; }
.ste-menu > li > a { display: block; padding: 12px 14px; color: var(--ste-slate); font-size: .91rem; font-weight: 650; text-decoration: none; white-space: nowrap; }
.ste-menu > li > a:hover, .ste-menu > .current-menu-item > a, .ste-menu > .current-menu-ancestor > a { color: var(--ste-ink); }
.ste-menu .sub-menu { position: absolute; top: calc(100% + 9px); left: 0; min-width: 220px; padding: 10px; border: 1px solid var(--ste-soft-line); border-radius: 14px; background: var(--ste-paper); box-shadow: var(--ste-shadow-soft); opacity: 0; visibility: hidden; transform: translateY(6px); transition: .17s ease; }
.ste-menu li:hover > .sub-menu, .ste-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.ste-menu .sub-menu a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ste-slate); font-size: .88rem; text-decoration: none; }
.ste-menu .sub-menu a:hover { background: var(--ste-peach); color: var(--ste-ink); }
.ste-header-actions { justify-self: end; display: flex; align-items: center; gap: 15px; }
.ste-header-account { color: var(--ste-slate); font-size: .87rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.ste-header-account:hover { color: var(--ste-ink); }
.ste-menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--ste-line); border-radius: 50%; background: transparent; }
.ste-menu-toggle__lines, .ste-menu-toggle__lines::before, .ste-menu-toggle__lines::after { display: block; width: 18px; height: 1.5px; margin: auto; background: var(--ste-ink); content: ""; transition: transform .18s ease, opacity .18s ease; }
.ste-menu-toggle__lines::before { transform: translateY(-5px); }
.ste-menu-toggle__lines::after { transform: translateY(3.5px); }
.ste-menu-toggle[aria-expanded="true"] .ste-menu-toggle__lines { background: transparent; }
.ste-menu-toggle[aria-expanded="true"] .ste-menu-toggle__lines::before { transform: translateY(0) rotate(45deg); }
.ste-menu-toggle[aria-expanded="true"] .ste-menu-toggle__lines::after { transform: translateY(-1.5px) rotate(-45deg); }

/* Hero */
.ste-hero { position: relative; padding: clamp(72px, 9vw, 136px) 0 clamp(80px, 10vw, 148px); background: linear-gradient(120deg, #f8e1cf 0%, var(--ste-peach) 62%, #f2d2ba 100%); }
.ste-hero::before { position: absolute; top: 11%; left: -7vw; width: 34vw; height: 34vw; border: 1px solid rgba(31,39,48,.08); border-radius: 50%; content: ""; }
.ste-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); align-items: center; gap: clamp(50px, 7vw, 100px); }
.ste-hero__copy h1 { max-width: 760px; font-size: clamp(3.55rem, 6.6vw, 6.7rem); }
.ste-hero__copy h1 em { color: var(--ste-deep-teal); font-weight: 500; }
.ste-hero__trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 40px; color: var(--ste-slate); font-size: .83rem; font-weight: 700; }
.ste-hero__trust span::before { margin-right: 8px; color: var(--ste-coral-dark); content: "•"; }
.ste-hero__visual { position: relative; min-height: 580px; }
.ste-hero__frame { position: absolute; top: 0; right: 0; width: min(94%, 500px); height: 520px; overflow: hidden; border-radius: 46% 46% 18px 18px; background: var(--ste-sand); box-shadow: 18px 20px 0 rgba(235,142,103,.25); }
.ste-hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; filter: saturate(.85) contrast(.98); }
.ste-hero__quote { position: absolute; right: -20px; bottom: 0; width: min(78%, 350px); padding: 28px 30px 26px; border: 1px solid rgba(255,255,255,.55); border-radius: 20px; background: rgba(255,251,247,.94); box-shadow: var(--ste-shadow); backdrop-filter: blur(8px); }
.ste-hero__quote > span { display: block; height: 24px; color: var(--ste-coral); font-family: var(--ste-serif); font-size: 3rem; line-height: .7; }
.ste-hero__quote p { margin: 0 0 12px; font-family: var(--ste-serif); font-size: 1.15rem; line-height: 1.35; }
.ste-hero__quote strong { color: var(--ste-slate); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.ste-proof-bar { border-block: 1px solid var(--ste-line); background: var(--ste-paper); }
.ste-proof-bar__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--ste-slate); font-size: .8rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.ste-proof-bar__inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--ste-coral); }

/* Sections */
.ste-section--intro { background: var(--ste-ivory); }
.ste-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: clamp(60px, 10vw, 150px); }
.ste-split h2 { max-width: 720px; }
.ste-section--services { background: var(--ste-ink); color: #fff; }
.ste-section--services h2, .ste-section--services h3 { color: #fff; }
.ste-section--services .ste-eyebrow { color: #f6b89d; }
.ste-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .45fr); align-items: end; gap: 50px; margin-bottom: 54px; }
.ste-section-heading > p { margin: 0 0 8px; color: var(--ste-slate); }
.ste-section--services .ste-section-heading > p { color: #c8cdd3; }
.ste-section-heading--compact { grid-template-columns: 1fr auto; }
.ste-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.ste-service-card { min-height: 325px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.015); transition: background .2s ease, transform .2s ease; }
.ste-service-card:hover { background: rgba(255,255,255,.05); }
.ste-service-card--feature { background: var(--ste-coral); }
.ste-service-card--feature:hover { background: var(--ste-coral-dark); }
.ste-service-card--course { background: rgba(18,130,165,.2); }
.ste-service-card__number { margin-bottom: auto; color: rgba(255,255,255,.48); font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.ste-service-card h3 { margin-top: 55px; font-size: 1.75rem; }
.ste-service-card p { color: #ccd0d5; font-size: .95rem; line-height: 1.55; }
.ste-service-card--feature p { color: rgba(255,255,255,.9); }
.ste-service-card a { margin-top: auto; padding-top: 18px; color: #fff; font-size: .86rem; font-weight: 750; text-decoration: none; }

.ste-section--picture-story { background: var(--ste-sand); }
.ste-picture-story { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); align-items: stretch; gap: 0; }
.ste-picture-story__image { min-height: 620px; overflow: hidden; border-radius: var(--ste-radius-lg) 0 0 var(--ste-radius-lg); }
.ste-picture-story__image img { width: 100%; height: 100%; object-fit: cover; }
.ste-picture-story__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 6vw, 86px); border-radius: 0 var(--ste-radius-lg) var(--ste-radius-lg) 0; background: var(--ste-paper); }
.ste-picture-story__content h2 { font-size: clamp(2.6rem, 4.5vw, 4.2rem); }
.ste-picture-story__content > p { color: var(--ste-slate); }
.ste-check-list { display: grid; gap: 13px; margin: 14px 0 32px; padding: 0; list-style: none; }
.ste-check-list li { position: relative; padding-left: 28px; color: var(--ste-slate); }
.ste-check-list li::before { position: absolute; left: 0; color: var(--ste-sage); content: "✓"; font-weight: 900; }
.ste-picture-story__content .ste-button { align-self: flex-start; }

.ste-section--courses { background: var(--ste-ivory); }
.ste-course-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.ste-course-card { overflow: hidden; border: 1px solid var(--ste-soft-line); border-radius: var(--ste-radius); background: var(--ste-paper); box-shadow: 0 12px 34px rgba(31,39,48,.04); transition: transform .2s ease, box-shadow .2s ease; }
.ste-course-card:hover { transform: translateY(-5px); box-shadow: var(--ste-shadow-soft); }
.ste-course-card__media { position: relative; display: block; aspect-ratio: 4 / 2.7; overflow: hidden; background: var(--ste-peach); text-decoration: none; }
.ste-course-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.ste-course-card:hover .ste-course-card__media img { transform: scale(1.025); }
.ste-course-card__placeholder { display: grid; height: 100%; place-items: center; color: var(--ste-coral-dark); font-family: var(--ste-serif); font-size: 2.8rem; }
.ste-course-card__body { padding: 28px; }
.ste-course-card__body .ste-eyebrow { margin-bottom: 12px; }
.ste-course-card__body h3 { font-size: 1.55rem; }
.ste-course-card__body h3 a { color: var(--ste-ink); text-decoration: none; }
.ste-course-card__body p { color: var(--ste-slate); font-size: .94rem; line-height: 1.58; }

.ste-section--teacher { background: var(--ste-peach); }
.ste-teacher-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr); gap: 30px; }
.ste-teacher-card { padding: clamp(42px, 6vw, 82px); border-radius: var(--ste-radius-lg); background: var(--ste-paper); }
.ste-teacher-card h2 { max-width: 710px; }
.ste-teacher-card > p:not(.ste-lead-small) { max-width: 680px; color: var(--ste-slate); }
.ste-teacher-statement { display: flex; min-height: 540px; flex-direction: column; justify-content: space-between; padding: clamp(40px, 5vw, 66px); border-radius: var(--ste-radius-lg); background: var(--ste-deep-teal); color: #fff; }
.ste-teacher-statement blockquote { color: #fff; font-family: var(--ste-serif); font-size: clamp(2.4rem, 4.2vw, 4.5rem); line-height: 1.02; letter-spacing: -.035em; }
.ste-teacher-statement > p { margin: 0; font-weight: 750; }
.ste-teacher-statement > p span { color: #bcd7df; font-size: .84rem; font-weight: 500; }

.ste-section--testimonials { background: var(--ste-paper); }
.ste-testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.ste-testimonial-grid blockquote { display: flex; min-height: 360px; flex-direction: column; padding: 34px; border: 1px solid var(--ste-line); border-radius: var(--ste-radius); background: var(--ste-ivory); }
.ste-rating { margin-bottom: 30px; color: var(--ste-coral-dark); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.ste-testimonial-grid blockquote > p { color: var(--ste-ink); font-family: var(--ste-serif); font-size: 1.26rem; line-height: 1.45; }
.ste-testimonial-grid footer { margin-top: auto; color: var(--ste-ink); font-size: .85rem; font-weight: 750; }
.ste-testimonial-grid footer span { display: block; margin-top: 3px; color: var(--ste-slate); font-weight: 500; }

.ste-section--final-cta { background: var(--ste-ivory); }
.ste-final-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding-block: 20px; }
.ste-final-cta h2 { max-width: 850px; }
.ste-final-cta p { color: var(--ste-slate); font-size: 1.1rem; }

/* Page heroes */
.ste-page-hero { padding: clamp(70px, 9vw, 124px) 0; background: var(--ste-peach); }
.ste-page-hero--simple { padding: clamp(60px, 8vw, 102px) 0; }
.ste-page-hero--simple h1 { max-width: 900px; font-size: clamp(3rem, 6vw, 5.7rem); }
.ste-page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr); align-items: end; gap: clamp(60px, 9vw, 130px); }
.ste-page-hero__grid h1 { font-size: clamp(3.3rem, 6.4vw, 6.5rem); }
.ste-page-hero__grid blockquote { padding-top: 25px; border-top: 1px solid var(--ste-ink); color: var(--ste-slate); font-family: var(--ste-serif); font-size: 1.2rem; line-height: 1.46; }
.ste-page-hero__grid blockquote footer { margin-top: 18px; color: var(--ste-ink); font-family: var(--ste-body); font-size: .75rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.ste-section--learning-points { background: var(--ste-paper); }
.ste-learning-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); gap: clamp(70px, 10vw, 140px); }
.ste-number-list { margin: 0; padding: 0; list-style: none; }
.ste-number-list li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid var(--ste-line); }
.ste-number-list li:last-child { border-bottom: 1px solid var(--ste-line); }
.ste-number-list span { color: var(--ste-coral-dark); font-size: .72rem; font-weight: 850; letter-spacing: .15em; }
.ste-number-list p { margin: 0; color: var(--ste-slate); }
.ste-section--course-archive { background: var(--ste-sand); }

/* About */
.ste-page-hero--about { padding-bottom: 0; }
.ste-about-hero { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(330px, .72fr); align-items: end; gap: clamp(50px, 8vw, 110px); }
.ste-about-hero__copy { padding-bottom: clamp(70px, 8vw, 110px); }
.ste-about-hero__copy h1 { font-size: clamp(3.2rem, 6vw, 6.1rem); }
.ste-about-hero__copy > p:not(.ste-lead) { max-width: 680px; color: var(--ste-slate); }
.ste-about-hero__image { min-height: 600px; overflow: hidden; border-radius: 180px 180px 0 0; box-shadow: 18px 0 0 rgba(235,142,103,.25); }
.ste-about-hero__image img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: 50% 38%; }
.ste-section--voice { background: var(--ste-paper); }
.ste-editorial-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(340px, .72fr); gap: clamp(70px, 11vw, 160px); }
.ste-section--questions { background: var(--ste-ink); }
.ste-question-panel { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); gap: clamp(70px, 10vw, 150px); }
.ste-question-panel h2 { color: #fff; }
.ste-question-panel .ste-eyebrow { color: #f6b89d; }
.ste-question-list { margin: 0; padding: 0; list-style: none; counter-reset: question; }
.ste-question-list li { position: relative; padding: 18px 0 18px 44px; border-top: 1px solid rgba(255,255,255,.15); color: #d7dade; font-size: 1.05rem; counter-increment: question; }
.ste-question-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.ste-question-list li::before { position: absolute; left: 0; color: var(--ste-coral); content: "0" counter(question); font-size: .7rem; font-weight: 850; letter-spacing: .08em; }
.ste-section--workshops { background: var(--ste-ivory); }
.ste-workshop-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.ste-workshop-gallery img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 14px; box-shadow: var(--ste-shadow-soft); }
.ste-section--quote-band { background: var(--ste-coral); }
.ste-section--quote-band blockquote { max-width: 950px; color: #fff; font-family: var(--ste-serif); font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.18; letter-spacing: -.03em; }
.ste-section--quote-band footer { margin-top: 26px; color: rgba(255,255,255,.85); font-family: var(--ste-body); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

/* Contact */
.ste-page-hero--contact { background: var(--ste-sand); }
.ste-contact-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr); align-items: end; gap: 80px; }
.ste-contact-hero h1 { font-size: clamp(3.2rem, 6vw, 6rem); }
.ste-contact-quote { padding: 30px; border-top: 1px solid var(--ste-ink); color: var(--ste-slate); font-family: var(--ste-serif); font-size: 1.15rem; }
.ste-contact-quote span { display: block; margin-top: 17px; color: var(--ste-ink); font-family: var(--ste-body); font-size: .74rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.ste-section--contact-form { background: var(--ste-ivory); }
.ste-contact-grid { display: grid; grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr); gap: clamp(60px, 8vw, 110px); }
.ste-contact-details h2 { font-size: clamp(2.5rem, 4vw, 3.7rem); }
.ste-contact-item { padding: 24px 0; border-top: 1px solid var(--ste-line); }
.ste-contact-item:last-child { border-bottom: 1px solid var(--ste-line); }
.ste-contact-item > span { display: block; margin-bottom: 5px; color: var(--ste-slate); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.ste-contact-item a, .ste-contact-item p { margin: 0; color: var(--ste-ink); font-size: 1.05rem; text-decoration: none; }
.ste-form-card { padding: clamp(30px, 5vw, 56px); border: 1px solid var(--ste-soft-line); border-radius: var(--ste-radius-lg); background: var(--ste-paper); box-shadow: var(--ste-shadow-soft); }

/* Portal / generic content */
.ste-page-hero--portal { background: var(--ste-deep-teal); color: #fff; }
.ste-page-hero--portal h1 { color: #fff; font-size: clamp(3.2rem, 6vw, 6rem); }
.ste-page-hero--portal .ste-eyebrow { color: #bcdce5; }
.ste-page-hero--portal .ste-lead { color: #d7ebf0; }
.ste-section--portal-content, .ste-section--page-content { background: var(--ste-paper); }
.ste-plugin-surface, .ste-entry-content { color: var(--ste-slate); }
.ste-entry-content > *:first-child, .ste-plugin-surface > *:first-child { margin-top: 0; }
.ste-entry-content > *:last-child, .ste-plugin-surface > *:last-child { margin-bottom: 0; }
.ste-entry-content h2, .ste-entry-content h3, .ste-entry-content h4, .ste-plugin-surface h2, .ste-plugin-surface h3, .ste-plugin-surface h4 { margin-top: 1.4em; color: var(--ste-ink); }
.ste-entry-content a, .ste-plugin-surface a { overflow-wrap: anywhere; }
.ste-entry-content img, .ste-plugin-surface img { border-radius: 12px; }
.ste-entry-content table, .ste-plugin-surface table { width: 100%; border-collapse: collapse; }
.ste-entry-content th, .ste-entry-content td, .ste-plugin-surface th, .ste-plugin-surface td { padding: 12px; border: 1px solid var(--ste-line); text-align: left; }
.ste-entry-content blockquote { margin: 2em 0; padding: 20px 28px; border-left: 4px solid var(--ste-coral); background: var(--ste-peach); color: var(--ste-ink); }
.ste-entry-content .wp-block-button__link, .ste-plugin-surface .wp-block-button__link { border-radius: 999px; background: var(--ste-coral); color: #fff; font-weight: 700; text-decoration: none; }
.ste-entry-content iframe, .ste-plugin-surface iframe { max-width: 100%; }
.ste-portal-surface .wp-block-buttons { margin: 38px 0 18px; }
.ste-portal-surface .wp-block-separator { margin: 50px 0; border: 0; border-top: 1px solid var(--ste-line); }

/* Blog and search */
.ste-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.ste-post-card { overflow: hidden; border: 1px solid var(--ste-soft-line); border-radius: var(--ste-radius); background: var(--ste-paper); }
.ste-post-card__image { display: block; aspect-ratio: 4/2.7; overflow: hidden; }
.ste-post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.ste-post-card__body { padding: 28px; }
.ste-post-meta { display: inline-block; margin-bottom: 10px; color: var(--ste-slate); font-size: .76rem; }
.ste-post-card h2 { font-size: 1.7rem; }
.ste-post-card h2 a { color: var(--ste-ink); text-decoration: none; }
.ste-post-card p { color: var(--ste-slate); font-size: .94rem; }
.ste-article-header { padding: clamp(72px, 9vw, 120px) 0 54px; background: var(--ste-peach); text-align: center; }
.ste-article-header h1 { font-size: clamp(3rem, 5.7vw, 5.8rem); }
.ste-article-image { margin-top: -18px; }
.ste-article-image img { width: 100%; border-radius: var(--ste-radius-lg); }
.single .ste-entry-content { padding: 70px 0 110px; }
.ste-search-form { display: flex; max-width: 640px; margin-top: 30px; gap: 10px; }
.ste-search-form label { flex: 1; }
.ste-search-field { width: 100%; min-height: 50px; padding: 11px 15px; border: 1px solid var(--ste-line); border-radius: 999px; background: var(--ste-paper); color: var(--ste-ink); }
.ste-search-submit { min-height: 50px; padding: 11px 22px; border: 0; border-radius: 999px; background: var(--ste-ink); color: #fff; cursor: pointer; }
.ste-search-results { display: grid; gap: 18px; }
.ste-search-card { padding: 28px 0; border-bottom: 1px solid var(--ste-line); }
.ste-search-card .ste-eyebrow { margin-bottom: 8px; }
.ste-search-card h2 { font-size: 2rem; }
.ste-search-card h2 a { color: var(--ste-ink); text-decoration: none; }
.ste-search-card p { margin-bottom: 0; color: var(--ste-slate); }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 45px; }
.nav-links .page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid var(--ste-line); border-radius: 50%; color: var(--ste-ink); text-decoration: none; }
.nav-links .current { border-color: var(--ste-ink); background: var(--ste-ink); color: #fff; }
.ste-404 { min-height: 68vh; display: grid; place-items: center; padding: 90px 0; text-align: center; }
.ste-404__number { color: var(--ste-peach); font-family: var(--ste-serif); font-size: clamp(7rem, 18vw, 14rem); font-weight: 700; line-height: .8; }
.ste-404 h1 { margin-top: 15px; font-size: clamp(2.6rem, 5vw, 4.8rem); }
.ste-404 .ste-button-row, .ste-404 .ste-search-form { justify-content: center; margin-inline: auto; }

/* Footer */
.ste-site-footer { border-top: 1px solid var(--ste-soft-line); background: var(--ste-ink); color: #c7ccd2; }
.ste-footer-cta { background: var(--ste-coral); color: #fff; }
.ste-footer-cta__inner { min-height: 290px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 50px; }
.ste-footer-cta .ste-eyebrow { color: rgba(255,255,255,.78); }
.ste-footer-cta h2 { max-width: 820px; color: #fff; font-size: clamp(2.5rem, 4.8vw, 4.6rem); }
.ste-footer-cta p { margin-bottom: 0; color: rgba(255,255,255,.84); }
.ste-footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: 80px; padding-block: 74px; }
.ste-footer-grid h3 { margin-bottom: 20px; color: #fff; font-family: var(--ste-body); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ste-footer-brand strong { display: block; color: #fff; font-size: 1.4rem; }
.ste-footer-brand > p:first-of-type { margin-top: 4px; color: #d9dde1; }
.ste-footer-note { max-width: 380px; color: #939ba5; font-size: .9rem; }
.ste-footer-menu { display: grid; gap: 9px; }
.ste-footer-menu a, .ste-contact-list a { color: #c7ccd2; text-decoration: none; }
.ste-footer-menu a:hover, .ste-contact-list a:hover { color: #fff; }
.ste-contact-list { display: grid; gap: 9px; }
.ste-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 24px 34px; border-top: 1px solid rgba(255,255,255,.1); color: #858d98; font-size: .78rem; }
.ste-footer-bottom p { margin: 0; }
.ste-footer-legal a { color: #aeb5bd; text-decoration: none; }
.ste-site-footer .ste-menu--fallback { display: grid; gap: 9px; }
.ste-site-footer .ste-menu--fallback li a { padding: 0; color: #c7ccd2; }

/* ============================
   Plugin compatibility surfaces
   ============================ */

/* Sensei LMS */
.ste-lms-main { padding: clamp(60px, 7vw, 100px) 0; background: var(--ste-ivory); }
.ste-lms-shell { min-width: 0; }
.ste-lms-shell .sensei-breadcrumb, .sensei-breadcrumb { color: var(--ste-slate); font-size: .8rem; }
.ste-lms-shell .sensei-breadcrumb a { color: var(--ste-deep-teal); }
.ste-lms-shell h1, .ste-lms-shell .entry-title { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.ste-lms-shell h2 { font-size: clamp(2rem, 3.7vw, 3.3rem); }
.ste-lms-shell .course, .ste-lms-shell .lesson, .ste-lms-shell .quiz, .ste-lms-shell .sensei-message { max-width: 100%; }
.ste-lms-shell .course-meta, .ste-lms-shell .lesson-meta { color: var(--ste-slate); font-size: .85rem; }
.ste-lms-shell input[type="submit"], .ste-lms-shell button, .ste-lms-shell .button,
.ste-sensei-shortcode input[type="submit"], .ste-sensei-shortcode button, .ste-sensei-shortcode .button {
  min-height: 46px; padding: 12px 20px !important; border: 0 !important; border-radius: 999px !important; background: var(--ste-coral) !important; color: #fff !important; font-weight: 750 !important; box-shadow: none !important;
}
.ste-lms-shell input[type="submit"]:hover, .ste-lms-shell button:hover, .ste-lms-shell .button:hover,
.ste-sensei-shortcode input[type="submit"]:hover, .ste-sensei-shortcode button:hover, .ste-sensei-shortcode .button:hover { background: var(--ste-coral-dark) !important; }
.ste-lms-shell input[type="text"], .ste-lms-shell input[type="email"], .ste-lms-shell input[type="password"], .ste-lms-shell textarea, .ste-lms-shell select {
  max-width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--ste-line); border-radius: 10px; background: #fff;
}
.ste-lms-shell .sensei-message, .ste-lms-shell .sensei-notice, .sensei-notice { padding: 16px 18px; border: 1px solid rgba(18,130,165,.2); border-radius: 12px; background: rgba(18,130,165,.08); color: var(--ste-ink); }
.ste-lms-shell .sensei-course-meta, .ste-lms-shell .sensei-course-progress { border-color: var(--ste-line); }
.ste-lms-shell .progress, .sensei-course-progress .progress { overflow: hidden; border-radius: 999px; background: #e8e9ea; }
.ste-lms-shell .progress-bar, .sensei-course-progress .bar { background: var(--ste-deep-teal); }
.ste-lms-shell .lesson-course, .ste-lms-shell .course-lessons { border-color: var(--ste-line); }
.ste-lms-shell .sensei-course-theme__main-content { max-width: 100%; }
.ste-lms-shell video, .ste-lms-shell iframe { max-width: 100%; }

/* Sensei shortcode/archive card normalization across old and new markup */
.ste-sensei-shortcode .course-container, .ste-sensei-shortcode .sensei-course-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.ste-sensei-shortcode article.course, .ste-sensei-shortcode .course { margin: 0 !important; padding: 28px !important; border: 1px solid var(--ste-line) !important; border-radius: var(--ste-radius) !important; background: var(--ste-paper) !important; box-shadow: var(--ste-shadow-soft); }
.ste-sensei-shortcode .course h2, .ste-sensei-shortcode .course h3 { margin-top: 0; font-size: 1.6rem; }
.ste-sensei-shortcode .course .sensei-course-meta, .ste-sensei-shortcode .course-meta { color: var(--ste-slate); font-size: .82rem; }
.ste-sensei-shortcode img { border-radius: 12px; }

/* Paid Member Subscriptions */
#pms_login, .pms-form, .pms-account, .pms-account-navigation, .pms-subscription-plan, .pms-field, .pms-payment-history {
  max-width: 100%;
}
.pms-form, #pms_login, .pms-account-subscription-details, .pms-payment-history { color: var(--ste-slate); }
.pms-form label, #pms_login label { color: var(--ste-ink); font-weight: 700; }
.pms-form input[type="text"], .pms-form input[type="email"], .pms-form input[type="password"], .pms-form input[type="number"], .pms-form select, .pms-form textarea,
#pms_login input[type="text"], #pms_login input[type="password"] { width: 100%; max-width: 620px; min-height: 48px; padding: 11px 13px; border: 1px solid var(--ste-line); border-radius: 10px; background: #fff; }
.pms-form input[type="submit"], #pms_login input[type="submit"], .pms-account-navigation a, .pms-submit { padding: 12px 20px !important; border: 0 !important; border-radius: 999px !important; background: var(--ste-coral) !important; color: #fff !important; font-weight: 750 !important; text-decoration: none !important; cursor: pointer; }
.pms-account-navigation { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pms-account-navigation a { background: var(--ste-ink) !important; }
.pms-account-navigation a:hover { background: var(--ste-deep-teal) !important; }
.pms-error, .pms-success, .pms-field-errors-wrapper { padding: 14px 16px; border-radius: 10px; }
.pms-error, .pms-field-errors-wrapper { border: 1px solid rgba(170,60,50,.22); background: rgba(170,60,50,.08); }
.pms-success { border: 1px solid rgba(56,130,84,.22); background: rgba(56,130,84,.08); }
.pms-subscription-plan { margin: 12px 0; padding: 18px; border: 1px solid var(--ste-line); border-radius: 12px; background: #fff; }

/* WPForms */
.wpforms-container { margin: 0 !important; }
.wpforms-container .wpforms-title { margin-bottom: 10px !important; font-family: var(--ste-serif) !important; font-size: 2rem !important; font-weight: 500 !important; }
.wpforms-container .wpforms-description { color: var(--ste-slate) !important; }
.wpforms-container .wpforms-field { padding: 11px 0 !important; }
.wpforms-container .wpforms-field-label { margin-bottom: 7px !important; color: var(--ste-ink) !important; font-size: .9rem !important; font-weight: 750 !important; }
.wpforms-container input[type="text"], .wpforms-container input[type="email"], .wpforms-container input[type="tel"], .wpforms-container input[type="number"], .wpforms-container input[type="url"], .wpforms-container select, .wpforms-container textarea {
  width: 100% !important; max-width: none !important; min-height: 50px !important; padding: 11px 13px !important; border: 1px solid var(--ste-line) !important; border-radius: 10px !important; background: #fff !important; color: var(--ste-ink) !important; box-shadow: none !important;
}
.wpforms-container textarea { min-height: 150px !important; resize: vertical; }
.wpforms-container input:focus, .wpforms-container textarea:focus, .wpforms-container select:focus { border-color: var(--ste-teal) !important; outline: 3px solid rgba(18,130,165,.10) !important; }
.wpforms-container button[type="submit"], .wpforms-container input[type="submit"] { min-height: 50px !important; padding: 13px 24px !important; border: 0 !important; border-radius: 999px !important; background: var(--ste-coral) !important; color: #fff !important; font-weight: 800 !important; cursor: pointer; }
.wpforms-container button[type="submit"]:hover { background: var(--ste-coral-dark) !important; }

/* Newsletter signup (WPForms #19 / legacy Elementor shortcode widget) */
/*
 * Elementor generated CSS applies this exact rule to widget a08ad89:
 *   .elementor-XXX .elementor-element.elementor-element-a08ad89
 *     > .elementor-widget-container { padding: 0 100px; background-image: ... }
 *
 * The widget is reused outside the front-page wrapper, so this reset must not be
 * scoped to .ste-front-page. Use the unique Elementor widget id plus !important
 * to beat Elementor's generated page CSS regardless of stylesheet load order.
 */
.elementor-element.elementor-element-a08ad89,
.elementor-element.elementor-element-a08ad89 > .elementor-widget-container,
.elementor-widget-shortcode:has(#wpforms-19),
.elementor-widget-shortcode:has(#wpforms-19) > .elementor-widget-container,
.elementor-widget-shortcode:has(#wpforms-19) .elementor-shortcode {
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Match Elementor's generated selector shape explicitly as an extra safeguard. */
[class*="elementor-"] .elementor-element.elementor-element-a08ad89 > .elementor-widget-container {
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* Elementor can also render backgrounds through generated pseudo layers. */
.elementor-element.elementor-element-a08ad89::before,
.elementor-element.elementor-element-a08ad89::after,
.elementor-element.elementor-element-a08ad89 > .elementor-widget-container::before,
.elementor-element.elementor-element-a08ad89 > .elementor-widget-container::after,
.elementor-widget-shortcode:has(#wpforms-19)::before,
.elementor-widget-shortcode:has(#wpforms-19)::after,
.elementor-widget-shortcode:has(#wpforms-19) > .elementor-widget-container::before,
.elementor-widget-shortcode:has(#wpforms-19) > .elementor-widget-container::after {
  content: none !important;
  background: none !important;
  background-image: none !important;
}

#wpforms-19.wpforms-container {
  --wpforms-button-background-color: var(--ste-ink);
  --wpforms-button-background-color-alt: var(--ste-ink);
  --wpforms-button-text-color: #fff;
  width: min(100%, 600px) !important;
  margin: 30px auto 0 !important;
  padding: clamp(24px, 3.5vw, 36px) !important;
  border: 1px solid rgba(31, 39, 48, .10) !important;
  border-radius: 22px !important;
  background: rgba(255, 251, 247, .97) !important;
  box-shadow: 0 20px 50px rgba(31, 39, 48, .13) !important;
  text-align: left;
}

#wpforms-19 .wpforms-form,
#wpforms-19 .wpforms-field-container,
#wpforms-19 .wpforms-submit-container {
  width: 100% !important;
  margin: 0 !important;
}

#wpforms-19 .wpforms-field {
  margin: 0 0 16px !important;
  padding: 0 !important;
}

#wpforms-19 #wpforms-19-field_1 {
  width: 100% !important;
  max-width: none !important;
  min-height: 56px !important;
  padding: 14px 17px !important;
  border: 1px solid rgba(31, 39, 48, .18) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--ste-ink) !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
  box-shadow: 0 1px 0 rgba(31, 39, 48, .02) !important;
}

#wpforms-19 #wpforms-19-field_1::placeholder {
  color: #707987 !important;
  opacity: 1 !important;
}

#wpforms-19 #wpforms-19-field_1:focus {
  border-color: var(--ste-deep-teal) !important;
  outline: 3px solid rgba(18, 130, 165, .14) !important;
  outline-offset: 1px;
}

#wpforms-19 .wpforms-recaptcha-container {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  margin: 2px 0 20px !important;
  padding: 0 !important;
  overflow: visible !important;
}

#wpforms-19 .wpforms-recaptcha-container .g-recaptcha,
#wpforms-19 .wpforms-recaptcha-container .h-captcha,
#wpforms-19 .wpforms-recaptcha-container .wpforms-turnstile {
  display: flex !important;
  max-width: 100%;
  justify-content: center !important;
  padding: 0 !important;
}

#wpforms-19 .wpforms-recaptcha-container .g-recaptcha > div,
#wpforms-19 .wpforms-recaptcha-container .h-captcha > div,
#wpforms-19 .wpforms-recaptcha-container .wpforms-turnstile > div {
  margin-inline: auto !important;
}

#wpforms-19 .wpforms-submit-container {
  padding: 0 !important;
  text-align: center !important;
}

#wpforms-19 .wpforms-submit,
#wpforms-19 button[type="submit"] {
  display: inline-flex !important;
  width: 100% !important;
  min-height: 54px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 24px !important;
  border: 1px solid var(--ste-ink) !important;
  border-radius: 999px !important;
  background: var(--ste-ink) !important;
  background-image: none !important;
  color: #fff !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .01em !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}

#wpforms-19 .wpforms-submit:hover,
#wpforms-19 .wpforms-submit:active,
#wpforms-19 button[type="submit"]:hover,
#wpforms-19 button[type="submit"]:active {
  border-color: var(--ste-deep-teal) !important;
  background: var(--ste-deep-teal) !important;
  background-image: none !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 97, 124, .20) !important;
}

#wpforms-19 .wpforms-submit:focus-visible,
#wpforms-19 button[type="submit"]:focus-visible {
  outline: 3px solid rgba(18, 130, 165, .32) !important;
  outline-offset: 4px !important;
}

#wpforms-19 label.wpforms-error,
#wpforms-19 em.wpforms-error {
  margin-top: 7px !important;
  color: #9f3f36 !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  text-align: left !important;
}

#wpforms-19 .wpforms-confirmation-container-full,
#wpforms-19 .wpforms-confirmation-container {
  margin: 0 !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(56, 130, 84, .24) !important;
  border-radius: 12px !important;
  background: rgba(56, 130, 84, .08) !important;
  color: var(--ste-ink) !important;
}

@media (max-width: 520px) {
  #wpforms-19.wpforms-container {
    margin-top: 22px !important;
    padding: 20px !important;
    border-radius: 18px !important;
  }

  #wpforms-19 #wpforms-19-field_1 {
    min-height: 52px !important;
  }

  #wpforms-19 .wpforms-recaptcha-container {
    justify-content: flex-start !important;
  }

  #wpforms-19 .wpforms-recaptcha-container .g-recaptcha,
  #wpforms-19 .wpforms-recaptcha-container .h-captcha,
  #wpforms-19 .wpforms-recaptcha-container .wpforms-turnstile {
    justify-content: flex-start !important;
    transform-origin: left top;
  }
}

@media (max-width: 360px) {
  #wpforms-19 .wpforms-recaptcha-container .g-recaptcha,
  #wpforms-19 .wpforms-recaptcha-container .h-captcha,
  #wpforms-19 .wpforms-recaptcha-container .wpforms-turnstile {
    transform: scale(.88);
    margin-bottom: -9px;
  }
}

/* WooCommerce */
.woocommerce .ste-commerce-shell, .ste-commerce-shell { min-width: 0; }
.woocommerce h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.woocommerce h2 { font-size: clamp(2rem, 3vw, 3rem); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit, .wc-block-components-button {
  min-height: 46px !important; padding: 12px 20px !important; border-radius: 999px !important; background: var(--ste-coral) !important; color: #fff !important; font-weight: 750 !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background: var(--ste-coral-dark) !important; color: #fff !important; }
.woocommerce input.input-text, .woocommerce textarea, .woocommerce select, .woocommerce .select2-container .select2-selection { min-height: 46px; border: 1px solid var(--ste-line); border-radius: 9px; background: #fff; }
.woocommerce ul.products li.product { overflow: hidden; padding-bottom: 22px; border: 1px solid var(--ste-soft-line); border-radius: 14px; background: #fff; }
.woocommerce ul.products li.product img { margin-bottom: 18px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price, .woocommerce ul.products li.product .button { margin-left: 18px; margin-right: 18px; }
.woocommerce table.shop_table { overflow: hidden; border: 1px solid var(--ste-line); border-radius: 12px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top-color: var(--ste-teal); border-radius: 10px; background: #fff; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0 0 30px; padding: 0; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 10px 12px; border-bottom: 1px solid var(--ste-line); color: var(--ste-ink); text-decoration: none; }

/* Elementor / ElementsKit */
.elementor-page .ste-main--elementor { overflow: visible; }
.elementor-page .ste-main--elementor > .elementor { width: 100%; }
.elementor-widget-container img { max-width: 100%; }
.elementor-button, .ekit-wid-con .elementskit-btn { border-radius: 999px !important; }

/* Presto Player */
.presto-player, .presto-player__wrapper, .presto-player__media, .presto-player iframe, presto-player { max-width: 100%; }

/* Complianz: do not interfere with plugin stacking/context. */
.cmplz-cookiebanner, #cmplz-manage-consent, .cmplz-soft-cookiewall { font-family: var(--ste-body) !important; }
.cmplz-cookiebanner .cmplz-btn { border-radius: 999px !important; }

/* Login/logout links inserted into menus */
.ste-menu .login-logout-menu-item a, .ste-menu .pms-login-link a { white-space: nowrap; }

/* WordPress blocks */
.wp-block-image.alignwide, .alignwide { max-width: 1100px; margin-left: 50%; transform: translateX(-50%); width: min(1100px, calc(100vw - 48px)); }
.alignfull { max-width: none; margin-left: 50%; transform: translateX(-50%); width: 100vw; }
.wp-block-cover, .wp-block-group { border-radius: 14px; }

/* Plugin-managed account, course and commerce pages */
.ste-page-hero--plugin { padding: clamp(68px, 8vw, 108px) 0 58px; background: linear-gradient(135deg, var(--ste-peach), #f9e9da); border-bottom: 1px solid var(--ste-soft-line); }
.ste-page-hero--plugin h1 { max-width: 760px; font-size: clamp(2.9rem, 6vw, 5.3rem); }
.ste-page-hero--plugin .ste-lead { max-width: 680px; margin-bottom: 0; }
.ste-section--plugin-page { padding-top: 58px; }
.ste-plugin-card { padding: clamp(24px, 5vw, 48px); border: 1px solid var(--ste-soft-line); border-radius: var(--ste-radius); background: var(--ste-paper); box-shadow: var(--ste-shadow-soft); }
.ste-plugin-page--courses .ste-plugin-card { max-width: none; }
.ste-plugin-card > :first-child { margin-top: 0; }
.ste-plugin-card > :last-child { margin-bottom: 0; }
.ste-plugin-page--checkout .ste-plugin-card, .ste-plugin-page--cart .ste-plugin-card { max-width: 980px; margin-inline: auto; }

/* Responsive */
@media (max-width: 1080px) {
  .ste-header-inner { grid-template-columns: 1fr auto auto; }
  .ste-menu-toggle { display: inline-grid; place-items: center; justify-self: end; }
  .ste-primary-nav { position: fixed; inset: 92px 0 auto; display: none; max-height: calc(100vh - 92px); overflow: auto; padding: 22px 24px 34px; border-top: 1px solid var(--ste-soft-line); background: var(--ste-ivory); box-shadow: 0 26px 46px rgba(31,39,48,.10); }
  .ste-primary-nav.is-open { display: block; }
  .ste-menu { display: grid; align-items: stretch; gap: 0; }
  .ste-menu > li > a { padding: 14px 0; border-bottom: 1px solid var(--ste-soft-line); color: var(--ste-ink); font-size: 1.06rem; }
  .ste-menu .sub-menu { position: static; min-width: 0; display: block; padding: 0 0 8px 18px; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .ste-menu .sub-menu a { padding: 8px 0; }
  .ste-header-actions { justify-self: end; }
  .ste-header-account { display: none; }
  .ste-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr); gap: 52px; }
  .ste-hero__visual { min-height: 510px; }
  .ste-hero__frame { height: 455px; }
  .ste-hero__quote { right: -8px; }
  .ste-service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ste-course-grid, .ste-testimonial-grid, .ste-post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ste-workshop-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ste-sensei-shortcode .course-container, .ste-sensei-shortcode .sensei-course-list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .ste-container { width: min(calc(100% - 34px), var(--ste-container)); }
  .ste-header-inner { min-height: 78px; gap: 12px; }
  .ste-primary-nav { inset: 78px 0 auto; max-height: calc(100vh - 78px); }
  .ste-logo { max-width: 150px; max-height: 52px; }
  .ste-header-actions .ste-button { display: none; }
  .ste-hero { padding-top: 60px; }
  .ste-hero__grid, .ste-split, .ste-picture-story, .ste-teacher-grid, .ste-page-hero__grid, .ste-learning-grid, .ste-about-hero, .ste-editorial-grid, .ste-question-panel, .ste-contact-hero, .ste-contact-grid { grid-template-columns: 1fr; }
  .ste-hero__copy h1 { font-size: clamp(3.25rem, 12vw, 5.2rem); }
  .ste-hero__visual { min-height: 540px; margin-top: 10px; }
  .ste-hero__frame { left: 0; right: auto; width: calc(100% - 28px); height: 475px; }
  .ste-hero__quote { right: 0; width: min(78%, 340px); }
  .ste-proof-bar__inner { min-height: auto; flex-wrap: wrap; justify-content: center; padding-block: 24px; text-align: center; }
  .ste-proof-bar__inner i { display: none; }
  .ste-split, .ste-editorial-grid { gap: 42px; }
  .ste-section-heading { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .ste-section-heading--compact { grid-template-columns: 1fr auto; align-items: center; }
  .ste-picture-story__image { min-height: 430px; border-radius: var(--ste-radius-lg) var(--ste-radius-lg) 0 0; }
  .ste-picture-story__content { border-radius: 0 0 var(--ste-radius-lg) var(--ste-radius-lg); }
  .ste-teacher-statement { min-height: 420px; }
  .ste-final-cta, .ste-footer-cta__inner { grid-template-columns: 1fr; align-items: start; }
  .ste-footer-cta__inner { padding-block: 62px; }
  .ste-footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .ste-footer-brand { grid-column: 1 / -1; }
  .ste-about-hero__copy { padding-bottom: 0; }
  .ste-about-hero__image { min-height: 500px; max-width: 520px; border-radius: 140px 140px 0 0; }
  .ste-about-hero__image img { min-height: 500px; }
  .ste-page-hero--about { padding-bottom: 0; }
  .ste-question-panel { gap: 44px; }
}

@media (max-width: 620px) {
  .ste-section { padding: 74px 0; }
  h2 { font-size: clamp(2.35rem, 11vw, 3.3rem); }
  .ste-hero__copy h1, .ste-page-hero__grid h1, .ste-about-hero__copy h1, .ste-contact-hero h1, .ste-page-hero--portal h1 { font-size: clamp(3.05rem, 15vw, 4.6rem); }
  .ste-button-row { display: grid; }
  .ste-button-row .ste-button { width: 100%; }
  .ste-hero__visual { min-height: 490px; }
  .ste-hero__frame { height: 420px; border-radius: 150px 150px 16px 16px; }
  .ste-hero__quote { bottom: 0; width: 85%; padding: 22px; }
  .ste-service-grid, .ste-course-grid, .ste-testimonial-grid, .ste-post-grid, .ste-workshop-gallery { grid-template-columns: 1fr; }
  .ste-service-card { min-height: 285px; }
  .ste-section-heading--compact { grid-template-columns: 1fr; }
  .ste-picture-story__image { min-height: 340px; }
  .ste-picture-story__content { padding: 38px 27px; }
  .ste-teacher-card, .ste-teacher-statement { padding: 36px 26px; }
  .ste-testimonial-grid blockquote { min-height: 320px; padding: 28px; }
  .ste-page-hero { padding: 68px 0; }
  .ste-about-hero__image { min-height: 420px; }
  .ste-about-hero__image img { min-height: 420px; }
  .ste-form-card { padding: 26px 20px; border-radius: 18px; }
  .ste-footer-grid { grid-template-columns: 1fr; gap: 36px; padding-block: 58px; }
  .ste-footer-brand { grid-column: auto; }
  .ste-footer-bottom { align-items: flex-start; flex-direction: column; }
  .ste-search-form { display: grid; }
  .ste-search-submit { width: 100%; }
  .wp-block-image.alignwide, .alignwide { width: min(100%, calc(100vw - 34px)); }
  .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td { padding: 12px 10px; }
}

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