/* =========================================================
   ATHEEVA YOGA
   Main Website Stylesheet
   ========================================================= */


/* =========================================================
   01. DESIGN VARIABLES
   ========================================================= */

:root {
    --ivory: #f7f4ec;
    --paper: #fffdf8;

    --sage: #64715e;
    --deep: #26352d;
    --gold: #b99355;

    --ink: #2d302b;
    --muted: #70756d;
    --line: #ded9cc;
}


/* =========================================================
   02. RESET & GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--ink);
    background: var(--ivory);

    font-family: Inter, Arial, sans-serif;
    line-height: 1.7;
}

img {
    max-width: 100%;
}

p {
    margin: 0 0 18px;
}

.container {
    width: min(1160px, 92%);
    margin: auto;
}


/* =========================================================
   03. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3 {
    margin: 0 0 18px;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.05;
}

h1 {
    font-size: clamp(58px, 8vw, 105px);
}

h2 {
    font-size: clamp(44px, 5vw, 70px);
}

h3 {
    font-size: 29px;
}


/* =========================================================
   04. HEADER & NAVIGATION
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 20;

    background: rgba(247, 244, 236, 0.88);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(222, 217, 204, 0.6);
}

.nav-wrap {
    height: 82px;

    display: flex;
    align-items: center;

    gap: 26px;
}

.brand {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--deep);

    text-decoration: none;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 27px;
    font-weight: 700;
}

.brand img {
    width: 54px;
    height: 54px;

    object-fit: contain;
}

.brand small {
    display: block;

    font: 600 9px Inter, Arial, sans-serif;

    letter-spacing: 3px;
}

.nav {
    display: flex;

    gap: 27px;

    margin-left: auto;
}

.nav a,
.text-link {
    color: var(--deep);

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;

    border: 0;
    background: none;

    font-size: 25px;
}


/* =========================================================
   05. BUTTONS
   ========================================================= */

