:root {
  --cream: #f7f3ea;
  --cream-light: #fbf9f3;
  --sage: #607565;
  --sage-deep: #34463b;
  --sage-soft: #dfe5dc;
  --beige: #ece8dc;
  --line: #d5ddd4;
  --muted: #66736b;
  --white: #fff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 28px 60px rgba(52, 70, 59, .14);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--sage-deep);
  background: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 120px 0; }
.section-tint { background: rgba(236, 232, 220, .64); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: 112px;
  overflow: hidden;
  border-bottom: 1px solid rgba(96, 117, 101, .12);
  background: rgba(247, 243, 234, .92);
  backdrop-filter: blur(15px);
}
.header-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 220px; max-height: 96px; object-fit: contain; mix-blend-mode: multiply; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { text-decoration: none; font-size: .91rem; font-weight: 500; letter-spacing: .03em; opacity: .84; transition: color .25s, opacity .25s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--sage); opacity: 1; }
.menu-button { display: none; width: 46px; height: 42px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--sage-deep); transition: transform .25s, opacity .25s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.petals { position: absolute; inset: 0; pointer-events: none; color: var(--sage); }
.petal { position: absolute; left: -5vw; width: 13px; height: 18px; border-radius: 95% 5% 95% 5%; background: currentColor; opacity: .25; animation: drift linear infinite; }
.petal-1 { top: 19%; animation-duration: 22s; transform: rotate(10deg); }
.petal-2 { top: 61%; width: 9px; height: 13px; animation-duration: 28s; animation-delay: -7s; opacity: .18; }
.petal-3 { top: 39%; width: 11px; height: 16px; animation-duration: 25s; animation-delay: -14s; opacity: .22; }
.petal-4 { top: 75%; width: 8px; height: 11px; animation-duration: 19s; animation-delay: -4s; opacity: .16; }
@keyframes drift { 0% { translate: -8vw 0; rotate: 0deg; } 25% { translate: 25vw -8px; } 50% { translate: 55vw 5px; } 75% { translate: 83vw -5px; } 100% { translate: 115vw 0; rotate: 180deg; } }

.hero { min-height: 95vh; padding-top: 168px; display: grid; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .95fr); align-items: center; gap: 80px; }
.eyebrow { display: inline-flex; margin: 0 0 30px; padding: 7px 16px; border: 1px solid rgba(96,117,101,.22); border-radius: 999px; color: var(--sage); font-size: .73rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.1; }
h1 { font-size: clamp(3.35rem, 6vw, 5.2rem); letter-spacing: -.035em; }
h1 span, h2 span { color: var(--sage); font-style: italic; }
.hero-intro { max-width: 560px; margin: 30px 0 38px; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.7; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border: 1px solid transparent; text-decoration: none; font-size: .98rem; font-weight: 500; transition: transform .25s, background .25s, color .25s, box-shadow .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--sage); color: var(--cream-light); box-shadow: 0 12px 28px rgba(52,70,59,.14); }
.button-primary:hover { background: #526757; box-shadow: 0 16px 34px rgba(52,70,59,.22); }
.button-picker { border-color: var(--sage); color: var(--sage-deep); background: var(--cream-light); cursor: pointer; font-family: var(--sans); }
.button-picker:hover { color: var(--cream-light); background: var(--sage-deep); }
.button-secondary { border-color: rgba(96,117,101,.24); background: transparent; }
.button-secondary:hover { background: rgba(96,117,101,.07); }
.hero-image { height: min(74vh, 760px); min-height: 560px; position: relative; }
.hero-image::before { content: ""; position: absolute; inset: 0; border-radius: 180px 180px 4px 4px; background: rgba(96,117,101,.06); transform: translate(18px, -18px); }
.hero-image img { position: relative; width: 100%; height: 100%; object-fit: cover; border-radius: 180px 180px 4px 4px; box-shadow: var(--shadow); }

.two-column { display: grid; grid-template-columns: minmax(360px, .85fr) minmax(0, 1fr); gap: 110px; align-items: center; }
.portrait { width: min(100%, 530px); margin-inline: auto; position: relative; }
.portrait::after { content: ""; position: absolute; z-index: -1; width: 220px; height: 220px; right: -45px; bottom: -45px; border-radius: 50%; background: rgba(96,117,101,.11); filter: blur(35px); }
.portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); }
.section-copy h2, .section-heading h2 { font-size: clamp(2.8rem, 5vw, 4.25rem); letter-spacing: -.025em; }
.section-copy p { margin: 0 0 22px; color: var(--muted); font-size: 1.08rem; line-height: 1.83; }
.rule { width: 64px; height: 1px; margin: 30px 0 35px; background: rgba(96,117,101,.55); }

