/* ============================================================
   Kayla Culminating — Spring Floral theme
   Palette  sage #8D9F79 · rose #D497AD · gold #E7CE95 · blush #FFD4CE
   Type     DM Serif Display (headings) · Grand Hotel (script)
            Georgia (body, web-safe stand-in for Georgia Pro)
   ============================================================ */

:root {
    /* ---- Brand colour ---- */
    --sage:        #8D9F79;
    --sage-deep:   #75895F;
    --sage-soft:   #DCE3CF;
    --rose:        #D497AD;
    --rose-deep:   #B97391;
    --rose-soft:   #F3DDE6;
    --gold:        #E7CE95;
    --gold-deep:   #CFAE66;
    --gold-soft:   #F6ECCF;
    --blush:       #FFD4CE;
    --blush-soft:  #FFE7E3;

    /* ---- Surface & ink ---- */
    --paper:       #F8F7F4;   /* matches the watercolour-paper crops  */
    --paper-2:     #FCFBF8;
    --card:        #FFFFFF;
    --ink:         #4A4642;   /* warm charcoal body text              */
    --ink-soft:    #7C746C;
    --heading:     #3A332E;   /* near-black warm                      */

    /* ---- Type ---- */
    --serif:  "DM Serif Display", "Georgia Pro", Georgia, serif;
    --body:   "Georgia Pro", Georgia, "Times New Roman", serif;
    --script: "Grand Hotel", cursive;

    /* ---- Shape ---- */
    --radius:    24px;
    --radius-sm: 14px;
    --arch:      48% 48% 18px 18px / 34% 34% 18px 18px;

    --shadow:    0 14px 34px -20px rgba(91, 74, 64, 0.45);
    --shadow-sm: 0 8px 20px -14px rgba(91, 74, 64, 0.40);
    --ring:      1px solid rgba(141, 159, 121, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--paper);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

a { color: inherit; }

/* ============================================================
   Navigation — soft gold band
   ============================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, var(--gold-soft) 0%, #F1E4C2 100%);
    border-bottom: 1px solid rgba(207, 174, 102, 0.45);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--sage-deep);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.nav-logo .logo-script {
    font-family: var(--script);
    font-size: 22px;
    color: var(--rose-deep);
    letter-spacing: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    display: inline-block;
    text-decoration: none;
    color: var(--heading);
    font-family: var(--body);
    font-size: 16px;
    letter-spacing: 0.02em;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.22s cubic-bezier(0.2, 0, 0, 1);
}
.nav-link:hover {
    color: var(--sage-deep);
    border-color: rgba(141, 159, 121, 0.5);
    background: rgba(255, 255, 255, 0.45);
}
.nav-link.active {
    background: var(--sage);
    color: #fff;
    border-color: var(--sage);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   Page banners (Pitching / About)
   ============================================================ */
.main-content { min-height: calc(100vh - 260px); }

.page-banner {
    text-align: center;
    padding: 80px 32px 48px;
    background:
        radial-gradient(120% 140% at 50% -40%, var(--blush-soft) 0%, transparent 55%),
        var(--paper);
    position: relative;
}
.page-banner .eyebrow {
    font-family: var(--script);
    font-size: 38px;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 6px;
}
.page-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(52px, 8vw, 92px);
    line-height: 1.02;
    color: var(--heading);
    letter-spacing: 0.005em;
}
.page-banner .rule {
    width: 96px;
    height: 3px;
    margin: 26px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--rose) 100%);
}

/* ============================================================
   Floral hero (home)
   ============================================================ */
.hero {
    position: relative;
    text-align: center;
    padding: 64px 32px 36px;
    background:
        url("media/floral-top.png") top center / 100% auto no-repeat,
        var(--paper);
    overflow: hidden;
}
.hero-inner { position: relative; padding-top: clamp(120px, 18vw, 240px); }