.btn {
    display: inline-block;

    padding: 13px 25px;

    border: 1px solid transparent;
    border-radius: 2px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.btn-dark {
    background: var(--deep);
    color: white;
}

.btn-light-outline {
    border-color: rgba(255, 255, 255, 0.65);

    color: white;
}


/* =========================================================
   06. HERO SECTION
   ========================================================= */

.hero {
    position: relative;

    min-height: 790px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url("../images/yoga-meditation.jpg");
    background-size: cover;
    background-position: center 35%;
}


/* Hero dark overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(25, 33, 28, 0.82),
            rgba(25, 33, 28, 0.35),
            rgba(25, 33, 28, 0.15)
        );
}


/* =========================================================
   07. HERO SLIDER
   ========================================================= */

.hero-slides {
    position: relative;

    z-index: 3;

    width: 100%;
    min-height: 790px;

    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1.1s ease,
        visibility 1.1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}


/* Hero text container */

.hero-content {
    position: relative;

    width: min(1160px, 92%);
    max-width: 1160px;

    padding-top: 70px;

    color: white;
}


/* Small gold label */

.eyebrow {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.28em;
    text-transform: uppercase;
}


/* Main hero heading */

.hero-slide h1 {
    max-width: 760px;

    margin: 0;

    color: white;

    font-size: clamp(54px, 5.2vw, 70px);
    font-weight: 400;

    line-height: 0.98;
	text-transform: uppercase;
    letter-spacing: -2px;
}


/* Italic highlighted heading */

.hero-slide h1 em {
    display: inline-block;

    color: white;
	font-size: 40px;
    font-style: italic;
    font-weight: 100;
}


/* Hero subtitle */

.hero-text {
    max-width: 650px;

    margin: 28px 0 18px;

    color: white;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.6;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* Hero description */

.hero-sub {
    max-width: 540px;

    color: #f2eee4;

    font-size: 16px;

    line-height: 1.75;
}


/* Hero buttons */

.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 28px;
}


/* =========================================================
   08. FLYING BIRDS
   5 FLAPS → GLIDE → REPEAT
   ========================================================= */

.birds {
    position: absolute;
    inset: 0;

    z-index: 2;

    overflow: hidden;

    pointer-events: none;
}

.bird {
    position: absolute;

    width: 52px;

    fill: var(--deep);

    opacity: 0.78;
}

.bird svg {
    display: block;

    width: 100%;
    height: auto;
}


/* Individual bird sizes / positions */

.bird-1 {
    top: 19%;
    left: -80px;

    animation:
        birdFlight1
        22s
        linear
        infinite;
}

.bird-2 {
    top: 28%;
    left: -100px;

    width: 38px;

    opacity: 0.62;

    animation:
        birdFlight2
        27s
        linear
        infinite
        3s;
}

.bird-3 {
    top: 14%;
    left: -90px;

    width: 30px;

    opacity: 0.55;

    animation:
        birdFlight3
        31s
        linear
        infinite
        7s;
}

.bird-4 {
    top: 35%;
    left: -70px;

    width: 44px;

    opacity: 0.68;

    animation:
        birdFlight4
        25s
        linear
        infinite
        11s;
}


/* =========================================================
   BIRD WINGS
   ========================================================= */

.wing-left {
    transform-origin: 50px 30px;

    animation:
        wingLeftCycle
        9s
        ease-in-out
        infinite;
}

.wing-right {
    transform-origin: 50px 30px;

    animation:
        wingRightCycle
        9s
        ease-in-out
        infinite;
}


/* Slightly different flap timing */

.bird-2 .wing-left,
.bird-2 .wing-right {
    animation-delay: -1.1s;
}

.bird-3 .wing-left,
.bird-3 .wing-right {
    animation-delay: -2.3s;
}

.bird-4 .wing-left,
.bird-4 .wing-right {
    animation-delay: -3.7s;
}


/* =========================================================
   WING KEYFRAMES
   ========================================================= */

@keyframes wingLeftCycle {

    0%,
    8%,
    16%,
    24%,
    32%,
    40%,
    100% {
        transform: rotate(0deg);
    }

    4%,
    12%,
    20%,
    28%,
    36% {
        transform: rotate(-20deg);
    }
}

@keyframes wingRightCycle {

    0%,
    8%,
    16%,
    24%,
    32%,
    40%,
    100% {
        transform: rotate(0deg);
    }

    4%,
    12%,
    20%,
    28%,
    36% {
        transform: rotate(20deg);
    }
}


/* =========================================================
   BIRD FLIGHT KEYFRAMES
   ========================================================= */

@keyframes birdFlight1 {

    0% {
        transform: translate(-100px, 10px);
    }

    25% {
        transform: translate(25vw, -8px);
    }

    50% {
        transform: translate(50vw, 12px);
    }

    75% {
        transform: translate(75vw, -5px);
    }

    100% {
        transform: translate(110vw, 6px);
    }
}

@keyframes birdFlight2 {

    0% {
        transform: translate(-80px, 5px);
    }

    30% {
        transform: translate(30vw, 12px);
    }

    60% {
        transform: translate(60vw, -8px);
    }

    100% {
        transform: translate(110vw, 4px);
    }
}

@keyframes birdFlight3 {

    0% {
        transform: translate(-100px, -5px);
    }

    35% {
        transform: translate(35vw, 8px);
    }

    70% {
        transform: translate(70vw, -10px);
    }

    100% {
        transform: translate(110vw, 3px);
    }
}

@keyframes birdFlight4 {

    0% {
        transform: translate(-90px, 8px);
    }

    28% {
        transform: translate(28vw, -6px);
    }

    58% {
        transform: translate(58vw, 10px);
    }

    100% {
        transform: translate(110vw, -3px);
    }
}


/* =========================================================
   09. GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 110px 0;
}


/* =========================================================
   10. INTRO / ABOUT
   ========================================================= */

.intro {
    background: var(--paper);
}

.split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.intro h2 span {
    color: var(--gold);

    font-style: italic;
}

.intro p {
    max-width: 620px;

    color: var(--muted);
}


/* Image card */

.image-card {
    position: relative;
}

.image-card img {
    display: block;

    width: 100%;
    height: 600px;

    object-fit: cover;
}

.image-caption {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    padding: 14px 20px;

    background: rgba(38, 53, 45, 0.85);

    color: white;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 23px;
}


/* Text link */

.text-link {
    display: inline-block;

    margin-top: 12px;
    padding-bottom: 4px;

    border-bottom: 1px solid var(--gold);
}


/* =========================================================
   11. BENEFITS
   ========================================================= */

.benefits {
    background: #e9e6dc;
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading > p:last-child {
    color: var(--muted);
}

.benefit-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: var(--line);
}

.benefit-grid article {
    min-height: 230px;

    padding: 38px 30px;

    background: #e9e6dc;
}

.benefit-grid span {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: 0.2em;
}

.benefit-grid p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   12. PROGRAMS
   ========================================================= */

.programs {
    background: var(--paper);
}

.program-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.program-card {
    padding: 35px;

    background: #f1eee5;

    border: 1px solid #e2ddd0;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.program-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(44, 48, 43, 0.08);
}

.program-icon {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 31px;
}

.program-card p {
    color: var(--muted);

    font-size: 14px;
}

.program-card a {
    color: var(--deep);

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* =========================================================
   13. QUOTE SECTION
   ========================================================= */

.quote-section {
    background: var(--deep);

    color: white;
}

.quote-inner {
    display: grid;

    grid-template-columns: 1fr 420px;

    gap: 70px;

    align-items: center;
}

.quote-inner blockquote {
    margin: 0 0 25px;

    font:
        600
        clamp(40px, 5vw, 65px) / 1.08
        "Cormorant Garamond",
        Georgia,
        serif;
}

.quote-note {
    color: #c9d0c7;
}

.quote-inner img {
    width: 100%;
    height: 500px;

    object-fit: cover;
}


/* =========================================================
   14. ONLINE CLASSES
   ========================================================= */

.online-section {
    padding: 55px 0;

    background: var(--gold);
}

.online-card {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.online-card h2 {
    color: white;
}

.online-card p {
    max-width: 680px;

    color: #fff8eb;
}


/* =========================================================
   15. CONTACT
   ========================================================= */

.contact {
    background: var(--paper);
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;
}

.contact-detail {
    display: flex;

    justify-content: space-between;

    padding: 17px 0;

    border-top: 1px solid var(--line);
}

.contact-detail span {
    color: var(--muted);
}


/* Contact form */

.contact-form {
    display: grid;

    gap: 16px;
}

.contact-form label {
    font-size: 12px;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    margin-top: 7px;

    padding: 13px;

    border: 1px solid var(--line);

    outline: none;

    background: #faf8f1;

    color: var(--ink);

    font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}


/* =========================================================
   16. FOOTER
   ========================================================= */

.footer {
    padding: 65px 0 0;

    background: #1e2a24;

    color: #d6dbd4;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 50px;
}

.footer a {
    display: block;

    margin: 8px 0;

    color: #d6dbd4;

    text-decoration: none;
}

.footer h4 {
    margin: 0 0 12px;

    color: white;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
}

.footer-logo {
    height: 75px;

    filter: brightness(1.05);
}

.footer-bottom {
    margin-top: 45px;

    padding: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #9fa89f;

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   17. SITE ALERTS
   ========================================================= */

.site-alert {
    margin: 0 0 18px;

    padding: 13px 16px;

    border: 1px solid var(--line);

    font-size: 13px;
}

.site-alert.success {
    background: #e7efe5;
}

.site-alert.error {
    background: #f2dedb;
}


/* =========================================================
   18. TABLET RESPONSIVE
   ========================================================= */

@media (max-width: 850px) {

    .hero {
        min-height: 720px;
    }

    .hero-slides {
        min-height: 720px;
    }

    .nav {
        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        padding: 20px 6%;

        margin-left: 0;

        background: var(--paper);
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: block;

        margin-left: auto;
    }

    .nav-cta {
        display: none;
    }

    .split,
    .contact-grid,
    .quote-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-inner img {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   19. MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 560px) {

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: 690px;

        background-position: 57% center;
    }

    .hero-slides {
        min-height: 690px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-slide h1 {
        font-size: clamp(46px, 13vw, 64px);

        line-height: 0.98;

        letter-spacing: -1px;
    }

    .hero-text {
        margin-top: 24px;

        font-size: 13px;

        letter-spacing: 0.12em;
    }

    .hero-sub {
        font-size: 15px;

        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;

        align-items: flex-start;
    }

    .benefit-grid,
    .program-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .image-card img {
        height: 440px;
    }

    .online-card {
        flex-direction: column;

        align-items: flex-start;
    }

    .quote-inner blockquote {
        font-size: 43px;
    }
}


/* =========================================================
   20. REDUCED MOTION / ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-slide {
        transition: none;
    }

    .bird,
    .wing-left,
    .wing-right {
        animation: none;
    }
}

/* ========================================
   PROGRAM CARDS
   ======================================== */

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 34px 30px 30px;
  background: #f8f5ed;
  border: 1px solid rgba(150, 125, 75, 0.18);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(150, 125, 75, 0.4);
  box-shadow: 0 14px 35px rgba(70, 55, 35, 0.10);
}

.program-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border: 1px solid rgba(150, 125, 75, 0.3);
  border-radius: 50%;
  color: #a58a52;
  font-size: 25px;
  line-height: 1;
}

.program-card h3 {
  margin: 0 0 14px;
  color: #403b32;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
}

.program-card p {
  margin: 0 0 25px;
  color: #706b61;
  font-size: 15px;
  line-height: 1.75;
}

.program-card .program-link {
  margin-top: auto;
  color: #9b814d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

.program-card:hover .program-link {
  letter-spacing: 1.5px;
}

.program-card-link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 310px;
  color: inherit;
  text-decoration: none;
}


/* ========================================
   PROGRAM CARDS — TABLET
   ======================================== */

@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}


/* ========================================
   PROGRAM CARDS — MOBILE
   ======================================== */

@media (max-width: 600px) {
  .program-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .program-card {
    min-height: auto;
    padding: 28px 24px 26px;
  }

  .program-card h3 {
    font-size: 23px;
  }

  .program-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================================================
   21. PROGRAM DETAIL PAGE
   ========================================================= */

.program-detail {
    padding-top: 82px;
    background: var(--paper);
}


/* =========================================================
   PROGRAM HERO / FULL WIDTH COVER
   ========================================================= */

.program-hero {
    position: relative;

    width: 100%;
    height: calc(100vh - 82px);
    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--deep);
}


/* Hero image */

.program-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
}

.program-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;
    object-position: center center;
}


