@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Playfair+Display:wght@400;500&display=swap");

:root {
  --charcoal: #666868;
  --charcoal-dark: #353838;
  --silver: #ced0d1;
  --sage: #b7ce98;
  --sage-dark: #89a56a;
  --sage-pale: #eef4e8;
  --white: #ffffff;
  --beige: #f0ebe1;
  --beige-soft: #f8f5ef;
  --blush: #edd5d0;
  --blush-deep: #b8847a;
  --line: rgba(102, 104, 104, 0.22);
  --shadow: 0 16px 40px rgba(53, 56, 56, 0.10);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal-dark);
  background: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(170px, 285px) 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  padding: 0 4vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.prototype-banner {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 7px 18px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  background: var(--charcoal-dark);
}

.brand img {
  width: 275px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 0.88rem;
}

.site-nav a {
  position: relative;
  padding: 32px 0 28px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.cart-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
}

.cart-wrap {
  position: relative;
  justify-self: end;
}

.cart-wrap::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 22px;
  content: "";
}

.cart-link svg {
  width: 23px;
  height: 23px;
}

.cart-link b {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 500;
  background: var(--sage-dark);
  border-radius: 50%;
}

.mini-cart {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  z-index: 70;
  width: min(360px, 88vw);
  padding: 18px;
  pointer-events: none;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 52px rgba(53, 56, 56, 0.16);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.cart-wrap:hover .mini-cart,
.cart-wrap:focus-within .mini-cart {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.mini-cart::before {
  position: absolute;
  top: -7px;
  right: 22px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--white);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: rotate(45deg);
}

.mini-cart .eyebrow {
  margin-bottom: 10px;
  color: var(--blush-deep);
}

.mini-cart-items {
  display: grid;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.mini-cart-item {
  display: grid;
  gap: 2px;
}

.mini-cart-item strong {
  color: var(--charcoal-dark);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.mini-cart-item span,
.mini-cart-empty {
  color: var(--charcoal);
  font-size: 0.76rem;
}

.mini-cart dl {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0 0 14px;
}

.mini-cart dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.mini-cart dt,
.mini-cart dd {
  margin: 0;
  font-size: 0.78rem;
}

.mini-cart dd {
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--charcoal-dark);
  background: transparent;
  border: 1px solid var(--line);
}

body[data-page="home"] .site-header {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

body[data-page="home"] .site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(16, 18, 18, 0.48), rgba(16, 18, 18, 0));
  pointer-events: none;
}

body[data-page="home"] .brand {
  display: inline-flex;
  width: max-content;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="home"] .brand img {
  width: 225px;
  opacity: 0.95;
  filter: brightness(0) invert(1) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

body[data-page="home"] .site-nav a::after {
  background: var(--blush);
}

body[data-page="home"] .cart-link b {
  color: var(--charcoal-dark);
  background: var(--blush);
}

body[data-page="home"] .cart-link svg {
  color: var(--white);
}

.home-hero {
  position: relative;
  display: flex;
  min-height: min(820px, calc(100vh - 34px));
  padding: clamp(160px, 17vh, 210px) 5.6vw 42px;
  overflow: hidden;
  color: var(--white);
  background: #151717;
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 72% 38%, rgba(237, 213, 208, 0.30), transparent 28%),
    linear-gradient(90deg, rgba(15, 17, 17, 0.82) 0%, rgba(15, 17, 17, 0.58) 34%, rgba(15, 17, 17, 0.12) 68%, rgba(15, 17, 17, 0.56) 100%),
    linear-gradient(0deg, rgba(15, 17, 17, 0.72) 0%, rgba(15, 17, 17, 0.08) 45%, rgba(15, 17, 17, 0.36) 100%);
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  inset: 18px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 16, 15, 0.72), rgba(15, 16, 15, 0.30) 42%, rgba(15, 16, 15, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(710px, 72vw);
  padding-bottom: 155px;
  color: var(--white);
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 5.35vw, 5.6rem);
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.hero-content p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.26rem);
}

.hero-content .eyebrow {
  color: var(--blush);
}

.hero-content .text-link.light {
  color: var(--blush);
}

.hero-video-card {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  min-height: 100%;
  padding: 0;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--charcoal-dark);
  border-radius: 0;
  box-shadow: none;
}