.hero .kicker {
    font-family: var(--body);
    font-size: 15px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 18px;
}
.hero .hero-script {
    font-family: var(--script);
    font-size: clamp(44px, 7vw, 78px);
    color: var(--sage);
    line-height: 0.9;
    margin-bottom: 4px;
}
.hero .hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(64px, 12vw, 150px);
    line-height: 0.96;
    color: var(--rose);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.hero .hero-sub {
    max-width: 620px;
    margin: 26px auto 0;
    font-size: 20px;
    color: var(--ink-soft);
    line-height: 1.6;
}
.hero .hero-sub2 {
    max-width: 620px;
    margin: 26px auto 0;
    font-size: 20px;
    color: var(--ink-soft);
    line-height: 1.6;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body);
    font-size: 16px;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 999px;
    border: 1.5px solid var(--sage);
    color: var(--sage-deep);
    background: transparent;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.2, 0, 0, 1);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary {
    background: var(--sage);
    color: #fff;
    border-color: var(--sage);
}
.btn-primary:hover { background: var(--sage-deep); border-color: var(--sage-deep); }
.btn-rose {
    border-color: var(--rose);
    color: var(--rose-deep);
}
.btn-rose:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 56px 32px 24px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-eyebrow {
    font-family: var(--script);
    font-size: 32px;
    color: var(--rose);
    line-height: 1;
}
.section-highlight {
    font-family: var(--script);
    font-size: 32px;
    color: var(--rose);
    line-height: 1;
}
.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 5vw, 52px);
    color: var(--heading);
    line-height: 1.1;
    margin-top: 4px;
}
.section-lead {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 19px;
}

/* ---- Generic card ---- */
.card {
    background: var(--card);
    border-radius: var(--radius);
    border: var(--ring);
    box-shadow: var(--shadow);
    padding: 30px;
}

/* ============================================================
   SMART goal (home)
   ============================================================ */