/* Dark gradient over image */

.program-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(20, 29, 24, 0.90) 0%,
            rgba(20, 29, 24, 0.72) 28%,
            rgba(20, 29, 24, 0.40) 55%,
            rgba(20, 29, 24, 0.12) 100%
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.program-hero-content {
    position: relative;

    z-index: 2;

    width: min(1160px, 92%);

    margin: 0 auto;

    padding: 60px 0;

    color: white;
}


/* Back to programs */

.program-hero-content .program-back {
    display: inline-block;

    margin-bottom: 30px;
    padding: 0;

    background: transparent;

    color: white;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.12em;

    text-decoration: none;
    text-transform: uppercase;

    opacity: 0.9;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.program-hero-content .program-back:hover {
    color: var(--gold);
    opacity: 1;
}


/* Program icon */

.program-detail-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 24px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;

    color: white;

    font-size: 26px;
}


/* Eyebrow */

.program-hero-content .eyebrow {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}


/* Main title */

.program-hero-content h1 {
    max-width: 780px;

    margin: 0;

    color: white;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(58px, 7vw, 100px);

    font-weight: 400;

    line-height: 0.92;

    letter-spacing: -2px;
}


/* Highlight */

.program-hero-content h1 em {
    display: inline-block;

    margin-top: 8px;

    color: var(--gold);

    font-size: 0.62em;

    font-weight: 300;

    font-style: italic;

    letter-spacing: -1px;
}