.section-heading { max-width: 700px; margin: 0 auto 70px; text-align: center; }
.section-heading p { margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.course-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.course-card { min-height: 220px; padding: 31px; border: 1px solid rgba(96,117,101,.18); background: rgba(251,249,243,.7); transition: transform .35s, background .35s, box-shadow .35s; }
.course-card:hover { transform: translateY(-5px); background: rgba(236,232,220,.66); box-shadow: 0 18px 34px rgba(52,70,59,.08); }
.course-card h3 { margin-bottom: 16px; font-size: 1.3rem; }
.course-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.72; }
.course-card-link { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
.card-link-text { display: inline-flex; align-items: center; gap: 5px; margin-top: auto; padding-top: 20px; color: var(--sage); font-size: .86rem; font-weight: 600; letter-spacing: .02em; }

.philosophy { color: var(--cream-light); background: var(--sage-deep); }
.philosophy-grid { grid-template-columns: .9fr 1fr; }
.philosophy .section-copy h2 { color: var(--cream-light); }
.philosophy .section-copy h2 span { color: rgba(247,243,234,.68); }
.philosophy .section-copy p { color: rgba(247,243,234,.76); }
.rule-light { background: rgba(247,243,234,.32); }
.image-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.image-pair img { width: 100%; height: 420px; object-fit: cover; box-shadow: 0 28px 65px rgba(0,0,0,.22); }
.image-pair .image-low { height: 330px; margin-top: 60px; }

.contact { position: relative; overflow: hidden; }
.contact-orb { position: absolute; z-index: -1; width: 760px; height: 760px; left: 50%; top: 50%; border-radius: 50%; translate: -50% -50%; background: rgba(96,117,101,.055); filter: blur(45px); }
.contact-inner { width: min(840px, calc(100% - 48px)); margin-inline: auto; text-align: center; }
.contact h2 { font-size: clamp(2.9rem, 5.4vw, 4.4rem); letter-spacing: -.03em; }
.contact p { max-width: 720px; margin: 30px auto 42px; color: var(--muted); font-size: 1.18rem; }
.email-button { gap: 12px; font-size: 1.04rem; }
.email-button svg { width: 21px; fill: currentColor; }

.site-footer { padding: 42px 0; border-top: 1px solid rgba(96,117,101,.14); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner img { width: 180px; max-height: 70px; object-fit: contain; mix-blend-mode: multiply; filter: grayscale(1); opacity: .58; }
.footer-inner p { margin: 0; color: var(--muted); font-size: .88rem; }

.gallery-hero { padding: 190px 0 82px; text-align: center; background: var(--cream-light); }
.gallery-hero .section-heading { margin-bottom: 0; }
.gallery-hero h1 { font-size: clamp(3.4rem, 6vw, 5rem); }
.gallery-hero p { max-width: 720px; margin: 24px auto 0; color: var(--muted); font-size: 1.1rem; }
.gallery-section { padding-top: 72px; }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px; }
.gallery-filter { min-height: 44px; padding: 9px 18px; border: 1px solid rgba(96,117,101,.24); border-radius: 999px; color: var(--sage-deep); background: transparent; font: 500 .9rem var(--sans); cursor: pointer; transition: color .2s, background .2s, border-color .2s; }
.gallery-filter:hover, .gallery-filter:focus-visible, .gallery-filter[aria-pressed="true"] { border-color: var(--sage); color: var(--cream-light); background: var(--sage); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.gallery-item { min-width: 0; margin: 0; background: var(--cream-light); box-shadow: 0 14px 36px rgba(52,70,59,.1); }
.gallery-item[hidden] { display: none; }
.gallery-open { width: 100%; display: block; padding: 0; border: 0; background: transparent; cursor: zoom-in; overflow: hidden; }
.gallery-open img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.gallery-open:hover img, .gallery-open:focus-visible img { transform: scale(1.035); }
.gallery-item figcaption { min-height: 76px; padding: 17px 19px 19px; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.gallery-item figcaption span { display: block; margin-bottom: 4px; color: var(--sage); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.gallery-lightbox { width: min(1050px, calc(100% - 34px)); max-height: calc(100vh - 34px); padding: 0; border: 0; color: var(--cream-light); background: var(--sage-deep); box-shadow: 0 30px 90px rgba(0,0,0,.38); }
.gallery-lightbox::backdrop { background: rgba(24,34,28,.82); backdrop-filter: blur(4px); }
.gallery-lightbox img { width: 100%; max-height: calc(100vh - 130px); object-fit: contain; background: #1e2a23; }
.gallery-lightbox p { margin: 0; padding: 16px 60px 18px 20px; color: rgba(247,243,234,.86); }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: white; background: rgba(20,30,24,.72); font: 300 1.7rem/1 var(--sans); cursor: pointer; }

.course-picker { position: fixed; inset: 0 0 0 auto; width: min(540px, 100%); height: 100dvh; max-height: none; margin: 0; padding: 0; overflow-y: auto; border: 0; border-radius: 28px 0 0 28px; color: var(--sage-deep); background: var(--cream-light); box-shadow: -24px 0 70px rgba(31,45,36,.28); }
.course-picker[open] { animation: picker-slide-in .36s cubic-bezier(.22,.75,.22,1) both; }
.course-picker::backdrop { background: rgba(29,42,34,.48); backdrop-filter: blur(2px); }
.course-picker__panel { position: relative; min-height: 100%; padding: clamp(38px, 6vw, 62px) clamp(24px, 5vw, 48px); background: var(--cream-light); }
@keyframes picker-slide-in { from { transform: translateX(100%); opacity: .55; } to { transform: translateX(0); opacity: 1; } }
.course-picker__close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid rgba(96,117,101,.24); border-radius: 50%; color: var(--sage-deep); background: var(--cream); font: 300 1.65rem/1 var(--sans); cursor: pointer; }
.course-picker__progress { margin: 0 0 10px; color: var(--sage); font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.course-picker h2 { max-width: 430px; padding-right: 42px; font-size: clamp(2rem, 4vw, 2.85rem); }
.course-picker__intro { max-width: 660px; margin: 17px 0 0; color: var(--muted); font-size: 1.03rem; }
.course-picker__choices { display: grid; gap: 13px; margin-top: 30px; }
.course-picker__choices--two { grid-template-columns: 1fr; }
.course-picker__choices button { width: 100%; min-height: 112px; padding: 20px 22px; border: 1px solid rgba(96,117,101,.22); border-radius: 18px; color: var(--sage-deep); background: white; cursor: pointer; text-align: left; transition: border-color .2s, transform .2s, box-shadow .2s; }
.course-picker__choices button:hover, .course-picker__choices button:focus-visible { border-color: var(--sage); outline: 0; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(52,70,59,.1); }
.course-picker__choices strong { display: block; margin-bottom: 7px; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.course-picker__choices span { display: block; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.course-picker__back { margin-top: 20px; padding: 8px 0; border: 0; color: var(--sage); background: transparent; cursor: pointer; font: 500 .9rem var(--sans); text-decoration: underline; text-underline-offset: 4px; }
.course-picker__result { margin-top: 26px; padding: 23px 25px; border-left: 3px solid var(--sage); background: var(--sage-soft); }
.course-picker__result p { margin: 0; color: #45594b; line-height: 1.7; }
.course-picker__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.course-picker__actions a, .course-picker__actions button { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 999px; font: 600 .92rem var(--sans); text-decoration: none; cursor: pointer; }
.course-picker__actions a { border: 1px solid var(--sage); color: var(--cream-light); background: var(--sage); }
.course-picker__actions button { border: 1px solid rgba(96,117,101,.28); color: var(--sage-deep); background: transparent; }

.flourish-hero { position: relative; min-height: min(760px, 88vh); display: flex; align-items: center; padding: 190px 0 120px; overflow: hidden; color: var(--cream-light); background: var(--sage-deep); }
.flourish-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }
.flourish-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,39,30,.8) 0%, rgba(25,39,30,.55) 48%, rgba(25,39,30,.18) 100%); }
.flourish-hero-content { position: relative; z-index: 1; }
.flourish-hero-content h1 { max-width: 680px; color: var(--cream-light); }
.flourish-hero-content h1 span { color: #d9e4d8; }
.flourish-hero-content > p:not(.eyebrow) { max-width: 610px; margin: 28px 0 36px; color: rgba(251,249,243,.88); font-size: clamp(1.08rem, 1.8vw, 1.3rem); line-height: 1.7; }
.eyebrow-light { border-color: rgba(255,255,255,.4); color: var(--cream-light); background: rgba(35,55,42,.28); }
.button-light { color: var(--sage-deep); background: var(--cream-light); box-shadow: 0 14px 34px rgba(0,0,0,.16); }
.button-light:hover { background: white; }
.narrow-copy { width: min(790px, 100%); margin-inline: auto; }
.narrow-copy h2 { font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -.025em; }
.narrow-copy > p:not(.section-kicker) { margin: 0 0 21px; color: var(--muted); font-size: 1.08rem; line-height: 1.82; }
.section-kicker { margin: 0 0 14px; color: var(--sage); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.flourish-intro { text-align: center; }
.flourish-intro .rule, .weekly-gift .rule { margin-inline: auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature-card { min-height: 260px; padding: 30px; border: 1px solid rgba(96,117,101,.16); background: var(--cream-light); }
.feature-card > span { display: block; margin-bottom: 24px; color: rgba(96,117,101,.48); font-family: var(--serif); font-size: 1.1rem; }
.feature-card h3 { margin-bottom: 14px; font-size: 1.35rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.72; }
.wellbeing-section { color: var(--cream-light); background: var(--sage-deep); }
.flourish-split { grid-template-columns: 1fr .8fr; }
.wellbeing-section .section-kicker { color: rgba(247,243,234,.65); }
.wellbeing-section .section-copy h2 { color: var(--cream-light); }
.wellbeing-section .section-copy p { color: rgba(247,243,234,.75); }
.quote-panel { padding: clamp(34px, 5vw, 56px); border: 1px solid rgba(247,243,234,.2); background: rgba(247,243,234,.08); }
.quote-panel blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-style: italic; line-height: 1.42; }
.who-section .section-heading { max-width: 820px; }
.audience-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.audience-list span { padding: 12px 20px; border: 1px solid rgba(96,117,101,.24); border-radius: 999px; color: var(--sage-deep); background: var(--cream-light); font-size: .92rem; }
.weekly-gift { text-align: center; }
.membership-card { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr); gap: 64px; padding: clamp(38px, 6vw, 70px); color: var(--cream-light); background: var(--sage-deep); box-shadow: var(--shadow); }
.membership-card h2 { color: var(--cream-light); font-size: clamp(2.7rem, 5vw, 4rem); }
.membership-card p, .membership-list { color: rgba(247,243,234,.76); }
.membership-list { margin: 26px 0 0; padding-left: 20px; }
.membership-list li { margin: 8px 0; }
.membership-action { align-self: center; padding: 30px; background: rgba(247,243,234,.09); }
.membership-action .price { margin: 0 0 18px; }
.membership-action .price span { display: block; color: var(--cream-light); font-family: var(--serif); font-size: 3.7rem; line-height: 1; }
.membership-action .button { width: 100%; margin-top: 14px; color: var(--sage-deep); background: var(--cream-light); }
.membership-action .text-link { display: block; margin-top: 20px; color: rgba(247,243,234,.72); font-size: .88rem; text-align: center; }

.contact-page-hero { padding-bottom: 82px; }
.contact-page-section { padding-top: 88px; }
.contact-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(44px, 7vw, 90px); align-items: start; }
.contact-details { position: sticky; top: 150px; }
.contact-details h2, .contact-form-card h2 { font-size: clamp(2.2rem, 4vw, 3.25rem); }
.contact-details > p:not(.section-kicker) { margin: 22px 0 0; color: var(--muted); font-size: 1.03rem; line-height: 1.78; }
.direct-email-card { margin-top: 30px; padding: 22px; border: 1px solid rgba(96,117,101,.2); background: var(--cream-light); }
.direct-email-card span { display: block; margin-bottom: 7px; color: var(--muted); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.direct-email-card a { color: var(--sage-deep); font-size: clamp(.93rem, 1.6vw, 1.08rem); font-weight: 600; overflow-wrap: anywhere; }
.contact-reassurance { margin-top: 22px; padding: 24px; color: var(--cream-light); background: var(--sage-deep); }
.contact-reassurance h3 { margin-bottom: 14px; color: var(--cream-light); font-size: 1.3rem; }
.contact-reassurance ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.contact-reassurance li { color: rgba(247,243,234,.78); font-size: .9rem; line-height: 1.55; }
.contact-reassurance li::before { margin-right: 8px; color: #cbdacb; content: "✓"; font-weight: 700; }
.contact-form-card { padding: clamp(30px, 5vw, 52px); border: 1px solid rgba(96,117,101,.17); background: var(--cream-light); box-shadow: 0 22px 55px rgba(52,70,59,.1); }
.contact-form-intro { margin: 18px 0 32px; color: var(--muted); line-height: 1.72; }
.contact-form-card form { display: grid; gap: 26px; }
.contact-fieldset { margin: 0; padding: 0; border: 0; }
.contact-fieldset legend, .form-field > label { display: block; margin-bottom: 11px; color: var(--sage-deep); font-weight: 600; }
.form-field > label span { color: var(--muted); font-size: .82rem; font-weight: 400; }
.contact-interest-options { display: grid; gap: 11px; }
.contact-choice { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; padding: 17px 18px; border: 1px solid rgba(96,117,101,.22); border-radius: 14px; background: white; cursor: pointer; transition: border-color .2s, background .2s, box-shadow .2s; }
.contact-choice:has(input:checked) { border-color: var(--sage); background: #f0f4ee; box-shadow: 0 0 0 2px rgba(96,117,101,.1); }
.contact-choice input, .contact-preference input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--sage); }
.contact-choice strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.16rem; font-weight: 500; }
.contact-choice small { display: block; color: var(--muted); font-size: .85rem; line-height: 1.48; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-grid-full { grid-column: 1 / -1; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 14px; border: 1px solid rgba(96,117,101,.25); border-radius: 10px; color: var(--sage-deep); background: white; font: 400 .96rem var(--sans); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--sage); outline: 3px solid rgba(96,117,101,.13); }
.contact-preference-options { display: grid; gap: 9px; }
.contact-preference-options label { display: flex; gap: 11px; align-items: flex-start; padding: 12px 14px; border: 1px solid rgba(96,117,101,.2); border-radius: 11px; background: white; cursor: pointer; }
.contact-preference-options label:has(input:checked) { border-color: var(--sage); background: #f0f4ee; }
.contact-preference-note { margin: 9px 0 0; color: var(--muted); font-size: .82rem; }
.contact-low-commitment { padding: 18px 20px; border-left: 3px solid var(--sage); background: var(--sage-soft); }
.contact-low-commitment strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.contact-low-commitment p { margin: 0; color: #4e6054; font-size: .86rem; line-height: 1.55; }
.contact-submit { width: 100%; border: 0; cursor: pointer; font-family: var(--sans); }
.contact-form-status { min-height: 24px; margin: -10px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.5; text-align: center; }
.contact-form-status.is-error { padding: 11px 13px; border: 1px solid #d9b0a9; color: #7a342a; background: #fff5f2; }
.contact-form-status.is-ready { padding: 11px 13px; border: 1px solid #a7c7ac; color: #315c39; background: #f0f8f1; }

.page-hero { padding: 190px 0 92px; text-align: center; background: var(--cream-light); }
.page-hero__inner { width: min(860px, calc(100% - 48px)); margin-inline: auto; }
.page-hero h1 { font-size: clamp(3.35rem, 6vw, 5rem); }
.page-hero__intro { max-width: 740px; margin: 26px auto 0; color: var(--muted); font-size: 1.14rem; line-height: 1.75; }
.content-wrap { width: min(920px, calc(100% - 48px)); margin-inline: auto; }
.content-prose { color: var(--muted); font-size: 1.06rem; line-height: 1.82; }
.content-prose h2 { margin: 54px 0 18px; color: var(--sage-deep); font-size: clamp(2rem, 4vw, 3rem); }
.content-prose h2:first-child { margin-top: 0; }
.learning-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin: 44px 0 56px; }
.learning-highlight { padding: 25px; border: 1px solid rgba(96,117,101,.18); background: var(--cream-light); }
.learning-highlight h3 { margin-bottom: 10px; font-size: 1.25rem; }
.learning-highlight p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.65; }
.qualification-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin: 36px 0 56px; }
.qualification-card { padding: 30px; border-top: 3px solid var(--sage); background: var(--cream-light); box-shadow: 0 16px 36px rgba(52,70,59,.08); }
.qualification-card .level-label { margin: 0 0 10px; color: var(--sage); font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.qualification-card h3 { margin-bottom: 16px; font-size: 1.55rem; }
.qualification-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.7; }
.page-cta { margin-top: 58px; padding: 42px; text-align: center; background: var(--sage-deep); color: var(--cream-light); }
.page-cta h2 { color: var(--cream-light); font-size: clamp(2rem, 4vw, 3rem); }
.page-cta p { max-width: 650px; margin: 18px auto 28px; color: rgba(247,243,234,.76); }
.page-cta .button { background: var(--cream-light); color: var(--sage-deep); }
.event-types { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 42px; }
.event-type { min-height: 175px; padding: 26px; border: 1px solid rgba(96,117,101,.18); background: var(--cream-light); }
.event-type h3 { margin-bottom: 12px; font-size: 1.35rem; }
.event-type p { margin: 0; color: var(--muted); font-size: .94rem; }
.placeholder-note { margin: 0 0 44px; padding: 20px 24px; border-left: 3px solid var(--sage); color: var(--muted); background: var(--sage-soft); }

.reveal { opacity: 1; transform: none; transition: opacity .8s cubic-bezier(.21,.47,.32,.98), transform .8s cubic-bezier(.21,.47,.32,.98); }
body.anim-ready .reveal { opacity: 0; transform: translateY(34px); }
body.anim-ready .reveal.from-left { transform: translateX(-38px); }
body.anim-ready .reveal.from-right { transform: translateX(38px); }
body.anim-ready .reveal.revealed { opacity: 1; transform: translate(0,0); }
.reveal-delay-1 { transition-delay: .18s; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .two-column { gap: 65px; }
  .course-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qualification-grid, .learning-highlights, .event-types { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr); gap: 42px; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 90px; }
  .site-header { height: 90px; }
  .header-inner, .wrap { width: min(100% - 34px, 1180px); }
  .brand img { width: 168px; max-height: 78px; }
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: 90px 0 auto; display: grid; gap: 0; padding: 14px 22px 22px; background: rgba(247,243,234,.98); border-bottom: 1px solid rgba(96,117,101,.15); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .3s, opacity .3s; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 8px; border-bottom: 1px solid rgba(96,117,101,.1); }
  .section-pad { padding: 84px 0; }
  .gallery-hero { padding: 145px 0 66px; }
  .page-hero { padding: 145px 0 72px; }
  .gallery-section { padding-top: 58px; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid, .two-column, .philosophy-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero-image { height: 65vh; min-height: 470px; }
  .two-column { gap: 62px; }
  .about .section-copy { order: -1; }
  .course-grid { gap: 16px; }
  .image-pair img { height: 330px; }
  .image-pair .image-low { height: 270px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .flourish-hero { min-height: 650px; padding: 155px 0 90px; }
  .flourish-hero > img { object-position: 58% 50%; }
  .membership-card { grid-template-columns: 1fr; gap: 38px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-details { position: static; }
}

@media (max-width: 520px) {
  .wrap, .header-inner, .contact-inner { width: min(100% - 28px, 1180px); }
  .brand img { width: 148px; }
  h1 { font-size: 3.15rem; }
  .button-row, .button { width: 100%; }
  .hero-image { min-height: 420px; height: 62vh; }
  .hero-image::before { transform: translate(10px,-10px); }
  .hero-image img, .hero-image::before { border-radius: 110px 110px 3px 3px; }
  .course-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery-filters { justify-content: flex-start; margin-bottom: 36px; }
  .course-picker { width: 100%; height: 100dvh; border-radius: 0; }
  .course-picker__panel { padding: 34px 20px 28px; }
  .course-picker__choices--two { grid-template-columns: 1fr; }
  .course-picker__choices button { min-height: 0; }
  .qualification-grid, .learning-highlights, .event-types { grid-template-columns: 1fr; }
  .content-wrap, .page-hero__inner { width: min(100% - 28px, 920px); }
  .page-cta { padding: 34px 22px; }
  .course-card { min-height: 0; }
  .image-pair { gap: 10px; }
  .image-pair img { height: 260px; }
  .image-pair .image-low { height: 220px; margin-top: 38px; }
  .contact p { font-size: 1.05rem; }
  .email-button { font-size: .9rem; padding-inline: 16px; }
  .flourish-hero { min-height: 600px; padding: 135px 0 72px; }
  .flourish-hero > img { object-position: 62% 50%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .membership-card { padding: 30px 20px; }
  .membership-action { padding: 24px 18px; }
  .contact-page-section { padding-top: 62px; }
  .contact-form-card { padding: 28px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid-full { grid-column: auto; }
}

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


/* Seed2Design content update 2026-07-22 */
.art-intro {
  position: relative;
  overflow: hidden;
  background: #e8ebe4;
  isolation: isolate;
  min-height: 760px;
}
.art-intro__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #dfe4dc;
}
.art-intro__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .74;
  filter: saturate(.92) contrast(.94) brightness(.90);
  transform: scale(1.02);
}
.art-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,253,248,.42) 0%, rgba(255,253,248,.18) 35%, rgba(246,241,231,.46) 100%),
    radial-gradient(circle at 15% 18%, rgba(115,139,121,.14), transparent 40%),
    radial-gradient(circle at 85% 82%, rgba(175,150,120,.13), transparent 38%);
}
.art-intro__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}
.art-intro h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 4.25rem); letter-spacing: -.025em; }
.art-intro h2 span { color: var(--sage); font-style: italic; }
.art-intro .rule { margin: 28px auto 34px; }
.art-intro__panel {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(30px, 4.5vw, 58px);
  border: 1px solid rgba(61,86,68,.18);
  border-radius: 28px;
  background: rgba(255,253,248,.76);
  box-shadow: 0 30px 80px rgba(52,70,59,.16);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.art-intro__copy {
  display: grid;
  gap: 28px;
  text-align: left;
}
.art-intro__copy p { margin: 0; color: var(--muted); font-size: 1.06rem; line-height: 1.82; }
.story-grid { align-items: start; }
.story-grid .portrait { width: min(100%, 470px); }
.story-grid .portrait { position: sticky; top: 135px; }
.philosophy-closing { margin-top: 30px !important; padding-top: 25px; border-top: 1px solid rgba(247,243,234,.22); color: var(--cream-light) !important; font-family: var(--serif); font-size: 1.35rem !important; font-style: italic; line-height: 1.55 !important; }
.ncfe-logo { display: block; width: min(245px, 52vw); height: auto; margin: 24px auto 32px; }

@media (max-width: 760px) {
  .art-intro {
    min-height: 900px;
  }
  .art-intro.section-pad {
    padding: 0 0 34px;
  }
  .art-intro__inner {
    min-height: 866px;
    display: flex;
    align-items: flex-end;
  }
  .art-intro__media video { object-position: center center; opacity: .68; }
  .art-intro__panel {
    width: 100%;
    padding: 27px 22px;
    border-radius: 22px;
    background: rgba(255,253,248,.80);
  }
  .art-intro__copy { gap: 24px; }
  .story-grid .portrait { position: static; }
  .ncfe-logo { width: min(210px, 60vw); margin: 20px auto 26px; }
}

/* Linked service pages and social links 2026-07-22 */
.service-page-hero { position: relative; overflow: hidden; }
.service-page-hero::after { content: ""; position: absolute; right: -110px; bottom: -180px; width: 390px; height: 390px; border: 1px solid rgba(96,117,101,.13); border-radius: 50%; pointer-events: none; }
.service-detail-section { background: #fffdf8; }
.service-intro-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: center; gap: clamp(42px, 7vw, 90px); }
.service-intro-grid--image-first { grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); }
.service-intro-copy h2 { margin-top: 0; }
.service-image { position: relative; }
.service-image::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; border: 1px solid rgba(96,117,101,.24); border-radius: 140px 140px 5px 5px; }
.service-image img { position: relative; z-index: 1; width: 100%; height: 520px; object-fit: cover; border-radius: 140px 140px 5px 5px; box-shadow: 0 24px 55px rgba(52,70,59,.14); }
.service-image--portrait img { object-position: center 40%; }
.service-topic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin: 64px 0 0; }
.service-topic-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-topic-grid article { min-height: 180px; padding: 27px; border-top: 3px solid var(--sage); background: var(--cream-light); box-shadow: 0 14px 30px rgba(52,70,59,.06); }
.service-topic-grid h3 { margin: 0 0 12px; font-size: 1.28rem; }
.service-topic-grid p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.67; }
.social-intro { max-width: 650px !important; margin: 28px auto 15px !important; font-size: .94rem !important; }
.social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.social-link { display: inline-flex; align-items: center; gap: 9px; min-width: 145px; padding: 12px 20px; border: 1px solid var(--sage-deep); border-radius: 999px; color: var(--cream-light); background: var(--sage); box-shadow: 0 10px 24px rgba(52,70,59,.18); text-decoration: none; font-size: .9rem; font-weight: 600; transition: transform .25s, background .25s, border-color .25s, box-shadow .25s; }
.social-link:hover, .social-link:focus-visible { transform: translateY(-2px); border-color: var(--sage-deep); background: var(--sage-deep); box-shadow: 0 14px 30px rgba(52,70,59,.28); outline: none; }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }

