/* ==========================================================================
   World Of Orient — global styles for /blocks (acf/<name>, block.json pattern).
   BEM classes (.wof-<name>__part), one file for all blocks, loaded on the
   front end and inside the block editor canvas (inc/acf/block-settings.php).
   ========================================================================== */

/* Brand tokens, scoped to block roots (other stylesheets define their own --wof-* locally). */
:where(.wof-block, .wof-contact){
  --wof-gold:#C9A964; --wof-gold-hover:#B0903F; --wof-gold-soft:#E6D9BD;
  --wof-ink:#101010; --wof-cream:#F8F6F1; --wof-grey:#F8F8F8; --wof-navy:#171F32;
  --wof-text:#333; --wof-line:rgba(16,16,16,.10); --wof-muted:rgba(16,16,16,.60); --wof-error:#a63f3a;
  --wof-ease:cubic-bezier(.6,.05,0,1);
}

/* ==========================================================================
   Shared primitives
   ========================================================================== */

/* Block pages: sections carry their own vertical rhythm, so drop Educavo's
   100px/80px #content padding (default.css / responsive.css). */
.main-contain #content.wof-blocks-page,
.main-contain #content.wof-home{padding-top:0;padding-bottom:0}

/* Educavo sets `html, body{overflow-x:hidden}`, which turns <body> into a scroll
   container and breaks position:sticky (acf/showcase). `clip` still hides the
   horizontal overflow without creating one; old browsers keep `hidden`. */
html body{overflow-x:hidden;overflow-x:clip}

/* Section shell: 1800px container with 32px sides everywhere (16px ≤479px).
   Inner pages 70px rhythm, "--wide" (home sections) 80px. */
.wof-block{position:relative;padding:70px 0;background-color:#fff;color:var(--wof-text);background-size:cover;background-position:center}
.wof-block *,
.wof-block *::before,
.wof-block *::after{box-sizing:border-box}
.wof-block__inner{max-width:1800px;margin:0 auto;padding:0 32px}
.wof-block[class*="--wide"]{padding:80px 0}
.wof-block--bg-grey{background-color:var(--wof-grey)}
.wof-block--bg-cream{background-color:var(--wof-cream)}
.wof-block--bg-dark{background-color:var(--wof-navy);color:rgba(255,255,255,.78)}
.wof-block--bg-image{background-color:var(--wof-ink);color:rgba(255,255,255,.88)}
.wof-block--bg-image::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,10,10,.62),rgba(10,10,10,.5))}
.wof-block--bg-image > .wof-block__inner{position:relative}

.wof-block__actions{margin-top:40px;display:flex;flex-wrap:wrap;align-items:center;gap:14px}
.wof-block__actions--center{justify-content:center;flex-direction:column}
.wof-block__cta{margin-top:46px;display:flex;flex-direction:column;align-items:center;text-align:center;gap:18px}
.wof-block__cta-text{font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;font-size:clamp(22px,2.4vw,30px);line-height:1.2;color:var(--wof-ink);margin:0;max-width:560px}

/* Heading: eyebrow + title + text. "--content" = inner pages, "--brand" = home sections. */
.wof-heading{margin:0 0 26px}
.wof-heading:last-child{margin-bottom:0}
.wof-heading__eyebrow{display:block;font-family:"Rubik",sans-serif;font-size:16px;font-weight:500;line-height:28px;letter-spacing:1px;color:var(--wof-gold);margin:0 0 10px}
.wof-heading__title{font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;font-size:36px;line-height:40px;letter-spacing:-1px;color:var(--wof-ink);margin:0 0 26px;text-wrap:balance}
.wof-heading__title:last-child{margin-bottom:0}
.wof-heading--center{text-align:center}