/* Description */

.program-hero-description {
    max-width: 620px;

    margin: 30px 0 0;

    color: #f2eee4;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   PROGRAM INTRODUCTION
   ========================================================= */

.program-introduction {
    background: var(--paper);
}

.program-intro-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}

.program-intro-grid h2 {
    margin: 0;

    color: var(--deep);
}

.program-intro-grid h2 span {
    color: var(--gold);

    font-style: italic;
}

.program-rich-text {
    color: var(--muted);

    font-size: 16px;

    line-height: 1.85;
}

.program-rich-text p {
    margin: 0 0 18px;
}

.program-content-list {
    margin: 0;

    padding-left: 22px;
}

.program-content-list li {
    margin-bottom: 10px;
}


/* =========================================================
   BENEFITS / WHO IS IT FOR
   ========================================================= */

.program-content-section {
    background: #e9e6dc;
}

.program-content-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 28px;
}

.program-info-card {
    padding: 45px;

    background: var(--paper);

    border: 1px solid var(--line);
}

.program-info-card h2 {
    margin-bottom: 20px;

    color: var(--deep);

    font-size: clamp(38px, 4vw, 52px);
}

.program-info-card .eyebrow {
    margin-bottom: 12px;
}


/* =========================================================
   WHAT TO EXPECT
   ========================================================= */