.smart-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.smart-card {
    background: var(--card);
    border-radius: var(--radius);
    border: var(--ring);
    box-shadow: var(--shadow);
    padding: 26px 26px 28px;
    position: relative;
    overflow: hidden;
}
.smart-card .badge {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--serif);
    font-size: 26px;
    color: #fff;
    margin-bottom: 16px;
}
.smart-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 24px;
    color: var(--heading);
    margin-bottom: 8px;
}
.smart-card p { font-size: 17px; color: var(--ink); line-height: 1.55; }
.smart-card .tail {
    position: absolute; right: -22px; bottom: -22px;
    width: 96px; height: 96px; border-radius: 50%;
    opacity: 0.14;
}
.c-sage  { background: var(--sage); }
.c-rose  { background: var(--rose); }
.c-gold  { background: var(--gold-deep); }
.c-blush { background: #E9A6A0; }
.c-green { background: var(--sage-deep); }

.smart-summary {
    max-width: 980px;
    margin: 26px auto 0;
    background: linear-gradient(135deg, var(--rose-soft) 0%, var(--gold-soft) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(212, 151, 173, 0.35);
    padding: 34px 38px;
    text-align: center;
}
.smart-summary .label {
    font-family: var(--script);
    font-size: 30px;
    color: var(--rose-deep);
    line-height: 1;
    margin-bottom: 10px;
}
.smart-summary p {
    font-size: 21px;
    line-height: 1.6;
    color: var(--heading);
    max-width: 760px;
    margin: 0 auto;
}

/* ============================================================
   Pitching — intro + month cards
   ============================================================ */
.pitch-intro {
    max-width: 980px;
    margin: 0 auto 52px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.pitch-intro .lead-card {
    background: var(--card);
    border-radius: var(--radius);
    border: var(--ring);
    box-shadow: var(--shadow);
    padding: 34px;
}
.pitch-intro .lead-card p { font-size: 18px; color: var(--ink); margin-bottom: 14px; }
.pitch-intro .lead-card p:last-child { margin-bottom: 0; }
.pitch-intro .lead-card strong { color: var(--rose-deep); }
.pitch-intro .technique {
    background: linear-gradient(150deg, var(--sage-soft) 0%, var(--gold-soft) 100%);
    border-radius: var(--radius);
    padding: 32px 34px;
    border: 1px solid rgba(141, 159, 121, 0.3);
}
.pitch-intro .technique h3 {
    font-family: var(--script);
    font-size: 30px;
    color: var(--sage-deep);
    margin-bottom: 14px;
    line-height: 1;
}
.pitch-intro .technique ul { list-style: none; }
.pitch-intro .technique li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 17px;
    color: var(--heading);
}
.pitch-intro .technique li::before {
    content: "";
    position: absolute; left: 0; top: 9px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 0 4px rgba(212, 151, 173, 0.25);
}

.video-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 26px;
}
.video-card {
    background: var(--card);
    border-radius: var(--radius);
    border: var(--ring);
    box-shadow: var(--shadow);
    padding: 16px 16px 24px;
    text-align: center;
    transition: transform 0.22s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.22s;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 22px 40px -22px rgba(91,74,64,0.55); }
.video-thumb {
    border-radius: var(--arch);
    overflow: hidden;
    background: var(--paper);
    border: 5px solid var(--blush-soft);
    aspect-ratio: 3 / 4;
    margin-bottom: 16px;
}
.pitching-video { width: 100%; height: 100%; object-fit: cover; display: block; background:#efe9e2; }
.video-card .month {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    color: var(--rose-deep);
    line-height: 1;
}
.video-time {
    display: inline-block;
    margin: 8px 0 12px;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.video-progress {
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-soft);
    border-top: 1px solid rgba(141,159,121,0.25);
    padding-top: 12px;
    margin: 0 4px;
}

/* ---- View-collection toggle ---- */
.video-card { display: flex; flex-direction: column; }
.collection-toggle {
    margin: 18px 4px 2px;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body);
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--sage-deep);
    background: transparent;
    border: 1.5px solid var(--sage);
    border-radius: 999px;
    padding: 9px 22px;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.2, 0, 0, 1);
}
.collection-toggle:hover { background: var(--sage); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.collection-toggle .chev { font-size: 12px; transition: transform 0.22s ease; line-height: 1; }
.collection-toggle[aria-expanded="true"] { background: var(--rose); border-color: var(--rose); color: #fff; }
.collection-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

.video-card.active {
    box-shadow: 0 22px 44px -22px rgba(185, 115, 145, 0.65);
    border-color: rgba(212, 151, 173, 0.6);
    transform: translateY(-4px);
}

/* ---- Expanding month collection ---- */
.month-collection {
    max-width: 1080px;
    margin: 34px auto 0;
    background: var(--card);
    border-radius: var(--radius);
    border: var(--ring);
    box-shadow: var(--shadow);
    padding: 34px 36px 38px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.2, 0, 0, 1);
}
.month-collection.open { opacity: 1; transform: translateY(0); }
.collection-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    margin-bottom: 26px;
    border-bottom: 1px dashed rgba(141, 159, 121, 0.4);
}
.collection-eyebrow {
    font-family: var(--body);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 2px;
}
.collection-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 46px);
    color: var(--rose-deep);
    line-height: 1;
}
.collection-close {
    flex: 0 0 auto;
    font-family: var(--body);
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    background: transparent;
    border: 1.5px solid rgba(141, 159, 121, 0.4);
    border-radius: 999px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.collection-close:hover { border-color: var(--rose); color: var(--rose-deep); }

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.clip { margin: 0; }
.clip-thumb {
    border-radius: var(--arch);
    overflow: hidden;
    background: var(--paper);
    border: 5px solid var(--blush-soft);
    aspect-ratio: 3 / 4;
}
.clip figcaption {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.collection-msg {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    padding: 18px 8px;
}
.collection-msg strong { color: var(--rose-deep); }

/* ============================================================
   About — checklist + tall image, Q&A, carousel
   ============================================================ */
.about-top {
    max-width: 1080px;
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
    align-items: start;
}
.facts-card {
    background: var(--card);
    border-radius: var(--radius);
    border: var(--ring);
    box-shadow: var(--shadow);
    padding: 34px 36px;
}
.facts-card h3 {
    font-family: var(--script);
    font-size: 32px;
    color: var(--rose-deep);
    line-height: 1.05;
    margin-bottom: 4px;
}
.facts-card .sub {
    font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold-deep); margin-bottom: 22px;
}
.facts-list { list-style: none; }
.facts-list li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(141,159,121,0.3);
    font-size: 17px;
    color: var(--ink);
}
.facts-list li:last-child { border-bottom: none; }
.facts-list .n {
    flex: 0 0 auto;
    width: 26px; height: 26px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--serif);
    font-size: 15px;
    color: #fff;
    transform: translateY(2px);
}
.facts-list .label { font-weight: bold; color: var(--heading); }