@media (max-width: 1050px) {
  .service-topic-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .service-intro-grid, .service-intro-grid--image-first { grid-template-columns: 1fr; }
  .service-intro-grid--image-first .service-image { order: 2; }
  .service-image img { height: 440px; }
  .service-topic-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .service-topic-grid--four { grid-template-columns: 1fr; }
  .service-topic-grid article { min-height: 0; }
}
@media (max-width: 520px) {
  .service-image img { height: 390px; border-radius: 100px 100px 4px 4px; }
  .service-image::before { border-radius: 100px 100px 4px 4px; }
  .social-links { flex-direction: column; align-items: stretch; width: min(280px, 100%); margin-inline: auto; }
  .social-link { justify-content: center; }
}

.inline-text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; color: var(--sage-deep); font-weight: 600; text-underline-offset: 4px; }


/* Strong social-button contrast fallback, 2026-07-22 v2 */
.social-link { background:#39764d !important; color:#fff !important; border:2px solid #214d32 !important; font-weight:700 !important; }
.social-link:visited { color:#fff !important; }
.social-link:hover, .social-link:focus-visible { background:#214d32 !important; color:#fff !important; border-color:#173824 !important; }
.social-link svg { fill:#fff !important; }


/* SEO/root-launch navigation additions — 2026-07-22 */
.breadcrumbs{padding:106px 0 14px;background:var(--cream-light,#f7f3ea);border-bottom:1px solid rgba(96,117,101,.12)}
.breadcrumbs__inner{display:flex;align-items:center;gap:9px;font-size:.82rem;color:var(--muted,#647066)}
.breadcrumbs a{color:var(--sage-deep,#315c42);font-weight:650;text-decoration:none}
.breadcrumbs a:hover,.breadcrumbs a:focus-visible{text-decoration:underline;text-underline-offset:3px}
.footer-inner{flex-wrap:wrap}
.footer-nav{display:flex;justify-content:center;flex-wrap:wrap;gap:9px 16px;max-width:720px}
.footer-nav a{color:var(--sage-deep,#315c42);font-size:.82rem;font-weight:600;text-decoration:none}
.footer-nav a:hover,.footer-nav a:focus-visible{text-decoration:underline;text-underline-offset:3px}
.qualification-card[id]{scroll-margin-top:120px}
@media(max-width:760px){.breadcrumbs{padding-top:90px}.footer-nav{max-width:340px}.footer-inner{align-items:center}}


/* Our Mission block */
.mission-block {
  margin-top: clamp(48px, 7vw, 88px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(247,243,234,.2);
  border-radius: 4px;
  background: rgba(247,243,234,.055);
  box-shadow: 0 20px 55px rgba(24,45,35,.18);
}
.mission-heading h2 {
  margin-bottom: 0;
  color: var(--cream-light);
}
.mission-heading h2 span { color: rgba(247,243,234,.68); }
.mission-block p { color: rgba(247,243,234,.8); }
.mission-list {
  display: grid;
  gap: 13px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}
.mission-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(247,243,234,.88);
  line-height: 1.75;
}
.mission-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .72em;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(247,243,234,.72);
  border-radius: 50%;
  background: rgba(247,243,234,.14);
}
.mission-closing {
  margin-top: 27px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(247,243,234,.2);
  color: var(--cream-light) !important;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem) !important;
  line-height: 1.6 !important;
}
@media (max-width: 640px) {
  .mission-block { padding: 26px 22px; }
  .mission-list li { padding-left: 26px; }
}

@media (max-width: 520px) {
  .art-intro__video-wrap { padding: 9px; box-shadow: 0 18px 38px rgba(52,70,59,.18), 0 0 0 4px rgba(255,253,248,.88); }
  .art-intro__video-wrap::before { inset: 4px; }
  .art-intro__video-wrap::after { inset: -6px 6px 6px -6px; }
}