.program-expect {
    background: var(--deep);

    color: white;
}

.program-expect-inner {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: center;
}

.program-expect h2 {
    color: white;
}

.program-expect h2 span {
    color: var(--gold);

    font-style: italic;
}

.program-expect .program-rich-text {
    color: #d8ddd7;
}


/* =========================================================
   CTA
   ========================================================= */

.program-cta {
    padding: 70px 0;

    background: var(--gold);
}

.program-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.program-cta h2 {
    color: white;
}

.program-cta p {
    max-width: 650px;

    margin-bottom: 0;

    color: #fff8eb;
}

.program-cta .btn {
    flex-shrink: 0;

    background: white;

    color: var(--deep);
}


/* =========================================================
   NOT FOUND
   ========================================================= */

.program-detail.not-found {
    min-height: 70vh;

    padding: 150px 0 100px;
}

.program-detail.not-found h1 {
    color: var(--deep);
}

.program-detail.not-found p {
    max-width: 600px;

    color: var(--muted);
}


/* =========================================================
   PROGRAM HERO RESPONSIVE
   ========================================================= */

@media (max-width: 850px) {

    .program-hero {
        height: 680px;
        min-height: 680px;
    }

    .program-hero-content {
        padding: 50px 0;
    }

    .program-hero-content h1 {
        font-size: clamp(52px, 9vw, 78px);
    }

    .program-intro-grid,
    .program-expect-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .program-content-grid {
        grid-template-columns: 1fr;
    }

    .program-info-card {
        padding: 35px;
    }

    .program-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   PROGRAM HERO MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .program-detail {
        padding-top: 82px;
    }

    .program-hero {
        height: 650px;
        min-height: 650px;
    }

    .program-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(20, 29, 24, 0.90),
                rgba(20, 29, 24, 0.52)
            );
    }

    .program-hero-content {
        width: 90%;

        padding: 40px 0;
    }

    .program-hero-content .program-back {
        margin-bottom: 25px;

        font-size: 11px;
    }

    .program-detail-icon {
        width: 50px;
        height: 50px;

        margin-bottom: 20px;

        font-size: 22px;
    }

    .program-hero-content h1 {
        max-width: 100%;

        font-size: clamp(46px, 14vw, 68px);

        line-height: 0.95;

        letter-spacing: -1px;
    }

    .program-hero-content h1 em {
        font-size: 0.62em;
    }

    .program-hero-description {
        margin-top: 25px;

        font-size: 15px;

        line-height: 1.7;
    }

    .program-introduction,
    .program-content-section,
    .program-expect {
        padding: 75px 0;
    }

    .program-info-card {
        padding: 28px 24px;
    }

    .program-info-card h2 {
        font-size: 38px;
    }

    .program-rich-text {
        font-size: 15px;

        line-height: 1.8;
    }

    .program-cta {
        padding: 60px 0;
    }
}

/* =========================================================
   COLORFUL PROGRAM CARDS WITH HOVER IMAGES
   ========================================================= */

.program-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(189, 150, 82, 0.25);
  background: #f7f3ea;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.program-card:hover {
  transform: translateY(-7px);
  border-color: rgba(189, 150, 82, 0.65);
  box-shadow: 0 18px 38px rgba(31, 43, 36, 0.16);
}


/* ---------------------------------------------------------
   Hover image
   --------------------------------------------------------- */

.program-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-size: cover;
  background-position: center;

  opacity: 0;
  transform: scale(1.08);

  transition:
    opacity 0.55s ease,
    transform 0.7s ease;
}

.program-card:hover .program-card-image {
  opacity: 1;
  transform: scale(1);
}


/* ---------------------------------------------------------
   Dark overlay
   --------------------------------------------------------- */