.hero-video-frame video,
.hero-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.05);
}

.hero-video-frame video {
  position: relative;
  z-index: 1;
  display: block;
}

.video-fallback-image {
  position: absolute;
  inset: 0;
  display: none;
}

.hero-video-frame.video-failed video {
  display: none;
}

.hero-video-frame.video-failed .video-fallback-image {
  display: block;
}

.hero-proof-row {
  position: absolute;
  bottom: 48px;
  left: 5.6vw;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  width: min(760px, 58vw);
  color: rgba(255, 255, 255, 0.74);
}

.hero-proof-row div {
  min-height: 60px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof-row div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof-row span {
  display: block;
  margin-bottom: 3px;
  color: var(--blush);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof-row strong {
  display: block;
  max-width: 210px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-help-card {
  position: absolute;
  right: 4.2vw;
  bottom: 38px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(300px, 28vw);
  padding: 18px 20px;
  color: var(--white);
  background: rgba(24, 27, 27, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-help-card:hover {
  background: rgba(24, 27, 27, 0.70);
  border-color: rgba(237, 213, 208, 0.46);
  transform: translateY(-4px);
}

.hero-help-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.hero-help-card strong {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 500;
}

.hero-help-card svg {
  width: 16px;
  height: 16px;
  color: var(--blush);
}

.hero-actions,
.section-heading,
.pathway-band,
.signup-band,
.prototype-form,
.price-row,
.seat-control {
  display: flex;
  align-items: center;
}

.hero-actions {
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 27px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
}

.button.primary:hover {
  background: #7d9a5e;
}

.button.outline {
  color: var(--charcoal-dark);
  background: transparent;
  border-color: var(--sage-dark);
}

.button.glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.button.glass:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

.button.blush-outline {
  color: var(--blush-deep);
  background: transparent;
  border-color: var(--blush-deep);
}

.button.full {
  width: 100%;
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.52;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blush-deep);
  font-weight: 500;
}

.text-link.light {
  color: var(--blush);
}

.text-link.centered {
  justify-content: center;
  width: 100%;
  margin-top: 14px;
}

.proof-strip,
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-strip {
  min-height: 72px;
  color: var(--white);
  background: var(--sage);
}

.proof-strip div,
.trust-row div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  text-align: center;
}

.proof-strip svg,
.trust-row svg,
.included-section svg,
.feature-grid svg {
  color: var(--sage-dark);
  stroke-width: 1.5;
}

.proof-strip svg {
  color: var(--white);
}

.section {
  padding: clamp(58px, 7vw, 110px) 7.3vw;
}

.tinted {
  background: linear-gradient(110deg, var(--beige-soft), #fbf9f6);
}

.faculty-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.3fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
}

.section-copy.narrow {
  max-width: 500px;
}

.check-list {
  padding: 0;
  margin: 26px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 7px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  content: "✓";
}

.portrait-card img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.listing-hero {
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: 26px;
}

.listing-hero-copy {
  max-width: 900px;
}

.listing-hero h1 {
  max-width: 880px;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
}

.listing-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 28px;
}

.bundle-panel,
.past-workshops-band {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(105deg, var(--sage-pale), var(--beige-soft));
  border: 1px solid var(--line);
}

.bundle-panel {
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 0.55fr) auto;
}

.past-workshops-band {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.bundle-panel {
  margin: 20px 0 28px;
}

.bundle-panel h2,
.past-workshops-band h2 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 400;
}

.bundle-panel p,
.past-workshops-band p {
  margin-bottom: 0;
}

.pathway-builder-status {
  margin-top: 8px;
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 500;
}

.pathway-estimate {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(137, 165, 106, 0.28);
}

.pathway-estimate span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--charcoal);
  font-size: 0.78rem;
}

.pathway-estimate strong {
  color: var(--charcoal-dark);
  font-weight: 500;
  white-space: nowrap;
}

.bundle-actions {
  display: grid;
  gap: 10px;
}

.listing-controls {
  display: grid;
  gap: 18px;
}

