/* -- RESET & BASE ----------------------------------------- */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      :root {
        --red: #b91c1c;
        --red-d: #991b1b;
        --red-l: #dc2626;
        --red-pale: #fef2f2;
        --white: #ffffff;
        --off: #faf9f7;
        --dark: #1c1917;
        --dark2: #292524;
        --mid: #44403c;
        --muted: #78716c;
        --light: #a8a29e;
        --border: #e7e5e4;
        --border2: #d6d3d1;
        --nav-h: 72px;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "DM Sans", sans-serif;
        background: var(--white);
        color: var(--dark);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }

      /* -- TYPOGRAPHY UTILS ------------------------------------- */
      .serif {
        font-family: "Playfair Display", serif;
      }
      .eyebrow {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.18em;
        color: var(--red);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }
      .eyebrow::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--red);
        flex-shrink: 0;
      }
      .eyebrow.white {
        color: rgba(255, 255, 255, 0.6);
      }
      .eyebrow.white::before {
        background: var(--red);
      }

      h1,
      h2,
      h3 {
        font-family: "Playfair Display", serif;
      }

      .section-h {
        font-size: clamp(32px, 3.4vw, 52px);
        font-weight: 700;
        line-height: 1.1;
        color: var(--dark);
      }
      .section-h.white {
        color: var(--white);
      }
      .section-h .r {
        color: var(--red);
      }
      .section-h em {
        font-style: italic;
        font-weight: 400;
      }

      .section-sub {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.75;
        margin-top: 14px;
        max-width: 500px;
      }
      .section-sub.white {
        color: rgba(255, 255, 255, 0.5);
      }

      /* -- BUTTONS ---------------------------------------------- */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.04em;
        cursor: pointer;
        border: none;
        text-decoration: none;
        transition: all 0.2s;
        white-space: nowrap;
        padding: 14px 28px;
      }
      .btn-red {
        background: var(--red);
        color: white;
      }
      .btn-red:hover {
        background: var(--red-d);
        transform: translateY(-1px);
      }
      .btn-dark {
        background: var(--dark);
        color: white;
      }
      .btn-dark:hover {
        background: var(--dark2);
      }
      .btn-outline {
        background: transparent;
        color: var(--dark);
        border: 1px solid var(--border2);
      }
      .btn-outline:hover {
        border-color: var(--red);
        color: var(--red);
      }
      .btn-outline-white {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
      }
      .btn-outline-white:hover {
        border-color: white;
        background: rgba(255, 255, 255, 0.06);
      }
      .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--dark);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s;
      }
      .btn-ghost::after {
        content: "?";
        transition: transform 0.2s;
      }
      .btn-ghost:hover {
        color: var(--red);
      }
      .btn-ghost:hover::after {
        transform: translateX(3px);
      }

      /* -- NAV -------------------------------------------------- */
      #nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
        height: var(--nav-h);
        display: flex;
        align-items: center;
        padding: 0 5%;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid transparent;
        transition:
          border-color 0.3s,
          box-shadow 0.3s;
      }
      #nav.scrolled {
        border-bottom-color: var(--border);
        box-shadow: 0 2px 28px rgba(0, 0, 0, 0.05);
      }
      .nav-logo {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        flex-shrink: 0;
      }
      .nav-logo img {
        display: block;
        width: 170px;
        height: auto;
      }
      .nav-logo small {
        display: block;
        font-family: "DM Sans", sans-serif;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 0.14em;
        color: var(--red);
        margin-top: 1px;
      }
      .nav-center {
        display: flex;
        align-items: center;
        gap: 0;
        list-style: none;
      }
      .nav-center > li {
        position: relative;
      }
      .nav-center > li > a {
        font-size: 13px;
        color: var(--mid);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 8px 14px;
        transition: color 0.2s;
      }
      .nav-center > li > a:hover,
      .nav-center > li > a.active {
        color: var(--red);
      }
      .nav-center > li > a .caret {
        font-size: 9px;
        opacity: 0.5;
        transition: transform 0.2s;
      }
      .nav-center > li:hover > a .caret {
        transform: rotate(180deg);
      }

      /* Dropdown */
      .nav-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        background: white;
        border: 1px solid var(--border);
        min-width: 180px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: all 0.2s;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        list-style: none;
      }
      .nav-center > li:hover .nav-dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
      }
      .nav-dropdown li a {
        display: block;
        padding: 10px 18px;
        font-size: 13px;
        color: var(--mid);
        text-decoration: none;
        transition:
          background 0.15s,
          color 0.15s;
      }
      .nav-dropdown li a:hover {
        background: var(--red-pale);
        color: var(--red);
      }

      .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      /* Mobile */
      .nav-burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        flex-direction: column;
        gap: 5px;
      }
      .nav-burger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--dark);
        transition: all 0.25s;
      }
      .mobile-menu {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark);
        z-index: 490;
        overflow-y: auto;
        padding: 32px 7%;
      }
      .mobile-menu.open {
        display: block;
      }
      .mobile-menu-section {
        margin-bottom: 32px;
      }
      .mobile-menu-section h4 {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.18em;
        color: var(--red);
        text-transform: uppercase;
        margin-bottom: 12px;
      }
      .mobile-menu-section a {
        display: block;
        padding: 10px 0;
        font-family: "Playfair Display", serif;
        font-size: 22px;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: color 0.2s;
      }
      .mobile-menu-section a:hover {
        color: var(--red);
      }
      .mobile-menu-section a.sub {
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        padding: 8px 0 8px 16px;
      }

      /* -- PAGE SYSTEM ------------------------------------------ */
      .page {
        display: none;
        padding-top: var(--nav-h);
        min-height: 100vh;
      }
      .page.active {
        display: block;
      }

      /* -- SECTION WRAPPERS ------------------------------------- */
      .section {
        padding: 100px 7%;
      }
      .section.off {
        background: var(--off);
      }
      .section.dark {
        background: var(--dark);
      }

      /* -- REVEAL ----------------------------------------------- */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.in {
        opacity: 1;
        transform: none;
      }
      .reveal-d1 {
        transition-delay: 0.1s;
      }
      .reveal-d2 {
        transition-delay: 0.2s;
      }
      .reveal-d3 {
        transition-delay: 0.3s;
      }

      /* -----------------------------------------------------------
   HOME PAGE
------------------------------------------------------------*/

      /* Hero */
      .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: calc(100vh - var(--nav-h));
      }
      .hero-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 6% 80px 9%;
      }
      .hero-h1 {
        font-size: clamp(46px, 5.5vw, 80px);
        font-weight: 700;
        line-height: 1.05;
        color: var(--red);
        margin-bottom: 26px;
      }
      .hero-sub {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.75;
        max-width: 420px;
        margin-bottom: 44px;
      }
      .hero-ctas {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
      }
      .hero-right {
        position: relative;
        overflow: hidden;
        background: #e2ddd8;
      }
      .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        display: block;
      }
      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          160deg,
          rgba(185, 28, 28, 0.12) 0%,
          transparent 50%
        );
      }
      .hero-badge {
        position: absolute;
        bottom: 44px;
        left: 36px;
        background: var(--red);
        color: white;
        padding: 20px 26px;
      }
      .hero-badge-num {
        font-family: "Playfair Display", serif;
        font-size: 36px;
        font-weight: 700;
        line-height: 1;
      }
      .hero-badge-lbl {
        font-size: 10px;
        opacity: 0.75;
        letter-spacing: 0.08em;
        margin-top: 6px;
        text-transform: uppercase;
      }

      /* Stats */
      .stats-bar {
        background: var(--dark);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
      }
      .stat {
        padding: 28px 16px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
      }
      .stat:last-child {
        border: none;
      }
      .stat-num {
        font-family: "Playfair Display", serif;
        font-size: 32px;
        font-weight: 700;
        color: var(--red);
      }
      .stat-lbl {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.38);
        letter-spacing: 0.06em;
        margin-top: 6px;
      }

      /* Programs grid */
      .programs-hd {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 32px;
        margin-bottom: 52px;
        flex-wrap: wrap;
      }
      .programs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border: 1px solid var(--border);
      }
      .prog-card {
        border-right: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        overflow: hidden;
      }
      .prog-card:last-child {
        border-right: none;
      }
      .prog-img-wrap {
        height: 255px;
        overflow: hidden;
        position: relative;
      }
      .prog-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.65s ease;
        display: block;
      }
      .prog-card:hover .prog-img {
        transform: scale(1.06);
      }
      .prog-img-overlay {
        position: absolute;
        inset: 0;
        background: rgba(185, 28, 28, 0.08);
        opacity: 0;
        transition: opacity 0.3s;
      }
      .prog-card:hover .prog-img-overlay {
        opacity: 1;
      }
      .prog-body {
        padding: 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .prog-num {
        font-size: 11px;
        color: var(--red);
        letter-spacing: 0.1em;
        margin-bottom: 6px;
      }
      .prog-title {
        font-family: "Playfair Display", serif;
        font-size: 23px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
        line-height: 1.2;
      }
      .prog-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 14px;
      }
      .prog-pill {
        font-size: 10px;
        color: var(--red);
        border: 1px solid var(--red);
        padding: 3px 10px;
        letter-spacing: 0.03em;
      }
      .prog-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
        flex: 1;
        margin-bottom: 22px;
      }
      .prog-link {
        font-size: 13px;
        color: var(--red);
        font-weight: 500;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 7px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        transition: gap 0.2s;
      }
      .prog-link:hover {
        gap: 12px;
      }
      .prog-link::after {
        content: "?";
      }

      /* About strip */
      .about-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .about-img-wrap {
        position: relative;
      }
      .about-img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        object-position: center 20%;
      }
      .about-corner {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        background: var(--red);
        z-index: -1;
      }
      .blockquote {
        border-left: 3px solid var(--red);
        padding-left: 22px;
        margin: 28px 0;
      }
      .blockquote p {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 20px;
        color: var(--dark);
        line-height: 1.5;
      }
      .body-text {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 16px;
      }

      /* Events preview */
      .events-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 48px;
      }
      .event-row {
        display: grid;
        grid-template-columns: 200px 1fr auto;
        align-items: center;
        gap: 24px;
        padding: 22px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      }
      .event-row:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
      }
      .event-date {
        font-size: 12px;
        color: var(--red);
        font-weight: 500;
        letter-spacing: 0.06em;
      }
      .event-name {
        font-size: 16px;
        color: white;
        font-weight: 400;
      }
      .event-tag {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 3px 10px;
        white-space: nowrap;
      }

      /* Testimonials */
      .test-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 52px;
      }
      .test-card {
        background: white;
        border: 1px solid var(--border);
        padding: 30px;
        transition: box-shadow 0.3s;
      }
      .test-card:hover {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
      }
      .test-stars {
        color: var(--red);
        letter-spacing: 2px;
        margin-bottom: 18px;
        font-size: 13px;
      }
      .test-q {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 17px;
        color: var(--dark);
        line-height: 1.6;
        margin-bottom: 24px;
      }
      .test-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .test-av {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--red);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Playfair Display", serif;
        font-size: 13px;
        font-weight: 600;
        flex-shrink: 0;
      }
      .test-name {
        font-size: 13px;
        font-weight: 500;
        color: var(--dark);
      }
      .test-det {
        font-size: 12px;
        color: var(--muted);
        margin-top: 2px;
      }

      /* Pricing */
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border: 1px solid var(--border);
        margin-top: 52px;
      }
      .price-card {
        padding: 40px 32px;
        border-right: 1px solid var(--border);
        position: relative;
        display: flex;
        flex-direction: column;
      }
      .price-card:last-child {
        border-right: none;
      }
      .price-card.featured {
        background: var(--red);
        color: white;
      }
      .popular-tag {
        position: absolute;
        top: -1px;
        left: 32px;
        background: var(--dark);
        color: white;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 5px 14px;
      }
      .price-tier {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 18px;
      }
      .price-card.featured .price-tier {
        color: rgba(255, 255, 255, 0.6);
      }
      .price-amount {
        font-family: "Playfair Display", serif;
        font-size: 52px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1;
      }
      .price-amount sup {
        font-size: 22px;
        vertical-align: super;
        line-height: 0;
      }
      .price-card.featured .price-amount {
        color: white;
      }
      .price-per {
        font-size: 13px;
        color: var(--muted);
        margin-top: 6px;
        margin-bottom: 26px;
      }
      .price-card.featured .price-per {
        color: rgba(255, 255, 255, 0.6);
      }
      .price-feats {
        list-style: none;
        flex: 1;
        margin-bottom: 28px;
      }
      .price-feats li {
        font-size: 14px;
        color: var(--mid);
        padding: 9px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        gap: 10px;
      }
      .price-feats li::before {
        content: "—";
        color: var(--red);
        flex-shrink: 0;
      }
      .price-card.featured .price-feats li {
        color: rgba(255, 255, 255, 0.85);
        border-bottom-color: rgba(255, 255, 255, 0.14);
      }
      .price-card.featured .price-feats li::before {
        color: rgba(255, 255, 255, 0.5);
      }
      .btn-price {
        width: 100%;
        padding: 14px;
        cursor: pointer;
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.04em;
        transition: all 0.2s;
        border: 1px solid var(--border2);
        background: transparent;
        color: var(--dark);
      }
      .btn-price:hover {
        background: var(--dark);
        color: white;
        border-color: var(--dark);
      }
      .price-card.featured .btn-price {
        background: white;
        color: var(--red);
        border-color: white;
      }
      .price-card.featured .btn-price:hover {
        background: var(--dark);
        color: white;
        border-color: var(--dark);
      }
      .pricing-note {
        text-align: center;
        font-size: 13px;
        color: var(--muted);
        margin-top: 20px;
      }

      /* Contact form */
      .contact-wrap {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 80px;
        align-items: start;
      }
      .c-info-item {
        margin-bottom: 28px;
      }
      .c-label {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 5px;
      }
      .c-val {
        font-size: 15px;
        color: var(--dark);
        line-height: 1.6;
      }
      .c-val a {
        color: inherit;
        text-decoration: none;
      }
      .c-val a:hover {
        color: var(--red);
      }
      .c-accent {
        font-size: 15px;
        color: var(--red);
        font-weight: 500;
      }

      /* form fields */
      .fgrid2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 14px;
      }
      .ff {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 14px;
      }
      .ff label {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--mid);
      }
      .ff input,
      .ff select,
      .ff textarea {
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        color: var(--dark);
        background: white;
        border: 1px solid var(--border);
        padding: 13px 15px;
        outline: none;
        transition: border-color 0.2s;
        width: 100%;
        -webkit-appearance: none;
        appearance: none;
      }
      .ff input:focus,
      .ff select:focus,
      .ff textarea:focus {
        border-color: var(--red);
      }
      .ff input.err,
      .ff select.err,
      .ff textarea.err {
        border-color: #dc2626;
      }
      .ff .errmsg {
        font-size: 11px;
        color: #dc2626;
        display: none;
        margin-top: -2px;
      }
      .ff.invalid .errmsg {
        display: block;
      }
      .ff textarea {
        resize: vertical;
        min-height: 108px;
      }
      .btn-submit {
        width: 100%;
        padding: 16px;
        background: var(--red);
        color: white;
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.04em;
        border: none;
        cursor: pointer;
        transition: all 0.2s;
        margin-top: 4px;
      }
      .btn-submit:hover {
        background: var(--red-d);
      }
      .btn-submit:disabled {
        background: var(--muted);
        cursor: not-allowed;
      }
      #form-success {
        display: none;
        text-align: center;
        background: var(--off);
        padding: 60px 40px;
        border: 1px solid var(--border);
      }
      .success-icon {
        font-size: 48px;
        display: block;
        margin-bottom: 20px;
      }
      #form-success h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        color: var(--dark);
        margin-bottom: 10px;
      }
      #form-success p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.65;
      }

      /* Footer */
      footer {
        background: var(--dark);
        color: rgba(255, 255, 255, 0.45);
        padding: 64px 7% 36px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        margin-bottom: 28px;
      }
      .footer-logo {
        text-decoration: none;
        display: inline-flex;
        margin-bottom: 12px;
      }
      .footer-logo img {
        display: block;
        width: 96px;
        height: auto;
      }
      .footer-desc {
        font-size: 14px;
        line-height: 1.75;
      }
      .footer-col-h {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: white;
        margin-bottom: 18px;
      }
      .footer-links {
        list-style: none;
      }
      .footer-links li {
        margin-bottom: 9px;
      }
      .footer-links a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.42);
        text-decoration: none;
        transition: color 0.2s;
        cursor: pointer;
      }
      .footer-links a:hover {
        color: var(--red);
      }
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        flex-wrap: wrap;
        gap: 8px;
      }
      .footer-bottom .r {
        color: var(--red);
      }
      .footer-bottom a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-bottom a:hover {
        color: var(--red);
      }

      /* -----------------------------------------------------------
   INNER PAGE HERO
------------------------------------------------------------*/
      .page-hero {
        background: var(--dark);
        padding: 80px 7% 72px;
        position: relative;
        overflow: hidden;
      }
      .page-hero::before {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 320px;
        height: 320px;
        border: 1px solid rgba(185, 28, 28, 0.15);
        border-radius: 50%;
      }
      .page-hero::after {
        content: "";
        position: absolute;
        top: 20px;
        right: 20px;
        width: 200px;
        height: 200px;
        border: 1px solid rgba(185, 28, 28, 0.1);
        border-radius: 50%;
      }
      .page-hero-h {
        font-family: "Playfair Display", serif;
        font-size: clamp(36px, 4vw, 60px);
        font-weight: 700;
        color: white;
        line-height: 1.1;
        margin-bottom: 16px;
      }
      .page-hero-h .r {
        color: var(--red);
      }
      .page-hero-sub {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.5);
        max-width: 540px;
        line-height: 1.7;
        margin-bottom: 28px;
      }
      .breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 24px;
      }
      .breadcrumb span {
        cursor: pointer;
        transition: color 0.2s;
      }
      .breadcrumb span:hover {
        color: var(--red);
      }
      .breadcrumb::before,
      .breadcrumb .sep {
        content: "/";
        color: rgba(255, 255, 255, 0.15);
      }

      /* -----------------------------------------------------------
   CLASSES HUB
------------------------------------------------------------*/
      .classes-hub-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border: 1px solid var(--border);
      }
      .class-hub-card {
        border-right: 1px solid var(--border);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition: background 0.2s;
      }
      .class-hub-card:last-child {
        border-right: none;
      }
      .class-hub-card:hover {
        background: var(--off);
      }
      .chc-img {
        height: 220px;
        overflow: hidden;
      }
      .chc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
      }
      .class-hub-card:hover .chc-img img {
        transform: scale(1.05);
      }
      .chc-body {
        padding: 28px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .chc-title {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
      }
      .chc-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 14px;
      }
      .chc-tag {
        font-size: 10px;
        color: var(--red);
        border: 1px solid var(--red);
        padding: 3px 10px;
      }
      .chc-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
        flex: 1;
        margin-bottom: 20px;
      }
      .chc-link {
        font-size: 13px;
        color: var(--red);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 7px;
        text-decoration: none;
        padding-top: 18px;
        border-top: 1px solid var(--border);
      }
      .chc-link::after {
        content: "?";
      }

      /* -----------------------------------------------------------
   CLASS DETAIL PAGES
------------------------------------------------------------*/
      .class-detail-body {
        display: grid;
        grid-template-columns: 3fr 2fr;
        gap: 72px;
        align-items: start;
      }
      .class-benefits {
        list-style: none;
        margin: 28px 0;
      }
      .class-benefits li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 15px;
        color: var(--mid);
      }
      .class-benefits li::before {
        content: "—";
        color: var(--red);
        flex-shrink: 0;
      }
      .class-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 10px;
      }
      .class-gallery img {
        display: block;
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
      }
      .class-sidebar {
        position: sticky;
        top: calc(var(--nav-h) + 28px);
      }
      .sidebar-card {
        background: var(--off);
        border: 1px solid var(--border);
        padding: 28px;
        margin-bottom: 16px;
      }
      .sidebar-card h4 {
        font-family: "Playfair Display", serif;
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 14px;
      }
      .sidebar-card p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
      }
      .sidebar-sched {
        list-style: none;
      }
      .sidebar-sched li {
        display: flex;
        justify-content: space-between;
        padding: 9px 0;
        border-bottom: 1px solid var(--border);
        font-size: 13px;
      }
      .sidebar-sched li:last-child {
        border: none;
      }
      .sched-day-lbl {
        color: var(--dark);
        font-weight: 500;
      }
      .sched-time-lbl {
        color: var(--muted);
      }

      /* Kids sub-programs */
      .kids-programs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin: 28px 0;
      }
      .kids-prog {
        background: var(--off);
        border: 1px solid var(--border);
        padding: 24px;
      }
      .kids-prog h4 {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 4px;
      }
      .kids-prog .age {
        font-size: 12px;
        color: var(--red);
        margin-bottom: 12px;
      }
      .kids-prog p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
      }

      /* -----------------------------------------------------------
   EVENTS PAGE
------------------------------------------------------------*/
      .events-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
      }
      .events-section-h {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--red);
        padding-bottom: 14px;
        border-bottom: 2px solid var(--red);
        margin-bottom: 0;
      }
      .event-item {
        padding: 22px 0;
        border-bottom: 1px solid var(--border);
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 20px;
        align-items: start;
      }
      .event-date-block {
        min-width: 72px;
        text-align: center;
      }
      .event-date-day {
        font-family: "Playfair Display", serif;
        font-size: 30px;
        font-weight: 700;
        color: var(--red);
        line-height: 1;
      }
      .event-date-mo {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 4px;
      }
      .event-title {
        font-size: 16px;
        color: var(--dark);
        font-weight: 500;
        line-height: 1.4;
        margin-bottom: 6px;
      }
      .event-meta {
        font-size: 12px;
        color: var(--muted);
      }
      .event-badge-item {
        display: inline-block;
        background: var(--red-pale);
        color: var(--red);
        font-size: 10px;
        padding: 2px 9px;
        margin-left: 8px;
      }

      .closures-list {
        list-style: none;
      }
      .closure-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
      }
      .closure-date {
        font-size: 13px;
        color: var(--muted);
      }
      .closure-name {
        font-size: 14px;
        color: var(--dark);
        font-weight: 500;
      }

      /* -----------------------------------------------------------
   STUDENT RESOURCES
------------------------------------------------------------*/
      .resources-hub {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 52px;
      }
      .resource-card {
        border: 1px solid var(--border);
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
        cursor: pointer;
      }
      .resource-card:hover {
        border-color: var(--red-l);
        box-shadow: 0 4px 24px rgba(185, 28, 28, 0.06);
      }
      .resource-card-icon {
        font-size: 32px;
      }
      .resource-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--dark);
      }
      .resource-card p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
        flex: 1;
      }
      .resource-card-meta {
        font-size: 12px;
        color: var(--red);
        font-weight: 500;
        letter-spacing: 0.04em;
      }
      .resource-card-lock {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: var(--muted);
      }
      .resource-card-lock::before {
        content: "??";
        font-size: 14px;
      }

      /* Belt/Sash portal */
      .portal-wrap {
        max-width: 700px;
        margin: 0 auto;
      }
      .portal-login {
        background: var(--off);
        border: 1px solid var(--border);
        padding: 48px 44px;
        margin-bottom: 40px;
      }
      .portal-login h3 {
        font-family: "Playfair Display", serif;
        font-size: 26px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 8px;
      }
      .portal-login p {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 28px;
        line-height: 1.6;
      }
      .portal-login .ff {
        margin-bottom: 16px;
      }
      .portal-login .btn {
        width: 100%;
        justify-content: center;
      }
      .portal-levels {
        margin-top: 36px;
      }
      .portal-levels h4 {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 16px;
      }
      .belt-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
      }
      .belt-item {
        border: 1px solid var(--border);
        padding: 14px 10px;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s;
      }
      .belt-item:hover {
        border-color: var(--red);
        background: var(--red-pale);
      }
      .belt-swatch {
        width: 28px;
        height: 6px;
        border-radius: 3px;
        margin: 0 auto 8px;
      }
      .belt-name {
        font-size: 12px;
        color: var(--dark);
        font-weight: 500;
      }
      .belt-lock {
        font-size: 10px;
        color: var(--muted);
        margin-top: 3px;
      }

      /* PDF resource list */
      .pdf-list {
        list-style: none;
        margin-top: 28px;
      }
      .pdf-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        gap: 20px;
      }
      .pdf-item:first-child {
        border-top: 1px solid var(--border);
      }
      .pdf-info {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .pdf-icon {
        font-size: 24px;
        flex-shrink: 0;
      }
      .pdf-title {
        font-size: 15px;
        color: var(--dark);
        font-weight: 500;
      }
      .pdf-desc {
        font-size: 12px;
        color: var(--muted);
        margin-top: 2px;
      }
      .pdf-download {
        font-size: 13px;
        color: var(--red);
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .pdf-download:hover {
        color: var(--red-d);
      }

      /* Sword technique */
      .yt-embed {
        aspect-ratio: 16/9;
        background: var(--dark);
        margin-bottom: 28px;
        overflow: hidden;
      }
      .yt-embed iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      /* -----------------------------------------------------------
   ABOUT PAGE
------------------------------------------------------------*/
      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
      }
      .about-img-full {
        width: 100%;
        aspect-ratio: 3/4;
        object-fit: cover;
      }
      .partner-card {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 32px;
        align-items: center;
        background: var(--off);
        border: 1px solid var(--border);
        padding: 32px;
        margin-top: 40px;
      }
      .partner-logo {
        width: 100%;
        aspect-ratio: 1;
        object-fit: contain;
      }

      /* -----------------------------------------------------------
   LOCATION PAGE
------------------------------------------------------------*/
      .location-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
      }
      .map-embed {
        aspect-ratio: 4/3;
        background: var(--off);
        border: 1px solid var(--border);
        overflow: hidden;
      }
      .map-embed iframe {
        width: 100%;
        height: 100%;
        border: none;
      }
      .location-detail {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .loc-item {
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
      }
      .loc-item:first-child {
        border-top: 1px solid var(--border);
      }
      .loc-label {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 6px;
      }
      .loc-val {
        font-size: 15px;
        color: var(--dark);
        line-height: 1.6;
      }
      .loc-val a {
        color: inherit;
        text-decoration: none;
      }
      .loc-val a:hover {
        color: var(--red);
      }

      /* -----------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------*/
      @media (max-width: 1060px) {
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 960px) {
        .hero {
          grid-template-columns: 1fr;
        }
        .hero-right {
          height: 56vw;
        }
        .hero-left {
          padding: 56px 7%;
        }
        .stats-bar {
          grid-template-columns: 1fr 1fr;
        }
        .programs-grid,
        .classes-hub-grid {
          grid-template-columns: 1fr;
        }
        .prog-card,
        .class-hub-card {
          border-right: none;
          border-bottom: 1px solid var(--border);
        }
        .about-strip,
        .about-content {
          grid-template-columns: 1fr;
          gap: 44px;
        }
        .about-corner {
          display: none;
        }
        .test-grid {
          grid-template-columns: 1fr;
        }
        .pricing-grid {
          grid-template-columns: 1fr;
        }
        .price-card {
          border-right: none;
          border-bottom: 1px solid var(--border);
        }
        .price-card.featured {
          border-bottom-color: rgba(255, 255, 255, 0.15);
        }
        .contact-wrap {
          grid-template-columns: 1fr;
          gap: 44px;
        }
        .class-detail-body {
          grid-template-columns: 1fr;
        }
        .class-gallery {
          grid-template-columns: 1fr;
        }
        .events-grid {
          grid-template-columns: 1fr;
        }
        .resources-hub {
          grid-template-columns: 1fr;
        }
        .belt-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .location-wrap {
          grid-template-columns: 1fr;
        }
        .partner-card {
          grid-template-columns: 1fr;
        }
        .nav-center,
        .nav-right .btn {
          display: none;
        }
        .nav-burger {
          display: flex;
        }
        .kids-programs {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 28px;
        }
      }
      @media (max-width: 600px) {
        .section {
          padding: 72px 5%;
        }
        .fgrid2 {
          grid-template-columns: 1fr;
        }
        .event-row {
          grid-template-columns: 1fr;
          gap: 6px;
        }
        .belt-grid {
          grid-template-columns: 1fr 1fr;
        }
        .portal-login {
          padding: 30px 24px;
        }
      }