.program-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      135deg,
      rgba(20, 38, 31, 0.88),
      rgba(77, 57, 30, 0.62)
    );

  opacity: 0;

  transition: opacity 0.45s ease;
}

.program-card:hover .program-card-overlay {
  opacity: 1;
}


/* ---------------------------------------------------------
   Card content
   --------------------------------------------------------- */

.program-card-content {
  position: relative;
  z-index: 2;

  height: 100%;
  min-height: 310px;

  padding: 28px 24px 24px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  box-sizing: border-box;

  transition: color 0.35s ease;
}


/* ---------------------------------------------------------
   Icon
   --------------------------------------------------------- */

.program-card .program-icon {
  width: 44px;
  height: 44px;

  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #fbf7ee;
  border: 1px solid rgba(189, 150, 82, 0.45);

  color: var(--gold, #bd9652);

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.program-card:hover .program-icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: scale(1.08);
}


/* ---------------------------------------------------------
   Title
   --------------------------------------------------------- */

.program-card h3 {
  margin: 0 0 14px;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 600;

  color: #173044;

  transition: color 0.35s ease;
}

.program-card:hover h3 {
  color: #fff;
}


/* ---------------------------------------------------------
   Description
   --------------------------------------------------------- */

.program-card p {
  margin: 0;

  max-width: 390px;

  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.09em;
  text-transform: uppercase;

  color: #66716c;

  transition: color 0.35s ease;
}

.program-card:hover p {
  color: rgba(255, 255, 255, 0.88);
}


/* ---------------------------------------------------------
   Explore
   --------------------------------------------------------- */

.program-card-cta {
  margin-top: auto;
  padding-top: 25px;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #173044;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.program-card:hover .program-card-cta {
  color: #fff;
  transform: translateX(5px);
}


/* ---------------------------------------------------------
   Individual color accents
   --------------------------------------------------------- */

.program-card:nth-child(1) {
  border-top: 3px solid #c69a52;
}

.program-card:nth-child(2) {
  border-top: 3px solid #b58a6a;
}

.program-card:nth-child(3) {
  border-top: 3px solid #c79b77;
}

.program-card:nth-child(4) {
  border-top: 3px solid #9caa83;
}

.program-card:nth-child(5) {
  border-top: 3px solid #d0a85c;
}

.program-card:nth-child(6) {
  border-top: 3px solid #8da39a;
}



















/* =========================================================
   23. RELATED PROGRAMS / BOTTOM NAVIGATION
   ========================================================= */

.related-programs {
    background: var(--paper);
}

.related-programs-heading {
    margin-bottom: 45px;
}

.related-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-program-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;

    background: #f1eee5;
    border: 1px solid #e2ddd0;

    color: inherit;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.related-program-card:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 147, 85, 0.45);
    box-shadow: 0 15px 35px rgba(44, 48, 43, 0.10);
}

.related-program-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #ddd8ca;
}

.related-program-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-program-card:hover .related-program-image img {
    transform: scale(1.04);
}

.related-program-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 28px 30px;
}

.related-program-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    margin-bottom: 18px;

    border: 1px solid rgba(185, 147, 85, 0.35);
    border-radius: 50%;

    color: var(--gold);
    font-size: 20px;
}

.related-program-body h3 {
    margin: 0 0 10px;
    color: var(--deep);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.15;
}

.related-program-body p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.related-program-body > span {
    margin-top: auto;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.related-program-body > span span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.25s ease;
}

.related-program-card:hover .related-program-body > span span {
    transform: translateX(4px);
}

@media (max-width: 850px) {
    .related-program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .related-programs-heading {
        margin-bottom: 32px;
    }

    .related-program-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .related-program-image {
        height: 220px;
    }

    .related-program-body {
        padding: 25px 24px 27px;
    }

    .related-program-body h3 {
        font-size: 25px;
    }
}




/* =========================================================
   ATHEEVA BENEFITS SECTION
   ========================================================= */

.atheeva-benefits {
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
	background:#e9e6dc;
}

.atheeva-benefits-inner {
    width: min(1200px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    min-height: 720px;

    background: #fdfcf8;
}


/* =========================================================
   IMAGE
   ========================================================= */

.atheeva-benefits-image {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}

.atheeva-benefits-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
	background:#e9e6dc;
}