.filter-chip-row,
.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.filter-chip,
.filter-select,
.search-prototype {
  min-width: 0;
  color: var(--charcoal-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.filter-chip {
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  cursor: pointer;
}

.filter-chip.active {
  color: var(--white);
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.filter-select,
.search-prototype {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.filter-select {
  cursor: pointer;
}

.filter-select svg,
.search-prototype svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--sage-dark);
  stroke-width: 1.7;
}

.filter-select strong {
  font-weight: 500;
}

.search-prototype {
  flex: 1 1 280px;
}

.search-prototype span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-prototype input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  color: var(--charcoal-dark);
  background: transparent;
  border: 0;
}

.search-prototype input:focus {
  outline: 0;
}

.sort-select {
  margin-left: auto;
}

.workshop-listing {
  padding-top: 18px;
}

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

.listing-card .image-link {
  position: relative;
}

.card-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(137, 165, 106, 0.35);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.card-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.6;
}

.listing-card h2 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.listing-card .button.outline {
  min-height: 42px;
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}

.card-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  margin-top: 14px;
}

.card-action-row .text-link {
  font-size: 0.82rem;
}

.card-action-row button.text-link.is-added {
  color: var(--sage-dark);
}

.text-link.is-added,
button.text-link.is-added {
  color: var(--sage-dark);
}

.past-workshops-band {
  margin: 12px 7.3vw 0;
}

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

.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.course-card:hover {
  border-color: rgba(137, 165, 106, 0.65);
  box-shadow: 0 24px 58px rgba(53, 56, 56, 0.16);
  transform: translateY(-8px);
}

.course-card .image-link {
  display: block;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
}

.course-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.course-card:hover img {
  transform: scale(1.055);
}

.course-card:hover .card-icon {
  color: var(--white);
  background: var(--blush-deep);
  border-color: var(--blush-deep);
  transform: translateY(-2px);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.course-type {
  margin-bottom: 9px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.meta-list,
.booking-facts {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 22px;
}

.meta-list div,
.booking-facts div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: start;
}

.meta-list dt,
.booking-facts dt,
.meta-list dd,
.booking-facts dd {
  margin: 0;
}

.meta-list svg,
.booking-facts svg {
  width: 17px;
  height: 17px;
  color: var(--charcoal);
  stroke-width: 1.7;
}

.price-row {
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  margin-bottom: 22px;
}

.price-row p {
  margin-bottom: 0;
}

.price-row strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.price-row small {
  display: block;
  color: var(--charcoal);
  text-decoration: line-through;
}

.price-row span {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: var(--charcoal-dark);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--sage-pale);
}

.price-row span.blush {
  background: var(--blush);
}

.pathway-band {
  gap: 36px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.pathway-icon {
  display: grid;
  flex: 0 0 auto;
  width: 98px;
  height: 98px;
  place-items: center;
  color: var(--sage-dark);
  background: var(--sage-pale);
  border: 1px solid var(--sage-dark);
  border-radius: 50%;
}

.pathway-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.4;
}

.investment-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1.28fr;
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
  background: linear-gradient(105deg, rgba(237, 213, 208, 0.30), rgba(255, 255, 255, 0.92));
  border-bottom: 1px solid var(--line);
}

.investment-section .eyebrow {
  color: var(--blush-deep);
}

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

.investment-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(184, 132, 122, 0.32);
}

.investment-grid svg {
  width: 38px;
  height: 38px;
  color: var(--blush-deep);
  stroke-width: 1.55;
}

.investment-grid h3 {
  margin: 18px 0 10px;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
}

.investment-grid p,
.prototype-note {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: 0.86rem;
}

.prototype-note {
  grid-column: 2;
  padding: 13px 15px;
  background: rgba(237, 213, 208, 0.28);
  border-left: 3px solid var(--blush-deep);
}

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

