:root{
  /* Colors */
  --lavender:#EABBFF;
  --lavender-deep:#4a3b6b;
  --pink-hero-top:#f3c7d2;
  --pink-hero-mid:#f6d3dc;
  --purple-soft:#a98cc0;
  --purple-deep:#7b4fa0;
  --purple-heading:#8a5fb8;
  --maroon:#7c1f22;
  --maroon-deep:#6b1518;
  --ink:#2c2530;
  --ink-soft:#5a5164;
  --white:#fff;
  --card-radius:18px;

  /* Fonts */
  --logo-font:'Emilys Candy',cursive;
  --heading-font:'Aclonica',sans-serif;
  --serif-font:'Instrument Serif',serif;
  --paytone-font:'Paytone One',sans-serif;
}

  *{ box-sizing: border-box; margin:0; padding:0; }

  html{ scroll-behavior: smooth; }

  body{
    font-family: 'Jost', sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  img{ max-width: 100%; display:block; }

  .section-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ---------- HEADER ---------- */
  header.site-header{
    width: 100%;
    background: var(--lavender);
    text-align: center;
    position: relative;
    z-index: 10;
  }
  .logo{
    display: inline-block;
  }

  .logo img{
      width: 180px;
      height: auto;
      display: block;
      transition: transform .35s ease;
  }

  .logo:hover img{
      transform: scale(1.05);
  }

  /* ---------- HERO ---------- */
  .hero{
    width: 100%;
    background: linear-gradient(180deg, #f0b8c6 0%, #f8b9c9 45%, #fdeaf1 97%, #ffffff 100%);
    padding: 30px 0 90px;
    text-align: center;
  }
  .hero h1{
    font-family: var(--heading-font);
    font-weight: 400;
    color: #AA67C7;
    font-size: 50px;
    line-height: 68px;
    margin-bottom: 10px;
  }

  .hero h1 .accent{
      display: block;
      font-family: var(--heading-font);
      font-weight: 400;
      color: #8800C3;
      font-size: 60px;
      line-height: 79px;
      margin-top: 8px;
  }

  .card-row{
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    margin: 56px auto 0;
    max-width: 1080px;
    padding: 0 20px;
  }
  .pop-card{
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: 0 18px 40px -12px rgba(123, 79, 160, 0.35);
    width: 300px;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
    border: 1px solid rgba(255,255,255,0.6);
  }
  .pop-card:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 28px 55px -14px rgba(123, 79, 160, 0.5);
  }
  .pop-card-top{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 16px;
    color: #fff;
    background: linear-gradient(180deg, #eabbff, #d17df6);
}

.pop-card-brand{
    grid-column: 2;
    justify-self: center;

    font-family: 'Playfair Display', serif;
    font-size: 15px;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.pop-card-close{
    grid-column: 3;
    justify-self: end;

    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #000;
    font-size: 12px;
    line-height: 20px;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.pop-card-close:hover{
    background: rgba(123,79,160,0.28);
    transform: rotate(90deg);
}
  .pop-card-img{
    width: 100%;
    height: 370px;
    object-fit: cover;
    display:block;
  }

  .tagline{
    font-family: var(--serif-font); 
    font-style: normal;          
    font-weight: 400;
    color: #AA67C7;
    font-size: 50px;
    line-height: 63px;
    text-align: center;
    margin-top: 60px;
    letter-spacing: 0;
}

  .enroll-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:68px;
    padding:0 35px;
    font-family:var(--serif-font);
    font-size:50px;
    font-weight:400;
    line-height:1;
    text-decoration:none;
    color:#8800C3;
    background:#F0CEFF;
    border:4px solid #D79BF8;
    border-radius:18px;
    box-shadow:
        0 6px 0 #DD8FFF,
        0 10px 22px rgba(221,143,255,.45);
    transition:.3s ease;
}

.enroll-btn:hover{
    transform:translateY(-3px);
    box-shadow:
        0 8px 0 #DD8FFF,
        0 14px 28px rgba(221,143,255,.55);
}

.enroll-btn:active{
    transform:translateY(2px);
    box-shadow:
        0 3px 0 #DD8FFF,
        0 6px 12px rgba(221,143,255,.35);
}
  /* ---------- ABOUT ACADEMY ---------- */
.about-academy{
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    padding: 30px 0 100px;
}

.about-academy .section-inner{
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-academy .img-wrap{
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 50px -20px rgba(123,79,160,.45);
    transition: transform .5s ease;
}

.about-academy .img-wrap:hover{
    transform: translateY(-6px);
}

.about-academy .img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eyebrow{
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 6px;
    color: #c9a9d9;
    font-weight: 600;
}

.about-academy h2{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--purple-deep);
    font-size: clamp(32px, 4.4vw, 52px);
    margin: 6px 0 22px;
}

.about-academy p{
    color: #ba62e0;
    line-height: 1.9;
    font-size: 15.5px;
    margin-bottom: 16px;
    text-align: justify;      /* Left & Right Equal */
    text-justify: inter-word;
    max-width: 100%;          /* Remove 560px limit */
}

  /* ---------- KOREAN BEAUTY ---------- */
  .korean-beauty{
    width: 100%;
    padding: 60px 20px;
    background-image: url('../images/korean-bg.jpg');
    background-repeat: repeat;
    background-size: 420px auto;
    display:flex;
    justify-content:center;
  }
  .kb-card{
    max-width: 1000px;
    width: 100%;
    background: rgb(244 199 211);
    border-radius: 22px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.35);
    padding: 46px 56px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 46px;
    align-items: center;
  }
  .kb-card h2{
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--maroon);
    font-size: clamp(28px, 3.4vw, 42px);
    margin-bottom: 16px;
  }
  .kb-card p{
    color: var(--maroon-deep);
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 320px;
  }
  .kb-list{
    background: #fdf9f6;
    border-radius: 10px;
    padding: 22px 26px;
    box-shadow: 0 12px 25px -10px rgba(0,0,0,.25);
  }
  .kb-list ul{
    list-style: none;
  }
  .kb-list li{
    color: var(--maroon);
    font-size: 14.5px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(124,31,34,.18);
  }
  .kb-list li:last-child{ border-bottom:none; }
  .kb-list li::before{
    content: "· ";
    font-weight: 700;
  }

  /* ---------- ABOUT FOUNDER ---------- */
.about-founder{
    padding: 100px 0;
    background: #ffffff;
}

.about-founder .section-inner{
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-founder .img-wrap{
    border-radius: 4px;
    overflow: hidden;
    filter: grayscale(100%);
    box-shadow: 0 25px 55px -20px rgba(0,0,0,.4);
    transition: filter .5s ease, transform .5s ease;
}

.about-founder .img-wrap:hover{
    filter: grayscale(35%);
    transform: translateY(-6px);
}

.about-founder .img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-founder .eyebrow{
    color: #9a9a9a;
    font-size: 15px;
    letter-spacing: 5px;
    font-weight: 500;
}

.about-founder h2{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    color: #1c1c1c;
    font-size: clamp(34px, 4.6vw, 70px);
    margin: 6px 0 20px;
}

.about-founder p{
    color: #565656;
    font-size: 14.5px;
    line-height: 1.9;
    margin-bottom: 16px;
    text-align: justify;
    text-justify: inter-word;
    max-width: 100%;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px){
    .about-founder{
        padding: 70px 20px;
    }

    .about-founder .section-inner{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-founder .img-wrap{
        max-width: 380px;
        margin: 0 auto;
    }

    .about-founder p{
        text-align: left;
    }
}

  /* ---------- JUNG SAEM MOOL ---------- */
  .jsm-wrap{
    padding: 40px 20px 100px;
    display:flex;
    justify-content:center;
    background:#fff;
  }
  .jsm-card{
    max-width: 1080px;
    width:100%;
    background: #d9d9d9;
    border-radius: 20px;
    padding: 48px 54px 56px;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,.25);
  }
  .jsm-card .eyebrow{
    color: #2b2b2b;
    font-size: 21px;
    letter-spacing: 4px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
  }
  .jsm-card h2{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    color: #161616;
    font-size: clamp(32px, 4.6vw, 60px);
    margin: 4px 0 26px;
  }
  .jsm-photos{
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.65fr;
    gap: 18px;
    margin-bottom: 26px;
  }
  .jsm-photos img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 12px 25px -10px rgba(0,0,0,.3);
    transition: transform .4s ease;
  }
  .jsm-photos img:hover{ transform: scale(1.03); }
  .jsm-card > p{
    color: #333;
    font-size: 14.5px;
    line-height: 1.8;
    max-width: 780px;
  }

  .celeb-row{
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .celeb-row img{
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
  }
  .celeb-row img:hover{
    transform: scale(1.06);
    z-index: 2;
    position: relative;
  }

  .teresa{
    padding:80px 0;
    background:#fff;
}

.teresa-head{
    margin-bottom:30px;
}

.teresa .eyebrow{
    font-family:var(--serif-font);
    font-size:30px;
    color:#000;
    margin-bottom:8px;
}

.teresa h2{
    font-family:var(--serif-font);
    font-style:italic;
    font-size:90px;
    font-weight:400;
    line-height:1;
    margin:0;
}

.teresa-grid{
    display:grid;
    grid-template-columns:180px 1fr;
}

.left-column{
    display: flex;
    flex-direction: column;
    padding-top: 37px;
}

.cert{
    width:100%;
    height:170px;
    object-fit:cover;
}

.left-photo{
    width:100%;
    height:145px;
    object-fit:cover;
}

.content{
    margin-bottom:18px;
}

.content p{
    font-family:var(--serif-font);
    font-size: 23px;
    line-height: 1.45;
    color: #222;
    margin-bottom: 20px;
    margin-left: 20px;
}

.photo-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.photo-row img{
    width:100%;
    height:145px;
    object-fit:cover;
}
@media(max-width:768px){

.teresa-grid{
    grid-template-columns:1fr;
}

.left-column{
    flex-direction:row;
}

.left-column img{
    width:50%;
}

.photo-row{
    grid-template-columns:repeat(2,1fr);
}

.teresa h2{
    font-size:46px;
}

.teresa .eyebrow{
    font-size:22px;
}

}

  /* ---------- COURSE HIGHLIGHTS ---------- */
  .course-banner{
    width: 100%;
    height: clamp(220px, 32vw, 400px);
    overflow: hidden;
  }
  .course-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
  .course-highlights{
    padding: 0 20px 100px;
    display:flex;
    justify-content:center;
    background:#fff;
  }
  .ch-card{
    max-width: 1080px;
    width: 100%;
    background: #d9d9d9;
    border-radius: 20px;
    padding: 48px 54px 54px;
    margin-top: 80px;
  }
  .ch-card h2{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    color: #161616;
    font-size: clamp(30px, 4.4vw, 48px);
    margin-bottom: 26px;
  }
  .ch-list{
    columns: 1;
    margin-bottom: 36px;
  }
  .ch-list ul{ list-style:none; }
  .ch-list li{
    font-size: 21.5px;
    color: #222;
    padding: 5px 0;
  }
  .ch-list li::before{
    content: "· ";
    font-weight: 700;
  }
  .ch-photos{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .ch-photos img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 14px 28px -12px rgba(0,0,0,.3);
    transition: transform .4s ease;
  }
  .ch-photos img:hover{ transform: translateY(-6px) scale(1.02); }

  /* ---------- WHAT YOU'LL LEARN ---------- */
.wyl-section{
  padding: 70px 0 40px;
  background: #fff;
}

.wyl-banner{
  max-width: 1080px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.wyl-banner-inner{
  background: #d9d9d9;
  border-radius: 14px;
  text-align: center;
  padding: 34px 20px;
}

.wyl-banner-inner h2{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: #161616;
  font-size: clamp(30px, 5vw, 52px);
  margin: 0;
}

.wyl-topics{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.wyl-topic{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.wyl-topic.reverse .wyl-topic-media{ order: 1; }
.wyl-topic.reverse .wyl-topic-content{ order: 2; }

.wyl-topic-content{
  display: flex;
  flex-direction: column;
}

.wyl-topic-content h3{
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: #161616;
  font-size: clamp(19px, 2.3vw, 35px);
  line-height: 1.3;
  margin-bottom: 16px;
  margin-top: 0;
}

.wyl-topic-content .pink-box{
  background: #fbdde6;
  border-radius: 14px;
  padding: 40px 26px;
  flex: 1;
  display: flex;
  align-items: center;
}

.wyl-topic-content .pink-box ul{ list-style: none; margin:0; padding:0; }

.wyl-topic-content .pink-box li{
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  padding: 5px 0;
}

.wyl-topic-content .pink-box li::before{
  content: "· ";
  font-weight: 700;
}

.wyl-topic-media{
  display: grid;
  gap: 14px;
  height: 100%;
}

.wyl-topic-media.two-col{
  grid-template-columns: 1fr 1fr;
}

.wyl-topic-media.single{
  grid-template-columns: 1fr;
}

.wyl-topic-media img{
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: #f3e6ea;
  box-shadow: 0 16px 32px -14px rgba(0,0,0,.3);
  transition: transform .4s ease;
  display: block;
}

.wyl-topic-media img:hover{ transform: translateY(-6px) scale(1.02); }

@media (max-width: 720px){
  .wyl-topic{ grid-template-columns: 1fr; }
  .wyl-topic-media{ height: auto; }
  .wyl-topic-media img{ min-height: 260px; }
  .wyl-topic.reverse .wyl-topic-media{ order: 1; }
  .wyl-topic.reverse .wyl-topic-content{ order: 2; }
}

  /*==============================
      FEEDBACK SECTION
==============================*/

.feedback-section{
    background:#d9d9d9;
    padding:70px 20px 320px;
    text-align:center;
}

.feedback-box{
    max-width:1100px;
    margin:auto;
}

.feedback-box h2{
    font-family:var(--serif-font);
    font-style:italic;
    font-size:58px;
    font-weight:400;
    line-height:1.2;
    color:#111;
    margin-bottom:18px;
}

.feedback-box p{
    font-family:var(--serif-font);
    font-size:20px;
    line-height:1.6;
    color:#333;
}


/*==============================
      BOOK RIBBON
==============================*/

.book-ribbon{
    width:100%;
    height:78px;
    background:#FFC9D7;
    overflow:hidden;
    position:relative;
    display:flex;
    align-items:center;
}

.ribbon-track{
    display:flex;
    width:max-content;
    animation:ribbon-slide 18s linear infinite;
}

.ribbon-set{
    display:flex;
    align-items:center;
}

.book-ribbon:hover .ribbon-track{
    animation-play-state:paused;
}

.ribbon-text{
    font-family:var(--serif-font);
    font-size:50px;
    color:#8800C3;
    white-space:nowrap;
    margin:0 35px;
}

.heart{
    width:34px;
    height:34px;
    object-fit:contain;
    margin:0 18px;
}

@keyframes ribbon-slide{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}


/*==============================
        MOBILE
==============================*/

@media(max-width:768px){

.feedback-section{
    padding:50px 20px 180px;
}

.feedback-box h2{
    font-size:36px;
}

.feedback-box p{
    font-size:18px;
}

.book-ribbon{
    height:58px;
}

.ribbon-text{
    font-size:28px;
    margin:0 20px;
}

.heart{
    width:22px;
    height:22px;
    margin:0 10px;
}

}

  /*==============================
        CTA SECTION
==============================*/

.cta-section{
    background:#fff;
    padding:120px 20px 140px;
    text-align:center;
}

.cta-section h2{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:35px;
    flex-wrap:nowrap;
    font-family:var(--serif-font);
    font-size:90px;
    line-height:1;
    font-weight:400;
    color:#8800C3;
    max-width:1200px;
    margin:0 auto;
}

.cta-section h2 .text{
    display:block;
}

.cta-section .heart{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-top:18px;
    flex-shrink:0;
    filter:
        drop-shadow(4px 4px 0 rgba(180,65,110,.25))
        drop-shadow(7px 7px 0 rgba(180,65,110,.18));
}

/* Left Heart */
.cta-section h2 .heart:first-child{
    transform:rotate(-18deg);
}

/* Right Heart */
.cta-section h2 .heart:last-child{
    transform:rotate(18deg);
}

.cta-sub{
    margin-top:28px;
    font-family:var(--serif-font);
    font-size:35px;
    line-height:1.4;
    color:#8800C3;
}

  /*=========================
        FOOTER
=========================*/

.site-footer{
    background:#FFC9D7;
    padding:55px 20px 22px;
}

.footer-inner{
    max-width:1200px;
    margin:auto;
}

.footer-eyebrow{
    text-align:center;
    font-family:var(--serif-font);
    font-size:40px;
    font-weight:400;
    letter-spacing:10px;
    color:#BB0003;
    margin-bottom:70px;
    text-transform:uppercase;
}

.footer-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:250px;
    margin-bottom:80px;
}

.footer-item{
    text-align:left;
}

.footer-label{
    font-family:var(--serif-font);
    font-size:28px;
    font-weight:400;
    color:#BB0003;
    margin-bottom:12px;
}

.footer-value,
.footer-value a{
    font-family:var(--serif-font);
    font-size:30px;
    font-weight:400;
    color:#111;
    text-decoration:none;
    line-height:1.5;
    transition:.3s;
}

.footer-value a:hover{
    color:#8800C3;
}

.footer-copy{
    text-align:center;
    font-family:var(--serif-font);
    font-size:20px;
    color:#222;
    border:none;
    padding:0;
    margin:0;
}


/*=========================
        MOBILE
=========================*/

@media(max-width:768px){

.site-footer{
    padding:45px 25px;
}

.footer-eyebrow{
    font-size:28px;
    letter-spacing:6px;
    margin-bottom:45px;
}

.footer-row{
    grid-template-columns:1fr;
    gap:35px;
    margin-bottom:45px;
}

.footer-item{
    text-align:center;
}

.footer-label{
    font-size:22px;
}

.footer-value,
.footer-value a{
    font-size:22px;
}

.footer-copy{
    font-size:16px;
}

}
  /* ---------- ENQUIRY POPUP ---------- */
  .enquiry-overlay{
    position: fixed;
    inset: 0;
    background: rgba(45, 20, 60, 0.55);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
  }
  .enquiry-overlay.active{
    opacity: 1;
    visibility: visible;
  }
  .enquiry-modal{
    background: #fff;
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    padding: 40px 36px 34px;
    position: relative;
    box-shadow: 0 40px 80px -20px rgba(90, 30, 130, .5);
    transform: translateY(24px) scale(.97);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    max-height: 90vh;
    overflow-y: auto;
  }
  .enquiry-overlay.active .enquiry-modal{
    transform: translateY(0) scale(1);
  }
  .enquiry-close{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f3e6fa;
    color: #6b2fb3;
    font-size: 15px;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
  }
  .enquiry-close:hover{
    background: #e0c2f2;
    transform: rotate(90deg);
  }
  .enquiry-modal h3{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    color: #6b2fb3;
    font-size: clamp(24px, 3.4vw, 30px);
    margin-bottom: 6px;
  }
  .enquiry-modal .enquiry-sub{
    font-family: 'Jost', sans-serif;
    color: #7a6a86;
    font-size: 14px;
    margin-bottom: 26px;
  }
  .enquiry-field{
    margin-bottom: 18px;
  }
  .enquiry-field label{
    display: block;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .5px;
    color: #4a3b5c;
    margin-bottom: 7px;
  }
  .enquiry-field input,
  .enquiry-field select,
  .enquiry-field textarea{
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 14.5px;
    color: #2c2530;
    padding: 11px 14px;
    border: 1.5px solid #e6d5f0;
    border-radius: 9px;
    background: #fbf7fd;
    outline: none;
    transition: border-color .25s ease, background .25s ease;
  }
  .enquiry-field textarea{
    resize: vertical;
    min-height: 80px;
  }
  .enquiry-field input:focus,
  .enquiry-field select:focus,
  .enquiry-field textarea:focus{
    border-color: #b98be0;
    background: #fff;
  }
  .enquiry-submit{
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 16px;
    color: #5a2a8c;
    background: #d9b8f0;
    border: 2px solid #b98be0;
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow .35s ease, transform .3s ease, background .3s ease;
  }
  .enquiry-submit:hover{
    box-shadow: 0 0 22px 4px rgba(185,139,224,0.55);
    transform: translateY(-2px);
    background: #e6cbf7;
  }
  .enquiry-success{
    display: none;
    text-align: center;
    padding: 20px 0 6px;
  }
  .enquiry-success .success-icon{
    font-size: 42px;
    margin-bottom: 14px;
  }
  .enquiry-success h3{
    margin-bottom: 10px;
  }
  .enquiry-success p{
    font-family: 'Jost', sans-serif;
    color: #6a5a76;
    font-size: 14.5px;
    line-height: 1.7;
  }
  .enquiry-modal.submitted .enquiry-form{ display: none; }
  .enquiry-modal.submitted .enquiry-success{ display: block; }

  /* ---------- RESPONSIVE: TABLET ---------- */
  @media (max-width: 980px){
    .section-inner{ padding: 0 30px; }
    .about-academy .section-inner,
    .about-founder .section-inner,
    .teresa .section-inner{
      grid-template-columns: 280px 1fr;
      gap: 40px;
    }
    .kb-card{
      grid-template-columns: 1fr;
      padding: 38px 34px;
      text-align: left;
    }
    .kb-card p{ max-width: 100%; }
    .jsm-photos{ grid-template-columns: 1fr 1fr; }
    .jsm-photos img:nth-child(3){ grid-column: span 2; height: 220px; }
    .celeb-row{ grid-template-columns: repeat(4, 1fr); }
    .celeb-row img{ height: 150px; }

    .ch-card{ padding: 38px 34px; }
    .ch-photos{ gap: 16px; }
    .ch-photos img{ height: 170px; }

    .wyl-topic{ grid-template-columns: 1fr; gap: 20px; }
    .wyl-topic.reverse .wyl-topic-media{ order: 1; }
    .wyl-topic.reverse .wyl-topic-content{ order: 2; }
    .wyl-topic-media.single img{ max-height: 260px; }

    .footer-row{ gap: 36px; }
  }

  /* ---------- RESPONSIVE: MOBILE ---------- */
  @media (max-width:768px){
  .hero h1 {font-size: 35px;}
  .hero h1 .accent {font-size: 50px;}
  .cta-section h2 .text {
    font-size: 60px;
  }
  .section-inner{padding:0 22px;}
  .logo{display:inline-block;}
  .logo img{width:130px;height:auto;display:block;}
  .hero{padding:50px 0 60px;}
  .card-row{gap:24px;margin-top:40px;}
  .pop-card{width:100%;max-width:320px;}
  .pop-card-img{height: 365px;}
  .tagline{margin-top:40px;padding:0 10px;}
  .about-academy{padding:20px 0 70px;}
  .about-academy .section-inner,
  .about-founder .section-inner,
  .teresa .section-inner{grid-template-columns:1fr;text-align:center;}
  .about-academy .img-wrap,
  .about-founder .img-wrap{max-width:320px;margin:0 auto;}
  .about-academy p,
  .about-founder p,
  .teresa p{margin-left:auto;margin-right:auto;}
  .about-founder{padding:60px 0;}
  .kb-card{padding:30px 22px;border-radius:16px;}
  .kb-list{padding:18px 20px;}
  .jsm-card{padding:34px 22px 40px;}
  .jsm-photos{grid-template-columns:1fr;}
  .jsm-photos img{height:280px;}
  .jsm-photos img:nth-child(3){grid-column:auto;}
  .celeb-row{grid-template-columns:repeat(3,1fr);}
  .celeb-row img{height:120px;}
  .teresa-bottom-row{grid-template-columns:repeat(2,1fr);}
  .teresa{padding:20px 0 70px;}
  .ch-card{padding:30px 20px;border-radius:16px;}
  .ch-photos{grid-template-columns:1fr;}
  .ch-photos img{height: 365px;}
  .wyl-banner-inner{padding:24px 16px;}
  .wyl-topic-media.two-col{grid-template-columns:1fr 1fr;}
  .wyl-topics{gap:44px;}
  .book-ribbon .heart{height:16px;padding:0 6px;}
  .ribbon-track{animation-duration:14s;}
  .cta-section{padding:60px 20px 70px;}
  .cta-section h2{gap:8px;}
  .footer-row{flex-direction:column;gap:22px;}
}

  @media (max-width: 420px){
    .celeb-row{ grid-template-columns: repeat(3, 1fr); }
  }