/* =========================================================
   BRAND
   ========================================================= */

.atheeva-benefits-brand {
    position: absolute;

    top: 35px;
    left: 40px;

    text-align: center;

    color: #b99355;
}

.brand-lotus {
    font-size: 48px;
    line-height: 0.8;
    margin-bottom: 8px;
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    letter-spacing: 1px;
}

.brand-yoga {
    margin-top: 3px;

    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 4px;
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.atheeva-benefits-content {
    position: relative;

    padding: 75px 65px 60px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(185, 147, 85, 0.05),
            transparent 38%
        ),
        #fdfcf8;
		background:#e9e6dc;
}


/* Eyebrow */

.atheeva-benefits-eyebrow {
    margin: 0 0 12px;

    color: #b99355;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;
}


/* Heading */

.atheeva-benefits-content h2 {
    margin: 0 0 12px;

    color: #30322e;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(48px, 5vw, 70px);

    font-weight: 500;
    line-height: 0.95;
}

.atheeva-benefits-content h2 span {
    color: #b99355;
    font-style: italic;
}


/* Intro */

.atheeva-benefits-intro {
    margin: 0 0 42px;

    color: #73766f;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   BENEFIT ITEMS
   ========================================================= */

.atheeva-benefit-item {
    display: grid;

    grid-template-columns: 76px 1fr;

    gap: 22px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(185, 147, 85, 0.28);
}


/* Icon */

.atheeva-benefit-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(185, 147, 85, 0.55);

    border-radius: 50%;

    color: #b99355;

    font-size: 24px;

    background: rgba(255, 255, 255, 0.65);
}


/* Number */

.atheeva-benefit-number {
    display: block;

    margin-bottom: 2px;

    color: #b99355;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;
}


/* Benefit heading */

.atheeva-benefit-text h3 {
    margin: 0 0 5px;

    color: #30322e;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 28px;
    font-weight: 500;

    line-height: 1.1;
}


/* Description */