blockquote {
  min-height: 240px;
  padding: 34px;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

blockquote svg {
  width: 36px;
  height: 36px;
  color: var(--sage-dark);
  fill: rgba(183, 206, 152, 0.32);
  stroke-width: 1.5;
}

blockquote footer {
  margin-top: 22px;
  padding-top: 18px;
  color: var(--charcoal-dark);
  font-size: 0.82rem;
  border-top: 1px solid var(--line);
}

blockquote footer span {
  color: var(--charcoal);
}

.signup-band {
  gap: 40px;
  justify-content: space-between;
  padding: 52px 7.3vw;
  color: var(--white);
  background: var(--charcoal-dark);
}

.signup-band h2 {
  margin-bottom: 6px;
}

.signup-band p {
  margin-bottom: 0;
}

.prototype-form {
  align-items: flex-end;
  gap: 18px;
}

.prototype-form label {
  display: grid;
  gap: 6px;
}

.prototype-form span {
  font-size: 0.76rem;
  font-weight: 500;
}

.prototype-form input,
.prototype-form select {
  width: 230px;
  height: 50px;
  padding: 0 16px;
  color: var(--charcoal-dark);
  background: var(--white);
  border: 1px solid transparent;
}

.prototype-form .button {
  width: 230px;
  height: 50px;
  white-space: nowrap;
}

.prototype-form input:focus,
.prototype-form select:focus,
.attendee-grid input:focus,
.attendee-grid textarea:focus {
  outline: 2px solid var(--sage);
}

.form-feedback {
  width: 100%;
  margin: 2px 0 0;
  color: var(--sage);
  font-size: 0.78rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(140px, 0.7fr));
  gap: 38px;
  padding: 52px 7.3vw;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 240px;
  margin-bottom: 20px;
}

