  :root {
    --burgundy:       #5C0F1C;
    --burgundy-deep:  #5C0F1C;
    --burgundy-mid:   #5C0F1C;
    --rose-gold:      #E6A4A4;
    --rose-gold-lt:   #E8C4A0;
    --rose-gold-pale: #F5E6D8;
    --white:          #FDFAF7;
    --off-white:      #F7F0EA;
    --cream:          #EFE4D6;
    --text-dark:      #2C1015;
    --success:        #2D7F5E;
    --accent-gold:    #D4AF37;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--text-dark);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  body.scroll-locked { overflow: hidden; }

  .u-hidden { display: none !important; }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .4;
  }

  /* ── CUSTOM CURSOR ── */
  @media (hover: hover) {
    body { cursor: default; }
    a, button, .course-card, .btn-primary, .btn-ghost, .nav-cta { cursor: pointer; }
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1rem 4rem;
    background: rgba(253,250,247,.92);
    backdrop-filter: blur(14px);
    animation: fadeDown .9s ease both;
  }

  .nav-side {
    display: flex;
    align-items: center;
    gap: 2.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-side li { display: flex; align-items: center; }
  .nav-side-left { justify-content: flex-end; }
  .nav-side-right { justify-content: flex-start; }

  .nav-side a {
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--burgundy); text-decoration: none;
    position: relative; padding-bottom: 3px;
    line-height: 1;
    transition: color .3s;
  }
  .nav-side a.nav-cta { padding: .5rem 1.2rem; padding-bottom: .5rem; }
  .nav-side a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--rose-gold);
    transition: width .35s ease;
  }
  .nav-side a:hover { color: var(--rose-gold); }
  .nav-side a:hover::after { width: 100%; }
  .nav-side a.nav-cta::after { display: none; }

  .nav-mobile { display: none; }

  .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .nav-logo img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--rose-gold);
    box-shadow: 0 4px 15px rgba(230,164,164,.3);
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .nav-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(230,164,164,.4);
  }

  .nav-links {
    display: flex; gap: 2.8rem; list-style: none;
  }

  .nav-links a {
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--burgundy); text-decoration: none;
    position: relative; padding-bottom: 3px;
    transition: color .3s;
  }

  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--rose-gold);
    transition: width .35s ease;
  }
  .nav-links a:hover { color: var(--rose-gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    display: inline-block;
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    padding: .5rem 1.2rem;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold) !important;
    background: transparent;
    cursor: pointer;
    transition: background .3s, color .3s;
    text-decoration: none;
    line-height: 1;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--rose-gold); color: var(--white) !important; }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(ellipse at 20% 10%, #6E1A2A 0%, var(--burgundy-deep) 45%, #3A0A14 100%);
    padding: 140px 8vw 6rem;
    overflow: hidden;
    isolation: isolate;
    display: flex; flex-direction: column; justify-content: center;
  }

  /* decorative background layer */
  .hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .hero-watermark {
    position: absolute;
    right: -2vw; bottom: -3vw;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(12rem, 26vw, 28rem);
    line-height: .8;
    letter-spacing: -.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(230,164,164,.14);
    text-stroke: 1px rgba(230,164,164,.14);
    user-select: none;
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
  }
  .hero-orb-1 {
    width: 520px; height: 520px;
    top: -140px; left: -140px;
    background: radial-gradient(circle, rgba(230,164,164,.35), transparent 70%);
  }
  .hero-orb-2 {
    width: 420px; height: 420px;
    bottom: -120px; right: 20%;
    background: radial-gradient(circle, rgba(110,26,42,.6), transparent 70%);
  }

  .hero-ring {
    position: absolute;
    top: 18%; right: 6%;
    width: 340px; height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(230,164,164,.25);
    box-shadow:
      inset 0 0 0 18px rgba(230,164,164,.05),
      inset 0 0 0 19px rgba(230,164,164,.12);
    animation: ringSpin 60s linear infinite;
  }
  .hero-ring::before {
    content: '';
    position: absolute; inset: -40px;
    border-radius: 50%;
    border: 1px dashed rgba(230,164,164,.18);
  }
  @keyframes ringSpin {
    to { transform: rotate(360deg); }
  }

  /* content wrapper */
  .hero-inner {
    position: relative; z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-eyebrow-row {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeUp .8s .15s ease both;
  }
  .hero-rank {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--rose-gold);
    letter-spacing: .08em;
  }
  .hero-divider {
    flex: 0 0 auto;
    width: 56px; height: 1px;
    background: linear-gradient(90deg, var(--rose-gold), transparent);
  }
  .hero-inner .hero-eyebrow {
    margin-bottom: 0;
    animation: none;
  }

  .hero-inner .hero-title {
    font-size: clamp(3rem, 6.2vw, 6.8rem);
    max-width: 1100px;
    margin-bottom: 2.2rem;
  }
  .hero-inner .hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--rose-gold-lt), var(--rose-gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-inner .hero-sub {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(245,230,216,.75);
  }
  .hero-inner .hero-sub em {
    font-style: normal;
    color: var(--rose-gold-lt);
    letter-spacing: .08em;
  }

  .hero-meta {
    display: flex; gap: 0;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(230,164,164,.15);
    animation: fadeUp .8s .8s ease both;
  }
  .hero-meta-item {
    flex: 1;
    padding-right: 2rem;
    border-right: 1px solid rgba(230,164,164,.12);
  }
  .hero-meta-item:last-child { border-right: none; }
  .hero-meta-item + .hero-meta-item { padding-left: 2rem; }
  .hero-meta-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: .02em;
    margin-bottom: .3rem;
  }
  .hero-meta-label {
    display: block;
    font-size: .65rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(230,164,164,.7);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: .6rem;
    z-index: 1;
    animation: fadeUp 1s 1.2s ease both;
  }
  .hero-scroll-label {
    font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(230,164,164,.6);
  }
  .hero-scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--rose-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
    transform-origin: top;
  }
  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50%      { transform: scaleY(.4); opacity: .5; }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-ring, .hero-scroll-line { animation: none; }
  }

  @media (max-width: 900px) {
    .hero { padding: 120px 6vw 5rem; }
    .hero-ring { display: none; }
    .hero-meta { flex-direction: column; gap: 1.5rem; }
    .hero-meta-item { border-right: none; padding: 0 0 1.5rem 0; border-bottom: 1px solid rgba(230,164,164,.12); }
    .hero-meta-item:last-child { border-bottom: none; padding-bottom: 0; }
    .hero-meta-item + .hero-meta-item { padding-left: 0; }
    .hero-scroll { display: none; }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(230,164,164,.15);
    border: 1px solid rgba(230,164,164,.3);
    padding: .5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 1.8rem;
    animation: fadeUp .8s .15s ease both;
  }

  .badge-dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  .badge-text {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--rose-gold-lt);
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.2); }
  }

  .hero-eyebrow {
    font-size: .68rem; letter-spacing: .35em; text-transform: uppercase;
    color: var(--rose-gold); margin-bottom: 1.6rem;
    animation: fadeUp .8s .2s ease both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 5.5vw, 6rem);
    font-weight: 300; line-height: 1.05;
    color: var(--white); letter-spacing: .02em;
    animation: fadeUp .8s .35s ease both;
  }

  .hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--rose-gold-lt), var(--rose-gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    margin-top: 2rem;
    font-size: .85rem; line-height: 1.9; letter-spacing: .06em;
    color: rgba(245,230,216,.65); max-width: 420px;
    animation: fadeUp .8s .5s ease both;
  }

  .hero-actions {
    margin-top: 3rem; display: flex; gap: 1.2rem; align-items: center;
    animation: fadeUp .8s .65s ease both;
  }

  .btn-primary {
    display: inline-block;
    padding: .9rem 2.8rem;
    background: linear-gradient(135deg, var(--rose-gold), #C98080);
    color: var(--white); font-size: .73rem;
    letter-spacing: .22em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 6px 28px rgba(230,164,164,.35);
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .5s ease;
  }
  .btn-primary:hover::before { left: 100%; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(230,164,164,.45); }

  .btn-primary.btn-sm {
    padding: .75rem 1.8rem;
    font-size: .68rem;
    letter-spacing: .2em;
    border-radius: 2px;
    width: fit-content;
    align-self: flex-start;
    box-shadow: 0 4px 18px rgba(230,164,164,.3);
  }
  .btn-primary.btn-sm:hover {
    box-shadow: 0 6px 22px rgba(230,164,164,.42);
  }

  .btn-ghost {
    display: inline-block;
    font-size: .73rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--rose-gold-lt); text-decoration: none;
    display: flex; align-items: center; gap: .6rem;
    transition: gap .3s;
  }
  .btn-ghost:hover { gap: 1rem; }
  .btn-ghost::after { content: '→'; font-size: 1rem; }

  .hero-right {
    background: var(--off-white);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  .hero-bg-pattern {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 60% 40%, rgba(230,164,164,.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(92,15,28,.07) 0%, transparent 60%);
  }

  /* ── HERO IMAGE SHOWCASE ── */
  .hero-showcase {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    animation: scaleIn .9s .4s ease both;
  }

  .showcase-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(92,15,28,.2), 0 10px 30px rgba(230,164,164,.15);
  }

  .showcase-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
  }

  .showcase-main:hover img {
    transform: scale(1.05);
  }

  .showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(92,15,28,.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
  }

  .showcase-tag {
    display: inline-block;
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--burgundy-deep);
    background: var(--accent-gold);
    padding: .35rem .8rem;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: .8rem;
  }

  .showcase-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .4rem;
  }

  .showcase-meta {
    font-size: .72rem;
    letter-spacing: .1em;
    color: rgba(255,255,255,.7);
  }

  .showcase-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
  }

  .showcase-play::before {
    content: '';
    width: 0; height: 0;
    border-left: 18px solid var(--burgundy);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 5px;
  }

  .showcase-main:hover .showcase-play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
  }

  /* Floating mini cards */
  .showcase-float {
    position: absolute;
    background: var(--white);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    box-shadow: 0 12px 40px rgba(92,15,28,.12);
    display: flex;
    align-items: center;
    gap: .8rem;
    animation: float 6s ease-in-out infinite;
  }

  .showcase-float-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
  }

  .showcase-float-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 2s;
  }

  .float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--rose-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .8rem;
  }

  .float-content {
    display: flex;
    flex-direction: column;
  }

  .float-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1;
  }

  .float-label {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(44,16,21,.5);
  }

  .orb {
    position: absolute; border-radius: 50%;
    pointer-events: none;
  }
  .orb-1 {
    width: 120px; height: 120px;
    top: 10%; right: 8%;
    background: radial-gradient(circle, rgba(230,164,164,.15), transparent);
    animation: float 7s ease-in-out infinite;
  }
  .orb-2 {
    width: 70px; height: 70px;
    bottom: 15%; left: 6%;
    background: radial-gradient(circle, rgba(92,15,28,.1), transparent);
    animation: float 5s 2s ease-in-out infinite;
  }

  /* ── SOCIAL PROOF BAR ── */
  .social-proof {
    background: var(--burgundy);
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: center;
    gap: 5rem;
    border-top: 1px solid rgba(230,164,164,.2);
    border-bottom: 1px solid rgba(230,164,164,.2);
  }

  .proof-item {
    text-align: center;
  }

  .proof-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    background: linear-gradient(135deg, var(--rose-gold-lt), var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }

  .proof-label {
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(245,230,216,.5);
    margin-top: .5rem;
  }

  /* ── MARQUEE STRIP ── */
  .marquee-strip {
    background: var(--burgundy-deep);
    padding: 1rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(230,164,164,.2);
  }

  .marquee-track {
    display: flex; gap: 3rem;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--rose-gold-lt); flex-shrink: 0;
    display: flex; align-items: center; gap: 1.5rem;
  }

  .marquee-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--rose-gold); display: inline-block;
  }

  /* ── FEATURED COURSES ── */
  .courses {
    padding: 9rem 6rem;
    background: var(--white);
  }

  .section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 5rem;
  }

  .section-label {
    font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--rose-gold); margin-bottom: .8rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 300; line-height: 1.15;
    color: var(--burgundy-deep);
  }

  .section-title em { font-style: italic; }

  .section-link {
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--rose-gold); text-decoration: none;
    border-bottom: 1px solid var(--rose-gold);
    padding-bottom: 2px; white-space: nowrap;
    transition: color .3s, border-color .3s;
  }
  .section-link:hover { color: var(--burgundy); border-color: var(--burgundy); }

  .courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .course-card {
    background: var(--off-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
    position: relative;
  }

  .course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(92,15,28,.12);
  }

  .course-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }

  .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
  }

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

  .course-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .4rem .8rem;
    border-radius: 3px;
    z-index: 2;
  }

  .badge-bestseller {
    background: var(--accent-gold);
    color: var(--burgundy-deep);
  }

  .badge-new {
    background: var(--success);
    color: white;
  }

  .badge-sale {
    background: var(--burgundy);
    color: white;
  }

  .course-content {
    padding: 1.8rem;
  }

  .resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .resource-item {
    background: var(--white);
    border: 1px solid rgba(230,164,164,.25);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow .3s ease;
  }
  .resource-item:hover { box-shadow: 0 8px 30px rgba(74,18,25,.08); }
  .resource-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--burgundy);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    transition: background .3s ease;
  }
  .resource-title {
    flex: 1;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: .02em;
  }
  .resource-header:hover { background: var(--off-white); }
  .resource-icon {
    font-size: 1.6rem;
    color: var(--rose-gold);
    transition: transform .3s ease;
    font-weight: 300;
  }
  .resource-item.open .resource-icon { transform: rotate(45deg); }
  .resource-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }
  .resource-item.open .resource-body { max-height: 400px; }
  .resource-downloads {
    list-style: none;
    padding: 0 2rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
  }
  .resource-downloads a {
    display: inline-block;
    padding: .6rem 0;
    color: var(--burgundy);
    text-decoration: none;
    font-size: .95rem;
    border-bottom: 1px solid rgba(230,164,164,.15);
    transition: color .3s ease, padding .3s ease;
  }
  .resource-downloads a::before {
    content: '↓  ';
    color: var(--rose-gold);
  }
  .resource-downloads a:hover {
    color: var(--rose-gold);
    padding-left: .4rem;
  }
  @media (max-width: 768px) {
    .resource-header { font-size: 1.15rem; padding: 1.2rem 1.4rem; }
    .resource-downloads { padding: 0 1.4rem 1.2rem; }
  }

  .course-category {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: .6rem;
  }

  .course-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--burgundy);
    margin-bottom: .8rem;
    line-height: 1.3;
  }

  .course-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .7rem;
    color: rgba(44,16,21,.5);
    margin-bottom: 1.2rem;
  }

  .course-meta span {
    display: flex;
    align-items: center;
    gap: .3rem;
  }

  .course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid var(--cream);
  }

  .course-price {
    display: flex;
    align-items: baseline;
    gap: .5rem;
  }

  .price-current {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--burgundy);
  }

  .price-original {
    font-size: .75rem;
    color: rgba(44,16,21,.4);
    text-decoration: line-through;
  }

  .course-btn {
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold);
    cursor: pointer;
    transition: all .3s ease;
  }

  .course-btn:hover {
    background: var(--rose-gold);
    color: white;
  }

  /* ── SERVICES / WHAT YOU'LL LEARN ── */
  .services {
    padding: 9rem 6rem;
    background: var(--off-white);
  }

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

  .service-card {
    background: var(--white);
    padding: 3.2rem 2.8rem;
    position: relative; overflow: hidden;
    transition: background .4s;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--rose-gold));
    transform: scaleX(0);
    transition: transform .4s ease;
    transform-origin: left;
  }

  .service-card:hover { background: var(--cream); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 300;
    color: rgba(230,164,164,.2); line-height: 1;
    margin-bottom: 1.5rem;
  }

  .service-icon {
    width: 42px; height: 42px; margin-bottom: 1.5rem;
    color: var(--rose-gold);
  }

  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem; font-weight: 400;
    color: var(--burgundy); margin-bottom: .9rem;
  }

  .service-desc {
    font-size: .8rem; line-height: 1.9; letter-spacing: .04em;
    color: rgba(44,16,21,.55);
  }

  /* ── PRICING ── */
  .pricing {
    padding: 9rem 6rem;
    background: var(--burgundy-deep);
    position: relative;
    overflow: hidden;
  }

  .pricing::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,164,164,.08), transparent 60%);
  }

  .pricing .section-title { color: var(--white); }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }

  .pricing-card {
    background: linear-gradient(180deg, rgba(230,164,164,.15), rgba(230,164,164,.05));
    border: 1px solid var(--rose-gold);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: transform .5s ease, border-color .4s ease, background .4s ease, opacity .5s ease;
    position: relative;
  }

  .pricing-grid:hover .pricing-card {
    transform: scale(0.95);
    opacity: .7;
  }

  .pricing-grid:hover .pricing-card:hover {
    transform: scale(1.08);
    opacity: 1;
  }

  .pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--burgundy-deep);
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 20px;
  }

  .pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--rose-gold-lt);
    margin-bottom: .5rem;
  }

  .pricing-desc {
    font-size: .72rem;
    color: rgba(245,230,216,.4);
    letter-spacing: .1em;
    margin-bottom: 2rem;
  }

  .pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: .5rem;
  }

  .pricing-amount span {
    font-size: 1.2rem;
    color: rgba(245,230,216,.5);
  }

  .pricing-period {
    font-size: .68rem;
    color: rgba(245,230,216,.4);
    letter-spacing: .15em;
    margin-top: .8rem;
    margin-bottom: 2rem;
  }

  .pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
  }

  .pricing-features li {
    font-size: .78rem;
    color: rgba(245,230,216,.6);
    padding: .7rem 0;
    border-bottom: 1px solid rgba(230,164,164,.1);
    display: flex;
    align-items: center;
    gap: .8rem;
  }

  .pricing-features li::before {
    content: '✓';
    color: var(--rose-gold);
    font-weight: bold;
  }

  .pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: 1px solid var(--rose-gold);
    background: transparent;
    color: var(--rose-gold);
    cursor: pointer;
    transition: all .3s ease;
  }

  .pricing-btn:hover {
    background: var(--rose-gold);
    color: var(--white);
  }

  .pricing-btn {
    background: var(--rose-gold);
    color: var(--white);
  }

  .pricing-btn:hover {
    background: var(--rose-gold-lt);
  }

  /* ── INSTRUCTOR SECTION ── */
  .about {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 70vh;
  }

  .about-visual {
    position: relative;
    overflow: hidden;
  }

  .about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92,15,28,.3), rgba(92,15,28,.2));
  }

  .about-stats {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    display: flex;
    gap: 2rem;
  }

  .about-stat {
    background: rgba(255,255,255,.95);
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
  }

  .about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1;
  }

  .about-stat-label {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(44,16,21,.5);
    margin-top: .3rem;
  }

  .about-content {
    background: var(--rose-gold-pale);
    padding: 6rem 5.5rem;
    display: flex; flex-direction: column; justify-content: center;
  }

  .about-content .section-label { margin-bottom: .8rem; }

  .about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5vw, 5.5rem);
    font-weight: 300; color: var(--burgundy-deep);
    line-height: 1.1; margin-bottom: 2.4rem;
    letter-spacing: -.01em;
  }

  .about-body {
    font-size: .95rem; line-height: 2; letter-spacing: .03em;
    color: rgba(92,15,28,.72); max-width: 480px;
    margin-bottom: 1.6rem;
  }

  .features-list {
    list-style: none; display: flex; flex-direction: column; gap: 1rem;
    margin-bottom: 2.8rem;
  }

  .features-list li {
    display: flex; align-items: center; gap: 1rem;
    font-size: .78rem; letter-spacing: .08em;
    color: var(--burgundy-mid);
  }

  .features-list li::before {
    content: '';
    width: 22px; height: 1px;
    background: var(--rose-gold); flex-shrink: 0;
  }

  /* ── HERO (short variant for interior pages) ── */
  .hero.hero-short {
    min-height: 70vh;
    padding: 140px 8vw 5rem;
  }

  /* ── PRESS / FEATURED IN ── */
  .press {
    padding: clamp(4rem, 10vw, 9rem) clamp(1.2rem, 6vw, 6rem);
    background: var(--cream);
    position: relative;
  }

  .press-header {
    max-width: 720px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
  }

  .press-header .section-label { margin-bottom: 1rem; }

  .press-header .section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 1.4rem;
  }

  .press-intro {
    font-size: .88rem;
    line-height: 1.9;
    letter-spacing: .03em;
    color: rgba(92,15,28,.65);
    max-width: 560px;
    margin: 0 auto;
  }

  .press-list {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .press-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    background: var(--white);
    border-radius: 10px;
    padding: clamp(1.5rem, 3.5vw, 3rem);
    box-shadow: 0 20px 60px -25px rgba(92,15,28,.25);
    border: 1px solid rgba(230,164,164,.2);
    transition: transform .5s ease, box-shadow .5s ease;
  }

  .press-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px -25px rgba(92,15,28,.35);
  }

  .press-feature-media {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .press-feature-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: var(--rose-gold-pale);
    box-shadow: 0 18px 50px -20px rgba(92,15,28,.35);
  }

  .press-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
  }

  .press-feature:hover .press-feature-image img {
    transform: scale(1.03);
  }

  .press-feature-rank {
    position: absolute;
    top: -18px;
    left: -18px;
    z-index: 2;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy-deep), #3A0A14);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px -10px rgba(92,15,28,.5);
    border: 1px solid rgba(230,164,164,.35);
  }

  .press-feature-rank .rank-label {
    font-size: .55rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rose-gold-lt);
    margin-bottom: .15rem;
  }

  .press-feature-rank .rank-number {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
  }

  .press-feature-body { min-width: 0; }

  .press-feature-eyebrow {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
  }

  .press-feature-source { color: var(--burgundy); }

  .press-feature-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose-gold);
  }

  .press-feature-year { color: rgba(92,15,28,.55); }

  .press-feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--burgundy-deep);
    margin-bottom: 1.4rem;
  }

  .press-feature-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-lt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .press-feature-divider {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--rose-gold);
    margin-bottom: 1.5rem;
  }

  .press-feature-text {
    font-size: .88rem;
    line-height: 1.95;
    letter-spacing: .03em;
    color: rgba(44,16,21,.72);
    margin-bottom: 2rem;
  }

  .press-feature-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(230,164,164,.3);
  }

  .press-feature-meta-item dt {
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: .4rem;
  }

  .press-feature-meta-item dd {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--burgundy-deep);
    line-height: 1.3;
  }

  @media (max-width: 860px) {
    .press-feature {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 1.5rem;
    }
    .press-feature-media { max-width: 340px; }
    .press-feature-rank {
      width: 76px;
      height: 76px;
      top: -14px;
      left: -14px;
    }
    .press-feature-rank .rank-number { font-size: 1.7rem; }
  }

  @media (max-width: 480px) {
    .press-feature-meta {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .press-feature-rank {
      width: 64px;
      height: 64px;
      top: -10px;
      left: -10px;
    }
    .press-feature-rank .rank-number { font-size: 1.4rem; }
    .press-feature-rank .rank-label { font-size: .48rem; letter-spacing: .25em; }
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    padding: 9rem 6rem;
    background: var(--white);
    position: relative; overflow: hidden;
  }

  .testimonials::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(230,164,164,.07), transparent 65%);
    pointer-events: none;
  }

  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    margin-top: 4rem;
  }

  .review-card {
    background: var(--off-white);
    border: 1px solid var(--cream);
    border-radius: 8px;
    padding: 2.5rem;
    transition: transform .35s, box-shadow .35s;
  }

  .reviews-grid--video {
    display: flex;
    justify-content: flex-start;
    margin-top: 4rem;
  }

  .review-card--video {
    padding: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    width: 260px;
    height: 200px;
    flex-shrink: 0;
  }

  .review-card--video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(92,15,28,.08);
  }

  .stars {
    display: flex; gap: .25rem; margin-bottom: 1.4rem;
  }

  .star {
    width: 14px; height: 14px;
    background: var(--accent-gold);
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  }

  .review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; line-height: 1.75; font-style: italic;
    color: var(--burgundy-mid); margin-bottom: 1.8rem;
  }

  .reviewer {
    display: flex; align-items: center; gap: 1rem;
  }

  .reviewer-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--rose-gold);
  }

  .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .reviewer-name {
    font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--burgundy);
  }

  .reviewer-role {
    font-size: .68rem; letter-spacing: .1em;
    color: rgba(44,16,21,.45); margin-top: .2rem;
  }

  /* ── BOOKING CTA ── */
  .booking {
    padding: 10rem 6rem;
    background: var(--off-white);
    text-align: center; position: relative; overflow: hidden;
  }

  .booking::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 700px; height: 700px; border-radius: 50%;
    border: 1px solid rgba(230,164,164,.1);
    pointer-events: none;
  }

  .booking::after {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 450px; height: 450px; border-radius: 50%;
    border: 1px solid rgba(230,164,164,.15);
    pointer-events: none;
  }

  .booking-inner { position: relative; z-index: 2; }

  .booking-tag {
    display: inline-block;
    font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--rose-gold); border-bottom: 1px solid var(--rose-gold);
    padding-bottom: .3rem; margin-bottom: 1.8rem;
  }

  .booking-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300; line-height: 1.08;
    color: var(--burgundy-deep); max-width: 700px;
    margin: 0 auto 2rem;
  }

  .booking-title em { font-style: italic; color: var(--rose-gold); }

  .booking-sub {
    font-size: .85rem; line-height: 1.9; letter-spacing: .06em;
    color: rgba(92,15,28,.55); max-width: 500px;
    margin: 0 auto 3.5rem;
  }

  .btn-large {
    display: inline-block;
    padding: 1.1rem 3.8rem;
    background: var(--burgundy);
    color: var(--white); font-size: .75rem;
    letter-spacing: .25em; text-transform: uppercase;
    text-decoration: none; cursor: pointer; border: none;
    transition: background .3s, transform .25s, box-shadow .25s;
    box-shadow: 0 8px 32px rgba(92,15,28,.2);
    position: relative;
    overflow: hidden;
  }

  .btn-large::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transition: left .5s ease;
  }

  .btn-large:hover::before { left: 100%; }

  .btn-large:hover {
    background: var(--burgundy-mid);
    transform: translateY(-3px);
    box-shadow: 0 14px 42px rgba(92,15,28,.3);
  }

  .guarantee {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    font-size: .72rem;
    color: rgba(92,15,28,.5);
    letter-spacing: .1em;
  }

  .guarantee-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: .6rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--burgundy-deep);
    padding: 2.5rem 4rem 1.2rem;
    border-top: 1px solid rgba(230,164,164,.15);
    display: grid;
    grid-template-columns: 1.4fr 2.6fr;
    column-gap: 4rem;
    row-gap: 1.5rem;
    align-items: center;
  }

  .footer-hero {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .footer-logo { display: inline-flex; flex-shrink: 0; }
  .footer-logo img {
    height: 56px; width: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(230,164,164,.4);
    transition: transform .3s ease, border-color .3s ease;
  }
  .footer-logo:hover img {
    transform: scale(1.05);
    border-color: var(--rose-gold);
  }
  .footer-tagline {
    font-size: .78rem;
    line-height: 1.55;
    color: rgba(245,230,216,.55);
    margin: 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-nav { display: flex; flex-direction: column; gap: .45rem; }
  .footer-col-title {
    font-size: .62rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin: 0 0 .35rem;
  }
  .footer-nav a {
    font-size: .76rem;
    letter-spacing: .03em;
    color: rgba(245,230,216,.55);
    text-decoration: none;
    transition: color .3s ease, transform .3s ease;
    width: fit-content;
  }
  .footer-nav a:hover {
    color: var(--rose-gold-lt);
    transform: translateX(3px);
  }

  .footer-bottom {
    grid-column: 1 / -1;
    padding-top: 1rem;
    border-top: 1px solid rgba(230,164,164,.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy {
    font-size: .66rem;
    letter-spacing: .08em;
    color: rgba(245,230,216,.35);
    margin: 0;
  }
  .footer-admin {
    color: rgba(245,230,216,.25);
    text-decoration: none;
    font-size: .7rem;
    transition: color .3s ease;
  }
  .footer-admin:hover { color: rgba(245,230,216,.6); }

  /* ── DIVIDER ORNAMENT ── */
  .ornament {
    display: flex; align-items: center; gap: 1rem;
    margin: 3rem auto 0; justify-content: center;
  }
  .ornament-line { width: 80px; height: 1px; background: var(--rose-gold); opacity: .4; }
  .ornament-diamond {
    width: 8px; height: 8px;
    background: var(--rose-gold);
    transform: rotate(45deg); opacity: .6;
  }

  /* ── CONTACT MODAL ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 16, 21, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
  }

  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .modal-content {
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 480px;
    padding: 3rem;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform .4s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
  }

  .modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
  }

  .modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--off-white);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--burgundy);
    cursor: pointer;
    transition: background .3s, transform .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .modal-close:hover {
    background: var(--cream);
    transform: rotate(90deg);
  }

  /* ── SOLD OUT MODAL ── */
  .soldout-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 440px;
    padding: 3.5rem 2.5rem 2.8rem;
    text-align: center;
    transform: translateY(30px) scale(.95);
    transition: transform .4s ease;
    box-shadow: 0 32px 80px rgba(0,0,0,.3);
    overflow: hidden;
  }
  .soldout-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--rose-gold), var(--burgundy));
  }
  .modal-overlay.active .soldout-card {
    transform: translateY(0) scale(1);
  }
  .soldout-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230,164,164,.15), rgba(92,15,28,.08));
    border: 1px solid rgba(230,164,164,.25);
    animation: iconPulse 2s ease-in-out infinite;
  }
  .soldout-icon::before {
    content: '';
    display: block;
    width: 22px; height: 22px;
    border: 2.5px solid var(--burgundy);
    border-radius: 3px;
    position: relative;
    top: 3px;
  }
  .soldout-icon::after {
    content: '';
    position: absolute;
    width: 14px; height: 12px;
    border: 2.5px solid var(--burgundy);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    top: calc(50% - 14px);
  }
  @keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.12); }
  }
  .soldout-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 400;
    color: var(--burgundy);
    margin-bottom: 1rem;
    letter-spacing: .02em;
  }
  .soldout-body {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(44,16,21,.6);
    max-width: 340px;
    margin: 0 auto 2rem;
  }
  .waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    margin-bottom: 1.6rem;
  }
  .waitlist-form .form-group label {
    display: block;
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: .4rem;
    font-weight: 400;
  }
  .waitlist-form .form-group input,
  .waitlist-form .form-group select {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid rgba(92,15,28,.15);
    border-radius: 6px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: .85rem;
    color: var(--burgundy);
    background: var(--off-white);
    transition: border-color .3s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
  }
  .waitlist-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C0F1C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }
  .waitlist-form .form-group input:focus,
  .waitlist-form .form-group select:focus {
    outline: none;
    border-color: var(--rose-gold);
  }
  .phone-row {
    display: flex;
    gap: .5rem;
    align-items: stretch;
  }
  .phone-row input[type="tel"] {
    flex: 1;
  }

  /* ── INTERNATIONAL PICKER ── */
  .intl-picker {
    position: relative;
    flex: 0 0 auto;
  }
  .intl-picker-full { width: 100%; }

  .intl-trigger {
    display: flex; align-items: center; gap: .45rem;
    width: 100%; height: 100%;
    padding: .75rem .85rem;
    border: 1px solid rgba(92,15,28,.15);
    border-radius: 6px;
    background: var(--off-white);
    font-family: 'Josefin Sans', sans-serif;
    font-size: .85rem;
    color: var(--burgundy);
    cursor: pointer;
    transition: border-color .3s;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .intl-trigger:focus { outline: none; border-color: var(--rose-gold); }

  .intl-flag { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
  .intl-code { font-size: .82rem; font-weight: 400; letter-spacing: .03em; }
  .intl-label { flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; }
  .intl-caret {
    flex-shrink: 0;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(92,15,28,.45);
    margin-left: auto;
    transition: transform .25s;
  }
  .intl-picker.open .intl-caret { transform: rotate(180deg); }

  .intl-dropdown {
    position: absolute;
    left: 0; top: calc(100% + 4px);
    width: max-content; min-width: 100%;
    max-width: 320px;
    background: var(--white);
    border: 1px solid rgba(92,15,28,.12);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(44,16,21,.18);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(.97);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .intl-picker.open .intl-dropdown {
    opacity: 1; visibility: visible;
    transform: translateY(0) scale(1);
  }

  .intl-search-wrap {
    padding: .5rem .6rem;
    border-bottom: 1px solid rgba(92,15,28,.08);
  }
  .intl-search {
    width: 100%;
    padding: .55rem .75rem;
    border: 1px solid rgba(92,15,28,.12);
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: .8rem;
    color: var(--burgundy);
    background: var(--off-white);
    box-sizing: border-box;
  }
  .intl-search:focus { outline: none; border-color: var(--rose-gold); }

  .intl-list {
    list-style: none; margin: 0; padding: .3rem 0;
    max-height: 200px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .intl-list::-webkit-scrollbar { width: 5px; }
  .intl-list::-webkit-scrollbar-track { background: transparent; }
  .intl-list::-webkit-scrollbar-thumb { background: rgba(92,15,28,.15); border-radius: 4px; }

  .intl-option {
    display: flex; align-items: center; gap: .6rem;
    padding: .5rem .85rem;
    cursor: pointer;
    font-size: .8rem;
    color: var(--burgundy);
    transition: background .15s;
  }
  .intl-option:hover, .intl-option.active {
    background: rgba(230,164,164,.15);
  }
  .intl-option-flag { font-size: 1.2rem; flex-shrink: 0; }
  .intl-option-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .intl-option-code { font-size: .75rem; color: rgba(92,15,28,.45); flex-shrink: 0; }
  .intl-no-results {
    padding: .8rem; text-align: center;
    font-size: .78rem; color: rgba(92,15,28,.4);
  }
  .waitlist-form .form-submit {
    margin-top: .4rem;
  }
  .waitlist-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    padding: 1.5rem 0;
  }
  .waitlist-success.is-active { display: flex; }
  .waitlist-success .success-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-gold), #C98080);
    color: var(--white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .waitlist-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--burgundy);
  }
  .waitlist-success p {
    font-size: .82rem;
    color: rgba(44,16,21,.5);
  }
  .soldout-hint {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(44,16,21,.35);
  }

  @media (prefers-reduced-motion: reduce) {
    .soldout-icon { animation: none; }
  }

  .modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--burgundy);
    margin-bottom: .8rem;
  }

  .modal-subtitle {
    font-size: .82rem;
    color: rgba(44,16,21,.5);
    letter-spacing: .03em;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: .6rem;
  }

  .form-group label {
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--burgundy);
    font-weight: 400;
    margin-left: .2rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 1rem 1.2rem;
    border: 1px solid var(--cream);
    border-radius: 6px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: .85rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color .3s, box-shadow .3s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
  }

  .form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C0F1C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    padding-right: 2.6rem;
    cursor: pointer;
  }

  .form-group select:invalid,
  .form-group select option[value=""] {
    color: rgba(44,16,21,.35);
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px rgba(230,164,164,.15);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(44,16,21,.35);
    font-weight: 300;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-submit {
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--rose-gold), #C98080);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 6px 25px rgba(230,164,164,.35);
    margin-top: 1rem;
    width: 100%;
  }

  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(230,164,164,.45);
  }

  .form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
  }
  .form-success.is-active { display: flex; }

  .success-icon {
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    animation: scaleIn .5s ease;
  }

  .form-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--burgundy);
    margin-bottom: .5rem;
  }

  .form-success p {
    font-size: .85rem;
    color: rgba(44,16,21,.6);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeDown {
    from { opacity:0; transform: translateY(-20px); }
    to   { opacity:1; transform: translateY(0); }
  }
  @keyframes fadeUp {
    from { opacity:0; transform: translateY(28px); }
    to   { opacity:1; transform: translateY(0); }
  }
  @keyframes scaleIn {
    from { opacity:0; transform: scale(.92); }
    to   { opacity:1; transform: scale(1); }
  }
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-18px); }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }

  /* ── RESPONSIVE ── */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
  }

  .hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--burgundy);
    transition: transform .3s ease, opacity .3s ease;
    display: block;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── MOBILE MENU PANEL ── */
  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(44, 16, 21, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 998;
  }
  .mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85vw, 360px);
    height: 100dvh;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(44, 16, 21, 0.15);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.75rem 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
  }
  .mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(230, 164, 164, 0.2);
    margin-bottom: 1.5rem;
  }
  .mobile-menu-logo img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--rose-gold);
  }
  .mobile-menu-close {
    background: none;
    border: none;
    color: var(--burgundy);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 .25rem;
    transition: color .25s ease, transform .25s ease;
  }
  .mobile-menu-close:hover {
    color: var(--rose-gold);
    transform: rotate(90deg);
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    flex: 1;
  }
  .mobile-menu-nav a {
    font-size: .95rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--burgundy);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(230, 164, 164, 0.12);
    transition: color .25s ease, padding-left .25s ease;
  }
  .mobile-menu-nav a:hover,
  .mobile-menu-nav a:focus-visible {
    color: var(--rose-gold);
    padding-left: .5rem;
  }

  .mobile-menu-cta {
    display: block;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--rose-gold), #C98080);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-size: .75rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    box-shadow: 0 6px 22px rgba(230, 164, 164, 0.3);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 164, 164, 0.45);
  }

  body.menu-open {
    overflow: hidden;
  }

  @media (prefers-reduced-motion: reduce) {
    .mobile-menu,
    .mobile-menu-backdrop,
    .mobile-menu-close,
    .mobile-menu-nav a,
    .mobile-menu-cta {
      transition: none;
    }
  }

  @media (max-width: 1024px) {
    nav { padding: 1rem 2.5rem; }
    .social-proof { flex-wrap: wrap; gap: 2rem; padding: 2rem; }
    .courses { padding: 6rem 3rem; }
    .courses-grid { grid-template-columns: 1fr 1fr; }
    .services { padding: 6rem 3rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .pricing { padding: 6rem 3rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-grid:hover .pricing-card { transform: scale(0.95); }
    .pricing-grid:hover .pricing-card:hover { transform: scale(1.05); }
    .about { grid-template-columns: 1fr; }
    .about-visual { min-height: 50vh; }
    .about-content { padding: 4rem 3rem; }
    .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
    .testimonials { padding: 6rem 3rem; }
    .booking { padding: 7rem 3rem; }
    footer { padding: 2rem 2.5rem 1rem; grid-template-columns: 1fr; row-gap: 1.5rem; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  }

  @media (max-width: 768px) {
    nav {
      padding: 0.8rem 1.5rem;
      grid-template-columns: 1fr auto 1fr;
    }

    .nav-side { display: none; }

    .hamburger {
      display: flex;
      justify-self: end;
    }


    .nav-logo img {
      height: 50px;
      width: 50px;
    }

    .hero-title {
      font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-badge {
      padding: .4rem .8rem;
    }

    .badge-text {
      font-size: .55rem;
      letter-spacing: .12em;
    }

    .hero-eyebrow {
      font-size: .6rem;
      letter-spacing: .25em;
    }

    .hero-sub {
      font-size: .78rem;
      max-width: 100%;
    }

    .hero-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .btn-primary {
      width: 100%;
      text-align: center;
      padding: 1rem 2rem;
    }
  }

  @media (max-width: 640px) {
    .hero-title { font-size: clamp(1.9rem, 7vw, 2.5rem); }
    .hero-sub { font-size: .75rem; }
    
    .social-proof { 
      gap: 1rem; 
      padding: 1.5rem 1rem;
    }
    .proof-item { flex: 1 1 45%; text-align: center; }
    .proof-num { font-size: 1.8rem; }
    .proof-label { font-size: .55rem; letter-spacing: .15em; }
    
    .marquee-item { font-size: .6rem; }
    
    .courses { padding: 3.5rem 1.2rem; }
    .courses-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .course-image { height: 180px; }
    .course-content { padding: 1.3rem; }
    .course-title { font-size: 1.15rem; }
    .course-meta { font-size: .65rem; }
    
    .services { padding: 3.5rem 1.2rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1px; }
    .service-card { padding: 2rem 1.5rem; }
    .service-number { font-size: 2.5rem; margin-bottom: 1rem; }
    .service-name { font-size: 1.2rem; }
    .service-desc { font-size: .75rem; }
    
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2.5rem; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .section-label { font-size: .6rem; }
    
    .pricing { padding: 3.5rem 1.2rem; }
    .pricing-grid { gap: 1.5rem; margin-top: 2.5rem; }
    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-amount { font-size: 2.8rem; }
    .pricing-name { font-size: 1.4rem; }
    .pricing-features li { font-size: .72rem; padding: .6rem 0; }
    
    .about-visual { min-height: 40vh; }
    .about-stats { 
      flex-direction: row; 
      flex-wrap: wrap;
      gap: .6rem; 
      bottom: 1rem; 
      left: 1rem; 
      right: 1rem; 
    }
    .about-stat { 
      flex: 1 1 30%;
      padding: .7rem .5rem; 
    }
    .about-stat-num { font-size: 1.3rem; }
    .about-stat-label { font-size: .5rem; }
    .about-content { padding: 2.5rem 1.2rem; }
    .about-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .about-body { font-size: .78rem; }
    .features-list li { font-size: .72rem; }
    
    .testimonials { padding: 3.5rem 1.2rem; }
    .reviews-grid { gap: 1rem; margin-top: 2.5rem; }
    .review-card { padding: 1.5rem; }
    .review-text { font-size: .95rem; }
    .reviewer-name { font-size: .72rem; }
    .reviewer-role { font-size: .62rem; }
    .reviewer-avatar { width: 40px; height: 40px; }
    
    .booking { padding: 3.5rem 1.2rem; }
    .booking-title { font-size: clamp(1.8rem, 7vw, 3rem); }
    .booking-sub { font-size: .75rem; max-width: 100%; }
    .btn-large { padding: .9rem 2rem; font-size: .68rem; width: 100%; }
    .guarantee { font-size: .6rem; flex-wrap: wrap; justify-content: center; text-align: center; gap: .5rem; }
    
    footer { padding: 2.5rem 1.2rem 1.5rem; }
    footer { padding: 1.8rem 1.2rem 1rem; grid-template-columns: 1fr; gap: 1.2rem; }
    .footer-hero { flex-direction: column; text-align: center; gap: .7rem; }
    .footer-logo img { height: 50px; width: 50px; }
    .footer-tagline { font-size: .75rem; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .footer-col-title { font-size: .58rem; }
    .footer-nav a { font-size: .7rem; }
    .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; padding-top: 1rem; }
    .footer-copy { font-size: .6rem; }
    
    /* Modal responsive */
    .modal-content {
      padding: 2rem 1.2rem;
      margin: 1rem;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: 10px;
    }
    .modal-title { font-size: 1.6rem; }
    .modal-subtitle { font-size: .75rem; }
    .modal-header { margin-bottom: 1.5rem; }
    .form-group label { font-size: .62rem; }
    .form-group input,
    .form-group textarea,
    .form-group select { padding: .85rem 1rem; font-size: .78rem; }
    .form-group select { padding-right: 2.4rem; }
    .form-submit { padding: .9rem 1.5rem; font-size: .7rem; }
    .modal-close { width: 32px; height: 32px; font-size: 1.3rem; top: 1rem; right: 1rem; }
  }

  @media (max-width: 380px) {
    .nav-logo img {
      height: 42px;
      width: 42px;
    }
    .hamburger {
      width: 28px;
      height: 28px;
    }
    .hero-title { font-size: 1.7rem; }
    .btn-primary { padding: .85rem 1.5rem; font-size: .65rem; }
    .btn-ghost { font-size: .65rem; }
    .proof-item { flex: 1 1 45%; }
    .proof-num { font-size: 1.5rem; }
    .showcase-main img { height: 180px; }
  }

  /* ── SUBSCRIBE POPUP ── */
  .subscribe-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(20,4,8, .75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
  }

  .subscribe-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .subscribe-modal {
    background: linear-gradient(160deg, #3a1520 0%, #2a0e14 50%, #1e080c 100%);
    border: 1px solid rgba(230,164,164,.3);
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    padding: 3rem 2.5rem;
    position: relative;
    transform: translateY(30px) scale(.95);
    transition: transform .5s cubic-bezier(.16,1,.3,1);
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 80px rgba(230,164,164,.08);
  }

  .subscribe-overlay.active .subscribe-modal {
    transform: translateY(0) scale(1);
  }

  .subscribe-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: rgba(245,230,216,.4);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color .3s;
    line-height: 1;
  }

  .subscribe-close:hover {
    color: var(--rose-gold);
  }

  .subscribe-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
  }

  @keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .subscribe-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--rose-gold-lt);
    margin-bottom: .8rem;
  }

  .subscribe-desc {
    font-size: .78rem;
    color: rgba(245,230,216,.5);
    line-height: 1.7;
    letter-spacing: .03em;
    margin-bottom: 2rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .subscribe-field {
    text-align: left;
  }

  .subscribe-field label {
    display: block;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(245,230,216,.5);
    margin-bottom: .4rem;
  }

  .subscribe-field input {
    width: 100%;
    padding: .9rem 1rem;
    font-size: .82rem;
    font-family: 'Josefin Sans', sans-serif;
    color: var(--rose-gold-pale);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(230,164,164,.2);
    border-radius: 6px;
    outline: none;
    transition: border-color .3s, background .3s;
    box-sizing: border-box;
  }

  .subscribe-field input:focus {
    border-color: var(--rose-gold);
    background: rgba(255,255,255,.08);
  }

  .subscribe-field input::placeholder {
    color: rgba(245,230,216,.25);
  }

  .subscribe-btn {
    margin-top: .5rem;
    padding: 1rem 2rem;
    font-size: .72rem;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    background: var(--rose-gold);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background .3s, transform .2s;
  }

  .subscribe-btn:hover {
    background: var(--rose-gold-lt);
    transform: translateY(-2px);
  }

  .subscribe-privacy {
    font-size: .62rem;
    color: rgba(245,230,216,.3);
    letter-spacing: .05em;
    margin-top: .3rem;
  }

  .subscribe-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    padding: 1rem 0;
  }

  .subscribe-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rose-gold);
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn .5s cubic-bezier(.16,1,.3,1);
  }

  @keyframes popIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
  }

  .subscribe-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--rose-gold-lt);
    font-weight: 400;
  }

  .subscribe-success p {
    font-size: .78rem;
    color: rgba(245,230,216,.5);
  }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--burgundy);
    color: rgba(253,250,247,.45);
    text-align: center;
    padding: 2.2rem 1.5rem;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
  }

  /* ── CAREER PAGE ── */
  .career-section {
    width: 100%;
    background: var(--white);
    padding: 6rem 1.5rem 7rem;
    box-sizing: border-box;
  }

  .career-inner {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
  }

  .career-heading {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .career-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin: 0 0 1rem 0;
  }

  .career-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--burgundy);
    margin: 0;
  }

  .career-h2 em {
    font-style: italic;
    color: var(--rose-gold);
  }

  .career-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 4.5rem 2rem;
    border: 1px dashed rgba(230, 164, 164, 0.45);
    border-radius: 10px;
    background: var(--off-white);
    box-sizing: border-box;
  }

  .career-empty-icon {
    color: var(--rose-gold);
    opacity: 0.75;
    line-height: 0;
  }

  .career-empty-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 400;
    color: var(--burgundy);
    margin: 0;
    line-height: 1.25;
  }

  .career-empty-body {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(44, 16, 21, 0.6);
    max-width: 460px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    margin: 0;
  }

  .career-notify-btn {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.95rem 2.2rem;
    background: linear-gradient(135deg, var(--rose-gold), #C98080);
    color: var(--white);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .career-notify-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .career-section { padding: 4.5rem 1.2rem 5rem; }
    .career-heading { margin-bottom: 2.5rem; }
    .career-empty { padding: 3rem 1.4rem; gap: 1.2rem; }
    .career-empty-body { font-size: 0.85rem; }
    .career-notify-btn { padding: 0.85rem 1.8rem; font-size: 0.68rem; }
  }

  @media (max-width: 400px) {
    .career-section { padding: 3.5rem 1rem 4rem; }
    .career-empty { padding: 2.5rem 1rem; }
  }
