/* ── Consulting Page Styles ── */
:root {
  --magenta: #D91C73;
  --magenta-deep: #B4145E;
  --terracotta: #C17D4E;
  --terracotta-deep: #A5673E;
  --ink: #241419;
  --ink-soft: #4A3540;
  --blush: #FBF3EF;
  --blush-deep: #F5E7E0;
  --card: #FFFFFF;
  --line: #E9D9CE;
  --gold: #B08D57;
  --radius: 2px;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

.monogram {
  position: relative;
  display: inline-block;
}

.monogram .o,
.monogram .s {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  mix-blend-mode: multiply;
}

.monogram .o {
  color: var(--magenta);
}

.monogram .s {
  color: var(--terracotta);
  left: 0.34em;
}

.breadcrumb {
  padding: 22px 0 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

.breadcrumb a:hover {
  color: var(--magenta);
}

.intro {
  padding: 36px 0 0;
}

.intro h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-style: italic;
  font-weight: 500;
  max-width: 680px;
}

.intro p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 620px;
  line-height: 1.75;
}

/* Sub-nav tabs (jump to section) */
.subnav {
  position: sticky;
  top: 69px;
  z-index: 50;
  background: var(--blush);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-top: 30px;
}

.subnav-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subnav a {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--card);
  transition: all 0.15s ease;
}

.subnav a:hover {
  border-color: var(--ink);
}

.subnav a.current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 800px) {
  .section-head {
    grid-template-columns: 1fr;
  }
}

.section-head .head-main .eyebrow {
  display: block;
}

.section-head h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-top: 10px;
  max-width: 560px;
}

.section-head p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.65;
}

.head-aside {
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.head-aside .aside-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta-deep);
  margin-bottom: 14px;
  display: block;
}

.head-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.head-stat:last-child {
  border-bottom: none;
}

.head-stat b {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
}

.head-stat span {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-align: right;
}

/* Digital Resources */
#resources {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 40px;
  padding-bottom: 0;
}

.filter-tab {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  background: var(--blush);
  transition: all 0.15s ease;
}

.filter-tab:hover {
  border-color: var(--ink);
}

.filter-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

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

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.r-card {
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.r-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px -20px rgba(36, 20, 25, 0.35);
}

.r-cover {
  aspect-ratio: 5/4;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  isolation: isolate;
}

.r-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
}

.r-cover::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 26px 26px 0;
  border-color: transparent rgba(255, 255, 255, 0.9) transparent transparent;
}

.r-cover .cat {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.85;
}

.r-cover .t {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
}

.cov-1::before {
  background: linear-gradient(150deg, var(--terracotta), var(--terracotta-deep) 80%);
}

.cov-2::before {
  background: linear-gradient(150deg, #4A3540, #241419 80%);
}

.cov-3::before {
  background: linear-gradient(150deg, var(--magenta), #7A1348 80%);
}

.cov-4::before {
  background: linear-gradient(150deg, var(--gold), #8a6b3f 80%);
}

.cov-5::before {
  background: linear-gradient(150deg, #7C6A73, #3a2c33 80%);
}

.cov-6::before {
  background: repeating-linear-gradient(115deg, #2C2028 0 3px, #3a2b33 3px 22px);
}

.cov-7::before {
  background: linear-gradient(150deg, #C17D4E, #4A3540 90%);
}

.r-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.r-body .tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
}

.r-body h3 {
  font-size: 16.5px;
  margin-top: 8px;
  font-style: italic;
  font-weight: 500;
}

.r-body p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 8px;
  flex: 1;
}

.r-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.r-price {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
}

.r-buy {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.r-buy:hover {
  background: var(--magenta);
}

.r-buy.bought {
  background: var(--terracotta-deep);
  cursor: default;
}

.r-buy.processing {
  background: var(--ink-soft);
  cursor: wait;
}

.how {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 800px) {
  .how {
    grid-template-columns: 1fr;
  }
}

.how-step .n {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--terracotta);
}

.how-step h4 {
  font-size: 14.5px;
  margin-top: 10px;
  font-weight: 700;
}

.how-step p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  line-height: 1.6;
}

/* Programme shared blocks (masterclass + business) */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin-top: 36px;
}

@media (max-width: 700px) {
  .learn-grid {
    grid-template-columns: 1fr;
  }
}

.learn-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.learn-item .n {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--magenta);
  flex: 0 0 auto;
  width: 28px;
}

.learn-item p {
  font-size: 14.5px;
  font-weight: 600;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 36px;
}

@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

.who-item {
  background: var(--card);
  padding: 26px 20px;
  text-align: center;
}

.who-item p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .includes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }
}

.include-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
}

.include-card .icon {
  font-size: 19px;
}

.include-card h4 {
  font-size: 14px;
  margin-top: 12px;
  font-weight: 700;
}

.include-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  line-height: 1.5;
}

#business {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Taught by (shared, once) */
.taught-by {
  background: var(--blush-deep);
}

.tb-grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 44px;
  align-items: center;
}

@media (max-width: 800px) {
  .tb-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.tb-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, var(--card), var(--terracotta) 130%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  max-width: 190px;
}

.tb-photo .monogram {
  font-size: 88px;
  width: 0.86em;
  height: 1em;
}

.tb-copy .name {
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  font-family: 'Fraunces', serif;
}

.tb-copy p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.65;
  max-width: 600px;
}

/* Combined CTA */
.enrol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .enrol-grid {
    grid-template-columns: 1fr;
  }
}

.enrol-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.enrol-card .eyebrow {
  color: var(--terracotta-light, var(--terracotta));
}

.enrol-card h3 {
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
  font-style: italic;
  font-weight: 500;
}

.enrol-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  line-height: 1.55;
  flex: 1;
}

.enrol-card a.btn {
  margin-top: 20px;
  justify-content: center;
}

.enrol-note {
  text-align: center;
  margin-top: 30px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.enrol-note a {
  color: var(--magenta);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-fill {
  background: var(--magenta);
  color: #fff;
}

.btn-fill:hover {
  background: var(--magenta-deep);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #3a2b33;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--terracotta-deep);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}