.site-footer p,
.site-footer a {
  color: var(--charcoal);
  font-size: 0.86rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer strong {
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(44px, 6vw, 80px);
  align-items: start;
}

.detail-hero > *,
.faculty-section > *,
.overview-section > *,
.pathway-detail > *,
.course-grid > *,
.listing-grid > *,
.quote-grid > *,
.related-grid > *,
.site-footer > * {
  min-width: 0;
}

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

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-grid .gallery-main {
  grid-column: 1 / -1;
  height: 450px;
}

.booking-panel {
  position: sticky;
  top: 112px;
}

.booking-panel h1 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.detail-price {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 2.15rem;
}

.detail-price span {
  font-family: var(--sans);
  font-size: 0.95rem;
}

.booking-facts {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background: var(--sage-dark);
  border-radius: 50%;
}

.seat-control {
  justify-content: space-between;
  margin: 18px 0;
}

.qty-control {
  display: grid;
  grid-template-columns: 38px 44px 38px;
  height: 38px;
  border: 1px solid var(--line);
}

.qty-control button,
.qty-control output {
  display: grid;
  place-items: center;
  background: var(--white);
  border: 0;
}

.qty-control button {
  cursor: pointer;
}

.savings-table {
  display: grid;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.savings-table div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.savings-table div + div {
  border-top: 1px solid var(--line);
}

.savings-table span {
  padding: 10px 16px;
}

.savings-table span + span {
  border-left: 1px solid var(--line);
}

.brochure-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.brochure-link svg {
  width: 18px;
  height: 18px;
}

.trust-row {
  min-height: 86px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(34px, 6vw, 90px);
}

.leaf-rule {
  width: 150px;
  height: 1px;
  margin-top: 28px;
  background: var(--sage-dark);
}

.overview-copy {
  columns: 2;
  column-gap: 50px;
}

.agenda-section h2 {
  margin-bottom: 26px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.agenda-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

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

.accordion-toggle {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.agenda-card ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.agenda-card li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 8px 0 8px 20px;
  border-left: 2px solid var(--sage);
}

.agenda-card li::before {
  position: absolute;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  margin-left: -25px;
  content: "";
  background: var(--sage-dark);
  border-radius: 50%;
}

.agenda-card time {
  color: var(--charcoal);
  font-size: 0.8rem;
}

.feature-grid {
  display: grid;
  gap: 20px;
}

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

.feature-grid article {
  min-height: 190px;
  padding: 26px;
  border-left: 1px solid var(--line);
}

.feature-grid svg {
  width: 38px;
  height: 38px;
}

.feature-grid h3 {
  margin: 18px 0 10px;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
}

.feature-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.included-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  padding: 34px 7.3vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.included-section h2 {
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.included-section div {
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  gap: 16px;
}

.included-section span {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.82rem;
}

.instructor-section {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: 48px;
  align-items: center;
}

.instructor-section img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
}

.credentials {
  color: var(--sage-dark);
  font-weight: 500;
}

.pathway-detail {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.9fr) minmax(220px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.pathway-copy {
  padding-right: 20px;
}

.mini-course {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.mini-course img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.mini-course > div {
  min-width: 0;
}

.mini-course .eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.mini-course h3 {
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.mini-course strong span,
.related-grid strong span {
  font-weight: 400;
}

.mini-course a,
.mini-course button.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--sage-dark);
}

.faq-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
}

.faq-section h2 {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.faq-item {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  color: var(--charcoal-dark);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

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

.related-grid article {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.related-grid article > :not(img) {
  grid-column: 2;
  min-width: 0;
}

.related-grid img {
  grid-row: 1 / span 5;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-grid .eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.related-grid h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.reservation-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: clamp(32px, 4vw, 58px);
  align-items: start;
  padding-top: 36px;
  padding-right: clamp(24px, 3.4vw, 56px);
  padding-left: clamp(24px, 3.4vw, 56px);
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(32px, 4vw, 58px);
  align-items: start;
  padding-top: 36px;
  padding-right: clamp(24px, 3.4vw, 56px);
  padding-left: clamp(24px, 3.4vw, 56px);
}

.reservation-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.checkout-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.reservation-heading,
.checkout-heading {
  padding-bottom: 4px;
}

.reservation-heading h1,
.checkout-heading h1 {
  margin-bottom: 8px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.reservation-heading .leaf-rule,
.checkout-heading .leaf-rule {
  width: 48px;
  margin: 0 0 12px;
}

.reservation-heading p,
.checkout-heading p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--charcoal);
}

.checkout-heading {
  max-width: 860px;
}

.reservation-item {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) minmax(150px, 180px);
  gap: 28px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.selected-stack {
  display: grid;
  gap: 18px;
}

.selected-extra-workshop {
  background: linear-gradient(110deg, rgba(238, 244, 232, 0.56), rgba(255, 255, 255, 0.96));
}

.reservation-item > img,
.image-badge-wrap img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.reservation-item h2,
.attendee-details h2,
.summary-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 1.8vw, 1.85rem);
}

.reservation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 0;
  margin: 0 0 14px;
}

.reservation-meta div {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.reservation-meta dt,
.reservation-meta dd {
  margin: 0;
}

.reservation-meta svg {
  width: 16px;
  height: 16px;
  color: var(--charcoal);
  stroke-width: 1.6;
}

.seat-control.compact {
  justify-content: flex-start;
  gap: 26px;
  margin: 0;
}

.reservation-price {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.reservation-price strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

.reservation-price span,
.reservation-price small {
  color: var(--charcoal);
  font-size: 0.78rem;
}

.reservation-price small {
  text-decoration: line-through;
}

.link-button,
button.text-link {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.link-button {
  color: var(--blush-deep);
}

.image-badge-wrap {
  position: relative;
}

.image-badge-wrap span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 7px 10px;
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--sage-dark);
}

.add-on-workshop {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 239, 0.72));
}

.add-on-workshop.is-added {
  display: none;
  border-color: rgba(137, 165, 106, 0.75);
  box-shadow: inset 0 0 0 1px rgba(137, 165, 106, 0.22);
}

.reservation-related article.is-added {
  background: var(--sage-pale);
  border-color: rgba(137, 165, 106, 0.72);
}

.empty-reservation {
  padding: 26px;
  background: var(--beige-soft);
  border: 1px dashed rgba(137, 165, 106, 0.62);
}

.empty-reservation h2 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.empty-reservation p {
  max-width: 620px;
  color: var(--charcoal);
}

.add-on-workshop .button {
  margin-top: 12px;
}

.reservation-pathway {
  display: grid;
  grid-template-columns: auto minmax(210px, 0.9fr) minmax(240px, 1.1fr) minmax(180px, 260px);
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
  background: linear-gradient(100deg, var(--sage-pale), var(--beige-soft));
  border: 1px solid var(--line);
}

.reservation-pathway .pathway-icon {
  width: 70px;
  height: 70px;
}

.reservation-pathway .pathway-icon svg {
  width: 32px;
  height: 32px;
}

.reservation-pathway h2,
.reservation-pathway p {
  margin-bottom: 0;
}

.reservation-pathway h2 {
  font-size: clamp(1.55rem, 2vw, 2.25rem);
}

.pathway-status {
  grid-column: 3;
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 500;
}

.pathway-progress {
  position: relative;
  display: grid;
  grid-column: 4;
  grid-row: 1 / span 2;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 28px;
}

.pathway-progress::before {
  position: absolute;
  right: 13px;
  left: 13px;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(137, 165, 106, 0.55) 0 7px, transparent 7px 12px);
}