.atheeva-benefit-text p {
    max-width: 420px;

    margin: 0;

    color: #74776f;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   CLOSING MESSAGE
   ========================================================= */

.atheeva-benefits-closing {
    margin-top: 30px;

    text-align: right;
}

.closing-line {
    width: 100%;
    height: 1px;

    margin-bottom: 18px;

    background: rgba(185, 147, 85, 0.35);
}

.atheeva-benefits-closing p {
    margin: 0;

    color: #30322e;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 34px;

    font-style: italic;
}

.atheeva-benefits-closing span {
    display: block;

    margin-top: 2px;

    color: #555850;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 22px;
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.atheeva-benefit-item {
    transition:
        transform 0.25s ease,
        padding-left 0.25s ease;
}

.atheeva-benefit-item:hover {
    padding-left: 8px;
}

.atheeva-benefit-item:hover .atheeva-benefit-icon {
    background: rgba(185, 147, 85, 0.08);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .atheeva-benefits {
        padding: 75px 0;
    }

    .atheeva-benefits-inner {
        grid-template-columns: 1fr;
    }

    .atheeva-benefits-image {
        min-height: 500px;
    }

    .atheeva-benefits-content {
        padding: 60px 45px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .atheeva-benefits {
        padding: 50px 0;
    }

    .atheeva-benefits-inner {
        width: 100%;
    }

    .atheeva-benefits-image {
        min-height: 420px;
    }

    .atheeva-benefits-brand {
        top: 25px;
        left: 25px;
    }

    .atheeva-benefits-content {
        padding: 50px 25px;
    }

    .atheeva-benefits-content h2 {
        font-size: 48px;
    }

    .atheeva-benefit-item {
        grid-template-columns: 58px 1fr;
        gap: 15px;
    }

    .atheeva-benefit-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .atheeva-benefit-text h3 {
        font-size: 25px;
    }

    .atheeva-benefit-text p {
        font-size: 13px;
    }

    .atheeva-benefits-closing {
        text-align: left;
    }

    .atheeva-benefits-closing p {
        font-size: 30px;
    }

}

/* =========================================================
   FOOTER SOCIAL LINKS
   ========================================================= */

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.footer-social {
    display: flex !important;
    align-items: center;

    gap: 9px;

    margin: 0 !important;

    color: #d6dbd4 !important;

    font-size: 14px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-social:hover {
    color: var(--gold) !important;
    transform: translateX(3px);
}

.social-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    color: #d6dbd4;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;

    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}

.footer-social:hover .social-icon {
    color: var(--gold);
    border-color: var(--gold);
}

.footer-follow {
    margin: 8px 0 2px !important;

    color: #ffffff;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
}



/* =========================================================
   FOUNDER & INSTRUCTOR SECTION
   ========================================================= */

.founder-section {
  position: relative;
  background: var(--cream, #f8f5ee);
  overflow: hidden;
}


/* ---------------------------------------------------------
   Founder introduction
   --------------------------------------------------------- */

.founder-intro {
  width: min(1160px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 70px;
  align-items: center;
  padding: 95px 0 65px;
}


/* Text side */

.founder-content {
  max-width: 610px;
}

.founder-content .eyebrow {
  margin-bottom: 20px;
}

.founder-content h2 {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 5vw, 70px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--deep, #202923);
}

.founder-content h2 span {
  display: block;
  color: var(--gold, #bd9652);
  font-style: italic;
}

.founder-content p {
  margin: 0 0 22px;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.8;
  color: #626b65;
}

.founder-content strong {
  color: var(--deep, #202923);
  font-weight: 600;
}


/* ---------------------------------------------------------
   Founder image
   --------------------------------------------------------- */

.founder-image-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #e9e3d7;
}

.founder-image-card > img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}

/* Quote overlay */

.founder-quote-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  min-height: 160px;

  padding: 22px 14px 8px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  background: rgba(248, 245, 238, 0.88);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}


/* Quote */

.founder-quote {
  max-width: 680px;
  margin: 0;

  text-align: center;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.3vw, 20px);
  line-height: 1.25;
  font-style: italic;

  color: #53605a;
}

.founder-quote-divider {
  width: 42px;
  height: 1px;

  margin: 18px 0 16px;

  background: var(--gold, #bd9652);
}


.founder-identity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.founder-name {
  font-size: 13px;
  letter-spacing: 0.30em;
  color: #657069;
}


.founder-role {
  font-size: 10px;
  letter-spacing: 0.13em;
  color: #657069;
}


.founder-identity-divider {
  width: 1px;
  height: 22px;
  background: rgba(101, 112, 105, 0.35);
}



/* ---------------------------------------------------------
   Six founder highlights
   --------------------------------------------------------- */

.founder-highlights {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 48px 0 58px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(189, 150, 82, 0.18);
}

.founder-highlight {
  text-align: center;
  padding: 0 8px;
}

.founder-highlight-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1eadc;
  border: 1px solid rgba(189, 150, 82, 0.16);
  color: var(--gold, #bd9652);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
}

.founder-highlight h3 {
  min-height: 46px;
  margin: 0 0 9px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1.05;
  font-weight: 600;
  color: var(--deep, #202923);
}

.founder-highlight p {
  margin: 0;
  color: #707873;
  font-size: 13px;
  line-height: 1.5;
}


/* ---------------------------------------------------------
   Founder CTA
   --------------------------------------------------------- */

.founder-cta {
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: 10px 0 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.founder-cta .btn {
  flex-shrink: 0;
}

.founder-cta-line {
  width: 70px;
  height: 1px;
  flex-shrink: 0;
  background: rgba(189, 150, 82, 0.45);
}

.founder-cta p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: #657069;
}


/* ---------------------------------------------------------
   Decorative background detail
   --------------------------------------------------------- */

.founder-section::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(189, 150, 82, 0.10);
  border-radius: 50%;
  pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .founder-intro {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 75px 0 50px;
  }

  .founder-content {
    max-width: 760px;
  }

  .founder-image-card {
    min-height: 560px;
  }

  .founder-image-card > img {
    height: 560px;
  }

  .founder-highlights {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 42px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .founder-quote-panel {
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    min-height: 190px;

    padding: 22px 20px 24px;
  }

  .founder-quote {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.25;
  }

  .founder-quote-divider {
    margin: 14px 0 13px;
  }

  .founder-identity {
    gap: 12px;
  }

  .founder-name {
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .founder-identity-divider {
    height: 18px;
  }

  .founder-role {
    font-size: 8px;
    letter-spacing: 0.10em;
  }

}