.about-visual { position: sticky; top: 100px; }
.tall-frame {
    border-radius: var(--arch);
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
    background: var(--paper);
    position: relative;
}
.about-visual .cap {
    text-align: center;
    font-family: var(--script);
    font-size: 26px;
    color: var(--sage-deep);
    margin-top: 14px;
}

/* Q&A grid */
.qa-section { max-width: 1080px; margin: 0 auto 56px; }
.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.qa-box {
    background: var(--card);
    border-radius: var(--radius);
    border: var(--ring);
    box-shadow: var(--shadow-sm);
    padding: 28px 30px;
    border-top: 5px solid var(--rose);
}
.qa-box:nth-child(3n+2) { border-top-color: var(--sage); }
.qa-box:nth-child(3n)   { border-top-color: var(--gold-deep); }
.qa-box h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    color: var(--heading);
    margin-bottom: 12px;
}
.qa-box p { font-size: 17px; color: var(--ink); line-height: 1.6; }
.qa-box ol { padding-left: 20px; }
.qa-box li { font-size: 17px; color: var(--ink); margin-bottom: 6px; }

/* Carousel */
.carousel-wrap { max-width: 880px; margin: 0 auto; }
.image-carousel { margin-top: 8px; }
.carousel-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow);
    background: var(--paper);
}
.carousel-slide { position: relative; width: 100%; height: 520px; background: #efe9e2; }
.carousel-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}
.carousel-img.active { opacity: 1; }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.86);
    color: var(--sage-deep);
    border: none; cursor: pointer;
    font-size: 20px; z-index: 5;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.2s;
}
.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-dots { text-align: center; padding: 18px 0 2px; }
.dot {
    display: inline-block;
    width: 9px; height: 9px; margin: 0 4px;
    background: var(--sage-soft); border-radius: 50%;
    cursor: pointer; transition: all 0.3s;
}
.dot.active, .dot:hover { background: var(--rose); transform: scale(1.25); }

/* ============================================================
   Floral bottom band (every page)
   ============================================================ */
.floral-band {
    height: clamp(220px, 28vw, 420px);
    background: url("media/floral-bottom.png") center bottom / cover no-repeat;
    margin-top: 40px;
}

/* ============================================================
   Footer — sage green
   ============================================================ */
.footer {
    background: var(--sage);
    color: #fff;
    padding: 52px 32px 40px;
}
.footer-inner {
    max-width: 1140px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.footer h4 {
    font-family: var(--script);
    font-weight: 400;
    font-size: 26px;
    margin-bottom: 12px;
    color: #fff;
}
.footer p, .footer a {
    font-size: 16px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    line-height: 1.9;
    display: block;
}
.footer a:hover { color: var(--gold-soft); }
.footer .foot-logo {
    font-family: var(--serif);
    font-size: 28px;
    margin-bottom: 8px;
}
.footer-bottom {
    max-width: 1140px;
    margin: 36px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.25);
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.04em;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
    .pitch-intro, .about-top { grid-template-columns: 1fr; }
    .about-visual { position: static; }
    .nav-container { padding: 16px 22px; }
    .container { padding: 0 22px; }
}
@media (max-width: 560px) {
    body { font-size: 17px; }
    .nav-menu { gap: 4px; }
    .nav-link { padding: 8px 14px; font-size: 15px; }
    .section { padding: 40px 20px 16px; }
}