.pathway-progress span {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  justify-self: center;
  background: var(--white);
  border: 1px dashed rgba(137, 165, 106, 0.9);
  border-radius: 50%;
}

.pathway-progress span.filled {
  background: var(--sage-dark);
  border-style: solid;
}

.pathway-progress span.current {
  background: var(--white);
  border: 2px solid var(--sage-dark);
}

.attendee-details,
.checkout-panel,
.summary-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.checkout-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.42));
}

.compact-heading {
  margin-bottom: 20px;
}

.compact-heading p {
  margin-bottom: 0;
  color: var(--charcoal);
}

.prototype-pill {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--sage-dark);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sage-pale);
}

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

.attendee-grid label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.attendee-grid span {
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 500;
}

.attendee-grid input,
.attendee-grid textarea {
  width: 100%;
  min-width: 0;
  color: var(--charcoal-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.attendee-grid input {
  height: 46px;
  padding: 0 14px;
}

.attendee-grid textarea {
  min-height: 46px;
  padding: 12px 14px;
  resize: vertical;
}

.attendee-grid .wide-field {
  grid-column: span 2;
}

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

.blush-pill {
  color: var(--blush-deep);
  background: rgba(237, 213, 208, 0.44);
}

.payment-preview {
  border-color: rgba(184, 132, 122, 0.32);
}

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

.payment-card-preview label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.payment-card-preview span {
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 500;
}

.payment-card-preview input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  color: var(--charcoal-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.payment-card-preview input:focus {
  outline: 2px solid var(--sage);
}

.payment-card-preview .wide-field {
  grid-column: span 2;
}

.post-checkout-note {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
  background: linear-gradient(100deg, var(--sage-pale), var(--beige-soft));
  border: 1px solid var(--line);
}

.post-checkout-note svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--sage-dark);
  background: var(--white);
  border-radius: 50%;
}

.post-checkout-note h2 {
  margin-bottom: 7px;
  font-size: clamp(1.45rem, 1.8vw, 1.85rem);
}

.post-checkout-note p {
  margin-bottom: 0;
  color: var(--charcoal);
}

.reservation-related {
  padding: 22px 0 0;
}

.reservation-related .related-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

.reservation-related .related-grid article {
  grid-template-columns: minmax(132px, 0.42fr) minmax(0, 1fr);
  align-items: start;
}

.summary-panel {
  position: sticky;
  top: 124px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), var(--beige-soft));
}

.checkout-summary {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 232, 0.62));
}

.summary-panel .leaf-rule {
  width: 42px;
  margin: -3px 0 24px;
}

.summary-lines {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 22px;
}

.summary-lines div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.summary-lines dt,
.summary-lines dd {
  margin: 0;
}

.summary-lines dd {
  text-align: right;
}

.summary-lines svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
}

.summary-saving {
  margin-top: 12px;
  padding-top: 20px !important;
  border-top: 1px solid var(--line);
}

.summary-saving dd {
  color: var(--sage-dark);
}

.summary-total {
  align-items: baseline;
  margin-top: 10px;
  padding-top: 22px !important;
  border-top: 1px solid var(--line);
}

.summary-total dt {
  font-family: var(--serif);
  font-size: 1.55rem;
}

.summary-total dt span {
  font-family: var(--sans);
  font-size: 0.76rem;
}

.summary-total dd {
  font-family: var(--serif);
  font-size: 2.15rem;
}

.summary-panel .button + .button {
  margin-top: 12px;
}

.checkout-boundary {
  padding: 12px;
  margin: 14px 0 24px;
  color: var(--charcoal);
  font-size: 0.78rem;
  background: rgba(237, 213, 208, 0.28);
  border: 1px solid rgba(184, 132, 122, 0.32);
}

.summary-trust {
  display: grid;
  gap: 18px;
  padding-top: 6px;
}

.summary-trust div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}

.summary-trust svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--sage-dark);
  background: var(--sage-pale);
  border-radius: 50%;
  stroke-width: 1.6;
}

.summary-trust span {
  display: grid;
  gap: 1px;
  color: var(--charcoal);
  font-size: 0.78rem;
  line-height: 1.45;
}