.wof-heading--brand{margin-bottom:52px}
.wof-heading--brand .wof-heading__eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:"Nunito",Arial,sans-serif;font-size:13px;font-weight:800;line-height:1;letter-spacing:2px;text-transform:uppercase;margin-bottom:14px}
.wof-heading--brand .wof-heading__title{font-weight:600;font-size:clamp(30px,3.5vw,48px);line-height:1.06;letter-spacing:-.5px;margin:0}
.wof-heading--brand .wof-heading__text{margin-top:18px}
.wof-heading--brand .wof-heading__text,
.wof-heading--brand .wof-heading__text p{font-size:16.5px;line-height:1.72;color:#5a5a5a}
.wof-heading--brand.wof-heading--center{max-width:840px;margin-left:auto;margin-right:auto}
.wof-heading--brand.wof-heading--center .wof-heading__text{max-width:760px;margin-left:auto;margin-right:auto}

.wof-block--bg-dark .wof-heading__title,
.wof-block--bg-image .wof-heading__title{color:#fff}
.wof-block--bg-dark .wof-heading__text,
.wof-block--bg-dark .wof-heading__text p,
.wof-block--bg-image .wof-heading__text,
.wof-block--bg-image .wof-heading__text p{color:rgba(255,255,255,.82)}

/* Rich text */
.wof-prose{font-size:16px;line-height:27.2px;color:var(--wof-text)}
.wof-prose > :last-child{margin-bottom:0}
.wof-prose p{margin:0 0 26px}
.wof-prose h2,
.wof-prose h3,
.wof-prose h4{font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;letter-spacing:-1px;color:var(--wof-ink);margin:0 0 26px}
.wof-prose h2{font-size:36px;line-height:40px}
.wof-prose h3{font-size:28px;line-height:32px}
.wof-prose h4{font-size:22px;line-height:28px}
.wof-prose ul,
.wof-prose ol{margin:0 0 24px 48px;padding:0}
.wof-prose li{margin:0}
.wof-prose a{color:var(--wof-gold);text-decoration:none}
.wof-prose a:hover{color:var(--wof-gold-hover)}
.wof-prose strong{font-weight:700;color:inherit}
.wof-prose--compact{line-height:28.8px;color:#555}
.wof-prose--compact p{margin-bottom:14px}

/* Buttons: .wof-btn lives in assets/css/wof-buttons.css (site-wide, loaded last). */

/* Bundle offer above the WooCommerce Cart / Checkout blocks (inc/child-functions.php) */
.wof-bundle-notice{display:flex;align-items:flex-start;gap:12px;margin:0 0 28px;padding:16px 20px;border:1px solid #efe9dc;border-left:3px solid #C9A964;border-radius:12px;background:#F8F6F1;font-family:"Nunito",Arial,sans-serif;color:#101010}
.wof-bundle-notice .bi{flex:none;margin-top:2px;font-size:20px;line-height:1;color:#B0903F}
.wof-bundle-notice p{margin:0;font-size:15.5px;line-height:1.6;color:#101010}
.wof-bundle-notice a{color:#B0903F;font-weight:700;text-decoration:underline;text-underline-offset:3px}
.wof-bundle-notice a:hover{color:#101010}
.wof-bundle-notice--success{border-left-color:#5a8f5c}
.wof-bundle-notice--success .bi{color:#5a8f5c}

/* Icon list (Bootstrap Icons) */
.wof-icon-list{list-style:none;margin:0 0 22px;padding:0}
.wof-icon-list__item{display:flex;align-items:center;gap:10px;margin:0 0 10px;color:#444}
.wof-icon-list__icon{color:var(--wof-gold);width:18px;text-align:center;flex:none}
.wof-icon-list__item a{color:inherit;text-decoration:none}
.wof-icon-list__item a:hover{color:var(--wof-gold-hover)}

/* Media */
.wof-video-frame{border-radius:8px;overflow:hidden;box-shadow:0 14px 50px rgba(16,16,16,.18);background:#000;max-width:900px}
.wof-video-frame video{display:block;width:100%;height:auto;background:#000}
.wof-video-frame--center{margin:0 auto}

.wof-poster{position:relative;display:flex;align-items:center;justify-content:center;min-height:380px;border-radius:8px;overflow:hidden;
  background-color:var(--wof-ink);background-size:cover;background-position:center}
.wof-poster::before{content:"";position:absolute;inset:0;background:rgba(10,10,10,.18)}
.wof-poster__play,
.wof-poster__play:visited{position:relative;display:flex;align-items:center;justify-content:center;width:84px;height:84px;border-radius:50%;
  background:#fff;color:var(--wof-gold);box-shadow:0 0 0 14px rgba(255,255,255,.22);transition:background-color .25s ease,color .25s ease,transform .25s ease}
.wof-poster__play .bi{display:block;margin-left:4px;font-size:30px;line-height:1}
.wof-poster__play:hover,
.wof-poster__play:focus-visible{background:var(--wof-gold);color:var(--wof-ink);transform:scale(1.05)}

.wof-carousel{position:relative}
.wof-carousel .slick-list{overflow:hidden;border-radius:6px}
.wof-carousel__item img{display:block;width:100%;height:auto;border-radius:6px}
.wof-carousel .wof-carousel__arrow{position:absolute;z-index:3;top:auto;left:auto;bottom:16px;transform:none;width:44px;height:44px;margin:0;border-radius:50%;border:0;padding:0;cursor:pointer;
  display:flex;align-items:center;justify-content:center;background:#fff;color:var(--wof-ink);font-size:0;box-shadow:0 8px 22px rgba(16,16,16,.14);transition:background-color .25s ease}
.wof-carousel .wof-carousel__arrow::before,
.wof-carousel .wof-carousel__arrow::after{display:none}
.wof-carousel .wof-carousel__arrow:hover{background:var(--wof-gold)}
.wof-carousel .wof-carousel__arrow--prev{right:72px}
.wof-carousel .wof-carousel__arrow--next{right:16px}

/* CF7 forms in blocks (.wof-form card, acf/form-cta) — same field look as the contact form */
.wof-form{background:#fff;border:1px solid #efe9dc;border-radius:16px;padding:clamp(24px,3.5vw,48px)}
.wof-form .wpcf7 form{margin:0}
.wof-form .rs-free-course-contact{display:flex;flex-direction:column;gap:16px}
.wof-form .wpcf7 .row{display:flex;gap:16px;margin:0}
.wof-form .wpcf7 .row > [class*="col-"]{flex:1 1 0;min-width:0;max-width:none;padding:0}
.wof-form .form-field p,
.wof-form .form-btn p{margin:0}
.wof-form .form-field br{display:none}
.wof-form .wpcf7-form-control-wrap{display:block}
.wof-form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio):not(.wpcf7-acceptance){
  display:block;width:100%;height:54px;margin:0;padding:14px 18px;
  border:1px solid transparent;border-radius:7px;background:var(--wof-cream);box-shadow:none;outline:none;
  font-family:"Nunito",Arial,sans-serif;font-size:16px;font-weight:500;line-height:1.4;color:var(--wof-ink);
  transition:border-color .2s ease,background-color .2s ease,box-shadow .2s ease}
.wof-form textarea.wpcf7-form-control{height:160px !important;resize:vertical}
.wof-form select.wpcf7-form-control{-webkit-appearance:none;appearance:none;padding-right:48px;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23101010' stroke-width='1.6' d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 18px center}
.wof-form .wpcf7-form-control::placeholder{color:rgba(16,16,16,.45);opacity:1}
.wof-form select.wpcf7-form-control:has(option:checked[value=""]){color:rgba(16,16,16,.45)}
.wof-form .wpcf7-form-control:not(.wpcf7-submit):hover{border-color:#e6dfcf}
.wof-form .wpcf7-form-control:not(.wpcf7-submit):focus{border-color:var(--wof-gold);background-color:#fff;box-shadow:0 0 0 3px rgba(201,169,100,.2)}
.wof-form .wpcf7-form-control.wpcf7-not-valid{border-color:var(--wof-error)}
.wof-form .wpcf7-not-valid-tip{margin-top:6px;font-size:13px;color:var(--wof-error)}
.wof-form .form-btn{position:relative;margin:8px 0 0}
.wof-form .wpcf7-submit{display:flex;width:100%;height:auto}
.wof-form .form-btn .wpcf7-spinner{position:absolute;top:50%;right:16px;margin:-12px 0 0}
.wof-form .wpcf7 form .wpcf7-response-output{margin:16px 0 0;padding:12px 16px;border-width:1px;border-radius:7px;font-size:15px;line-height:1.5}
/* dark grounds (newsletter): translucent card, light fields */
.wof-block--bg-dark .wof-form{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.12)}
.wof-block--bg-dark .wof-form .wpcf7-form-control:not(.wpcf7-submit){background-color:rgba(255,255,255,.08) !important;color:#fff !important}
.wof-block--bg-dark .wof-form .wpcf7-form-control:not(.wpcf7-submit):hover{border-color:rgba(255,255,255,.2)}
.wof-block--bg-dark .wof-form .wpcf7-form-control:not(.wpcf7-submit):focus{background-color:rgba(255,255,255,.12) !important;border-color:var(--wof-gold)}
.wof-block--bg-dark .wof-form .wpcf7-form-control::placeholder{color:rgba(255,255,255,.55)}
.wof-block--bg-dark .wof-form select.wpcf7-form-control:has(option:checked[value=""]){color:rgba(255,255,255,.55) !important}
.wof-block--bg-dark .wof-form .wpcf7 form .wpcf7-response-output{color:#fff}

/* ==========================================================================
   Hero (acf/hero)
   ========================================================================== */
.wof-hero.wof-block{padding:0;position:relative;left:50%;right:50%;width:100vw;margin-left:-50vw;margin-right:-50vw;
  height:100dvh;min-height:640px;max-height:1100px;overflow:hidden;background:#000;font-family:"Nunito",Arial,sans-serif}
.wof-hero__slider,
.wof-hero .slick-list,
.wof-hero .slick-track{height:100% !important}
.wof-hero__slide{position:relative;height:100dvh;min-height:640px;max-height:1100px}
.wof-hero__bg{position:absolute;inset:0}
.wof-hero__bg img{width:100%;height:100%;object-fit:cover;transform:scale(1.04)}
.wof-hero .slick-active .wof-hero__bg img{transform:scale(1.14);transition:transform 8s ease-out}
.wof-hero__veil{position:absolute;inset:0;z-index:2;background:linear-gradient(180deg,rgba(10,10,10,.6) 0%,rgba(10,10,10,.12) 22%,rgba(10,10,10,0) 42%,rgba(10,10,10,.5) 74%,rgba(10,10,10,.88) 100%)}
.wof-hero__wrap{position:absolute;inset:0;z-index:5;max-width:1800px;margin:0 auto;padding:0 clamp(20px,4vw,48px);display:flex;align-items:flex-end}
.wof-hero__content{width:100%;max-width:820px;padding-bottom:clamp(96px,14vh,170px);display:flex;flex-direction:column;align-items:flex-start;gap:22px}
.wof-hero__eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:12.5px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:#fff}
.wof-hero__title{font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;color:var(--wof-gold);font-size:clamp(42px,6.4vw,92px);line-height:.98;letter-spacing:-1px;margin:0;text-wrap:balance}
.wof-hero__title em{font-style:italic;color:var(--wof-cream)}
.wof-hero__text{max-width:560px;font-size:clamp(16px,1.4vw,19px);font-weight:600;line-height:1.55;color:rgba(255,255,255,.85);margin:0}
.wof-hero__actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:4px}
.wof-hero__slider.slick-initialized .wof-hero__reveal{opacity:0;transform:translateY(24px);transition:opacity .7s var(--wof-ease),transform .7s var(--wof-ease)}
.wof-hero__slider.slick-initialized .slick-active .wof-hero__reveal{opacity:1;transform:none}
.wof-hero .slick-active .wof-hero__reveal--1{transition-delay:.12s}
.wof-hero .slick-active .wof-hero__reveal--2{transition-delay:.24s}
.wof-hero .slick-active .wof-hero__reveal--3{transition-delay:.36s}
.wof-hero .slick-active .wof-hero__reveal--4{transition-delay:.48s}
.wof-hero__dots{position:absolute;z-index:8;left:clamp(20px,4vw,48px);bottom:clamp(48px,7vh,72px)}
.wof-hero__dots ul{display:flex;gap:9px;margin:0;padding:0;list-style:none}
.wof-hero__dots li{width:32px;height:4px}
.wof-hero__dots li button{width:32px;height:4px;padding:0;border:0;border-radius:4px;background:rgba(255,255,255,.34);text-indent:-9999px;overflow:hidden;cursor:pointer;transition:background-color .3s}
.wof-hero__dots li.slick-active button{background:var(--wof-gold)}
.wof-hero__arrow{position:absolute;z-index:8;bottom:clamp(44px,6.5vh,66px);width:50px;height:50px;border-radius:50%;padding:0;
  border:1px solid rgba(255,255,255,.3);background:rgba(10,10,10,.25);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background-color .3s,color .3s,border-color .3s}
.wof-hero__arrow svg{width:20px;height:20px;flex:none}
.wof-hero__arrow:hover{background:var(--wof-gold);border-color:var(--wof-gold);color:var(--wof-ink)}
.wof-hero__arrow--prev{right:calc(clamp(20px,4vw,48px) + 62px)}
.wof-hero__arrow--next{right:clamp(20px,4vw,48px)}

/* ==========================================================================
   Products (acf/products) — cards: assets/css/wof-product.css
   ========================================================================== */
.wof-products .wof-block__actions{margin-top:40px}

/* ==========================================================================
   Split (acf/split)
   ========================================================================== */
.wof-split__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:30px;align-items:start}
.wof-split--align-center .wof-split__grid{align-items:center}
.wof-split--media-left .wof-split__media{order:-1}
.wof-split--no-media .wof-split__grid{grid-template-columns:minmax(0,1fr)}
.wof-split__image{display:block;width:100%;height:auto;border-radius:6px}
.wof-split .wof-block__actions{margin-top:22px}
.wof-split[class*="--wide"] .wof-heading--brand{margin-bottom:0}
.wof-split[class*="--wide"] .wof-heading__text{margin:18px 0 0}
.wof-split[class*="--wide"] .wof-heading__text p{margin-bottom:14px}
.wof-split[class*="--wide"] .wof-block__actions{margin-top:40px}
/* Media column: fixed height, every media type fills it. */
.wof-split__media{height:560px}
.wof-split__media > *,
.wof-split__media .wof-carousel .slick-list,
.wof-split__media .wof-carousel .slick-track,
.wof-split__media .wof-carousel .slick-slide,
.wof-split__media .wof-carousel .slick-slide > div,
.wof-split__media .wof-carousel__item{height:100%}
.wof-split__media .wof-split__image,
.wof-split__media .wof-carousel__item img{width:100%;height:100%;object-fit:cover}
.wof-split__media--poster .wof-poster{min-height:0}
.wof-split__media--video .wof-video-frame{max-width:none}
.wof-split__media--video video{height:100%;object-fit:cover}

/* ==========================================================================
   Story (acf/story) — statement headline, wide image 2/3, serif side text 1/3
   ========================================================================== */
.wof-block.wof-story > .wof-block__inner{max-width:1800px;padding:0 32px}
.wof-story__head{max-width:864px;margin:0 0 64px}
.wof-story__eyebrow{display:inline-flex;align-items:center;gap:9px;margin:0 0 18px;font-family:"Nunito",Arial,sans-serif;font-size:13px;font-weight:800;line-height:1;letter-spacing:2px;text-transform:uppercase;color:var(--wof-gold)}
.wof-story__title{margin:0;font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;font-size:clamp(38px,4.8vw,64px);line-height:.98;letter-spacing:-1px;color:var(--wof-ink);text-wrap:balance}
.wof-story__title em{font-style:italic;color:var(--wof-gold-hover)}
.wof-story__grid{display:grid;grid-template-columns:minmax(0,2fr) minmax(0,1fr);gap:32px;align-items:start}
.wof-story--image-right .wof-story__media{order:2}
.wof-story--no-image .wof-story__grid{grid-template-columns:minmax(0,1fr);max-width:640px}
.wof-story__media{height:562px;border-radius:16px;overflow:hidden;background:var(--wof-cream)}
.wof-story__image{display:block;width:100%;height:100%;object-fit:cover}
.wof-story__side{display:flex;flex-direction:column;align-items:flex-start;gap:28px}
.wof-story__text{font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(20px,1.75vw,25px);font-weight:500;line-height:1.38;letter-spacing:-.1px;color:var(--wof-ink)}
.wof-story__text p{margin:0 0 18px}
.wof-story__text > :last-child{margin-bottom:0}
.wof-story__text strong{font-weight:700}

/* ==========================================================================
   Cover (acf/cover) — full-width image + overlay, content top, button bottom
   ========================================================================== */
.wof-block.wof-cover{display:flex;height:800px;padding:80px 0;overflow:hidden;background-color:var(--wof-ink);color:#fff}
.wof-cover__bg{position:absolute;inset:0;z-index:0}
.wof-cover__image{display:block;width:100%;height:100%;object-fit:cover}
.wof-cover__overlay{position:absolute;inset:0;z-index:1;background:#000;opacity:var(--wof-cover-overlay,.3)}
.wof-block.wof-cover > .wof-block__inner{position:relative;z-index:2;width:100%;max-width:1800px;padding:0 32px}
.wof-cover__inner{display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start;gap:48px;height:100%}
.wof-cover__head{display:flex;flex-direction:column;align-items:flex-start;gap:32px;max-width:864px}
.wof-cover__eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:"Nunito",Arial,sans-serif;font-size:12.5px;font-weight:800;line-height:1;letter-spacing:2px;text-transform:uppercase;color:#fff}
.wof-cover__title{margin:0;font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;font-size:clamp(44px,5.6vw,80px);line-height:.96;letter-spacing:-1px;color:#fff;text-wrap:balance}
.wof-cover__title em{font-style:italic;color:var(--wof-gold)}
.wof-cover__text{max-width:620px;font-family:"Nunito",Arial,sans-serif;font-size:17px;font-weight:500;line-height:1.65;color:rgba(255,255,255,.85)}
.wof-cover__text p{margin:0 0 14px}
.wof-cover__text > :last-child{margin-bottom:0}

/* ==========================================================================
   Showcase (acf/showcase) — pill video that opens to full screen on scroll,
   text + two buttons under it, statements passing over the video.
   Base = no JS / editor: static pill, statements below on ink.
   .is-ready (assets/js/wof-showcase.js) = pinned stage; the frame covers the
   screen and is clipped to the pill slot by --t/--r/--b/--l × --q (1 → 0);
   the video box follows the same insets so the pill shows the whole shot.
   ========================================================================== */
.wof-block.wof-showcase{padding:0;background-color:var(--wof-cream);overflow:clip}
.wof-showcase__stage{position:relative;display:grid;grid-template-columns:minmax(0,1fr);grid-template-rows:auto minmax(160px,clamp(200px,40vh,480px)) auto;align-content:center;height:min(100vh,860px);padding:80px 16px 0}
.wof-showcase__heading{grid-area:1 / 1;justify-self:center;max-width:760px;margin:0 0 32px;font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;font-size:clamp(34px,3.6vw,52px);line-height:1.02;letter-spacing:-.5px;color:var(--wof-ink);text-align:center;text-wrap:balance}
.wof-showcase__heading em{font-style:italic;color:var(--wof-gold)}
.wof-showcase__slot,
.wof-showcase__frame{grid-area:2 / 1;justify-self:center;width:clamp(240px,56vw,1040px);height:100%}
.wof-showcase__frame{position:relative;overflow:hidden;border-radius:400px;background-color:var(--wof-ink)}
.wof-showcase__video{position:absolute;inset:0;display:block;width:100%;height:100%;object-fit:cover;object-position:var(--wof-showcase-focus,50%) center}
.wof-showcase__shade{position:absolute;inset:0;background:var(--wof-ink);opacity:0;pointer-events:none}
.wof-showcase__lead{grid-area:3 / 1;display:flex;flex-direction:column;align-items:center;gap:24px;padding:40px 0 max(32px,5vh);text-align:center}
.wof-showcase__text{margin:0;max-width:560px;font-family:"Nunito",Arial,sans-serif;font-size:17px;font-weight:500;line-height:1.6;color:rgba(16,16,16,.88);text-wrap:balance}
.wof-showcase__actions{display:flex;flex-wrap:wrap;justify-content:center;gap:10px}
.wof-showcase__scroll{background-color:var(--wof-ink)}
.wof-showcase__spacer{display:none}
.wof-showcase__statements{display:flex;flex-direction:column;align-items:center;gap:72px;padding:96px 16px;color:#fff;text-align:center}
.wof-showcase__statement{display:flex;flex-direction:column;align-items:center;gap:28px;max-width:720px}
.wof-showcase__label{display:inline-flex;align-items:center;gap:9px;font-family:"Nunito",Arial,sans-serif;font-size:12.5px;font-weight:800;line-height:1;letter-spacing:2px;text-transform:uppercase;color:#fff}
.wof-showcase__title{margin:0;font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;font-size:clamp(40px,4.4vw,60px);line-height:1;letter-spacing:-.5px;color:#fff;text-wrap:balance;text-shadow:0 2px 28px rgba(0,0,0,.28)}
.wof-showcase__title em{font-style:italic;color:var(--wof-gold)}
.wof-showcase--preview .wof-showcase__stage{height:640px}

.wof-showcase.is-ready .wof-showcase__stage{position:sticky;top:0;z-index:1;height:100vh;height:100svh;padding-top:calc(var(--wof-hh,110px) + 3vh)}
.wof-showcase.is-ready .wof-showcase__frame{grid-area:auto;justify-self:stretch;width:auto;position:absolute;inset:0 0 auto;z-index:1;height:100vh;height:100lvh;border-radius:0;will-change:clip-path;
  clip-path:inset(calc(var(--t,0px) * var(--q,1)) calc(var(--r,0px) * var(--q,1)) calc(var(--b,0px) * var(--q,1)) calc(var(--l,0px) * var(--q,1)) round calc(400px * var(--q,1)))}
.wof-showcase.is-ready .wof-showcase__video{inset:calc(var(--t,0px) * var(--q,1)) auto auto calc(var(--l,0px) * var(--q,1));
  width:calc(100% - (var(--l,0px) + var(--r,0px)) * var(--q,1));height:calc(100% - (var(--t,0px) + var(--b,0px)) * var(--q,1))}
.wof-showcase.is-ready .wof-showcase__shade{opacity:calc((1 - var(--q,1)) * .45)}
.wof-showcase.is-ready .wof-showcase__heading,
.wof-showcase.is-ready .wof-showcase__lead{position:relative;z-index:0;opacity:calc(1 - (1 - var(--q,1)) * 3)}
.wof-showcase.is-expanded .wof-showcase__heading,
.wof-showcase.is-expanded .wof-showcase__lead{visibility:hidden}
.wof-showcase.is-ready .wof-showcase__scroll{position:relative;z-index:2;margin-top:-100vh;margin-top:-100svh;background:none;pointer-events:none}
.wof-showcase.is-ready .wof-showcase__spacer{display:block;height:130vh;height:130svh}
.wof-showcase.is-ready .wof-showcase__statements{gap:0;padding:0 16px 10vh}
.wof-showcase.is-ready .wof-showcase__statement{justify-content:center;min-height:90vh;min-height:90svh}

/* ==========================================================================
   Intro (acf/intro)
   ========================================================================== */
.wof-intro{text-align:center}
.wof-intro .wof-heading--brand{margin-bottom:0}
.wof-intro .wof-heading--brand .wof-heading__text{max-width:900px}
.wof-intro .wof-heading--brand .wof-heading__text p{margin-bottom:26px}
.wof-intro .wof-heading--brand .wof-heading__text p:last-child{margin-bottom:0}
.wof-intro .wof-heading--brand + .wof-block__actions{margin-top:66px}
.wof-intro .wof-heading--content{max-width:900px;margin-left:auto;margin-right:auto}
.wof-intro.wof-block--bg-image{padding:clamp(96px,12vw,160px) 0}
.wof-intro.wof-block--bg-image .wof-heading__title{font-size:clamp(40px,5vw,64px);line-height:1.04}
.wof-intro__note{margin:6px 0 0;font-size:15px;line-height:1.6;color:inherit}

/* ==========================================================================
   FAQ (acf/faq) — label + headline + CTA (sticky, left) beside question cards,
   video card at the bottom right that plays in a <dialog> (Webflow "faq-1").
   ========================================================================== */
.wof-block.wof-faq{padding:160px 0}
.wof-block.wof-faq > .wof-block__inner{max-width:1800px;padding:0 32px}
.wof-faq__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.3fr);gap:48px;align-items:start}
.wof-faq__head{position:sticky;top:calc(var(--wof-hh,110px) + 32px);display:flex;flex-direction:column;align-items:flex-start;gap:16px;max-width:560px}
.wof-faq__eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:"Nunito",Arial,sans-serif;font-size:12.5px;font-weight:800;line-height:1;letter-spacing:2px;text-transform:uppercase;color:var(--wof-ink)}
.wof-faq__title{margin:0;font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;font-size:clamp(38px,3.8vw,56px);line-height:1;letter-spacing:-.5px;color:var(--wof-ink);text-wrap:balance}
.wof-faq__title em{font-style:italic;color:var(--wof-gold)}
.wof-faq__cta{display:flex;flex-direction:column;align-items:flex-start;gap:20px;margin-top:24px}
.wof-faq__cta-text{margin:0;max-width:400px;font-family:"Nunito",Arial,sans-serif;font-size:16.5px;font-weight:500;line-height:1.6;color:var(--wof-muted)}
.wof-faq__list{display:flex;flex-direction:column;gap:8px}
.wof-faq__item{border-radius:8px;background:var(--wof-cream)}
.wof-block--bg-cream .wof-faq__item,
.wof-block--bg-grey .wof-faq__item{background:#fff}
.wof-faq__question-heading{margin:0;font-size:inherit;line-height:inherit;letter-spacing:0}
.wof-faq__question{width:100%;display:flex;justify-content:space-between;align-items:flex-start;gap:32px;padding:24px;margin:0;border:0;border-radius:8px;background:none;cursor:pointer;text-align:left;
  font-family:"Nunito",Arial,sans-serif;font-size:18px;font-weight:700;line-height:1.4;letter-spacing:-.1px;color:var(--wof-ink)}
.wof-faq__question:focus-visible{outline:2px solid var(--wof-gold);outline-offset:2px}
.wof-faq__icon{position:relative;display:flex;align-items:center;justify-content:center;width:14px;height:14px;flex:none;margin-top:5px}
.wof-faq__icon::before,
.wof-faq__icon::after{content:"";position:absolute;background:var(--wof-ink);transition:transform .5s var(--wof-ease)}
.wof-faq__icon::before{width:14px;height:1.5px}
.wof-faq__icon::after{width:1.5px;height:14px}
.wof-faq__item.is-open .wof-faq__icon::after{transform:rotate(90deg)}
.wof-faq__answer{display:grid;grid-template-rows:0fr;opacity:0;transition:grid-template-rows .4s ease-out,opacity .3s ease-out}
.wof-faq__item.is-open .wof-faq__answer{grid-template-rows:1fr;opacity:1;transition-delay:0s,.1s}
.wof-faq__answer-inner{min-height:0;overflow:hidden}
.wof-faq__answer-text{padding:0 24px 24px;font-size:16px;line-height:1.7;letter-spacing:-.1px;color:#555}
.wof-faq__answer-text p{margin:0 0 12px}

.wof-faq__video,
.wof-faq__video:visited{display:flex;align-items:center;gap:20px;padding:12px 20px 12px 12px;border-radius:8px;background:var(--wof-ink);color:#fff;text-decoration:none;transition:background-color .25s ease}
.wof-faq__video:hover{background:#202020;color:#fff}
.wof-faq__video:focus-visible{outline:2px solid var(--wof-gold);outline-offset:2px}
.wof-faq__video-thumb{flex:none;width:64px;height:88px;border-radius:6px;overflow:hidden;background:#222}
.wof-faq__video-thumb img{display:block;width:100%;height:100%;object-fit:cover}
.wof-faq__video-body{display:flex;flex-direction:column;gap:8px;min-width:0}
.wof-faq__video-label{font-family:"Nunito",Arial,sans-serif;font-size:11.5px;font-weight:800;line-height:1;letter-spacing:2px;text-transform:uppercase;color:var(--wof-gold)}
.wof-faq__video-title{font-family:"Cormorant Garamond",Georgia,serif;font-size:26px;font-weight:600;line-height:1.1;color:#fff}
.wof-faq__video-play{flex:none;display:flex;align-items:center;justify-content:center;width:56px;height:56px;margin-left:auto;border-radius:50%;background:var(--wof-gold);color:var(--wof-ink);font-size:28px;transition:background-color .25s ease,transform .3s var(--wof-ease)}
.wof-faq__video-play .bi{display:block;margin-left:3px;line-height:1}
.wof-faq__video:hover .wof-faq__video-play{background:#fff;transform:scale(1.06)}

.wof-faq__dialog{width:min(440px,calc(100vw - 32px),calc((100vh - 32px) * 9 / 16));max-width:none;max-height:none;margin:auto;padding:0;border:0;border-radius:8px;background:#000;overflow:visible}
.wof-faq__dialog:not([open]){display:none} /* bootstrap reboot sets dialog{display:block} */
.wof-faq__dialog::backdrop{background:rgba(16,16,16,.86)}
.wof-faq__dialog-video{display:block;width:100%;aspect-ratio:9 / 16;border-radius:8px;background:#000;object-fit:contain}
.wof-faq__dialog-close{position:absolute;top:12px;right:12px;z-index:1;display:flex;align-items:center;justify-content:center;width:40px;height:40px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.94);color:var(--wof-ink);font-size:16px;cursor:pointer;transition:background-color .2s ease}
.wof-faq__dialog-close:hover,
.wof-faq__dialog-close:focus-visible{background:var(--wof-gold)}
.wof-faq__dialog-close:focus{outline:none}
.wof-faq__dialog-close:focus-visible{outline:2px solid var(--wof-gold);outline-offset:2px}

/* ==========================================================================
   Testimonials (acf/testimonials)
   ========================================================================== */
.wof-testimonials{overflow:hidden}
.wof-testimonials__marquee{position:relative;width:100%;margin-top:56px;
  -webkit-mask:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);mask:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)}
.wof-testimonials__track{display:flex;width:max-content;animation:wof-marquee 70s linear infinite;will-change:transform}
.wof-testimonials__marquee:hover .wof-testimonials__track{animation-play-state:paused}
@keyframes wof-marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.wof-tcard{flex:none;width:420px;min-height:290px;margin-right:28px;padding:36px;display:flex;flex-direction:column;justify-content:space-between;gap:22px;
  background:var(--wof-cream);border:1px solid #efe9dc;border-radius:22px}
.wof-tcard__quote{font-family:"Cormorant Garamond",Georgia,serif;font-size:70px;line-height:.4;height:30px;color:var(--wof-gold)}
.wof-tcard__text{margin:0;font-family:"Nunito",Arial,sans-serif;font-size:19px;line-height:1.5;font-weight:500;color:#26261f;
  display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden}
.wof-tcard__author{display:flex;align-items:center;gap:14px}
.wof-tcard__name{display:block;font-family:"Nunito",Arial,sans-serif;font-weight:700;font-size:16px;color:var(--wof-ink)}
.wof-tcard__role{display:block;font-family:"Nunito",Arial,sans-serif;font-size:14px;color:#9a9384}
@media (prefers-reduced-motion:reduce){
  .wof-testimonials__track{animation:none}
  .wof-testimonials__marquee{overflow-x:auto}
}

/* ==========================================================================
   Blog (acf/blog) — cards + grid + pager: assets/css/wof-blog.css
   ========================================================================== */
.wof-blog--archive.wof-block{padding:clamp(56px,7vw,96px) 0 clamp(72px,10vw,140px)}

/* ==========================================================================
   Course grid (acf/course-grid)
   ========================================================================== */
.wof-course-grid__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:26px}
.wof-course-grid__grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
.wof-course-grid__grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.wof-course-card,
.wof-course-card:visited{display:block;overflow:hidden;background:#fff;border:1px solid #f0f0f0;border-radius:8px;box-shadow:0 8px 26px rgba(16,16,16,.05);text-decoration:none;color:var(--wof-ink)}
.wof-course-card__image img{display:block;width:100%;height:auto}
.wof-course-card__body{display:block;padding:20px}
.wof-course-card__title{font-family:"Cormorant Garamond",Georgia,serif;font-size:19px;font-weight:700;line-height:28px;letter-spacing:-1px;color:var(--wof-ink);transition:color .25s ease}
.wof-course-card:hover .wof-course-card__title{color:var(--wof-gold-hover)}

/* ==========================================================================
   Form section (acf/form-cta)
   ========================================================================== */
.wof-form-cta__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.3fr);gap:48px;align-items:start}
.wof-form-cta--no-form .wof-form-cta__grid{grid-template-columns:minmax(0,1fr)}
.wof-form-cta__head{position:sticky;top:calc(var(--wof-hh,110px) + 32px);max-width:560px}
.wof-form-cta .wof-heading{margin-bottom:0}
.wof-form-cta .wof-heading--brand .wof-heading__title{font-size:clamp(34px,3.4vw,52px);line-height:1.04}
.wof-form-cta .wof-heading__text,
.wof-form-cta .wof-heading__text p{color:var(--wof-muted)}
.wof-block--bg-dark.wof-form-cta .wof-heading__text,
.wof-block--bg-dark.wof-form-cta .wof-heading__text p{color:rgba(255,255,255,.72)}

/* ==========================================================================
   Profile (acf/profile)
   ========================================================================== */
.wof-profile__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:30px;align-items:start}
.wof-profile__image{display:block;width:100%;height:auto;border-radius:6px;margin-bottom:22px}
.wof-profile__contact-title{font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;font-size:20px;line-height:28px;letter-spacing:-1px;color:var(--wof-ink);margin:0 0 14px}
.wof-profile__socials{display:flex;gap:10px}
.wof-profile__social,
.wof-profile__social:visited{width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:var(--wof-gold);color:#fff;text-decoration:none;transition:background-color .3s}
.wof-profile__social:hover{background:var(--wof-navy);color:#fff}
.wof-profile__body{position:sticky;top:calc(var(--wof-hh,110px) + 32px)}
.wof-profile__name{font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;font-size:36px;line-height:40px;letter-spacing:-1px;color:var(--wof-ink);margin:0 0 14px}

/* ==========================================================================
   Features (acf/features)
   ========================================================================== */
.wof-features__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px}
.wof-features__grid--2{grid-template-columns:repeat(2,minmax(0,1fr));max-width:820px;margin:0 auto}
.wof-features__grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}
.wof-features__card{text-align:center;padding:30px 22px;border-radius:12px;background:#fff;border:1px solid #efe9dc}
.wof-block--bg-grey .wof-features__card,
.wof-block--bg-cream .wof-features__card{border-color:transparent}
.wof-block--bg-dark .wof-features__card{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.1)}
.wof-features__icon{margin:0 0 16px}
.wof-features__icon img{width:56px;height:56px;object-fit:contain;display:inline-block}
.wof-features__title{font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;font-size:21px;line-height:1.3;letter-spacing:-.5px;color:var(--wof-ink);margin:0 0 10px}
.wof-features__text{margin:0;color:#6a6a6a;line-height:1.7}
.wof-block--bg-dark .wof-features__title{color:#fff}
.wof-block--bg-dark .wof-features__text{color:rgba(255,255,255,.7)}
.wof-features__note{max-width:900px;margin:40px auto 0;text-align:center}
.wof-block--bg-dark .wof-features__note,
.wof-block--bg-dark .wof-features__note p{color:rgba(255,255,255,.82)}
.wof-block--bg-dark .wof-features__note strong{color:var(--wof-gold)}

/* ==========================================================================
   Pricing (acf/pricing)
   ========================================================================== */
.wof-pricing__grid{display:grid;grid-template-columns:minmax(0,7fr) minmax(0,5fr);gap:clamp(30px,5vw,64px);align-items:center}
.wof-pricing__body .wof-prose ul{margin-left:0;list-style:none}
.wof-pricing__body .wof-prose ul li{position:relative;padding-left:28px;margin-bottom:8px}
.wof-pricing__body .wof-prose ul li::before{content:"";position:absolute;left:0;top:9px;width:14px;height:8px;border-left:2px solid var(--wof-gold);border-bottom:2px solid var(--wof-gold);transform:rotate(-45deg)}
.wof-pricing__card{text-align:center;padding:clamp(28px,4vw,48px);background:var(--wof-cream);border:1px solid #efe9dc;border-radius:16px}
.wof-pricing__card-title{font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;font-size:28px;line-height:1.15;letter-spacing:-.5px;color:var(--wof-ink);margin:0 0 12px}
.wof-pricing__price{font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;font-size:clamp(48px,5vw,64px);line-height:1;color:var(--wof-gold);margin:0 0 18px}
.wof-pricing__lines{list-style:none;margin:0 0 24px;padding:0;color:#555}
.wof-pricing__lines li{margin:0 0 4px}
.wof-pricing__footnote{margin:14px 0 0;font-size:14px;color:var(--wof-muted)}

/* ==========================================================================
   Gallery (acf/gallery) + Video grid (acf/videos)
   ========================================================================== */
.wof-gallery__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px}
.wof-gallery__grid--1{grid-template-columns:minmax(0,1fr);max-width:570px}
.wof-gallery__grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.wof-gallery__grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}
.wof-gallery__item{margin:0}
.wof-gallery__image{display:block;width:100%;height:auto;border-radius:6px}
.wof-gallery__link{display:block;transition:opacity .25s ease,transform .25s ease}
.wof-gallery__link:hover{opacity:.9;transform:translateY(-3px)}
.wof-gallery__caption{margin:10px 0 0;font-size:15px;color:#555;text-align:center}
.wof-videos__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:30px}
.wof-videos__grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}

/* ==========================================================================
   Text (acf/text)
   ========================================================================== */
.wof-text.wof-block{padding:100px 0}

/* ==========================================================================
   Academy portal (acf/academy)
   ========================================================================== */
.wof-academy.wof-block{padding:100px 0}
.wof-academy__auth .wof-heading{margin-bottom:0}
.wof-academy__tabs{display:flex;flex-wrap:wrap;justify-content:center;gap:15px;margin:40px 0 30px}
.wof-academy__message{max-width:600px;margin:0 auto 15px;padding:10px 20px;border-radius:7px;border-left:4px solid var(--wof-error);background:#fbeeee;color:var(--wof-error)}
.wof-academy__message--ok{border-left-color:#2c7a4b;background:#eef7ee;color:#2c7a4b}
.wof-academy__form{max-width:600px;margin:0 auto;padding:40px;background:#fff;border-radius:7px;box-shadow:0 0 20px #eee}
.wof-academy__form[hidden]{display:none}
.wof-academy__form-title{font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;font-size:28px;line-height:32px;letter-spacing:-1px;color:var(--wof-ink);margin:0 0 26px}
.wof-academy__field{margin:0 0 24px}
.wof-academy__field label{display:block;margin:0 0 10px;font-weight:500;color:var(--wof-ink)}
.wof-academy__field input{display:block;width:100%;height:55px;padding:15px 20px;border:1px solid #eee;border-radius:7px;outline:none;font:inherit;color:var(--wof-ink)}
.wof-academy__field input:focus{border-color:var(--wof-gold);box-shadow:0 0 0 3px rgba(201,169,100,.2)}
.wof-academy__intro{margin-bottom:40px}
.wof-academy__modules{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px;margin-top:10px}
.wof-academy__module{padding:30px;border:1px solid var(--wof-gold);border-radius:12px;text-align:center}
.wof-academy__module-title{display:block;font-size:24px;line-height:1.3;color:var(--wof-ink)}
.wof-academy__module-dates{display:block}
.wof-academy__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,3fr);gap:30px;align-items:start}
.wof-academy__profile{padding:30px;border:1px solid var(--wof-gold);border-radius:12px;text-align:center}
.wof-academy__avatar img{border-radius:50%;margin:0 auto 8px}
.wof-academy__panel + .wof-academy__panel{margin-top:40px}
.wof-academy__panel-title{font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;font-size:28px;line-height:32px;letter-spacing:-1px;color:var(--wof-ink);margin:0 0 16px}
.wof-academy__next,
.wof-academy__next:visited{display:flex;flex-direction:column;align-items:center;padding:40px;border:1px solid var(--wof-gold);border-radius:12px;background:rgba(201,169,100,.2);text-decoration:none;color:var(--wof-navy);transition:background-color .4s ease}
.wof-academy__next:hover{background:var(--wof-gold)}
.wof-academy__next-time{display:flex;flex-direction:column;align-items:center;gap:12px;font-size:24px;font-weight:600;color:var(--wof-navy);transition:color .4s ease}
.wof-academy__next-time svg{width:64px;height:64px}
.wof-academy__next-text{display:block;margin-top:8px;text-align:center;color:var(--wof-navy);transition:color .4s ease}
.wof-academy__next:hover .wof-academy__next-time,
.wof-academy__next:hover .wof-academy__next-text{color:#fff}
.wof-academy__action{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:20px;padding:0 28px;border-radius:7px;background:var(--wof-gold);color:#fff;
  font-family:"Nunito",Arial,sans-serif;font-weight:700;font-size:15px;line-height:44px;transition:background-color .3s ease}
.wof-academy__action svg{width:42px;height:42px}
.wof-academy__next:hover .wof-academy__action,
.wof-academy__material:hover .wof-academy__action{background:var(--wof-navy)}
.wof-academy__materials{list-style:none;margin:16px 0 0;padding:0;display:flex;flex-direction:column;gap:20px}
.wof-academy__material,
.wof-academy__material:visited{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:20px;padding:15px;border:1px solid var(--wof-gold);border-radius:12px;background:rgba(201,169,100,.2);text-decoration:none;transition:background-color .4s ease}
.wof-academy__material:hover{background:var(--wof-gold)}
.wof-academy__material .wof-academy__action{margin-top:0}
.wof-academy__material-title{font-family:"Cormorant Garamond",Georgia,serif;font-size:32px;font-weight:600;line-height:1.2;color:var(--wof-ink)}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:991px){
  .wof-block[class*="--wide"]{padding:55px 0}
  .wof-block.wof-cover{height:auto;padding:80px 0}
  .wof-cover__inner{gap:200px}
  .wof-block.wof-faq{padding:120px 0}
  .wof-split__media{height:440px}
  .wof-form-cta__grid{grid-template-columns:minmax(0,1fr);gap:40px}
  .wof-form-cta__head{position:static;max-width:none}
  .wof-block.wof-faq > .wof-block__inner{padding:0 24px}
  .wof-faq__grid{display:flex;flex-direction:column;gap:0}
  .wof-faq__head{display:contents}
  .wof-faq__eyebrow{align-self:flex-start;margin-bottom:16px}
  .wof-faq__title{margin-bottom:48px}
  .wof-faq__list{order:1}
  .wof-faq__cta{order:2;margin-top:40px}
  .wof-story__head{margin-bottom:48px}
  .wof-story__grid{grid-template-columns:minmax(0,1fr);gap:48px}
  .wof-story--image-right .wof-story__media{order:0}
  .wof-story__media{height:400px}
  .wof-split[class*="--wide"] .wof-split__grid,
  .wof-pricing__grid,
  .wof-academy__grid{grid-template-columns:minmax(0,1fr)}
  .wof-split[class*="--wide"] .wof-split__media{order:0}
  .wof-course-grid__grid,
  .wof-features__grid--4,
  .wof-gallery__grid--4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .wof-features__grid,
  .wof-gallery__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .wof-academy__modules{grid-template-columns:repeat(2,minmax(0,1fr))}
  .wof-academy__profile{order:2}
  .wof-academy__next{padding:20px}
  .wof-academy__next-time{font-size:20px;gap:8px}
  .wof-academy__next-time svg{width:42px;height:42px}
  .wof-academy__material-title{font-size:26px}
}
@media (max-width:767px){
  .wof-cover__inner{gap:160px}
  .wof-block.wof-faq{padding:80px 0}
  .wof-faq__title{margin-bottom:32px}
  .wof-showcase__heading{margin-bottom:24px;font-size:clamp(30px,8.4vw,38px)}
  .wof-showcase__lead{gap:20px;padding-top:32px}
  .wof-showcase__text{font-size:16px}
  .wof-showcase__statements{gap:56px;padding-block:72px}
  .wof-showcase__title{font-size:clamp(34px,9vw,44px);line-height:1.04}
  .wof-story__media{height:300px}
  .wof-hero.wof-block{height:auto;min-height:0;max-height:none}
  .wof-hero__slide{height:auto;min-height:88vh;max-height:none}
  .wof-hero__arrow{display:none !important}
  .wof-hero__content{padding-bottom:96px}
  .wof-hero__dots{bottom:40px}
  .wof-split__grid,
  .wof-profile__grid,
  .wof-videos__grid,
  .wof-videos__grid--3{grid-template-columns:minmax(0,1fr);gap:20px}
  .wof-split--media-left .wof-split__media{order:0}
  .wof-split__media{height:360px}
  .wof-profile__body{position:static}
  .wof-course-grid__grid,
  .wof-course-grid__grid--2,
  .wof-course-grid__grid--3,
  .wof-features__grid,
  .wof-features__grid--2,
  .wof-features__grid--4,
  .wof-gallery__grid,
  .wof-gallery__grid--2,
  .wof-gallery__grid--4{grid-template-columns:minmax(0,1fr)}
  .wof-form .wpcf7 .row{flex-direction:column}
  .wof-form .wpcf7 .row > [class*="col-"]{flex:0 0 auto;width:100%}
  .wof-academy.wof-block{padding:80px 0}
  .wof-text.wof-block{padding:70px 0}
}
@media (max-width:600px){
  .wof-tcard{width:290px;min-height:256px;padding:30px 26px}
  .wof-tcard__text{font-size:17px}
}
@media (max-width:479px){
  .wof-block.wof-cover{padding:64px 0}
  .wof-block__inner,
  .wof-contact__inner,
  .wof-block.wof-cover > .wof-block__inner{padding:0 16px}
  .wof-cover__inner{gap:100px}
  .wof-block.wof-faq{padding:64px 0}
  .wof-split__media{height:280px}
  .wof-block.wof-faq > .wof-block__inner{padding:0 16px}
  .wof-faq__question{gap:16px;padding:20px;font-size:16.5px}
  .wof-faq__answer-text{padding:0 20px 20px;font-size:15px}
  .wof-faq__video{gap:14px;padding:10px 14px 10px 10px}
  .wof-faq__video-thumb{width:52px;height:72px}
  .wof-faq__video-title{font-size:21px}
  .wof-faq__video-play{width:48px;height:48px;font-size:24px}
  .wof-cover__head{gap:24px}
  .wof-cover__title{font-size:clamp(38px,11vw,52px)}
  .wof-block.wof-story > .wof-block__inner{padding:0 16px}
  .wof-story__head{margin-bottom:32px}
  .wof-story__grid{gap:32px}
  .wof-story__media{height:240px}
}
@media (max-width:575px){
  .wof-academy.wof-block{padding:60px 0}
  .wof-academy__form{padding:30px 20px}
  .wof-academy__modules{grid-template-columns:minmax(0,1fr)}
  .wof-academy__action-text{display:none}
  .wof-prose ul,
  .wof-prose ol{margin-left:24px}
}

/* --------------------------------------------------------------------------
   Contact (acf/contact)
   -------------------------------------------------------------------------- */
.wof-contact{
  background:#fff; padding-top:clamp(56px,8vw,112px);
  font-family:"Nunito",Arial,sans-serif; color:var(--wof-ink);
}
.wof-contact *{box-sizing:border-box}
.wof-contact__inner{max-width:1800px;margin:0 auto;padding:0 32px}
.wof-contact__grid{display:grid;grid-template-columns:minmax(0,5fr) minmax(0,6fr);gap:clamp(40px,6vw,96px);align-items:start}

/* left column */
.wof-contact__info{display:flex;flex-direction:column;gap:40px}
.wof-contact__content h1,
.wof-contact__content h2,
.wof-contact__content h3{
  font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;color:var(--wof-ink);
  font-size:clamp(36px,4.4vw,56px);line-height:1.04;letter-spacing:-.5px;margin:0 0 20px;
}
.wof-contact__content p{font-size:17px;line-height:1.7;color:var(--wof-muted);margin:0 0 12px}
.wof-contact__content p:last-child{margin-bottom:0}
.wof-contact__content a{color:var(--wof-gold-hover)}

.wof-contact__rows{list-style:none;margin:0;padding:0;border-top:1px solid var(--wof-line)}
.wof-contact__row{display:flex;flex-direction:column;gap:4px;margin:0;padding:16px 0;border-bottom:1px solid var(--wof-line)}
.wof-contact__label{font-size:12px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:var(--wof-muted)}
.wof-contact__value{font-size:18px;font-weight:600;line-height:1.4;color:var(--wof-ink);text-decoration:none;overflow-wrap:anywhere;transition:color .2s ease}
a.wof-contact__value:hover,
a.wof-contact__value:focus-visible{color:var(--wof-gold-hover)}

.wof-contact__socials{list-style:none;display:flex;flex-wrap:wrap;gap:8px 24px;margin:-16px 0 0;padding:0}
.wof-contact__socials li{margin:0}
.wof-contact__social{font-size:15px;font-weight:700;color:var(--wof-ink);text-decoration:none;border-bottom:1.5px solid var(--wof-gold);padding-bottom:2px;transition:color .2s ease,border-color .2s ease}
.wof-contact__social:hover,
.wof-contact__social:focus-visible{color:var(--wof-gold-hover);border-color:var(--wof-gold-hover)}


/* right column: form card */
.wof-contact__form{background:var(--wof-cream);border:1px solid #efe9dc;border-radius:16px;padding:clamp(24px,4vw,48px)}
.wof-contact__form .wpcf7 form{margin:0}
.wof-contact__form .rs-free-course-contact{display:flex;flex-direction:column;gap:16px}
.wof-contact__form .rs-free-course-contact .row{display:flex;gap:16px;margin:0}
.wof-contact__form .rs-free-course-contact .row > [class*="col-"]{flex:1 1 0;min-width:0;max-width:none;padding:0}
.wof-contact__form .form-field p,
.wof-contact__form .form-btn p{margin:0}
.wof-contact__form .form-field br{display:none}

.wof-contact__form .wpcf7-form-control:not(.wpcf7-submit){
  display:block;width:100%;height:52px;margin:0;padding:14px 18px;
  border:1px solid var(--wof-line);border-radius:7px;background:#fff;box-shadow:none;outline:none;
  font-family:inherit;font-size:16px;line-height:1.4;color:var(--wof-ink);
  transition:border-color .2s ease,box-shadow .2s ease;
}
.wof-contact__form textarea.wpcf7-form-control:not(.wpcf7-submit){height:160px;resize:vertical}
.wof-contact__form .wpcf7-form-control:not(.wpcf7-submit)::placeholder{color:rgba(16,16,16,.45);opacity:1}
.wof-contact__form .wpcf7-form-control:not(.wpcf7-submit):focus{border-color:var(--wof-gold);box-shadow:0 0 0 3px rgba(201,169,100,.2)}
.wof-contact__form .wpcf7-form-control.wpcf7-not-valid{border-color:var(--wof-error)}
.wof-contact__form .wpcf7-not-valid-tip{margin-top:6px;font-size:13px;color:var(--wof-error)}

/* submit: the site-wide button (.wof-btn via wof_cf7_submit_button()) */
.wof-contact__form .form-btn{position:relative;margin:8px 0 0}
.wof-contact__form .wpcf7-submit{display:flex;width:100%;height:auto}
.wof-contact__form .form-btn .wpcf7-spinner{position:absolute;top:50%;right:16px;margin:-12px 0 0}

.wof-contact__form .wpcf7 form .wpcf7-response-output{margin:16px 0 0;padding:12px 16px;border-width:1px;border-radius:7px;font-size:15px;line-height:1.5}
.wof-contact__form .wpcf7 form.sent .wpcf7-response-output{background:#eef7ee}
.wof-contact__form .wpcf7 form.invalid .wpcf7-response-output,
.wof-contact__form .wpcf7 form.unaccepted .wpcf7-response-output{background:#fff8e5}
.wof-contact__form .wpcf7 form.failed .wpcf7-response-output,
.wof-contact__form .wpcf7 form.aborted .wpcf7-response-output,
.wof-contact__form .wpcf7 form.spam .wpcf7-response-output{background:#fbeeee}

/* full-width map */
.wof-contact__map{margin-top:clamp(56px,8vw,112px);line-height:0;background:var(--wof-cream)}
.wof-contact__map iframe{display:block;width:100%;height:clamp(320px,36vw,460px);border:0;filter:grayscale(.4)}

@media (max-width:991px){
  .wof-contact__grid{grid-template-columns:minmax(0,1fr);gap:48px}
}
@media (max-width:575px){
  .wof-contact__form .rs-free-course-contact .row{flex-direction:column}
  .wof-contact__form .rs-free-course-contact .row > [class*="col-"]{flex:0 0 auto;width:100%}
}