.summary-trust strong {
  color: var(--charcoal-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-sticky-cta {
  display: none;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  max-width: 340px;
  padding: 14px 18px;
  color: var(--white);
  pointer-events: none;
  background: var(--charcoal-dark);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

  .nav-toggle {
    display: grid;
    justify-self: end;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 7.3vw 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .site-nav a::after {
    bottom: 7px;
  }

  body[data-page="home"] .nav-toggle {
    color: var(--white);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.24);
  }

  body[data-page="home"] .site-nav {
    color: var(--charcoal-dark);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }

  .course-grid,
  .listing-grid,
  .quote-grid,
  .related-grid,
  .feature-grid.four,
  .pathway-detail,
  .investment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero,
  .overview-section,
  .instructor-section,
  .faculty-section,
  .home-hero,
  .investment-section,
  .reservation-shell,
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .booking-panel,
  .summary-panel {
    position: static;
  }

  .reservation-main {
    display: contents;
  }

  .reservation-heading {
    order: 1;
  }

  .selected-workshop {
    order: 2;
  }

  .selected-stack {
    order: 3;
  }

  .empty-reservation {
    order: 5;
  }

  .add-on-workshop {
    order: 6;
  }

  .reservation-pathway {
    order: 7;
  }

  .summary-panel {
    order: 4;
  }

  .reservation-related {
    order: 8;
  }

  .reservation-item {
    grid-template-columns: 220px minmax(0, 1fr) minmax(150px, 180px);
  }

  .reservation-pathway {
    grid-template-columns: auto 1fr;
  }

  .pathway-status {
    grid-column: 2;
  }

  .pathway-progress {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .checkout-summary {
    position: static;
  }

  .included-section {
    grid-template-columns: 1fr;
  }

  .included-section div {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }

  .signup-band,
  .prototype-form,
  .pathway-band,
  .bundle-panel,
  .past-workshops-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .bundle-panel,
  .past-workshops-band {
    grid-template-columns: 1fr;
  }

  .pathway-estimate,
  .bundle-actions {
    width: 100%;
  }

  .sort-select {
    margin-left: 0;
  }

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

@media (max-width: 1320px) {
  .reservation-shell,
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
    order: 3;
  }

  .reservation-main {
    display: contents;
  }

  .reservation-heading {
    order: 1;
  }

  .selected-workshop {
    order: 2;
  }

  .selected-stack {
    order: 3;
  }

  .empty-reservation {
    order: 5;
  }

  .add-on-workshop {
    order: 6;
  }

  .reservation-pathway {
    order: 7;
  }

  .reservation-related {
    order: 8;
  }
}

@media (max-width: 900px) {
  .reservation-item {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  }

  .reservation-price {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .reservation-related .related-grid {
    grid-template-columns: 1fr;
  }

  .payment-card-preview {
    grid-template-columns: 1fr;
  }

  .payment-card-preview .wide-field {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .reservation-item {
    grid-template-columns: 1fr;
  }

  .reservation-item > img,
  .image-badge-wrap,
  .reservation-item-copy,
  .reservation-price {
    grid-column: 1;
  }

  .reservation-item > img,
  .image-badge-wrap img {
    height: clamp(180px, 42vw, 240px);
    aspect-ratio: auto;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
    padding-bottom: 58px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    min-height: 72px;
    padding: 0 18px;
  }

  .brand img {
    width: 190px;
  }

  .cart-link span {
    display: none;
  }

  .home-hero {
    flex-direction: column;
    justify-content: flex-end;
    min-height: 760px;
    padding: 132px 22px 26px;
  }

  .home-hero::before {
    background:
      radial-gradient(circle at 70% 25%, rgba(237, 213, 208, 0.26), transparent 32%),
      linear-gradient(90deg, rgba(15, 17, 17, 0.80) 0%, rgba(15, 17, 17, 0.48) 55%, rgba(15, 17, 17, 0.28) 100%),
      linear-gradient(0deg, rgba(15, 17, 17, 0.82) 0%, rgba(15, 17, 17, 0.22) 52%, rgba(15, 17, 17, 0.44) 100%);
  }

  .home-hero::after {
    inset: 10px;
    border-radius: 12px;
  }

  .hero-content {
    width: 100%;
    padding-bottom: 28px;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .hero-content p:not(.eyebrow) {
    max-width: 31rem;
  }

  .hero-proof-row {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-proof-row div {
    min-height: 0;
    padding: 0 0 0 16px;
    border-left: 1px solid rgba(237, 213, 208, 0.55);
  }

  .hero-proof-row div:first-child {
    padding-left: 16px;
    border-left: 1px solid rgba(237, 213, 208, 0.55);
  }

  .hero-proof-row strong {
    max-width: none;
  }

  .hero-help-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .hero-video-card {
    min-height: 100%;
    margin-top: 0;
    padding: 0;
  }

  .hero-video-frame {
    box-shadow: none;
  }

  h1 {
    font-size: 1.8rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 2.15rem;
  }

  .proof-strip,
  .trust-row,
  .course-grid,
  .listing-grid,
  .quote-grid,
  .related-grid,
  .feature-grid.four,
  .pathway-detail,
  .investment-grid,
  .reservation-pathway,
  .attendee-grid,
  .agenda-grid,
  .faq-section,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .trust-row {
    padding: 18px;
    gap: 14px;
  }

  .proof-strip div,
  .trust-row div {
    justify-content: flex-start;
  }

  .section {
    padding: 54px 22px;
  }

  .listing-hero {
    padding-top: 38px;
  }

  .listing-hero h1 {
    font-size: 2.1rem;
  }

  .filter-chip-row {
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  .filter-toolbar,
  .filter-select,
  .search-prototype {
    width: 100%;
  }

  .filter-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-select {
    justify-content: space-between;
  }

  .bundle-panel,
  .past-workshops-band {
    padding: 20px;
  }

  .past-workshops-band {
    margin: 8px 22px 0;
  }

  .reservation-shell {
    padding-top: 30px;
  }

  .checkout-shell {
    padding-top: 30px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .reservation-item {
    gap: 18px;
  }

  .reservation-item > img,
  .image-badge-wrap img {
    height: clamp(180px, 42vw, 240px);
    aspect-ratio: auto;
  }

  .reservation-price {
    justify-items: start;
    width: 100%;
    text-align: left;
  }

  .seat-control.compact {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .reservation-pathway {
    padding: 22px;
  }

  .pathway-status {
    grid-column: auto;
  }

  .attendee-grid .wide-field {
    grid-column: auto;
  }

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

  .post-checkout-note {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-main,
  .gallery-grid img {
    height: auto;
    aspect-ratio: 1.2 / 1;
  }

  .gallery-grid {
    gap: 10px;
  }

  .booking-panel h1 {
    font-size: 1.65rem;
    overflow-wrap: anywhere;
  }

  main p,
  main dd,
  main li,
  .text-link {
    overflow-wrap: anywhere;
  }

  .savings-table div {
    grid-template-columns: 1fr;
  }

  .savings-table span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .overview-copy {
    columns: 1;
  }

  .included-section {
    padding: 34px 22px;
  }

  .included-section div {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }

  .investment-section {
    padding-top: 48px;
  }

  .prototype-note {
    grid-column: auto;
  }

  .mini-course,
  .related-grid article {
    grid-template-columns: 120px 1fr;
  }

  .mini-course {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .mini-course img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.35 / 1;
  }

  .related-grid img {
    min-height: 150px;
    height: 100%;
  }

  .reservation-related .related-grid article {
    grid-template-columns: 1fr;
  }

  .reservation-related .related-grid article > :not(img) {
    grid-column: 1;
  }

  .reservation-related .related-grid img {
    grid-row: auto;
    height: clamp(170px, 34vw, 240px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .prototype-form,
  .prototype-form label,
  .prototype-form input,
  .prototype-form select,
  .prototype-form .button {
    width: 100%;
  }

  .signup-band {
    padding: 44px 22px;
  }

  .site-footer {
    padding: 44px 22px;
  }

  .mini-cart {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 75;
    display: grid;
    height: 58px;
    place-items: center;
    color: var(--white);
    font-weight: 500;
    background: var(--sage-dark);
    border: 0;
    cursor: pointer;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 178px;
  }

  body[data-page="home"] .brand {
    padding: 0;
  }

  body[data-page="home"] .brand img {
    width: 176px;
  }

  .site-header {
    gap: 10px;
  }

  .button {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions {
    gap: 18px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

}
